java technologies web services
play

Java Technologies Web Services The Context We are in the context - PowerPoint PPT Presentation

Java Technologies Web Services The Context We are in the context of developing distributed business components that must be shared by various applications. EJB components are dedicated to the Java EE environment inaccessible to a PHP


  1. Java Technologies Web Services

  2. The Context ● We are in the context of developing distributed business components that must be shared by various applications. ● EJB components are dedicated to the Java EE environment → inaccessible to a PHP app. ● How to expose a functionality in an heterogeneous (mixed) environment? – independent of platform, vendor, technology ● How to locate and invoke this functionality? – similar to using EE resources via JNDI

  3. What is a Service? An act of helpful activity ● The supplying of utilities or commodities, as water, electricity, or gas, required or demanded by the public. ● The providing of accommodation and activities required by the public, as maintenance, repair, etc. ● The supplying or a supplier of public communication and transportation: telephone service, bus service. Someone is offering: how can you offer a service? Someone is using it: how can you use a service? Protocols are needed

  4. Service Oriented Architecture OASIS (the Organization for the Advancement of Structured Information Standards): “A paradigm for organizing and utilizing distributed capabilities that may be under the control of different ownership domains. It provides a uniform means to offer, discover, interact with and use capabilities to produce desired effects consistent with measurable preconditions and expectations.”

  5. Distributed Systems Implementations Proprietary or technology-specific ● CORBA : Common Object Request Broker Architecture (Object Management Group) ● Java RMI : Java Remote Method Invocation (Sun) ● DCE : Distributed Computing Environment (Open Group) ● DCOM : Distributed Component Object Model (Microsoft) ● WCF : Windows Communication Foundation (Microsoft) Web Services → Interoperability over custom integration

  6. Web Services ● Web services are client and server applications that communicate over HTTP in a standard manner . ● Provide a standard means of interoperating between software applications running on a variety of platforms and frameworks → Interoperability . – Application-to-Application (A2A) → EAI – Business-to-Business (B2B) → JBI ● Can be combined in a loosely coupled way to achieve complex operations → Extensibility – Web Service [Automated] Composition, Mash-up – Composition languages, for example: BPEL

  7. How Should a Web Service Work?

  8. Web Service Protocols

  9. Simple Object Access Protocol (SOAP) Request Message <soap:Envelope xmlns:m="http://demo/ ..."> <soap:Body> <m:sayHelloRequest> <name>duke</name> </m:sayHelloRequest> </soap:Body> </soap:Envelope> Response Message <soap:Envelope xmlns:m="http://demo/ ..."> <soap:Body> <m:sayHelloResponse> <return>Hello duke !</return> </m:sayHelloResponse> </soap:Body> </soap:Envelope>

  10. Web Service Description Language (WSDL) < message name="sayHelloRequest"> A message corresponds to an <part name="parameters" operation, containing the information type="xs:string"/> needed to perform the operation. </message> < message name="sayHelloResponse"> <part name="parameters" type="xs:string"/> </message> A portType defines a Web service, < portType name="Hello"> the operations that can be <operation name="sayHello"> performed, and the messages that <input message="sayHelloRequest"/> are used to perform the operation. <output message="sayHelloResponse"/> </operation> </portType> < service name="HelloWorldService"> <port name="HelloWorldServicePort"> <soap:address location="http://localhost:8080/WebApp/HelloWorldService"/> </port> The WSDL describes services as </service> collections of network endpoints , or ports .

  11. Universal Description, Discovery and Integration (UDDI) ● Service Broker: directory service where businesses can register and search for Web services. – White Pages: address, contact, known identifiers; – Yellow Pages: industrial categorizations based on standard taxonomies; – Green Pages: technical information about services exposed by the business. ● The provider publishes the WSDL to UDDI and the requester can join to it using SOAP. ● Java API for XML Registries (JAXR)

  12. Types of Web Services ● “Big” Web Services – Based on XML protocols: SOAP, WSDL, UDDI – High level of standardization → QoS – JAX-WS: The Java API for XML Web Services ● RESTful Web Services – Representational State Transfer (REST) – Simple, suited for basic, ad hoc integration scenarios, using HTTP protocol – JAX-RS : based on the Jersey Project.

  13. Creating a Web Service with JAX-WS import javax.jws.*; Marks a Java class as implementing @WebService(serviceName="Greeting") a Web Service, or a Java interface as defining a Web Service interface. public class Hello { @WebMethod public String sayHello(String name) { return "Hello " + name + "!"; } @WebMethod(operationName="sayHi") public String operation( @WebParam(name = "name") String param) { return "Hi " + param + "!"; } } Testing the service in GlassFish http://localhost:8080/HelloApp/Greeting?Tester

  14. A note for NetBeans/GF users ● The Web Service Client wizard in the IDE parses the WSDL file when generating a web service client from a web service or WSDL file. Modify the IDE netbeans.conf : netbeans_default_options = "... -J-Djavax.xml.accessExternalSchema=all " ● When deploying to GlassFish you need to enable access to external schema to generate a test client Modify: /glassfish/domains/domain1/config/domain.xml <java-config> ... <jvm-options> -Djavax.xml.accessExternalSchema=all </jvm-options> </java-config> ● Or... In jre/lib create the file jaxp.properties , containing: javax.xml.accessExternalSchema=all

  15. Understanding How Things Work

  16. Creating a Client for the WS ● Generating the artefacts (→ Web Service Client) @WebServiceClient(name = "Greeting", wsdlLocation = "http://localhost:8080/HelloApp/Greeting?WSDL") public class Greeting extends Service { // JAX-WS generated code @WebEndpoint(name = "HelloPort") public Hello getHelloPort() { return ...; } } ● Using the service in an application client public class HelloClient { public static void main(String[] args) throws Exception { Greeting service = new Greeting(); Hello hello = helloService.getHelloPort(); System.out.println(hello.sayHello("duke")); }

  17. Using the WS in a Servlet @WebServlet(name="HelloServlet", urlPatterns={"/HelloServlet"}) public class HelloServlet extends HttpServlet { //------------------------------------------------------------ @WebServiceRef private Greeting service; //------------------------------------------------------------ protected void doGet(HttpServletRequest request, HttpServletResponse response) { ... out.println("<p>" + sayHello("world") + "</p>"); ... } private String sayHello(String arg) { helloservice.endpoint.Hello hello = service.getHelloPort(); return hello.sayHello(arg); } }

  18. WebServices and EJBs ● A WebService might use an EJB @WebService (serviceName = "MyWebService") public class MyWebService { @EJB private MySessionBean ejbRef; @WebMethod(operationName = "businessMethod") public void businessMethod() { ejbRef.businessMethod(); } } ● A WebService might be a stateless bean @WebService (serviceName = "MyWebService") @Stateless public class MyWebService { … }

  19. Types Supported by JAX-WS ● JAX-WS delegates the mapping of Java programming language types to and from XML definitions to JAXB (Java API for XML Binding) ● Not every data type in the Java language can be used as a method parameter or return type in JAX-WS. ● Examples of XSD schema-to-Java bindings: – xsd:string ↔ java.lang.String – xsd:integer ↔ java.math.BigInteger – xsd:base64Binary ↔ byte[], etc. – xs:anyType ↔ java.lang.Object, etc.

  20. Message Handlers ● A message handler provides a mechanism for intercepting the SOAP message in both the request and response of the Web Service. – pre-processing or post-processing of the message, – improve the performance using a cache, etc ● JAX-WS supports two types of handlers: – SOAP handlers : can access the entire SOAP message, including the message headers and body. – Logical handlers : can access the payload of the message only, and cannot change any protocol-specific information (like headers) in a message.

  21. Creating a SOAP Handler public class Handler1 implements SOAPHandler<SOAPMessageContext> { public boolean handleMessage(SOAPMessageContext context){ Boolean outboundProperty = (Boolean) context.get( MessageContext.MESSAGE_OUTBOUND_PROPERTY); if (outboundProperty.booleanValue()) { System.out.println("\nOutbound message:"); } else { System.out.println("\nInbound message:"); } SOAPMessage message = context.getMessage(); System.out.println(message); return true; } public Set<QName> getHeaders() { return Collections.emptySet(); } public boolean handleFault(SOAPMessageContext messageContext){ return true; } public void close(MessageContext messageContext){ } }

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend