Networking Books - Page 12

MagicBeanDip.com

Page 12 of 200 - Go to page: 1 7 8 9 10 11 12 13 14 15 16 17 23

Framework Design Guidelines: Conventions, Idioms, and Patterns for Reusable .NET Libraries (Microsoft .NET Development Series)

Krzysztof Cwalina, Brad Abrams

Framework Design Guidelines: Conventions, Idioms, and Patterns for Reusable .NET Libraries (Microsoft .NET Development Series) Krzysztof Cwalina, Brad Abrams List Price: $49.99
By: Addison-Wesley Professional
Amazon Marketplace: 29 new & used starting at $18.94

Buy at Amazon.com

Browse similar items by category:
Subjects -> Computers & Internet -> Computer Science -> Software Engineering -> Design Tools & Techniques
Subjects -> Computers & Internet -> Computer Science -> Software Engineering -> General AAS
Subjects -> Computers & Internet -> Microsoft -> Development -> .NET

Customer Reviews:
Total reviews: 29 Average rating: 5.0 of 5

Editorial Review:

"This book is an absolute must-read for all .NET developers. It gives clear do and don't guidance on how to design class libraries for .NET. It also offers insight into the design and creation of .NET that really helps developers understand the reasons why things are the way they are. This information will aid developers designing their own class libraries and will also allow them to take advantage of the .NET class library more effectively." --Jeffrey Richter, author/trainer/consultant, Wintellect "Framework Design Guidelines will help you in two important ways. First, any .NET developer will benefit from a greater understanding of the design principles that govern the .NET Base Class Library. Second, a deeper understanding of these principles will help you to create software that integrates well with the .NET environment. Quite frankly, this book should be on every .NET developer's bookshelf." --Bill Wagner, founder and consultant, SRT Solutions, author of Effective C# "Not since Brooks' The Mythical Man Month has the major software maker of its time produced a book so full of relevant advice for the modern software developer.This book has a permanent place on my bookshelf and I consult it frequently. " --George Byrkit, senior software engineer, Genomic Solutions "This book is a must-read for all architects and software developers thinking about frameworks. The book offers insight into some driving factors behind the design of the .NET Framework. It should be considered mandatory reading for anybody tasked with creating application frameworks." --Peter Winkler, senior software engineer, Balance Technology Inc. "Frameworks are valuable but notoriously difficult to construct: Your every decision must be geared towards making them easy to be used correctly and difficult to be used incorrectly. This book takes you through a progression of recommendations that will eliminate many of those downstream 'I wish I'd known that earlier' moments. I wish I'd read it earlier." --Paul Besly, principal technologist, QA "Filled with information useful to developers and architects of all levels, this book provides practical guidelines and expert background information to get behind the rules.Framework Design Guidelines takes the already published guidelines to a higher level, and it is needed to write applications that integrate well in the .NET area." --Cristof Falk, software engineer Framework Design Guidelines: Conventions, Idioms, and Patterns for Reusable . NET Libraries teaches developers the best practices for designing system frameworks and reusable libraries for use with the Microsoft .NET Framework and WinFX. This book focuses on the design issues that directly affect the programmability of a framework, specifically its publicly accessible APIs. This book can improve the work of any .NET developer producing code that other developers will use. An added benefit is a collection of annotations to the guidelines by various members of the Microsoft .NET Framework and WinFX teams, which provide a lively discussion of the motives behind the guidelines, along with examples of good reasons for breaking the guidelines. Microsoft architects Krzysztof Cwalina and Brad Abrams offer guidelines for framework design from the top down.From their long experience and deep insight, you will learn *The general philosophy of framework design *Principles and guidelines that are fundamental to overall framework design *Naming guidelines for the various parts of a framework, such as namespaces, types, and members *Guidelines for the design of types and members of types *Issues and guidelines that are important to ensure appropriate extensibilityin your framework *Guidelines for working with exceptions, the preferred error reporting mechanism in the . NET Framework and WinFX *Guidelines for extending and using types that commonly appear in frameworks *Guidelines for and examples of common framework design patterns Guidelines in this book come in four major forms: Do, Consider, Avoid, and Do not. In general, a Do guideline should almost always be followed, a Consider guideline should generally be followed, an Avoid guideline indicates that something is generally not a good idea, and a Do not guideline indicates something you should almost never do. Every guideline includes a discussion of its applicability, and most guidelines include a code example. A companion DVD includes the Designing .NET Class Libraries video series, instructional presentations by the authors on design guidelines for developing classes and components that extend the .NET Framework. A sample API specification and other useful resources are also included.

