Cargando…

Learning network programming with Java : harness the hidden power of Java to build network-enabled applications with lower network traffic and faster processes /

Annotation

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: Reese, Richard M. (Autor)
Formato: Electrónico eBook
Idioma:Inglés
Publicado: Birmingham, UK : Packt Publishing, 2015.
Colección:Community experience distilled.
Temas:
Acceso en línea:Texto completo (Requiere registro previo con correo institucional)

MARC

LEADER 00000cam a2200000 i 4500
001 OR_ocn935744766
003 OCoLC
005 20231017213018.0
006 m o d
007 cr unu||||||||
008 160122s2015 enka o 001 0 eng d
040 |a UMI  |b eng  |e rda  |e pn  |c UMI  |d TEFOD  |d N$T  |d IDEBK  |d VT2  |d YDXCP  |d COO  |d OCLCF  |d DEBSZ  |d NLE  |d DEBBG  |d OCLCQ  |d UPM  |d CEF  |d OCLCQ  |d UKMGB  |d OCLCQ  |d UAB  |d UKAHL  |d RDF  |d OCLCO  |d NZAUC  |d OCLCQ  |d OCLCO 
015 |a GBB6G3490  |2 bnb 
016 7 |a 018010595  |2 Uk 
019 |a 933441983  |a 933537841  |a 958945192 
020 |a 9781785882562  |q (electronic bk.) 
020 |a 1785882562  |q (electronic bk.) 
020 |a 1785885472  |q (Trade Paper) 
020 |a 9781785885471  |q (Trade Paper) 
020 |z 9781785885471 
024 3 |a 9781785885471 
029 1 |a DEBBG  |b BV043968714 
029 1 |a DEBSZ  |b 473885026 
029 1 |a DEBSZ  |b 485792222 
029 1 |a GBVCP  |b 882848461 
029 1 |a UKMGB  |b 018010595 
035 |a (OCoLC)935744766  |z (OCoLC)933441983  |z (OCoLC)933537841  |z (OCoLC)958945192 
037 |a CL0500000706  |b Safari Books Online 
037 |a 3CB702BD-2735-4B67-BFBB-B21A38721312  |b OverDrive, Inc.  |n http://www.overdrive.com 
050 4 |a QA76.73.J38 
072 7 |a COM  |x 051280  |2 bisacsh 
082 0 4 |a 005.133  |2 23 
049 |a UAMI 
100 1 |a Reese, Richard M.,  |e author. 
245 1 0 |a Learning network programming with Java :  |b harness the hidden power of Java to build network-enabled applications with lower network traffic and faster processes /  |c Richard M. Reese. 
264 1 |a Birmingham, UK :  |b Packt Publishing,  |c 2015. 
300 |a 1 online resource (1 volume) :  |b illustrations 
336 |a text  |b txt  |2 rdacontent 
337 |a computer  |b c  |2 rdamedia 
338 |a online resource  |b cr  |2 rdacarrier 
490 1 |a Community experience distilled 
588 0 |a Online resource; title from cover page (Safari, viewed January 21, 2016). 
500 |a Includes index. 
520 8 |a Annotation  |b Harness the hidden power of Java to build network-enabled applications with lower network traffic and faster processesAbout This Book Learn to deliver superior server-to-server communication through the networking channels Gain expertise of the networking features of your own applications to support various network architectures such as client/server and peer-to-peer Explore the issues that impact scalability, affect security, and allow applications to work in a heterogeneous environmentWho This Book Is ForLearning Network Programming with Java is oriented to developers who wish to use network technologies to enhance the utility of their applications. You should have a working knowledge of Java and an interest in learning the latest in network programming techniques using Java. No prior experience with network development or special software beyond the Java SDK is needed. Upon completion of the book, beginner and experienced developers will be able to use Java to access resources across a network and the Internet. What You Will Learn Connect to other applications using sockets Use channels and buffers to enhance communication between applications Access network services and develop client/server applications Explore the critical elements of peer-to-peer applications and current technologies available Use UDP to perform multicasting Address scalability through the use of core and advanced threading techniques Incorporate techniques into an application to make it more secure Configure and address interoperability issues to enable your applications to work in a heterogeneous environmentIn DetailNetwork-aware applications are becoming more prevalent and play an ever-increasing role in the world today. Connecting and using an Internet-based service is a frequent requirement for many applications. Java provides numerous classes that have evolved over the years to meet evolving network needs. These range from low-level socket and IP-based approaches to those encapsulated in software services. This book explores how Java supports networks, starting with the basics and then advancing to more complex topics. An overview of each relevant network technology is presented followed by detailed examples of how to use Java to support these technologies. We start with the basics of networking and then explore how Java supports the development of client/server and peer-to-peer applications. The NIO packages are examined as well as multitasking and how network applications can address practical issues such as security. A discussion on networking concepts will put many network issues into perspective and let you focus on the appropriate technology for the problem at hand. The examples used will provide a good starting point to develop similar capabilities for many of your network needs. Style and approachEach network technology's terms and concepts are introduced first. This is followed up with code examples to explain these technologies. Many of the examples are supplemented with alternate Java 8 solutions when appropriate. Knowledge of Java 8 is not necessary but these examples will help you better understand the power of Java 8. 
505 0 |a Cover; Copyright; Credits; About the Author; About the Reviewer; www.PacktPub.com; Table of Contents; Preface; Chapter 1: Getting Started with Network Programming; Network addressing using the InetAddress class; NIO support; Using the URLConnection class; Using the URLConnection class with buffers and channels; The client/server architecture; Creating a simple echo server; Creating a simple echo client; Using Java 8 to support the echo server and client; UDP and multicasting; Creating a multicast server; Creating the multicast client; Scalability; Creating a threaded server 
505 8 |a Using the threaded serverSecurity; Creating a SSL server; Creating an SSL client; Generating secure keys; Summary; Chapter 2: Network Addressing; Networking basics; Understanding network basics; Network architectures and protocols; Using the NetworkInterface class; Getting a MAC address; Getting a specific MAC address; Getting multiple MAC addresses; Network addressing concepts; URL/URI/URN; Using the URI class; Creating URI instances; Splitting apart a URI; Using the URL class; Creating URL instances; Splitting apart a URL; IP addresses and the InetAddress class 
505 8 |a Obtaining information about an addressAddress scoping issues; Testing reachability; Introducing the Inet4Address; Private addresses in IPv4; IPv4 address types; The Inet4Address class; Special IPv4 addresses; Introducing the Inet6Address class; Private addresses in IPv6; The Inet6Address class; Special IPv6 addresses; Testing for the IP address type; Using IPv4-compatible IPv6 addresses; Controlling network properties; Summary; Chapter 3: NIO Support for Networking; Java NIO; Introduction to buffers; Using channels with a time server; Creating a time server; Creating a time client 
505 8 |a The chat server/client applicationsThe chat server; The chat client; Server/client interaction; The HelperMethods class; Handling variable length messages; Running the chat server/client application; Handling multiple clients; The parts server; The parts client handler; The parts client; Running the parts client/server; Asynchronous socket channels; Creating the asynchronous server socket channel server; Creating the asynchronous socket channel client; Other buffer operations; Bulk data transfer; Using a view; Using read-only buffers; Controlling socket options; Summary 
505 8 |a Chapter 4: Client/Server DevelopmentThe HTTP protocol structure; The nature of HTTP messages; Initial request line format; Header lines; Message body; Client/Server interaction example; Java socket support for HTTP client/server applications; Building a simple HTTP server; Building a simple HTTP client; Client/server development using standard Java classes; Using the HttpURLConnection class; URL encoding; Using the HTTPServer class; Implementing a simple HTTPServer class; Managing response headers; Open source Java HTTP servers; Server configuration; Handling cookies; Summary 
590 |a O'Reilly  |b O'Reilly Online Learning: Academic/Public Library Edition 
650 0 |a Java (Computer program language) 
650 0 |a Computer networks. 
650 2 |a Computer Communication Networks 
650 6 |a Java (Langage de programmation) 
650 6 |a Réseaux d'ordinateurs. 
650 7 |a COMPUTERS  |x Programming Languages  |x Java.  |2 bisacsh 
650 7 |a Computer networks  |2 fast 
650 7 |a Java (Computer program language)  |2 fast 
830 0 |a Community experience distilled. 
856 4 0 |u https://learning.oreilly.com/library/view/~/9781785885471/?ar  |z Texto completo (Requiere registro previo con correo institucional) 
938 |a Askews and Holts Library Services  |b ASKH  |n AH29875124 
938 |a EBSCOhost  |b EBSC  |n 1131995 
938 |a ProQuest MyiLibrary Digital eBook Collection  |b IDEB  |n cis33444036 
938 |a YBP Library Services  |b YANK  |n 12762880 
994 |a 92  |b IZTAP