/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 1997-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 server.endpoint.client; import junit.framework.TestCase; import javax.xml.namespace.QName; import javax.xml.ws.Service; import java.util.ArrayList; import java.util.List; import javax.xml.ws.Endpoint; import javax.xml.transform.Source; import javax.xml.transform.stream.StreamSource; import java.net.URL; import java.net.URLConnection; import java.io.*; import javax.xml.ws.Dispatch; import javax.xml.ws.soap.SOAPBinding; import com.sun.xml.ws.transport.http.HttpAdapter; import testutil.PortAllocator; /** * @author Jitendra Kotamraju */ public class EndpointWsdlLocationTest extends TestCase { // endpoint has wsdlLocation="...". It publishes the same wsdl, metadata // docs public void testWsdlLocation() throws Exception { int port = PortAllocator.getFreePort(); String address = "http://localhost:"+port+"/hello"; Endpoint endpoint = Endpoint.create(new RpcLitEndpointWsdlLocation()); ClassLoader cl = Thread.currentThread().getContextClassLoader(); String[] docs = { "RpcLitAbstract.wsdl", "RpcLitEndpoint.xsd" }; List<Source> metadata = new ArrayList<Source>(); for(String doc : docs) { URL url = cl.getResource(doc); metadata.add(new StreamSource(url.openStream(), url.toExternalForm())); } endpoint.setMetadata(metadata); endpoint.publish(address); URL pubUrl = new URL(address+"?wsdl"); boolean gen = isGenerated(pubUrl.openStream()); assertFalse(gen); pubUrl = new URL(address+"?wsdl=1"); gen = isGenerated(pubUrl.openStream()); assertFalse(gen); pubUrl = new URL(address+"?xsd=1"); gen = isGenerated(pubUrl.openStream()); assertFalse(gen); invoke(address); endpoint.stop(); } // The published WSDL is wrong as we are not setting metadata public void testWsdlLocation1() throws Exception { int port = PortAllocator.getFreePort(); String address = "http://localhost:"+port+"/hello"; Endpoint endpoint = Endpoint.create(new RpcLitEndpointWsdlLocation()); endpoint.publish(address); URL pubUrl = new URL(address+"?wsdl"); boolean gen = isGenerated(pubUrl.openStream()); assertFalse(gen); invoke(address); endpoint.stop(); } public void testHtmlPage() throws Exception { try { HttpAdapter.setPublishStatus(true); int port = PortAllocator.getFreePort(); String address = "http://localhost:" + port + "/hello"; Endpoint endpoint = Endpoint.create(new RpcLitEndpointWsdlLocation()); endpoint.publish(address); URL pubUrl = new URL(address); URLConnection con = pubUrl.openConnection(); InputStream is = con.getInputStream(); int ch; while ((ch = is.read()) != -1); assertTrue(con.getContentType().contains("text/html")); endpoint.stop(); } finally { HttpAdapter.setPublishStatus(false); } } public boolean isGenerated(InputStream in) throws IOException { BufferedReader rdr = new BufferedReader(new InputStreamReader(in)); String str; while ((str=rdr.readLine()) != null) { if (str.indexOf("NOT_GENERATED") != -1) { return false; } } return true; } // ns0=http://echo.org is according to RpcLitEndpoint.wsdl binding private void invoke(String address) { // access service QName portName = new QName("http://echo.org/", "RpcLitPort"); QName serviceName = new QName("http://echo.org/", "RpcLitEndpoint"); Service service = Service.create(serviceName); service.addPort(portName, SOAPBinding.SOAP11HTTP_BINDING, address); Dispatch<Source> d = service.createDispatch(portName, Source.class, Service.Mode.PAYLOAD); String body = "<ns0:echoInteger xmlns:ns0=\"http://echo.input.binding.org/\"><arg0>2</arg0></ns0:echoInteger>"; Source request = new StreamSource(new ByteArrayInputStream(body.getBytes())); Source response = d.invoke(request); request = new StreamSource(new ByteArrayInputStream(body.getBytes())); response = d.invoke(request); } @javax.jws.WebService(name="RpcLit", serviceName="RpcLitEndpoint", portName="RpcLitPort", targetNamespace="http://echo.org/", endpointInterface="server.endpoint.client.RpcLitEndpointIF", wsdlLocation="RpcLitEndpoint.wsdl") @javax.jws.soap.SOAPBinding(style=javax.jws.soap.SOAPBinding.Style.RPC) public static class RpcLitEndpointWsdlLocation { public int echoInteger(int arg0) { return arg0; } } }