TCP/IP Sockets in C#: Practical Guide for Programmers (The Practical Guides)

David Makofske, Michael J. Donahoo, Kenneth L. Calvert

TCP/IP Sockets in C#: Practical Guide for Programmers (The Practical Guides) David Makofske, Michael J. Donahoo, Kenneth L. Calvert Amazon Price: $22.45
List Price: $24.95
Usually ships in 24 hours
By: Morgan Kaufmann
Amazon Marketplace: 28 new & used starting at $17.50

Buy at Amazon.com

Browse similar items by category:
Subjects -> Computers & Internet -> Microsoft -> Networking
Subjects -> Computers & Internet -> Networking -> Networks, Protocols & APIs -> TCP-IP
Subjects -> Computers & Internet -> Networking -> Networks, Protocols & APIs -> General

Customer Reviews:
Total reviews: 12 Average rating: 4.5 of 5

Very good for its intended audience 4 out of 5 stars.
3 of 3 people found this review helpful.

This book gets very high ratings on both amazon.co.uk and amazon.com. I've given it a slightly lower rating than some, although still four stars, and will explain why...

The subtitle on the cover of the book is "Practical Guide for Programmers" which suggests it is going to be good even for experienced developers. It is only when you read the preface (page X) that you find that the book is aimed "primarily at students", and even then is "intended as a supplement, to be used with a traditional textbook", which seems a bit of a contradiction when it then says that "we have tried to make the book reasonably self-contained".

Anyway, what are the good points of this book? Well, it does mention most of the bits that a developer using sockets will want to consider. It has everything from blocking sockets, through non-blocking sockets and the select model, through to overlapped I/O. It also mentions threading, the use of thread pools, broadcast and multicast. All good stuff. Even includes example code for each.

Where the book falls down is that having skimmed over all of those topics it (a) doesn't provide adequate information about how to choose the model (synch vs. asynch, blocking vs. non-blocking, 1 thread vs. fixed number (> 1) of threads vs. thread pool, etc) to use for a particular project, and (b) falls short of being self-contained, doing the blah-blah is beyond the scope of this book thing.

I have seen many projects developed using the wrong model, resulting in poor performance, lack of responsiveness, inability to shutdown cleanly etc. I'm pretty sure that the authors of the book will have seen projects like that too. Books about using sockets really need to advise on this area.

It is understandable that a book of this size and price will say that some things are outside the scope of the book, but not something as basic as socket options (p52 refers the reader to the MSDN). Again, socket options are an area where well-meaning developers or support staff set values that are little better than guesses, and which sometimes cause adverse effects. If there's going to be a second edition of this book, please include advice on such matters.

So, all in all, good for students or people new to sockets, but not quite great. It tells you the basic techniques, but not how to use them to best advantage. Having said that, I prefer this book to C# Network Programming which rambles, uses language that is ambiguous in places, and contains a significant error (if being very generous, it could be very lazy English causing an unintended meaning) on the very page I opened it on.

It's probably best for people who already know sockets really well, but who are switching from one language to another (e.g. C++ or Java to C#). Those people probably know what model and options to use, just need to see how to do it in C# - something the book does do well.

Editorial Review:

The popularity of the C# language and the .NET framework is ever rising due to its ease of use, the extensive class libraries available in the .NET Framework, and the ubiquity of the Microsoft Windows operating system, to name a few advantages. TCP/IP Sockets in C# focuses on the Sockets API, the de facto standard for writing network applications in any programming language. Starting with simple client and server programs that use TCP/IP (the Internet protocol suite), students and practitioners quickly learn the basics and move on to firsthand experience with advanced topics including non-blocking sockets, multiplexing, threads, asynchronous programming, and multicasting. Key network programming concepts such as framing, performance and deadlocks are illustrated through hands-on examples. Using a detailed yet clear, concise approach, this book includes numerous code examples and focused discussions to provide a solid understanding of programming TCP/IP sockets in C#.

