Java Enterprise in a Nutshell is an indispensable quick reference for Java programmers who are writing distributed enterprise applications. The book provides fast-paced tutorials on the following Java Enterprise APIs:
Le informazioni nella sezione "Riassunto" possono far riferimento a edizioni diverse di questo titolo.
Kristopher Magnusson is the Open Source Programs Architect at Novell. He edited the original Java Directory Service Interface proposal for JavaSoft in 1996, worked on the Novell JNDI design team as the lead writer, and wrote JNDI sample code and tutorials. He earned a Bachelor's of Science from the University of Utah in 1991 in economics, has been active in the NeXT and open source communities for years, and loves object-oriented design and computing. He lives with his partner, Kristen, in Salt Lake City, where he enjoys community activism, mountain biking, and oenophilia.
David Flanagan is a computer programmer who spends most of his time writing about JavaScript and Java. His books with O'Reilly include Java in a Nutshell, Java Examples in a Nutshell, Java Foundation Classes in a Nutshell, JavaScript: The Definitive Guide, and JavaScript Pocket Reference. David has a degree in computer science and engineering from the Massachusetts Institute of Technology. He lives with his wife and son in the U.S. Pacific Northwest bewteen the cities of Seattle, Washington and Vancouver, British Columbia. David has a simple website at http://www.davidflanagan.com.
Jim Farley is a software engineer, computer scientist, and IT manager. His recent activities have included heading up the engineering group at the Harvard Business School and bringing good things to life at GE's Research and Development center. He's dealt with computing (distributed and otherwise) in lots of different ways, from automated image inspection to temporal reasoning systems. Jim has Bachelor's and Master's degrees in computer systems engineering from Rensselaer Polytechnic Institute.
William Crawford has been developing web-based enterprise applications since 1995, including one of the first web-based electronic medical record systems (at Children's Hospital in Boston) and some of the first enterprise-level uses of Java. He has consulted for a variety of institutional clients, including Boston Children's Hospital, Harvard Medical Center, numerous startups and several Fortune 500 companies. Prior to an acquisition he was CTO of Invantage, Incorporated in Cambridge, MA. He received a degree in history and economics from Yale University. He is the co-author of Java Servlet Programming, 2nd Edition, Java Enterprise in a Nutshell, 2nd Edition, and two forthcoming O'Reilly titles. Will is currently Principal Software Architect at Perceptive Informatics, Inc.Massachusetts, provider of software and services to the pharmaceutical industry. He can be reached at http://www.williamcrawford.info
Preface; Contents of This Book; Related Books; Java Programming Resources Online; Examples Online; Conventions Used in This Book; We’d Like to Hear from You; Acknowledgments; Introducing the Java Enterprise APIs; Chapter 1: Introduction; 1.1 Enterprise Computing Defined; 1.2 Enterprise Computing Demystified; 1.3 The Java Enterprise APIs; 1.4 Enterprise Computing Scenarios; 1.5 Java Enterprise APIs Versus Jini; Chapter 2: JDBC; 2.1 JDBC Architecture; 2.2 JDBC Basics; 2.3 JDBC Drivers; 2.4 Connecting to the Database; 2.5 Statements; 2.6 Results; 2.7 Handling Errors; 2.8 Prepared Statements; 2.9 Metadata; 2.10 Transactions; 2.11 Stored Procedures; 2.12 Escape Sequences; 2.13 JDBC 2.0; Chapter 3: Remote Method Invocation; 3.1 Introduction to RMI; 3.2 Defining Remote Objects; 3.3 Creating the Stubs and Skeletons; 3.4 Accessing Remote Objects as a Client; 3.5 Dynamically Loaded Classes; 3.6 Remote Object Activation; 3.7 RMI and Native Method Calls; 3.8 RMI over IIOP; Chapter 4: Java IDL; 4.1 The CORBA Architecture; 4.2 Creating CORBA Objects; 4.3 Putting It in the Public Eye; 4.4 Finding Remote Objects; 4.5 What If I Don’t Know the Interface?; Chapter 5: Java Servlets; 5.1 The Servlet Life Cycle; 5.2 Servlet Basics; 5.3 Servlet Chaining; 5.4 Custom Servlet Initialization; 5.5 Thread Safety; 5.6 Server-Side Includes; 5.7 Cookies; 5.8 Session Tracking; 5.9 Databases and Non-HTML Content; 5.10 The Servlet API 2.1; Chapter 6: JNDI; 6.1 JNDI Architecture; 6.2 A JNDI Example; 6.3 Introducing the Context; 6.4 Looking Up Objects in a Context; 6.5 The NamingShell Application; 6.6 Listing the Children of a Context; 6.7 Creating and Destroying Contexts; 6.8 Binding Objects; 6.9 Accessing Directory Services; 6.10 Modifying Directory Entries; 6.11 Creating Directory Entries; 6.12 Searching a Directory; Chapter 7: Enterprise JavaBeans; 7.1 A Note on Evolving Standards; 7.2 EJB Roles; 7.3 Transaction Management; 7.4 Implementing a Basic EJB Object; 7.5 Implementing Session Beans; 7.6 Implementing Entity Beans; 7.7 Deploying an Enterprise JavaBeans Object; 7.8 Using an Enterprise JavaBeans Object; 7.9 Changes in EJB 1.1 Specification; Enterprise Reference; Chapter 8: SQL Reference; 8.1 Relational Databases; 8.2 Data Types; 8.3 Schema Manipulation Commands; 8.4 Data Manipulation Commands; 8.5 Functions; 8.6 Return Codes; Chapter 9: RMI Tools; Chapter 10: IDL Reference; 10.1 IDL Keywords; 10.2 Identifiers; 10.3 Comments; 10.4 Basic Data Types; 10.5 Constants and Literals; 10.6 Naming Scopes; 10.7 User-Defined Data Types; 10.8 Exceptions; 10.9 Module Declarations; 10.10 Interface Declarations; Chapter 11: CORBA Services Reference; 11.1 Naming Service; 11.2 Security Service; 11.3 Event Service; 11.4 Persistent Object Service; 11.5 Life Cycle Service; 11.6 Concurrency Control Service; 11.7 Externalization Service; 11.8 Relationship Service; 11.9 Transaction Service; 11.10 Query Service; 11.11 Licensing Service; 11.12 Property Service; 11.13 Time Service; 11.14 Trading Service; 11.15 Collection Service; Chapter 12: Java IDL Tools; API Quick Reference; Chapter 13: The java.rmi Package; Chapter 14: The java.rmi.activation Package; Chapter 15: The java.rmi.dgc Package; Chapter 16: The java.rmi.registry Package; Chapter 17: The java.rmi.server Package; Chapter 18: The java.sql Package; Chapter 19: The javax.ejb Package; Chapter 20: The javax.ejb.deployment Package; Chapter 21: The javax.jms Package; Chapter 22: The javax.naming Package; Chapter 23: The javax.naming.directory Package; Chapter 24: The javax.naming.spi Package; Chapter 25: The javax.servlet Package; Chapter 26: The javax.servlet.http Package; Chapter 27: The javax.sql Package; Chapter 28: The javax.transaction Package; Chapter 29: The javax.transaction.xa Package; Chapter 30: The org.omg.CORBA Package; Chapter 31: The org.omg.CORBA.DynAnyPackage Package; Chapter 32: The org.omg.CORBA.ORBPackage Package; Chapter 33: The org.omg.CORBA.portable Package; Chapter 34: The org.omg.CORBA.TypeCodePackage Package; Chapter 35: The org.omg.CosNaming Package; Chapter 36: The org.omg.CosNaming.NamingContextPackage Package; Chapter 37: Class, Method, and Field Index; 37.1 Symbols; 37.2 A; 37.3 B; 37.4 C; 37.5 D; 37.6 E; 37.7 F; 37.8 G; 37.9 H; 37.10 I; 37.11 J; 37.12 K; 37.13 L; 37.14 M; 37.15 N; 37.16 O; 37.17 P; 37.18 Q; 37.19 R; 37.20 S; 37.21 T; 37.22 U; 37.23 V; 37.24 W; 37.25 X; Colophon;
Le informazioni nella sezione "Su questo libro" possono far riferimento a edizioni diverse di questo titolo.
EUR 3,53 per la spedizione in U.S.A.
Destinazione, tempi e costiEUR 32,74 per la spedizione da Cile a U.S.A.
Destinazione, tempi e costiDa: More Than Words, Waltham, MA, U.S.A.
Condizione: Very Good. . . All orders guaranteed and ship within 24 hours. Before placing your order for please contact us for confirmation on the book's binding. Check out our other listings to add to your order for discounted shipping. Codice articolo BOS-M-01h-01582
Quantità: 1 disponibili
Da: SecondSale, Montgomery, IL, U.S.A.
Condizione: Acceptable. Item in very good condition! Textbooks may not include supplemental items i.e. CDs, access codes etc. Codice articolo 00072112222
Quantità: 1 disponibili
Da: SecondSale, Montgomery, IL, U.S.A.
Condizione: Good. Item in good condition. Textbooks may not include supplemental items i.e. CDs, access codes etc. Codice articolo 00081234934
Quantità: 1 disponibili
Da: Wonder Book, Frederick, MD, U.S.A.
Condizione: As New. Like New condition. A near perfect copy that may have very minor cosmetic defects. Codice articolo K10A-00157
Quantità: 1 disponibili
Da: Wonder Book, Frederick, MD, U.S.A.
Condizione: Very Good. Very Good condition. A copy that may have a few cosmetic defects. May also contain light spine creasing or a few markings such as an owner's name, short gifter's inscription or light stamp. Bundled media such as CDs, DVDs, floppy disks or access codes may not be included. Codice articolo Y05I-00337
Quantità: 1 disponibili
Da: HPB-Ruby, Dallas, TX, U.S.A.
paperback. Condizione: Very Good. Connecting readers with great books since 1972! Used books may not include companion materials, and may have some shelf wear or limited writing. We ship orders daily and Customer Service is our top priority! Codice articolo S_428796491
Quantità: 1 disponibili
Da: Alien Bindings, BALTIMORE, MD, U.S.A.
Softcover. Condizione: Very Good. No Jacket. First Edition. Very Good condition. The former owner's name is marked out on the top edge of the text block and on the title page; otherwise, the book is Like New condition. The covers are in great shape. The interior pages are clean and unmarked. The book will be carefully packaged for shipment for protection from the elements. USPS electronic tracking number issued free of charge. Codice articolo 14525
Quantità: 1 disponibili
Da: WorldofBooks, Goring-By-Sea, WS, Regno Unito
Paperback. Condizione: Very Good. The book has been read, but is in excellent condition. Pages are intact and not marred by notes or highlighting. The spine remains undamaged. Codice articolo GOR010488340
Quantità: 1 disponibili
Da: WorldofBooks, Goring-By-Sea, WS, Regno Unito
Paperback. Condizione: Fair. A readable copy of the book which may include some defects such as highlighting and notes. Cover and pages may be creased and show discolouration. Codice articolo GOR011574127
Quantità: 1 disponibili
Da: AwesomeBooks, Wallingford, Regno Unito
Condizione: Very Good. This book is in very good condition and will be shipped within 24 hours of ordering. The cover may have some limited signs of wear but the pages are clean, intact and the spine remains undamaged. This book has clearly been well maintained and looked after thus far. Money back guarantee if you are not satisfied. See all our books here, order more than 1 book and get discounted shipping. . Codice articolo 7719-9781565924833
Quantità: 2 disponibili