Presentation is loading. Please wait.

Presentation is loading. Please wait.

1 Web Services Based partially on Sun Java Tutorial at Also, XML, Java and the Future of The Web, Jon Bosak. And WSDL.

Similar presentations


Presentation on theme: "1 Web Services Based partially on Sun Java Tutorial at Also, XML, Java and the Future of The Web, Jon Bosak. And WSDL."— Presentation transcript:

1 1 Web Services Based partially on Sun Java Tutorial at http://java.sun.com/webservices/ Also, XML, Java and the Future of The Web, Jon Bosak. And WSDL Tutorial at: http://www.w3schools.com/wsdl/

2 2 Netprog 2002 - HTTP World-Wide Web (Tim Berners-Lee & Cailliau ’92)

3 3 Netprog 2002 - HTTP Topics What are Web Services?What are Web Services? XML – Extensible Markup LanguageXML – Extensible Markup Language WSDL – Web Service Definition LanguageWSDL – Web Service Definition Language Java APIs for Web ServicesJava APIs for Web Services –XML Processing –XML Messaging (SOAP) –XML Registries –XML-based RPC (SOAP)

4 4 Netprog 2002 - HTTP What are Web Services? Services available via the Web.Services available via the Web. Meant mainly for application to application communication (as opposed to users directly)Meant mainly for application to application communication (as opposed to users directly) –Enables Business-to-Business transactions. –Toward a “Semantic Web”. E.g., a web service is contacted on a URL using the SOAP protocol over HTTP.E.g., a web service is contacted on a URL using the SOAP protocol over HTTP.

5 5 Netprog 2002 - HTTP Web Service Examples A stock quote service.A stock quote service. –An application requires the current value of a stock, the web service returns it. A route finder for delivery of goods.A route finder for delivery of goods. –Given an initial and a final location, find the most cost-effective delivery route. A weather service, a map service, a web search service…A weather service, a map service, a web search service… –any composition of Web services.

6 6 Netprog 2002 - HTTP HTML Limitations Lack of Extensibility No new tags/attributes allowed. Fixed Tag Structure Emphasis on presentation in markup. No Validation No data-checking or types. In contrast to SGML (Standard Generalized Markup Language). But SGML is too complex to be appealing. So, XML comes to the rescue.

7 7 Netprog 2002 - HTTP What is XML? Extensible Markup Language.Extensible Markup Language. HTML++, SGML--.HTML++, SGML--. Document Type Definitions (DTD) precisely define valid tags and their grammar.Document Type Definitions (DTD) precisely define valid tags and their grammar. Not backward compatible with HTML.Not backward compatible with HTML. System-independent and vendor- independent.System-independent and vendor- independent. Product of the World Wide Web Consortium (W3C), trademarked by MIT.Product of the World Wide Web Consortium (W3C), trademarked by MIT.

8 8 Netprog 2002 - HTTP XML Sample Why I am Overworked Why I am Overworked Fred Fred Smith Smith Jones and Associates Jones and Associates This is the abstract This is the abstract </PUBLICATION>

9 9 Netprog 2002 - HTTP XML DTD Sample <!DOCTYPE PUBLICATION <!DOCTYPE PUBLICATION [ [ <!ELEMENT AUTHOR (FIRSTNAME, LASTNAME, <!ELEMENT AUTHOR (FIRSTNAME, LASTNAME, (UNIVERSITY | COMPANY)?)> (UNIVERSITY | COMPANY)?)> ]> ]>

10 10 Netprog 2002 - HTTP What Makes XML Portable? The schema (DTD) is associated with a document which allows to perform validation on the document.The schema (DTD) is associated with a document which allows to perform validation on the document. Human-readable/writable.Human-readable/writable. Independent of presentation (formatting).Independent of presentation (formatting).

11 11 Netprog 2002 - HTTP Syntactic vs Semantic Interoperability While XML is portable, communicating parties still need to agree on:While XML is portable, communicating parties still need to agree on: –Document type definitions –Meaning of tags –“Operations” on data (interfaces). –Meaning of those operations. Semantic interoperability is still a problem!Semantic interoperability is still a problem!

12 12 Netprog 2002 - HTTP What is WSDL? Web Services Description LanguageWeb Services Description Language WSDL is written in XMLWSDL is written in XML WSDL is an XML documentWSDL is an XML document WSDL is used to describe Web servicesWSDL is used to describe Web services –What operations does the service expose? WSDL is also used to locate Web servicesWSDL is also used to locate Web services –Where is the web service located?

13 13 Netprog 2002 - HTTP WSDL Major Elements ElementDefines <portType> The operations performed by the web service <message> The messages used by the web service <types> The data types used by the web service <binding> The communication protocols used by the web service