Mastering Microsoft Exchange Server 2007

Barry Gerber, Jim McBee

Mastering Microsoft Exchange Server 2007 Barry Gerber, Jim McBee Amazon Price: $31.49
List Price: $49.99
Usually ships in 24 hours
By: Sybex
Amazon Marketplace: 56 new & used starting at $7.39

Buy at Amazon.com

Browse similar items by category:
Subjects -> Computers & Internet -> Microsoft -> Development -> Exchange
Subjects -> Computers & Internet -> Microsoft -> Networking
Subjects -> Computers & Internet -> Networking -> Data in the Enterprise -> Client-Server Systems

Customer Reviews:
Total reviews: 6 Average rating: 4.0 of 5

McBee and Gerber wrote a good book. 5 out of 5 stars.
2 of 2 people found this review helpful.

Let me start by saying that while it was a good book, I felt it to be a bit thinner than the normal McBee book. I own a small library of Exchange books, accumulated over 14 years supporting Exchange and other messaging systems, and around 15 years in the IT biz. If there was one Exchange 2007 book that I had to put on my shelf, this (and a book on the usage of Powershell in Exchange 2007) would be it.

Exchange 2007 brings to bear some of the good things which we were familiar with in Exchange 5.5; a separate SMTP engine (IMC in Exchange 5.5, SMTP Service in Exchange 2000/2003, and Hub/Transport role in Exchange 2003), a separate Outlook Web Access server role (now called CAS in Exchange 2007). Some Exchange admins of today don't remember the concepts of these separate roles and Exchange admins with this background need to become familiar.

It's easy to tell that McBee was key in the authoring of this book and uses his great writing skill to further learning the key concepts in the book.

I am a former Microsoft MVP, who participated with the LCS and Exchange MVP teams. I also participate in the Exchange forums of Experts Exchange. As such, it is easy to see when a great book is written. Jim McBee has written yet another winner and a great time saver. This book was definitely worth every minute and is only one of two Exchange books I keep at the office.

Bob

Editorial Review:

With this comprehensive guide, you’ll find out how to effectively install, configure, and manage Microsoft’s powerful messaging and collaboration server, Exchange Server 2007. From reducing the amount of spam your company receives to ensuring you have the right disaster recovery strategy, authors Barry Gerber and Jim McBee share their extensive real-world experience as they walk you step-by-step through each process. You’ll learn the essential techniques for planning and design, deployment, administration, maintenance, and troubleshooting.

Administering Windows Server 2008 Server Core

John Paul Mueller

Administering Windows Server 2008 Server Core John Paul Mueller Amazon Price: $37.79
List Price: $59.99
Usually ships in 24 hours
By: Sybex
Amazon Marketplace: 69 new & used starting at $0.96

Buy at Amazon.com

Browse similar items by category:
Subjects -> Computers & Internet -> Microsoft -> Operating Systems -> Windows NT
Subjects -> Computers & Internet -> Microsoft -> Operating Systems -> Windows NT Server
Subjects -> Computers & Internet -> Microsoft -> Operating Systems -> Windows - General

Customer Reviews:
Total reviews: 3 Average rating: 4.5 of 5

No GUI and that's just great! 5 out of 5 stars.
4 of 4 people found this review helpful.

For those of us who've performed more than 50 percent of our administration tasks from the command line (in Windows) for that past 15+ years, it's nice to see that Microsoft is still committed to this method of administration. It's also good to see a book like this that teaches a new generation of technology professionals how to get things done most efficiently - at the command prompt.

Windows Server 2008 intrduces the "core" concept, which is an implementation of Windows Server without the full GUI. You use command line commands to do everything from creating user accounts to setting up services. This book is your one-stop shop to find out how to get it all done.

Divided into seven parts, this book provides you with detailed step-by-step instructions for every major task (and most minor ones) that you'll need to perform in a Windows Server Core installation. The books starts by explaining what Windows Server Core actually is and then moves on to coverage of basic command line usage. For those who've been working at the command line for years, you may be able to skip straight to Part 3, "Working with the Hardware".

Parts 3-5 will probably be used most frequently as an ongoing refernce. Part 3 teaches you how to work with files, the network and other hardware devices. Part 4 moves to working with applications and services and also the monitoring of the same. Part 5 provides an overview of user management and security.

