Computer Science E-259 XML with Java

Lecture 11: Web Services, SOAP 1.2, and WSDL 1.1 10 December 2007 David J. Malan [email protected]

1 Copyright © 2007, David J. Malan . All Rights Reserved.

Last Time XML Schema (Second Edition), Continued ƒ

XML Schema (Second Edition), Continued

2 Copyright © 2007, David J. Malan . All Rights Reserved.

Last Time Simple Types



3 Copyright © 2007, David J. Malan . All Rights Reserved.

Last Time Complex Types: Simple Content 4

Adapted from http://www.w3schools.com/schema/el_extension.asp.

Copyright © 2007, David J. Malan . All Rights Reserved.

Last Time Complex Types: Element-Only Content John Harvard 5 Copyright © 2007, David J. Malan . All Rights Reserved.

Last Time Complex Types: Mixed Content Dear Mr.John Smith. Your order 1032 will be shipped on 2001-07-13. 6

Adapted from http://www.w3schools.com/schema/schema_complex_mixed.asp.

Copyright © 2007, David J. Malan . All Rights Reserved.

Last Time Complex Types: Empty Content

7 Copyright © 2007, David J. Malan . All Rights Reserved.

This Time Agenda ƒ ƒ ƒ ƒ ƒ

Web Services RPCs SOAP 1.2 WSDL 1.1 Axis 1.4

8 Copyright © 2007, David J. Malan . All Rights Reserved.

Web Services History ƒ ƒ

SOAP in 1998 XML-RPC ƒ Dave Winer of UserLand Software, 1998 ƒ http://www.xml-rpc.com/spec

ƒ

SOAP since 1999 ƒ Based on XML-RPC ƒ Version 0.9 released in late 1999 by Microsoft, DevelopMentor, and Dave Winer ƒ Version 1.0 followed soon thereafter ƒ Version 1.1 submitted as a W3C note May 2000 by DevelopMentor, IBM, Lotus, Microsoft, and UserLand Software ƒ IBM and Microsoft release toolkits. IBM donates toolkit to Apache ƒ Many vendors implement SOAP

9 Copyright © 2007, David J. Malan . All Rights Reserved.

Web Services Architecture ƒ

The web services architecture is an evolution of existing technologies ƒ The Internet enables hosts to communicate and information to be published and retrieved ƒ Distributed computing platforms allow programmatic components to communicate ƒ XML closes the barriers between platforms and technologies

10 Copyright © 2007, David J. Malan . All Rights Reserved.

RPCs Remote Procedure Calls ƒ ƒ

ƒ

Two pieces of code (client and server) talk over the network, generally using TCP/IP sockets The client need not be aware that it is not using a local class ƒ Client-side stub implements the service interface and takes care of serializing/marshalling the arguments for transmission over the network. The stub makes the network call and hands the response back to the caller The remote object (server) need not be aware that it is not called by a local class ƒ Server-side skeleton handles deserializing/unmarshalling the arguments and calling the local class, sending back the result to the remote client

11 Copyright © 2007, David J. Malan . All Rights Reserved.

SOAP 1.2 What ƒ ƒ

SOAP (Simple Object Access Protocol) is used to serialize a remote procedure call (RPC) across the network Has its roots in distributed computing technologies ƒ DCOM ƒ CORBA ƒ Java RMI

12 Copyright © 2007, David J. Malan . All Rights Reserved.

SOAP 1.2 What ƒ

ƒ

SOAP is a lightweight mechanism for exchanging structured and typed information between peers in a decentralized, distributed environment using XML SOAP is an XML-based protocol that consists of three parts ƒ An envelope that defines a framework for describing what is in a message and how to process it ƒ A set of encoding rules for expressing instances of application-defined datatypes (i.e., how to serialize data structures) ƒ A convention for representing remote procedure calls and responses

13 Copyright © 2007, David J. Malan . All Rights Reserved.