14 14 Netprog 2002 - HTTP WSDL Structure <definitions> definition of types... definition of types... definition of a message. definition of a message. definition of a port... definition of a port... definition of a binding definition of a binding </definitions>

15 15 Netprog 2002 - HTTP WSDL Sample Fragment </message> </portType>

16 16 Netprog 2002 - HTTP WSDL Ports The element is the most important WSDL element.The element is the most important WSDL element. It defines a web service, the operations that can be performed, and the messages that are involved.It defines a web service, the operations that can be performed, and the messages that are involved. The element can be compared to a function library (or a module, or a class) in a traditional programming language.The element can be compared to a function library (or a module, or a class) in a traditional programming language.

17 17 Netprog 2002 - HTTP WSDL Messages The element defines the data elements of an operation.The element defines the data elements of an operation. Each messages can consist of one or more parts. The parts can be compared to the parameters of a function call in a traditional programming language.Each messages can consist of one or more parts. The parts can be compared to the parameters of a function call in a traditional programming language.

18 18 Netprog 2002 - HTTP WSDL Types The element defines the data type that are used by the web service.The element defines the data type that are used by the web service. For maximum platform neutrality, WSDL uses XML Schema syntax to define data types.For maximum platform neutrality, WSDL uses XML Schema syntax to define data types.

19 19 Netprog 2002 - HTTP WSDL Bindings The element defines the message format and protocol details for each port.The element defines the message format and protocol details for each port.

20 20 Netprog 2002 - HTTP WSDL Operation Types TypeDefinition One-way The operation can receive a message but will not return a response Request-response The operation can receive a request and will return a response Solicit-response The operation can send a request and will wait for a response Notification The operation can send a message but will not wait for a response

21 21 Netprog 2002 - HTTP WSDL Sample Binding <soap:binding style="document“ transport= "http://schemas.xmlsoap.org/soap/http" /> "http://schemas.xmlsoap.org/soap/http" /> </binding>

22 22 Netprog 2002 - HTTP Java APIs for XML JAXP -- Java API for XML ProcessingJAXP -- Java API for XML Processing –processes XML documents using various parsers JAX-RPC -- Java API for XML-based RPCJAX-RPC -- Java API for XML-based RPC –sends SOAP method calls to remote parties over the Internet and receives the results JAXM -- Java API for XML MessagingJAXM -- Java API for XML Messaging –sends SOAP messages over the Internet JAXR -- Java API for XML RegistriesJAXR -- Java API for XML Registries –provides a standard way to access business registries and share information

23 23 Netprog 2002 - HTTP JAX-RPC and SOAP JAX-RPC -- Java API for XML-based RPC.JAX-RPC -- Java API for XML-based RPC. SOAP – Simple Object Access ProtocolSOAP – Simple Object Access Protocol In JAX-RPC, a remote procedure call is represented by an XML-based protocol such as SOAP.In JAX-RPC, a remote procedure call is represented by an XML-based protocol such as SOAP. The SOAP specification defines envelope structure, encoding rules, and a convention for representing remote procedure calls and responses.The SOAP specification defines envelope structure, encoding rules, and a convention for representing remote procedure calls and responses. These calls and responses are transmitted as SOAP messages over HTTP.These calls and responses are transmitted as SOAP messages over HTTP.

24 24 Netprog 2002 - HTTP JAX-RPC -- SOAP JAX-RPC hides this complexity from the application developer.JAX-RPC hides this complexity from the application developer. On the server side, the developer specifies the remote procedures by defining methods in an interface.On the server side, the developer specifies the remote procedures by defining methods in an interface. The developer also codes one or more classes that implement those methods.The developer also codes one or more classes that implement those methods. Client programs create a proxy, a local object representing the service, and then simply invokes methods on the proxy.Client programs create a proxy, a local object representing the service, and then simply invokes methods on the proxy.

25 25 Netprog 2002 - HTTP JAX-RPC -- Java API for XML-based RPC A JAX-RPC client can access a Web service that is not running on the Java platform and vice versa.A JAX-RPC client can access a Web service that is not running on the Java platform and vice versa. This flexibility is possible because JAX- RPC uses technologies defined by the World Wide Web Consortium (W3C): HTTP, SOAP, and WSDL.This flexibility is possible because JAX- RPC uses technologies defined by the World Wide Web Consortium (W3C): HTTP, SOAP, and WSDL.

26 26 Netprog 2002 - HTTP HelloWorld Example

27 27 Netprog 2002 - HTTP Downloading and Running the HelloWorld Example Detailed instructions for running the HelloWorld example can be found at:Detailed instructions for running the HelloWorld example can be found at: http://java.sun.com/webservices/docs/1.0/ tutorial/doc/JAXRPC3.html


Download ppt "1 Web Services Based partially on Sun Java Tutorial at Also, XML, Java and the Future of The Web, Jon Bosak. And WSDL."

Similar presentations


Ads by Google