/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 2004-2013 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution License("CDDL") (collectively, the "License"). You * may not use this file except in compliance with the License. You can * obtain a copy of the License at * http://glassfish.java.net/public/CDDL+GPL_1_1.html * or packager/legal/LICENSE.txt. See the License for the specific * language governing permissions and limitations under the License. * * When distributing the software, include this License Header Notice in each * file and include the License file at packager/legal/LICENSE.txt. * * GPL Classpath Exception: * Oracle designates this particular file as subject to the "Classpath" * exception as provided by Oracle in the GPL Version 2 section of the License * file that accompanied this code. * * Modifications: * If applicable, add the following below the License Header, with the fields * enclosed by brackets [] replaced by your own identifying information: * "Portions Copyright [year] [name of copyright owner]" * * Contributor(s): * If you wish your version of this file to be governed by only the CDDL or * only the GPL Version 2, indicate your decision by adding "[Contributor] * elects to include this software in this distribution under the [CDDL or GPL * Version 2] license." If you don't indicate a single choice of license, a * recipient has the option to distribute your version of this file under * either the CDDL, the GPL Version 2 or to extend the choice of license to * its licensees as provided above. However, if you add GPL Version 2 code * and therefore, elected the GPL Version 2 license, then the option applies * only if the new code is made subject to such option by the copyright * holder. */ package client.response_context.client; import junit.framework.TestCase; import org.w3c.dom.Node; import org.xml.sax.InputSource; import org.xml.sax.SAXException; import testutil.ClientServerTestUtil; import javax.xml.bind.JAXBContext; import javax.xml.namespace.QName; import javax.xml.parsers.DocumentBuilder; import javax.xml.parsers.DocumentBuilderFactory; import javax.xml.parsers.ParserConfigurationException; import javax.xml.soap.MessageFactory; import javax.xml.soap.SOAPMessage; import javax.xml.transform.*; import javax.xml.transform.dom.DOMSource; import javax.xml.transform.sax.SAXSource; import javax.xml.transform.stream.StreamResult; import javax.xml.transform.stream.StreamSource; import javax.xml.ws.BindingProvider; import javax.xml.ws.Dispatch; import javax.xml.ws.Service; import javax.xml.ws.WebServiceException; import javax.xml.ws.handler.MessageContext; import java.io.*; import java.net.MalformedURLException; import java.net.URL; import java.util.ArrayList; import java.util.Collection; import java.util.Map; /** * @author JAX-RPC RI Development Team */ public class DispatchHelloLiteralTest extends TestCase { private String helloSM = "<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\"><soapenv:Body><Hello xmlns=\"urn:test:types\"><argument>foo</argument><extra>Test </extra></Hello></soapenv:Body></soapenv:Envelope>"; private String helloResponseSM = "<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\"><soapenv:Body><HelloResponse xmlns=\"urn:test:types\"><argument>foo</argument><extra>Test </extra></HelloResponse></soapenv:Body></soapenv:Envelope>"; private String helloMsg = "<Hello xmlns=\"urn:test:types\"><argument>foo</argument><extra>bar</extra></Hello>"; private String helloMsgBadFoo = "<Hello xmlns=\"urn:test:types\"><argument>badfoo</argument><extra>bar</extra></Hello>"; private String bad3helloMsg = "<Hello xmlns=\"urn:test\"><argument>foo</argument><extra>bar</extra></Hello>"; //private String bad2helloMsg = "<Hello xmlns=\"urn:test:types\"><argument></argument><argument></extra></Hello>"; //should give RemoteException with jaxbException cause private String badhelloMsg = "<Hello xmlns=\"urn:test:types\">.....<bar></Hello>"; private String helloResponse = "<HelloResponse xmlns=\"urn:test:types\"><argument>foo</argument><extra>bar</extra></HelloResponse>"; private String helloResponseRequest = "<HelloResponse xmlns=\"urn:test:types\"><argument>foo</argument><extra>bar</extra></HelloResponse>"; private String voidMsg = "</VoidTest>"; //should give RemoteException with jaxbException cause private String badvoidMsg = "<VoidTest xmlns=\"\"urn:test\"/>"; private String voidResponse = "<VoidTestResponse xmlns=\"urn:test:types\"/>"; //private String bugTest = <?xml version="1.0" encoding="UTF-8"?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Body><GetUserByID1Response xmlns="http://example.com/auctiontraq/wsdl/rpclit"><Body xmlns="" userRating="5"><ns1:name xmlns:ns1="http://example.com/auctiontraq/schemas/rpclit"><ns1:fname>Rama</ns1:fname><ns1:lname>Pulavarthi</ns1:lname></ns1:name><ns2:dob xmlns:ns2="http://example.com/auctiontraq/schemas/rpclit">1978-08-30-07:00</ns2:dob><ns3:age xmlns:ns3="http://example.com/auctiontraq/schemas/rpclit">25</ns3:age><ns4:ssn xmlns:ns4="http://example.com/auctiontraq/schemas/rpclit">123 456 7890</ns4:ssn><ns5:address xmlns:ns5="http://example.com/auctiontraq/schemas/rpclit"><ns5:street>988 Henderson Ave</ns5:street><ns5:city>Sunnyvale</ns5:city><ns5:state>CA</ns5:state><ns5:country>USA</ns5:country><ns5:zipcode>94086</ns5:zipcode></ns5:address><ns6:email xmlns:ns6="http://example.com/auctiontraq/schemas/rpclit">rama.pulavarthi@sun.com</ns6:email><ns7:password xmlns:ns7="http://example.com/auctiontraq/schemas/rpclit">cGFzc3dvcmQ=</ns7:password><ns8:memberSince xmlns:ns8="http://example.com/auctiontraq/schemas/rpclit">2000-08-24-07:00</ns8:memberSince><ns9:authenticated xmlns:ns9="http://example.com/auctiontraq/schemas/rpclit">true</ns9:authenticated></Body></GetUserByID1Response></soapenv:Body></soapenv:Envelope> private String bugTest2 = "<ns2:GetUserByID1 xmlns:ns2=\"http://example.com/auctiontraq/wsdl/rpclit\" xmlns:ns3=\"http://example.com/auctiontraq/schemas/rpclit\"><Body>rama.pulavarthi@sun.com</Body></ns2:GetUserByID1>"; private String bugTest = "<GetUserByID1Response xmlns=\"http://example.com/auctiontraq/wsdl/rpclit\"><Body xmlns=\"\" userRating=\"5\"><ns1:name xmlns:ns1=\"http://example.com/auctiontraq/schemas/rpclit\"><ns1:fname>Rama</ns1:fname><ns1:lname>Pulavarthi</ns1:lname></ns1:name><ns2:dob xmlns:ns2=\"http://example.com/auctiontraq/schemas/rpclit\">1978-08-30-07:00</ns2:dob><ns3:age xmlns:ns3=\"http://example.com/auctiontraq/schemas/rpclit\">25</ns3:age><ns4:ssn xmlns:ns4=\"http://example.com/auctiontraq/schemas/rpclit\">123 456 7890</ns4:ssn><ns5:address xmlns:ns5=\"http://example.com/auctiontraq/schemas/rpclit\"><ns5:street>988 Henderson Ave</ns5:street><ns5:city>Sunnyvale</ns5:city><ns5:state>CA</ns5:state><ns5:country>USA</ns5:country><ns5:zipcode>94086</ns5:zipcode></ns5:address><ns6:email xmlns:ns6=\"http://example.com/auctiontraq/schemas/rpclit\">rama.pulavarthi@sun.com</ns6:email><ns7:password xmlns:ns7=\"http://example.com/auctiontraq/schemas/rpclit\">cGFzc3dvcmQ=</ns7:password><ns8:memberSince xmlns:ns8=\"http://example.com/auctiontraq/schemas/rpclit\">2000-08-24-07:00</ns8:memberSince><ns9:authenticated xmlns:ns9=\"http://example.com/auctiontraq/schemas/rpclit\">true</ns9:authenticated></Body></GetUserByID1Response>"; private String sqeTest = "<Person xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://example.com/auctiontraq/schemas/doclit\" xsi:type=\"UserType\" userRating=\"5\"><name><fname>Rama</fname><lname>Pulavarthi</lname></name><ssn>123</ssn><ssn>456</ssn><ssn>7890</ssn><email>rama.pulavarthi@sun.com</email><password>cGFzc3dvcmQ=</password><memberSince>2000-08-24T11:05:35.000-07:00</memberSince><authenticated>true</authenticated></Person>"; /* <?xml version="1.0" encoding="UTF-8"?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Body><Person xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://example.com/auctiontraq/schemas/doclit" xsi:type="UserType" userRating="5"><name><fname>Rama</fname><lname>Pulavarthi</lname></name><dob>1978-08-30T00:00:00.000-07:00</dob><age>P25Y0M</age><ssn>123</ssn><ssn>456</ssn><ssn>7890</ssn><address><street>988 Henderson Ave</street><city>Sunnyvale</city><state>CA</state><country>USA</country><zipcode>94086</zipcode></address><email>rama.pulavarthi@sun.com</email><password>cGFzc3dvcmQ=</password><memberSince>2000-08-24T11:05:35.000-07:00</memberSince><authenticated>true</authenticated></Person></soapenv:Body></soapenv:Envelope> */ private String delayTest = "<delay xmlns=\"urn:test:types\"><interval>10000</interval></delay>"; //new QName("urn:test:types", "Hello") private QName serviceQName = new QName("urn:test", "Hello"); private QName portQName = new QName("urn:test", "HelloPort"); private String bindingIdString = "http://schemas.xmlsoap.org/wsdl/soap/http"; private String endpointWSDL = "http://localhost:8080/jaxrpc-client_response_context/hello?WSDL"; private String endpointAddress = "http://localhost:8080/jaxrpc-client_response_context/heh"; //bogus endpointAddress private Service service; private Service serviceWithPorts; private Dispatch dispatch; public DispatchHelloLiteralTest(String name) { super(name); } public void testHelloResponseContext() throws Exception { if (ClientServerTestUtil.useLocal()) { System.out.println("Need to run only in http transport"); return; } doTestHelloErrorCode(); doTestResponseContext(); } private void createService() { try { service = Service.create(serviceQName); } catch (WebServiceException e) { e.printStackTrace(); } } private void createServiceWithWSDL() { URL serviceURL = null; try { serviceURL = new URL(endpointAddress + "?wsdl"); } catch (MalformedURLException e) { fail("Error creating service with wsdl"); } try { serviceWithPorts = Service.create(serviceURL, serviceQName); } catch (WebServiceException e) { e.printStackTrace(); } } private Dispatch createDispatchJAXB() { try { JAXBContext context = createJAXBContext(); service.addPort(portQName, bindingIdString, endpointAddress); dispatch = service.createDispatch(portQName, context, Service.Mode.PAYLOAD); setTransport(dispatch); } catch (WebServiceException e) { e.printStackTrace(); } return dispatch; } private Dispatch createDispatchJAXBPortsAvailable() { try { JAXBContext context = createJAXBContext(); dispatch = serviceWithPorts.createDispatch(portQName, context, Service.Mode.PAYLOAD); setTransport(dispatch); } catch (WebServiceException e) { e.printStackTrace(); } return dispatch; } private Dispatch createDispatchSource() { try { service.addPort(portQName, bindingIdString, endpointAddress); dispatch = service.createDispatch(portQName, Source.class, Service.Mode.PAYLOAD); setTransport(dispatch); } catch (WebServiceException e) { e.printStackTrace(); } return dispatch; } private Dispatch createDispatchSOAPMessage() { try { service.addPort(portQName, bindingIdString, endpointAddress); dispatch = service.createDispatch(portQName, SOAPMessage.class, Service.Mode.MESSAGE); setTransport(dispatch); } catch (WebServiceException e) { e.printStackTrace(); } return dispatch; } private Dispatch createDispatchSOAPMessageSource() { try { service.addPort(portQName, bindingIdString, endpointAddress); dispatch = service.createDispatch(portQName, Source.class, Service.Mode.MESSAGE); setTransport(dispatch); } catch (WebServiceException e) { e.printStackTrace(); } return dispatch; } private Dispatch getDispatchJAXB() { createService(); return createDispatchJAXB(); } private Dispatch getDispatchJAXBWithPorts() { createServiceWithWSDL(); return createDispatchJAXBPortsAvailable(); } private Dispatch getDispatchSource() { createService(); return createDispatchSource(); } private Dispatch getDispatchSOAPMessage() { createService(); return createDispatchSOAPMessage(); } private Dispatch getDispatchSOAPMessageSource() { createService(); return createDispatchSOAPMessageSource(); } void setTransport(Dispatch dispatch) { try { // create helper class ClientServerTestUtil util = new ClientServerTestUtil(); // set transport OutputStream log = null; log = System.out; util.setTransport(dispatch, (OutputStream) log); } catch (Exception ex) { ex.printStackTrace(); } } private Source makeSaxSource(String msg) { byte[] bytes = msg.getBytes(); ByteArrayInputStream saxinputStream = new ByteArrayInputStream(bytes); InputSource inputSource = new InputSource(saxinputStream); return new SAXSource(inputSource); } private Source makeStreamSource(String msg) { byte[] bytes = msg.getBytes(); ByteArrayInputStream sinputStream = new ByteArrayInputStream(bytes); return new StreamSource(sinputStream); } private Collection<Source> makeMsgSource(String msg) { Collection<Source> sourceList = new ArrayList(); byte[] bytes = msg.getBytes(); ByteArrayInputStream inputStream = new ByteArrayInputStream(bytes); ByteArrayInputStream saxinputStream = new ByteArrayInputStream(bytes); InputSource inputSource = new InputSource(saxinputStream); ByteArrayInputStream sinputStream = new ByteArrayInputStream(bytes); DOMSource domSource = new DOMSource(createDOMNode(inputStream)); sourceList.add(domSource); SAXSource saxSource = new SAXSource(inputSource); sourceList.add(saxSource); StreamSource streamSource = new StreamSource(sinputStream); sourceList.add(streamSource); return sourceList; } private Source makeDOMSource(String msg) { byte[] bytes = msg.getBytes(); ByteArrayInputStream inputStream = new ByteArrayInputStream(bytes); return new DOMSource(createDOMNode(inputStream)); } public Node createDOMNode(InputStream inputStream) { DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance(); dbf.setNamespaceAware(true); dbf.setValidating(false); try { DocumentBuilder builder = dbf.newDocumentBuilder(); try { return builder.parse(inputStream); } catch (SAXException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } } catch (ParserConfigurationException pce) { IllegalArgumentException iae = new IllegalArgumentException(pce.getMessage()); iae.initCause(pce); throw iae; } return null; } private static javax.xml.bind.JAXBContext createJAXBContext() { try { return javax.xml.bind.JAXBContext.newInstance(client.response_context.client.ObjectFactory.class); } catch (javax.xml.bind.JAXBException e) { throw new WebServiceException(e.getMessage(), e); } } SOAPMessage getSOAPMessage(Source msg) throws Exception { MessageFactory factory = MessageFactory.newInstance(); SOAPMessage message = factory.createMessage(); message.getSOAPPart().setContent((Source) msg); message.saveChanges(); return message; } private String sourceToXMLString(Source result) { String xmlResult = null; try { TransformerFactory factory = TransformerFactory.newInstance(); Transformer transformer = factory.newTransformer(); transformer.setOutputProperty(OutputKeys.OMIT_XML_DECLARATION, "yes"); transformer.setOutputProperty(OutputKeys.METHOD, "xml"); OutputStream out = new ByteArrayOutputStream(); StreamResult streamResult = new StreamResult(); streamResult.setOutputStream(out); transformer.transform(result, streamResult); xmlResult = streamResult.getOutputStream().toString(); } catch (TransformerException e) { e.printStackTrace(); } return xmlResult; } private void doTestHelloErrorCode() { Dispatch<Object> dispatch = getDispatchJAXB(); try { String arg = "foo"; String extra = "bar"; Hello_Type req = new Hello_Type(); req.setArgument(arg); req.setExtra(extra); ((BindingProvider) dispatch).getRequestContext().put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY, endpointAddress); HelloResponse response = (HelloResponse) dispatch.invoke(req); assertTrue(response == null); } catch (Exception e) { //e.printStackTrace(); Map<String, Object> rc = ((BindingProvider) dispatch).getResponseContext(); assertTrue(rc != null); Integer status_code = (Integer) rc.get(MessageContext.HTTP_RESPONSE_CODE); assertTrue(status_code != null); assertTrue(404 == status_code.intValue()); } } private void doTestResponseContext() throws Exception { Dispatch<Object> dispatch = getDispatchJAXB(); String arg = "foo"; String extra = "bar"; Hello_Type req = new Hello_Type(); req.setArgument(arg); req.setExtra(extra); Map<String, Object> rc = ((BindingProvider) dispatch).getResponseContext(); assertTrue(rc == null); } /* * for debugging */ public static void main(String [] args) { try { System.setProperty("uselocal", "true"); System.setProperty("com.sun.xml.ws.client.ContentNegotiation", "optimistic"); DispatchHelloLiteralTest testor = new DispatchHelloLiteralTest("TestClient"); } catch (Exception e) { e.printStackTrace(); } } }