Programming Web Services with SOAP - Helion
ISBN: 978-05-965-5201-5
stron: 264, Format: ebook
Data wydania: 2001-12-20
Księgarnia: Helion
Cena książki: 109,65 zł (poprzednio: 127,50 zł)
Oszczędzasz: 14% (-17,85 zł)
The web services architecture provides a new way to think about and implement application-to-application integration and interoperability that makes the development platform irrelevant. Two applications, regardless of operating system, programming language, or any other technical implementation detail, communicate using XML messages over open Internet protocols such as HTTP or SMTP. The Simple Open Access Protocol (SOAP) is a specification that details how to encode that information and has become the messaging protocol of choice for Web services.Programming Web Services with SOAP is a detailed guide to using SOAP and other leading web services standards--WSDL (Web Service Description Language), and UDDI (Universal Description, Discovery, and Integration protocol). You'll learn the concepts of the web services architecture and get practical advice on building and deploying web services in the enterprise.This authoritative book decodes the standards, explaining the concepts and implementation in a clear, concise style. You'll also learn about the major toolkits for building and deploying web services. Examples in Java, Perl, C#, and Visual Basic illustrate the principles. Significant applications developed using Java and Perl on the Apache Tomcat web platform address real issues such as security, debugging, and interoperability.Covered topic areas include:
- The Web Services Architecture
- SOAP envelopes, headers, and encodings
- WSDL and UDDI
- Writing web services with Apache SOAP and Java
- Writing web services with Perl's SOAP::Lite
- Peer-to-peer (P2P) web services
- Enterprise issues such as authentication, security, and identity
- Up-and-coming standards projects for web services
Osoby które kupowały "Programming Web Services with SOAP", wybierały także:
- Zen Steve'a Jobsa 29,67 zł, (8,90 zł -70%)
- ASP.NET MVC. Kompletny przewodnik dla programistów interaktywnych aplikacji internetowych w Visual Studio 86,77 zł, (26,90 zł -69%)
- jQuery, jQuery UI oraz jQuery Mobile. Receptury 57,74 zł, (17,90 zł -69%)
- Scratch. Komiksowa przygoda z programowaniem 36,06 zł, (11,90 zł -67%)
- Baltie. Kurs video. Poziom pierwszy. Elementarz programowania w języku wizualnym 59,00 zł, (26,55 zł -55%)
Spis treści
Programming Web Services with SOAP eBook -- spis treści
- Programming Web Services with SOAP
- SPECIAL OFFER: Upgrade this ebook with OReilly
- A Note Regarding Supplemental Files
- Preface
- Audience for This Book
- Structure of This Book
- Conventions
- Comments and Questions
- Acknowledgments
- James
- Doug
- Pavel
- 1. Introducing Web Services
- 1.1. What Is a Web Service?
- 1.2. Web Service Fundamentals
- 1.2.1. What Web Services Look Like
- 1.2.2. Intersection of Business and Programming
- 1.2.3. Just-In-Time Integration
- 1.3. The Web Service Technology Stack
- 1.3.1. Beyond the Stack
- 1.3.2. Discovery
- 1.3.3. Description
- 1.3.4. Packaging
- 1.3.5. Transport
- 1.3.6. Network
- 1.4. Application
- 1.5. The Peer Services Model
- 2. Introducing SOAP
- 2.1. SOAP and XML
- 2.1.1. XML Messaging
- 2.1.2. RPC and EDI
- 2.1.3. The Need for a Standard Encoding
- 2.2. SOAP Messages
- 2.2.1. Envelopes
- 2.2.2. RPC Messages
- 2.2.3. The mustUnderstand Attribute
- 2.2.4. Encoding Styles
- 2.2.5. Versioning
- 2.3. SOAP Faults
- 2.3.1. Standard SOAP Fault Codes
- 2.3.2. MustUnderstand Faults
- 2.3.3. Custom Faults
- 2.4. The SOAP Message Exchange Model
- 2.4.1. Message Paths and Actors
- 2.4.2. The SOAP Routing Protocol
- 2.5. Using SOAP for RPC-Style Web Services
- 2.5.1. Invoking Methods
- 2.5.2. Returning Responses
- 2.5.3. Reporting Errors
- 2.6. SOAPs Data Encoding
- 2.6.1. Understanding the Terminology
- 2.6.2. XML Schemas and xsi:type
- 2.7. SOAP Data Types
- 2.7.1. Multiple References in XML-Encoded Data
- 2.7.2. Structs, Arrays, and Other Compound Types
- 2.7.3. Partially Transmitted Arrays and Sparse Arrays
- 2.7.4. Null Accessors
- 2.8. SOAP Transports
- 2.8.1. SOAP over HTTP
- 2.8.2. Contentious Issues
- 2.1. SOAP and XML
- 3. Writing SOAP Web Services
- 3.1. Web Services Anatomy 101
- 3.1.1. SOAP Implementations and Toolkits
- 3.1.2. Handling SOAP Messages
- 3.1.3. Deploying Web Services
- 3.2. Creating Web Services in Perl with SOAP::Lite
- 3.2.1. Installing SOAP::Lite
- 3.2.2. The Hello Server
- 3.2.3. The Hello Client
- 3.2.4. A Visual Basic Client
- 3.2.5. Changing Transports
- 3.3. Creating Web Services in Java with Apache SOAP
- 3.3.1. Installing Apache SOAP
- 3.3.2. The Hello Server
- 3.3.3. Deployment Descriptor
- 3.3.4. The Hello Client
- 3.3.5. The TCPTunnelGui Tool
- 3.4. Creating Web Services In .NET
- 3.4.1. Installing .NET
- 3.4.2. Introducing .NET
- 3.4.3. Saying Hello
- 3.4.4. Deploying the Service
- 3.4.5. Invoking the Service Using SOAP
- 3.5. Interoperability Issues
- 3.1. Web Services Anatomy 101
- 4. The Publisher Web Service
- 4.1. Overview
- 4.1.1. Publisher Service Security
- 4.2. The Publisher Operations
- 4.3. The Publisher Server
- 4.3.1. The Preamble
- 4.3.2. Data Tables
- 4.3.3. Utility Functions
- 4.3.4. Register a New User
- 4.3.5. Modify User Information
- 4.3.6. User Login
- 4.3.7. Posting an Item
- 4.3.8. Removing Items
- 4.3.9. Browsing
- 4.3.10. Search
- 4.3.11. Deploying the Publisher Service
- 4.4. The Java Shell Client
- 4.4.1. The Authentication Class
- 4.4.2. The Client Class
- 4.4.2.1. Preamble
- 4.4.2.2. Authentication
- 4.4.2.3. User login
- 4.4.2.4. Wrappers to call the remote operations
- 4.4.2.5. The main routine
- 4.4.3. Deploying the Client
- 4.1. Overview
- 5. Describing a SOAP Service
- 5.1. Describing Web Services
- 5.1.1. A Quick Example
- 5.2. Anatomy of a Service Description
- 5.3. Defining Data Types and Structures with XML Schemas
- 5.3.1. Using XML Schemas in WSDL
- 5.4. Describing the Web Service Interface
- 5.5. Describing the Web Service Implementation
- 5.5.1. Binding Web Service Interfaces
- 5.5.2. Describing the Location of a Web Service
- 5.6. Understanding Messaging Patterns
- 5.6.1. Single-Message Exchange
- 5.6.2. Multiple-Message Exchange
- 5.6.3. Complex Multiple-Message Exchanges
- 5.6.4. Intermediaries
- 5.1. Describing Web Services
- 6. Discovering SOAP Services
- 6.1. The UDDI Registry
- 6.1.1. Business Entity
- 6.1.2. Business Services
- 6.1.3. Binding Templates
- 6.1.4. TModels
- 6.1.5. Federated UDDI Registries
- 6.1.6. Private UDDI Registries
- 6.2. The UDDI Interfaces
- 6.2.1. The Publisher Interface
- 6.2.2. The Inquiry Interface
- 6.3. Using UDDI to Publish Services
- 6.3.1. Registration Program
- 6.3.2. How to Register
- 6.3.3. The SOAP Envelope for the Registration
- 6.3.4. Other Issues
- 6.4. Using UDDI to Locate Services
- 6.5. Generating UDDI from WSDL
- 6.5.1. Interface Description
- 6.5.2. Implementation Description
- 6.5.3. Registering
- 6.6. Using UDDI and WSDL Together
- 6.7. The Web Service Inspection Language (WS-Inspection)
- 6.7.1. WS-Inspection Syntax
- 6.1. The UDDI Registry
- 7. Web Services in Action
- 7.1. The CodeShare Service Network
- 7.1.1. Overview
- 7.1.2. Prerequisites
- 7.1.2.1. Fixing the bug in Apache SOAP 2.2
- 7.1.2.2. Compiling Apache SOAP
- 7.2. The Code Share Index
- 7.3. Web Services Security
- 7.3.1. The Security Assertions Markup Language (SAML)
- 7.4. Definitions and Descriptions
- 7.4.1. The Owner Interface
- 7.4.1.1. WSDL port type definition
- 7.4.1.2. Data types
- 7.4.1.3. Messages
- 7.4.1.4. Port type
- 7.4.1.5. Protocol binding
- 7.4.2. The Client Interface
- 7.4.2.1. CodeShare login operation
- 7.4.3. The Login Verification Interface
- 7.4.4. The Master Index Interface
- 7.4.1. The Owner Interface
- 7.5. Implementing the CodeShare Server
- 7.5.1. The Master Index Service
- 7.5.1.1. Operations
- 7.5.1.2. Deployment
- 7.5.2. The Owner Service
- 7.5.3. The Client Service
- 7.5.3.1. Creating SAML assertions
- 7.5.3.2. Java keystores
- 7.5.3.3. Signing the SAML assertion
- 7.5.3.4. The login operation
- 7.5.4. The Verification Service
- 7.5.1. The Master Index Service
- 7.6. Implementing the CodeShare Owner
- 7.6.1. The Owner Module
- 7.6.2. The Server Daemon
- 7.7. Implementing the CodeShare Client
- 7.8. Seeing It in Action
- 7.9. What's Missing from This Picture?
- 7.9.1. Where Is UDDI?
- 7.9.2. Presence and Asynchronous Messaging
- 7.10. Developing CodeShare
- 7.1. The CodeShare Service Network
- 8. Web Services Security
- 8.1. What Is a "Secure" Web Service?
- 8.1.1. Authentication
- 8.1.2. Privacy
- 8.2. Microsoft Passport, Version 1.x and 2.x
- 8.2.1. Drawbacks
- 8.3. Microsoft Passport, Version 3.x
- 8.3.1. Overview of Kerberos
- 8.4. Give Me Liberty or Give Me ...
- 8.5. A Magic Carpet
- 8.6. The Need for Standards
- 8.7. XML Digital Signatures and Encryption
- 8.1. What Is a "Secure" Web Service?
- 9. The Future of Web Services
- 9.1. The Future of Web Development
- 9.1.1. Web Services and Existing Technologies
- 9.2. The Future of SOAP
- 9.3. The Future of WSDL
- 9.3.1. Missing Pieces
- 9.3.2. An Alternative to WSDL
- 9.3.3. Standard Extensions
- 9.4. The Future of UDDI
- 9.4.1. Problems with UDDI
- 9.5. Web Services Battlegrounds
- 9.5.1. Development Tools
- 9.5.2. Killer Services
- 9.5.3. Lucrative Marketplaces
- 9.5.4. The Enterprise
- 9.6. Technologies
- 9.6.1. Agents
- 9.6.2. Quality of Service
- 9.6.3. Privacy
- 9.6.4. Security
- 9.6.5. Trust Management
- 9.6.6. Online Contracts
- 9.6.7. Reliable Messaging
- 9.6.8. Transactions
- 9.6.9. Licensing and Accounting Services
- 9.7. Web Services Rollout
- 9.1. The Future of Web Development
- A. Web Service Standardization
- A.1. Packaging Protocols
- A.2. Description Protocols
- A.3. Discovery Protocols
- A.4. Security Protocols
- A.5. Transport Protocols
- A.6. Routing and Workflow
- A.7. Programming Languages/Platforms
- B. XML Schema Basics
- B.1. Simple and Complex Types
- B.2. Some Examples
- B.2.1. Simple Types
- B.2.2. Complex Types
- B.3. XML Spy
- C. Code Listings
- C.1. Hello World in Perl
- C.2. Hello World Client in Visual Basic
- C.3. Hello World over Jabber
- C.4. Hello World in Java
- C.5. Hello, World in C# on .NET
- C.6. Publisher Service
- C.7. SAML Generation
- C.8. Codeshare
- About the Authors
- Colophon
- SPECIAL OFFER: Upgrade this ebook with OReilly