SOAP 1.2 HTTP Request POST /warehouse/services/Purchasing HTTP/1.0 Content-Type: text/xml; charset=utf-8 Accept: application/soap+xml, application/dime, multipart/related, text/* User-Agent: Axis/1.3 Host: 127.0.0.1 Cache-Control: no-cache Pragma: no-cache SOAPAction: "" Content-Length: 412

14 Copyright © 2007, David J. Malan . All Rights Reserved.

SOAP 1.2 HTTP Response HTTP/1.1 200 OK Server: Apache-Coyote/1.1 Content-Type: text/xml;charset=utf-8 Date: Wed, 13 Apr 2005 14:09:02 GMT Connection: close

15 Copyright © 2007, David J. Malan . All Rights Reserved.

SOAP 1.2 Envelope ƒ

Envelope is the top-level element. It defines the various namespaces used in the message ƒ Header is an optional element used for carrying extra information about authentication, transactions, etc. ƒ Body is the element containing the payload of the message

16 Copyright © 2007, David J. Malan . All Rights Reserved.

SOAP 1.2 Encoding Rules ƒ

The SOAP specification describes how to serialize application-specific data-types into and out of an XML representation ƒ XML Schema primitive types (int, byte, short, boolean, string, float, double, date, time, and URL) are sent as-is ƒ More complicated objects (e.g., Java classes) must have a matching schema and a mechanism for serializing into/out of schema

17 Copyright © 2007, David J. Malan . All Rights Reserved.

SOAP 1.2 SOAP Router ƒ

ƒ

A SOAP router ƒ Listens on the appropriate protocol ƒ Receives SOAP request ƒ Has a binding between service's URN and implementing class ƒ Calls appropriate class to handle request ƒ Returns response to sender Apache provides a SOAP router called “Axis” that is an HTTP servlet that can be deployed in any webserver or servlet container

18 Copyright © 2007, David J. Malan . All Rights Reserved.

WSDL 1.1 What ƒ

ƒ

WSDL (Web Services Description Language) describes ƒ what a web service can do ƒ where it resides ƒ how to invoke it WSDL is usually used with SOAP as a transport protocol, although it can work with other protocols as well

19 Copyright © 2007, David J. Malan . All Rights Reserved.

WSDL 1.1 definitions ... ... ...

what operations does this service provide?

...

how are those operations invoked?

...


20

where is the service? Adapted from http://www.xmethods.net/sd/2001/CurrencyExchangeService.wsdl.

Copyright © 2007, David J. Malan . All Rights Reserved.

WSDL 1.1 message

A message is a single transmission of information going between the two parties; it has multiple parts that have either simple types (primitives) or more complicated types (defined in a schema) 21

Excerpted from http://www.xmethods.net/sd/2001/CurrencyExchangeService.wsdl.

Copyright © 2007, David J. Malan . All Rights Reserved.

WSDL 1.1 portType A portType corresponds to a set of one or more operations, where each operation defines a specific input/output sequence; corresponds to the programmatic notion of an interface

22

Excerpted from http://www.xmethods.net/sd/2001/CurrencyExchangeService.wsdl.

Copyright © 2007, David J. Malan . All Rights Reserved.

WSDL 1.1 binding A binding describes how a portType is implemented over a particular protocol; the soap message body is created using the type encoding specified by the soap specification. In this case, the protocol is RPC-style SOAP 23

Excerpted from http://www.xmethods.net/sd/2001/CurrencyExchangeService.wsdl.

Copyright © 2007, David J. Malan . All Rights Reserved.

WSDL 1.1 service Returns the exchange rate between the two currencies A service is a collection of related endpoints, described by documentation; a port describes the availability of a particular binding at an endpoint 24

Excerpted from http://www.xmethods.net/sd/2001/CurrencyExchangeService.wsdl.

Copyright © 2007, David J. Malan . All Rights Reserved.

WSDL 1.1 types ƒ

25

When a WSDL document declares operations that take more complicated types, XML Schema type definitions are included beneath the WSDL document's definitions element ... Example excerpted from http://www.fas.harvard.edu/~cscie259/distribution/lectures/11/examples11/AddressBook/AddressBook.wsdl.

Copyright © 2007, David J. Malan . All Rights Reserved.

WSDL 1.1 Document Style ƒ ƒ ƒ ƒ

Web service designers/users often think of the XML representation merely as the "wire format" They want RPC-style invocation, with binding to programmatic objects on both sides via serialization But sometimes, we want to just use WSDL/SOAP to send an XML document, without the RPC semantics To do this, we specify in the WSDL file

26 Copyright © 2007, David J. Malan . All Rights Reserved.

WSDL 1.1 Tools ƒ

Toolkits help automate ƒ Generating client code from a WSDL file for invoking the web service it describes ƒ Generating a WSDL file from an object (Java, COM, Visual Basic class)

27 Copyright © 2007, David J. Malan . All Rights Reserved.

Axis 1.4 TaxService

28

Image from http://www.ammai.com/modules.php?op=modload&name=Sections&file=index&req=viewarticle&artid=4&page=4.

Copyright © 2007, David J. Malan . All Rights Reserved.

Axis 1.4 Warehouse

29 Copyright © 2007, David J. Malan . All Rights Reserved.

Axis 1.4 AWS

30 Copyright © 2007, David J. Malan . All Rights Reserved.

Computer Science E-259 XML with Java

Lecture 11: Web Services, SOAP 1.2, and WSDL 1.1 10 December 2007 David J. Malan [email protected]

31 Copyright © 2007, David J. Malan . All Rights Reserved.

SOAP 1.2 What - HUIT Sites Hosting

Apr 13, 2005 - XML with Java. Lecture 11: Web Services, SOAP 1.2, and WSDL 1.1 .... Distributed computing platforms allow programmatic components to ...

115KB Sizes 2 Downloads 216 Views

Recommend Documents

Scamazon.com - HUIT Sites Hosting
Dec 20, 2007 - project4-8.0/ directory from the course's website to your local machine. .... If your account or system ain't so happy, feel free to contact.

Wahoo! - HUIT Sites Hosting
Windows machine, you should instead execute `catalina.bat run` (assuming "%CATALINA_HOME%\bin\" is in your. PATH); alternatively ... http://127.0.0.1:n/. 10 Although you needn't type "http://" to visit most websites with most browsers these days, you

Scamazon.com - HUIT Sites Hosting
Dec 20, 2007 - an “Access Key ID” for Amazon's Web Services immediately, .... Next, proceed to edit project4-8.0/conf/server.xml with your favorite text editor.

Wahoo! - HUIT Sites Hosting
If you opt to develop on a ..... 20 Know that, during the development of this project, you can update your Javadoc by executing ... new StreamSource(new java.io.

build.xml 1/2 - HUIT Sites Hosting
7: Of course, that port cannot already be in use. Nor can it. 8: be the same value you choose for the Connector element's port. 9: 10: Also be sure to set the value ...

build.xml 1/2 - HUIT Sites Hosting
5: Computer Science E-259. 6: .... description="remove class, log, runtime, temp, and work files">. 149: ... 12: Of course, that port cannot already be in use.

build.xml 1/2 - HUIT Sites Hosting
64: call.setTargetEndpointAddress(new java.net.URL(endpoint));. 65: call.setOperationName("processPO");. 66: 67: // invoke the service and return the (PO-ACK) response. 68: return (String) call.invoke(new Object [] { poXmlString });. 69: }. 70: catch

DiagServer.java 1/2 - HUIT Sites Hosting
12: * If you spawn the server on a port already in use, you will be informed. 13: * "Server failed to start: java.net.BindException: Permission denied". 14: * Note ...

Computer Science E-259 - HUIT Sites Hosting
Nov 5, 2007 - All Rights Reserved. n-Tier Enterprise Applications. Typical J2EE Architecture. Client. Presentation. Business Logic. Data. Computer. Laptop.

build.xml 1/1 - HUIT Sites Hosting
Login.java. 1/2 project3-8.0/src/cscie259/project3/wahoo/. 1: package cscie259.project3.wahoo;. 2: 3: import java.io.IOException;. 4: import java.io.PrintWriter;. 5: 6: import javax.servlet.ServletException;. 7: 8: import javax.servlet.http.HttpServl

Syllabus - HUIT Sites Hosting - Harvard University
Oct 15, 2007 - the form [email protected], where username is your FAS username. .... your plan at any point, provided you obtain the staff's approval for any modifications. ... Any of these texts should prove a valuable reference for.

Computer Science E-259 - HUIT Sites Hosting
Nov 5, 2007 - 22. Copyright © 2007, David J. Malan . All Rights Reserved. Java Servlet 2.5. Java Servlet Containers. ▫ Apache Tomcat. ▫ BEA WebLogic Server. ▫ IBM WebSphere Application Server. ▫ JBoss Application Server. ▫ Oracle Applicati

soap-emoji.pdf
mburger. Page 3 of 15. soap-emoji.pdf. soap-emoji.pdf. Open. Extract. Open with. Sign In. Main menu. Displaying soap-emoji.pdf.

Java and SOAP - VirtualPanic!
Instead, the SOAP specification describes important aspects of data content and ... This chapter describes the SOAP Envelope, a structured XML document that carries ... mapping these types to Java classes on both client and server systems.

Soap Holder.pdf
There was a problem previewing this document. Retrying... Download. Connect more apps... Try one of the apps below to open or edit this item. Soap Holder.pdf.

Java and SOAP - VirtualPanic!
well as how to build SOAP-based services in Java. It's written for .... distinguish between namespaces (constant width) and URLs (italic), even though they look ... see the O'Reilly web site at: ..... large user base, the source code is available, an

Soap dispensing device
May 23, 2008 - Sussex (GB). (21) Appl. No.: 12/153,810 .... resiliently mounted retention member 14 and support mem ber 15. The retention member 14 is ...

General Guidelines - InMotion Hosting
Mar 28, 2016 - 12.0 Understanding Mobile Users, Mobile Queries, and Mobile Results ......................................................... 56 ... 12.9 Rating on Your Phone Issues . ...... best hospitals in the U.S. Users can trust medical informati

General Guidelines - InMotion Hosting
Mar 28, 2016 - .doc or .docx (Microsoft Word). • .xls or .xlsx (Microsoft Excel). • .pdf (PDF) files. If you encounter a page with a warning message, such as “Warning-visiting this web site may harm your computer,” or if your antivirus softwa

General Guidelines - InMotion Hosting
Mar 28, 2016 - 4.3 Clear and Satisfying Website Information: Who is Responsible and Customer Service . ...... news pages, forum pages, video pages, pages with error messages, PDFs, images, gossip pages, humor pages, ... We call such.