Parts 6 and 7 also provide beneficial coverage of third-party addons and working with IIS. The Appendices are very helpful as they provide lists of command line tricks, as well as various listings of the available commands.

The batch file section will also be invaluable for those who may have created batch files in the past (for example, when working in DOS), but have grown rusty through lack of utilization.

Overall, this is the best Window Server 2008 book on my shelf so far (among five others).

Editorial Review:

Microsoft's new GUI-less Server Core is a command line version of Windows Server 2008 that offers better security, reduced size, and faster access. Inside this comprehensive guide, you'll find everything you need to quickly master this sleek new version. Packed with instructions and practical examples, this book teaches you how to operate in a windowless environment, including using all the commands, creating BAT files, working with scripts, using registry hacks, managing remote systems, and more. Includes best practices, 52 indispensable command line tricks, and an alphabetical list of all the commands.

Microsoft Visual Studio 2005 Unleashed

Lars Powers, Mike Snell

Microsoft Visual Studio 2005 Unleashed Lars Powers, Mike Snell Amazon Price: $37.79
List Price: $59.99
Usually ships in 24 hours
By: Sams
Amazon Marketplace: 60 new & used starting at $6.49

Buy at Amazon.com

Browse similar items by category:
Subjects -> Computers & Internet -> Microsoft -> Development -> Visual Basic -> Visual Studio
Subjects -> Computers & Internet -> Microsoft -> Development -> Visual Basic -> General AAS
Subjects -> Computers & Internet -> Microsoft -> Networking

Customer Reviews:
Total reviews: 10 Average rating: 4.0 of 5

Editorial Review:

Microsoft Visual Studio 2005 Unleashed is a deep dive into the Visual Studio 2005 tool. Specifically, it will provide you with solid guidance and education that will allow you to squeeze the ultimate productivity and use out of the Visual Studio 2005 development environment. This book folds in real-world development experience with detailed information about the IDE to make you more productive and ease transition from other development environments (including prior versions of Visual Studio). This book will also help you increase team collaboration and project visibility with Visual Studio Team Systems and it will give you straight, to-the-point answers to common developer questions about the IDE.

 

Chapters include:

  • Code Viewers, Explorers, and Browsers
  • Refactoring Code 8
  • Writing ASP .NET Applications
  • Defining Standards and Practices
  • Introduction to Visual Studio Team System
  • Work Item Tracking 
  • Unit and Load Testing

Windows Server 2003 Weekend Crash Course

Don Jones

Windows Server 2003 Weekend Crash Course Don Jones Amazon Price: $19.79
List Price: $29.99
Usually ships in 24 hours
By: Wiley
Amazon Marketplace: 37 new & used starting at $13.92

Buy at Amazon.com

Browse similar items by category:
Subjects -> Computers & Internet -> Hardware -> PCs
Subjects -> Computers & Internet -> Microsoft -> Operating Systems -> Windows - General
Subjects -> Computers & Internet -> Microsoft -> Operating Systems -> General AAS

Customer Reviews:
Total reviews: 7 Average rating: 4.0 of 5

Editorial Review:

Focus: Book consists of 30 sessions that teach the core concepts of Windows .NET Server to Windows Administrators over a weekend. Covers the new features of the Windows .NET Server, including headless servers, Remote Desktop Services (RDS), and performance management. Learn how to implement Windows .NET Server as the base OS for the Microsoft .NET Framework and.NET Enterprise Servers, including SQL Server 2000 and Exchange 2000 Server. Covers Windows .NET Server's improvements to networking, Active Directory, usability, reliability, scalability, disaster recovery, management, and Internet integration as well as Windows basics and architecture; installing the Windows .NET Server; and managing server security.
Running example: A running example of a fictitious major international bank is used to demonstrate key concepts.
Windows interface tutorial on CD: For readers with no prior Windows experience at all, a Windows interface tutorial will be included as an appendix on the CD that accompanies the book.
WCC series features: Each session takes 30 minutes to complete. Four time-to-go icons gauge the reader's progress through any given session. "Quiz Yourself" questions (at the end of each session) and "Part Review" questions allow the reader to review what they have just learned. Skill assessment software on the CD-ROM helps readers gauge their skill level before and after reading this book.

