About this product: This is THE guide to UNIX network programming APIs. Whether you write Web servers, client/server applications, or any other network software, you need to understand networking APIS-especially sockets in greater detail than ever before. You need UNIX Network Programming, Volume 1, Third Edition. In this book, the Authors offer unprecedented, start-to-finish guidance on making the most of sockets, the de facto standard for UNIX network programming with APIs - as well as extensive coverage of the X/Open Transport Interface (XTI).
About this product: "TCP/IP sockets in C# is an excellent book for anyone interested in writing network applications using Microsoft .Net frameworks. It is a unique combination of well written concise text and rich carefully selected set of working examples. For the beginner of network programming, it's a good starting book; on the other hand professionals could also take advantage of excellent handy sample code snippets and material on topics like message parsing and asynchronous programming." Adarsh Khare, SDT, .Net Frameworks Team, Microsoft Corporation
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#.
Features *Tutorial-based instruction in key sockets programming techniques complemented by numerous code examples throughout *Discussion moves quickly into the C# Sockets API definition and code examples, desirable for those who want to get up-to-speed quickly *Important coverage of "under the hood" details that developers will find useful when creating and using a socket or a higher level TCP class that utilizes sockets *Includes end-of-chapter exercises to facilitate learning, as well as sample code available for download at the book's companion web site
*Tutorial-based instruction in key sockets programming techniques complemented by numerous code examples throughout
*Discussion moves quickly into the C# Sockets API definition and code examples, desirable for those who want to get up-to-speed quickly
*Important coverage of "under the hood" details that developers will find useful when creating and using a socket or a higher level TCP class that utilizes sockets
*Includes end-of-chapter exercises to facilitate learning, as well as sample code available for download at the book's companion web site
About this product: The Internet allows computers thousands of miles apart to exchange information through programs such as Web browsers, and nearly all of these programs gain access to network communication services through the sockets programming interface. TCP/IP Sockets in C: Practical Guide for Programmers is a quick and affordable way to gain the knowledge and skills needed to quickly develop sophisticated and powerful web-based applications. Written by two experienced networking instructors, the book's focused, tutorial-based approach enables the reader to master the tasks and techniques essential to virtually all client-server projects using sockets in C. Programming concepts are introduced through simple, real-world examples, and are accompanied by line-by-line code commentary that describes the purpose of each part of the program. The book's companion website also contains myriad employable examples of command-based source code discussed throughout the text.
A great deal has changed in the 6 years since the first edition of this book was published. The widespread adoption of IPv6 has led to a new standard for internetworking and the exponential increase of computer processing power have enhanced the efficacy and scope of electronic espionage. Therefore, this edition has amended and expanded outdated sections in accordance with both new advancements and dangers. The book now explains both the IPv6 and IPv4 address schemes as well as how to do sockets programming in the mixed IPv6/IPv4 networks environment. It also details defensive programming strategies in the context of building security-aware distributed systems, and introduces the select() system call from a performance and predictability perspective in large systems.
In summary, the book provides both a general overview of networking concepts to allow readers to synchronize the concepts with terminology, while providing a springboard to more advanced networking topics through the basic application of the latest technological developments. No other resource presents so concisely and effectively the material necessary to get up and running with C sockets programming.
Includes completely new and expanded sections that address the IPv6 network environment, defensive programming, and the select() system call, thereby allowing the reader to program in accordance with the most current standards for internetworking.
Streamlined and concise tutelage in conjunction with line-by-line code commentary allows readers to quickly program web-based applications without having to wade through unrelated and discursive networking tenets.
Grants the reader access to online source code, which the can then be used to directly implement sockets programming procedures.
About this product: The author of the best-selling Java in a Nutshell has created an entire book of real-world Java programming examples that you can learn from. If you learn best "by example," this is the book for you.
This third edition covers Java 1.4 and contains 193 complete, practical examples: over 21,900 lines of densely commented, professionally written Java code, covering 20 distinct client-side and server-side APIs. It includes new chapters on the Java Sound API and the New I/O API. The chapters on XML and servlets have been rewritten to cover the latest versions of the specifications and to demonstrate best practices for Java 1.4. New and updated examples throughout the book demonstrate many other new Java features and APIs.
Java Examples in a Nutshell is a companion volume to Java in a Nutshell, Java Foundation Classes in a Nutshell, and Java Enterprise in a Nutshell. It picks up where those quick references leave off, providing a wealth of examples for both novices and experts. This book doesnt hold your hand; it simply delivers well-commented working examples with succinct explanations to help you learn and explore Java and its APIs.
Java Examples in a Nutshell contains examples that demonstrate:
· Core APIs, including I/O, New I/O, threads, networking, security, serialization, and reflection
· Enterprise APIs, including JDBC (database access), JAXP (XML parsing and transformation), Servlets 2.4, JSP 2.0 (JavaServer Pages), and RMI
The book begins with introductory examples demonstrating structured and object-oriented programming techniques for new Java programmers. A special index at the end of the book makes it easy to look up examples that use a particular Java class or accomplish a desired task. In between, each chapter includes exercises that challenge readers and suggest further avenues for exploration.
About this product: The networking capabilities of the Java platform have been extended considerably since the first edition of the book. This new edition covers version 1.5-1.7, the most current iterations, as well as making the following improvements:
The API (application programming interface) reference sections in each chapter, which describe the relevant parts of each class, have been replaced with (i) a summary section that lists the classes and methods used in the code, and (ii) a ?gotchas? section that mentions nonobvious or poorly-documented aspects of the objects.
In addition, the book covers several new classes and capabilities introduced in the last few revisions of the Java platform. New abstractions to be covered include NetworkInterface, InterfaceAddress, Inet4/6Address, SocketAddress/InetSocketAddress, Executor, and others; extended access to low-level network information; support for IPv6; more complete access to socket options; and scalable I/O. The example code is also modified to take advantage of new language features such as annotations, enumerations, as well as generics and implicit iterators where appropriate.
Most Internet applications use sockets to implement network communication protocols. This book's focused, tutorial-based approach helps the reader master the tasks and techniques essential to virtually all client-server projects using sockets in Java. Chapter 1 provides a genral overview of networking concepts to allow readers to synchronize the concepts with terminology. Chapter 2 introduces the mechanics of simple clients and servers. Chapter 3 covers basic message construction and parsing. Chapter 4 then deals with techniques used to build more robust clients and servers. Chapter 5 (NEW) introduces the scalable interface facilities which were introduced in Java 1.5, including the buffer and channel abstractions. Chapter 6 discusses the relationship between the programming constructs and the underlying protocol implementations in more detail. Programming concepts are introduced through simple program examples accompanied by line-by-line code commentary that describes the purpose of every part of the program. The book's Web site contains many examples of command-based sockets-related code discussed throughout the book. No other resource presents so concisely or so effectively the material necessary to get up and running with Java sockets programming.
KEY FEATURES
* Focused, tutorial-based instruction in key sockets programming techniques allows reader to quickly come up to speed on Java applications. * Concise and up-to-date coverage of the most recent platform (1.7) for Java applications in networking technology * Provides code for all example programs via a companion Web site to let the reader see the important objects and methods in context and to understand the purpose of each line of code.
About this product: Get complete coverage of the latest release of the Certified Information Systems Security Professional (CISSP) exam inside this comprehensive, fully updated resource. Written by the leading expert in IT security certification and training, this authoritative guide covers all 10 CISSP exam domains developed by the International Information Systems Security Certification Consortium (ISC2). You'll find learning objectives at the beginning of each chapter, exam tips, practice exam questions, and in-depth explanations. Designed to help you pass the CISSP exam with ease, this definitive volume also serves as an essential on-the-job reference.
COVERS ALL 10 CISSP DOMAINS:
Information security and risk management
Access control
Security architecture and design
Physical and environmental security
Telecommunications and network security
Cryptography
Business continuity and disaster recovery planning
Legal regulations, compliance, and investigations
Application security
Operations security
THE CD-ROM FEATURES:
Hundreds of practice exam questions
Video training excerpt from the author
E-book
Shon Harris, CISSP, is a security consultant, a former member of the Information Warfare unit in the Air Force, and a contributing writer to Information Security Magazine and Windows 2000 Magazine. She is the author of the previous editions of this book.
The eagerly anticipated update to the bestselling first edition is here!
Facebook's popularity is seemingly unstoppable. The site experienced a huge boom in registered users in the latter half of 2008. It was at that time that Facebook also underwent a radical facelift and introduced numerous changes. Packed with hundreds of screen shots, this anxiously awaited new edition presents you with a thorough update on all the exciting changes to Facebook's interface since the first edition hit the shelves a mere one year ago.
Authored by two Facebook employees, Facebook For Dummies, 2nd Edition, features unique insight and insider knowledge of Facebook that can't be found anywhere else. You'll explore optimum ways to get familiar with Facebook, tips for representing yourself online, best practices for keeping connected, how to run a business on Facebook, and more.
Walks you through creating a profile, navigating the interface, and setting up privacy features
Explains how to find and add friends, fill out your profile, add applications, and upload photos
Discusses ways to join a network or group or use Facebook as a scheduler
Addresses using Facebook to promote your business and buy ad space on Facebook
Put your best face forward and dive in to all the exciting new features that Facebook offers!
About this product: Do you want to get ahead in life?
Climb the ladder to personal success?
The secret, master networker Keith Ferrazzi claims, is in reaching out to other people. As Ferrazzi discovered early in life, what distinguishes highly successful people from everyone else is the way they use the power of relationshipsâso that everyone wins.
In Never Eat Alone, Ferrazzi lays out the specific stepsâand inner mindsetâhe uses to reach out to connect with the thousands of colleagues, friends, and associates on his Rolodex, people he has helped and who have helped him.
The son of a small-town steelworker and a cleaning lady, Ferrazzi first used his remarkable ability to connect with others to pave the way to a scholarship at Yale, a Harvard MBA, and several top executive posts. Not yet out of his thirties, he developed a network of relationships that stretched from Washingtonâs corridors of power to Hollywoodâs A-list, leading to him being named one of Crainâs 40 Under 40 and selected as a Global Leader for Tomorrow by the Davos World Economic Forum.
Ferrazzi's form of connecting to the world around him is based on generosity, helping friends connect with other friends. Ferrazzi distinguishes genuine relationship-building from the crude, desperate glad-handling usually associated with ânetworking.â He then distills his system of reaching out to people into practical, proven principles. Among them:
Donât keep score: Itâs never simply about getting what you want. Itâs about getting what you want and making sure that the people who are important to you get what they want, too.
âPingâ constantly: The Ins and Outs of reaching out to those in your circle of contacts all the timeânot just when you need something.
Never eat alone: The dynamics of status are the same whether youâre working at a corporation or attending a society eventâ âinvisibilityâ is a fate worse than failure.
In the course of the book, Ferrazzi outlines the timeless strategies shared by the worldâs most connected individuals, from Katherine Graham to Bill Clinton, Vernon Jordan to the Dalai Lama.
Chock full of specific advice on handling rejection, getting past gatekeepers, becoming a âconference commando,â and more, Never Eat Alone is destined to take its place alongside How to Win Friends and Influence People as an inspirational classic.
About this product: If you have a new iPhone 3GS, or just updated your 3G with iPhone 3.0, iPhone 3.0: The Missing Manual will bring you up to speed quickly. New York Times tech columnist David Pogue gives you a guided tour of every feature, with lots of tips, tricks, and surprises. You'll learn how to make calls and play songs by voice control, take great photos, keep track of your schedule, and more. This entertaining book offers complete step-by-step instructions for doing everything from setting up and accessorizing your iPhone to troubleshooting. If you want to learn how iPhone 3.0 lets you search your phone, cut, copy, and paste, and lots more, this full-color book is the best, most objective resource available.
Use it as a phone -- save time with things like Visual Voicemail, contact searching, and more
Treat it as an iPod -- listen to music, upload and view photos, and fill the iPhone with TV shows and movies
Take the iPhone online -- get online, browse the Web, read and compose email in landscape, send photos, contacts, audio files, and more
Go beyond the iPhone -- use iPhone with iTunes, sync it with your calendar, and learn about the App Store, where you can select from thousands of iPhone apps
Unlock the full potential of your iPhone with the book that should have been in the box.