1 / 19

Java Web Services CSCI 4300

Java Web Services CSCI 4300. Diagrams from the Sun Java Web Services Tutorial, http://java.sun.com/webservices/docs/1.6/tutorial/doc/. What are Web Services?. Business-to-Business (B2B) communication Packaged in XML “SOAP” messages. Example: Travel Agent. Service-Oriented Architecture (SOA).

fausta
Download Presentation

Java Web Services CSCI 4300

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Java Web ServicesCSCI 4300 Diagrams from the Sun Java Web Services Tutorial, http://java.sun.com/webservices/docs/1.6/tutorial/doc/

  2. What are Web Services? • Business-to-Business (B2B) communication • Packaged in XML “SOAP” messages

  3. Example: Travel Agent

  4. Service-Oriented Architecture (SOA) Needs: • Mechanism for discovering services (registry) • Language for specifying service contract (Web service semantic)

  5. Envelope: top-level element, represents entire message Header: optional info to guide delivery and processing by multiple actors, e.g. shipping, logging, accounting Body: contains request / response info Fault: carries error messages <?xml version="1.0"? <soap:Envelope xmlns:soap=…"> <soap:Header> ... ... </soap:Header> <soap:Body> ... ... <soap:Fault> ... ... </soap:Fault> </soap:Body> </soap:Envelope> Simple Object Access Protocol (SOAP)

  6. Interfacing SOAP with Proprietary business process

  7. Example: SOAP over AJAX • Using a “WS” package to handle SOAP encoding

  8. XHttpRequest lifecycle

  9. Java XML Binding (JAXB) • Marshalling: collecting data into XML • Binding: generating Java classes to represent XML

  10. How Binding Works

  11. Old-school remote Java: RMI

  12. Remote Java using Web Services Model (JAX-RPC)

  13. Another View of JAX-RPC • This shows the JAX-RPC runtime and HTTP/SOAP transport • In this case client and server are both Java

  14. Yet Another View • Showing the role of WSDL to coordinate client and server • In his case the client is not necessarily in Java!

  15. Java XML Registry (JAXR) • Java API overlaid on native registry systems • A registry allows location of objects

  16. WSDL (Fujitsu version)

  17. WSDL (Sun version)

  18. UDDI Architecture

  19. Acknowledgements • Webservices strategy: http://www.webservices-strategy.com/ • SOAP/proprietary interface: http://www.ebizq.net • SOAP over AJAX diagrams: http://www.ibm.com/developerworks/webservices/library/ws-wsajax/ • Web services architecture: http://www.w3.org/2003/Talks/0317-ws-intro/ • Fujitsu WDSL diagram: xml.fujitsu.com • RPC diagrams: http://www.onjava.com/pub/a/onjava/2002/04/24/jax-rpc.html • “Figure 1”: http://dev2dev.bea.com/lpt/a/345 • JAX-J2EE: www.vsj.co.uk

More Related