ABOUT THE CD-ROM
The CD-ROM has skills assessment software based on the sessions in the book and an appendix on the Windows interface.

Learning Exchange Server 2003 (Microsoft Windows Server System Series)

William Boswell

Learning Exchange Server 2003 (Microsoft Windows Server System Series) William Boswell Amazon Price: $37.79
List Price: $59.99
Usually ships in 24 hours
By: Addison-Wesley Professional
Amazon Marketplace: 43 new & used starting at $11.82

Buy at Amazon.com

Browse similar items by category:
Subjects -> Computers & Internet -> Computer Science -> Software Engineering -> Information Systems
Subjects -> Computers & Internet -> Hardware -> Microprocessors & System Design -> Computer Design
Subjects -> Computers & Internet -> Microsoft -> Development -> Exchange

Customer Reviews:
Total reviews: 9 Average rating: 4.5 of 5

Editorial Review:

Surprisingly, the majority of organizations running Exchange are still usingExchange 5.5 that was released in 1997. In 2003, Microsoft suspended theirsupport of 5.5. Companies are now starting to upgrade and they will upgradeto 2003.Most sys admins who call themselves "Exchange" admins have never reallyworked with Exchange servers before. And for them, most of the books onthe market assume they have a basic understanding of Exchange and thereforejump right into a feature-based approach for Exchange 2003. Bill Boswellrecognized this and created a book to teach sys admins the fundamentals ofExchange 2003: How does it work? How do I get the most out of it? How do Ifix it if it breaks? He introduces the material at the right level, getting thereader to do something useful quickly, without patronizing the reader with a lotof fluff. The chapters get readers up and running in a test environment, thenexpose readers to layers of detail as they progress through a topic andultimately get them ready for a real-world deployment or a managementchallenge. Bill makes a point to cover Outlook, Eudora and other e-mailclients.And he is not afraid to suggest third party products when he believesthey will work more efficiently.

Applying Domain-Driven Design and Patterns: With Examples in C# and .NET

Jimmy Nilsson

Applying Domain-Driven Design and Patterns: With Examples in C# and .NET Jimmy Nilsson Amazon Price: $47.99
List Price: $59.99
Usually ships in 24 hours
By: Addison-Wesley Professional
Amazon Marketplace: 39 new & used starting at $38.94

Buy at Amazon.com

Browse similar items by category:
Subjects -> Computers & Internet -> Computer Science -> Software Engineering -> General AAS
Subjects -> Computers & Internet -> Microsoft -> Networking
Subjects -> Computers & Internet -> Programming -> Languages & Tools -> C#

Customer Reviews:
Total reviews: 16 Average rating: 4.0 of 5

Applying Domain-Driven Design and Patterns 5 out of 5 stars.
0 of 0 people found this review helpful.

The book provides a massive detailed walk through the construction of the domain-driven framework creation. It is in Jimmy Nilsson's conversational tone and that makes the book very interesting.

I do wish there were a few diagrams to tie each chapter together, but that is for the reader to do.

Editorial Review:

Applying Domain-Driven Design and Patterns is the first complete, practical guide to leveraging patterns, domain-driven design, and test-driven development in .NET environments. Drawing on seminal work by Martin Fowler and Eric Evans, Jimmy Nilsson shows how to customize real-world architectures for any .NET application. You'll learn how to prepare domain models for application infrastructure; support business rules; provide persistence support; plan for the presentation layer and UI testing; and design for service orientation or aspect orientation. Nilsson illuminates each principle with clear, well-annotated code examples based on C# 2.0, .NET 2.0, and SQL Server 2005. His examples will be valuable both to C# developers and those working with other .NET languages and databases -- or even with other platforms, such as J2EE.

Microsoft Small Business Server 2003 Unleashed

Eriq Oliver Neale

Microsoft Small Business Server 2003 Unleashed Eriq Oliver Neale Amazon Price: $40.94
List Price: $64.99
Usually ships in 24 hours
By: Sams
Amazon Marketplace: 61 new & used starting at $21.00

Buy at Amazon.com

Browse similar items by category:
Subjects -> Business & Investing -> Small Business & Entrepreneurship -> General
Subjects -> Business & Investing -> Small Business & Entrepreneurship -> General AAS
Subjects -> Computers & Internet -> Microsoft -> Networking

