/* * JBoss, Home of Professional Open Source. * Copyright 2006, Red Hat Middleware LLC, and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.jboss.test.ws.jaxws.samples.handlerchain; import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.jws.HandlerChain; import javax.xml.namespace.QName; import javax.xml.ws.Service; import javax.xml.ws.WebServiceRef; import javax.xml.ws.handler.Handler; import javax.xml.ws.handler.HandlerResolver; import javax.xml.ws.handler.PortInfo; import org.jboss.logging.Logger; public class HandlerChainClient { // provide logging private static final Logger log = Logger.getLogger(HandlerChainClient.class); @WebServiceRef(name = "Service1") @HandlerChain(file = "jaxws-handlers-client.xml") static Service service1; // Service2 should have no client side handler chain @WebServiceRef(name = "Service2") static Service service2; @WebServiceRef(name = "Service3") static Service service3; public static Map<String, String> testResult = new HashMap<String, String>(); public static void main(String[] args) throws Exception { String testName = args[0]; String reqStr = args[1]; HandlerChainClient client = new HandlerChainClient(); Method method = HandlerChainClient.class.getMethod(testName, new Class[] { String.class }); try { String retStr = (String)method.invoke(client, reqStr); testResult.put(testName, retStr); } catch (InvocationTargetException ex) { log.error("Invocation error", ex); testResult.put(testName, ex.getTargetException().toString()); } catch (Exception ex) { log.error("Error", ex); testResult.put(testName, ex.toString()); } } public String testService1(String reqStr) throws Exception { PortInfo info = new PortInfo() { public String getBindingID() { return "http://schemas.xmlsoap.org/wsdl/soap/http"; } public QName getPortName() { return null; } public QName getServiceName() { return null; } }; HandlerResolver resolver = service1.getHandlerResolver(); List<Handler> handlerChain = resolver.getHandlerChain(info); if("[LogHandler, AuthorizationHandler, RoutingHandler, MimeHandler]".equals(handlerChain.toString()) == false) throw new IllegalStateException("Unexpected resolver handlers: " + handlerChain); Endpoint port = service1.getPort(Endpoint.class); return port.echo(reqStr); } public String testService2(String reqStr) throws Exception { Endpoint port = service2.getPort(Endpoint.class); return port.echo(reqStr); } public String testService3(String reqStr) throws Exception { Endpoint port = service3.getPort(Endpoint.class); return port.echo(reqStr); } }