Customer Reviews:
Total reviews: 16 Average rating: 4.5 of 5

Editorial Review:

If you are new to the world of Microsoft Small Business Server 2003, Microsoft Small Business Server 2003 Unleashed can provide you with real-world support experience as you get started or explore your upgraded server. Written and reviewed by Small Business Server MVPs, this book provides valuable coverage of Mac platform integration, as well as the integration of ISA 2004, SharePoint, FrontPage, Exchange, and SQL Server. You will develop a number of new skills, including:

  • Planning SBS installations.
  • Troubleshooting SBS installation problems.
  • Adding additional servers to the SBS network.
  • Troubleshooting common Exchange problems.
  • Working with ISA 2004 in the SBS environment.
  • Troubleshooting common IIS problems in SBS.
  • Working with SharePoint Team Services and the Companyweb interface.
  • Configuring SBS and Macintosh clients for integrating the two platforms.
Make complex networking accessible with Microsoft Small Business Server 2003 Unleashed.

Active Directory for Microsoft Windows Server 2003 Technical Reference (Pro-Technical References)

Stan Reimer, Mike Mulcare

Active Directory  for Microsoft  Windows  Server 2003 Technical Reference (Pro-Technical References) Stan Reimer, Mike Mulcare List Price: $49.99
By: Microsoft Press
Amazon Marketplace: 15 new & used starting at $16.70

Buy at Amazon.com

Browse similar items by category:
Subjects -> Computers & Internet -> Microsoft -> Operating Systems -> Windows - General
Subjects -> Computers & Internet -> Microsoft -> Operating Systems -> General AAS
Subjects -> Computers & Internet -> Microsoft -> Databases

Customer Reviews:
Total reviews: 6 Average rating: 4.0 of 5

Good information, much of it available elsewhere 3 out of 5 stars.
16 of 16 people found this review helpful.

When Windows 2003 was first released, if you were shopping for an Active Directory title, it was to solidify your administrative abilities with the emerging technology prior to implementing what at the time was a new platform. Today, if you're looking for an AD book, you are probably looking more for a reference guide to facilitate either advanced configuration and troubleshooting, or to enhance your understanding of the more "behind the scenes" aspects of the AD.

In 2002 (when this book was published), I could have recommended this title. Without a doubt the book gives good historical information on where AD came from, and provides a solid foundation for the systems AD relies on (DNS), as well as planning your AD configuration, deployment in either a clean or migrated environment, security configuration, and AD object management. Much of the information presented in the domain design, deployment, and security sections however, are either direct reprints or consolidations of already posted (and free) Microsoft documentation, from such titles as Windows 2000 Server Domain Migration Cookbook, Windows Server 2003 Active Directory Domain Rename Tools, Step-by-Step Guide to Kerberos 5 (krb5 1.0) Interoperability, and several other cited Microsoft KB and "Step by Step" articles. These references are not hidden, but mentioned in side-bars throughout the text, and you are quite often encouraged to read those texts in addition to the information in this book.

The layout of this book lends itself well to those learning or solidifying the basic to intermediate points of the technology. Although the title would suggest that this is a good reference, references allow one to look at the index or table of contents for the information they need, and get the answers without having to cross-reference many other topics. Picking a topic, such as application partition creation and management, shows that the information on this is not in one location and in fact requires the reader to have read the preceding topics in order to get a clearer picture. This is not detractive to the value of the book, but a better classification for this would be textbook.

Today, the 2003 AD has been out for many years, more professionals have mastered the topic, and better books are available that provide a less Microsoft-centric take on the AD, as well as proven experience in management in more standard implementations. Instead of this title, look at ISBN 0321228480 "Inside Active Directory Second Edition".

Editorial Review:

This detailed technical reference is ideal for anyone who is implementing Active Directory in Microsoft Windows .NET Server. Written by two experts on Active Directory, this book's primary focus is using Active Directory to solve directory services issues for enterprise clients. It's brimming with concrete, real-world design and implementation information-including answers to all the typical questions a network architect, engineer, or administrator might have about Active Directory in Windows .NET Server.

Page 12 of 200 - Go to page: 1 7 8 9 10 11 12 13 14 15 16 17 23

Return to MagicBeanDip.com

This page was created in 1.5664 seconds.