/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 2005-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 fromwsdl.handler_simple.client; import java.util.Map; import javax.xml.bind.JAXBContext; import javax.xml.transform.Source; import javax.xml.transform.Transformer; import javax.xml.transform.TransformerFactory; import javax.xml.transform.dom.DOMResult; import javax.xml.transform.dom.DOMSource; import javax.xml.ws.LogicalMessage; import javax.xml.ws.handler.MessageContext; import javax.xml.ws.handler.LogicalHandler; import javax.xml.ws.handler.LogicalMessageContext; import org.w3c.dom.Node; /* * This handler needs to be in the same package as the * client code so that it is compiled by the test harness * at the same time as the client code (so that it can * pick up the generated beans). */ public class LogicalTestHandler implements LogicalHandler<LogicalMessageContext> { public static enum HandleMode { SOURCE, JAXB, SOURCE_NO_CHANGE } private HandleMode mode = HandleMode.SOURCE; public void setHandleMode(HandleMode mode) { this.mode = mode; } public boolean handleMessage(LogicalMessageContext context) { try { if (mode == HandleMode.SOURCE) { return handleMessageSource(context); } else if (mode == HandleMode.JAXB) { return handleMessageJAXB(context); } else if (mode == HandleMode.SOURCE_NO_CHANGE) { return handleMessageSourceNoChange(context); } else { throw new Exception("unknown command"); } } catch (Exception e) { throw new RuntimeException(e); } } // makes sure we can get the source without breaking something downstream private boolean handleMessageSourceNoChange(LogicalMessageContext context) { LogicalMessage logMsg = context.getMessage(); Source msgSource = logMsg.getPayload(); return true; } private boolean handleMessageJAXB(LogicalMessageContext context) throws Exception { JAXBContext jaxbContext = JAXBContext.newInstance(ObjectFactory.class); LogicalMessage msg = context.getMessage(); if (context.get(context.MESSAGE_OUTBOUND_PROPERTY).equals( Boolean.TRUE)) { Hello_Type hello = (Hello_Type) msg.getPayload(jaxbContext); int num = hello.getIntin(); hello.setIntin(++num); msg.setPayload(hello, jaxbContext); } else { HelloResponse hello = (HelloResponse) msg.getPayload(jaxbContext); int num = hello.getIntout(); hello.setIntout(++num); msg.setPayload(hello, jaxbContext); } return true; } private boolean handleMessageSource(LogicalMessageContext context) throws Exception { LogicalMessage msg = context.getMessage(); DOMResult dResult = createDOMResult(msg.getPayload()); Node documentNode = dResult.getNode(); Node requestResponseNode = documentNode.getFirstChild(); Node textNode = requestResponseNode.getFirstChild().getFirstChild(); int orig = Integer.parseInt(textNode.getNodeValue()); textNode.setNodeValue(String.valueOf(++orig)); DOMSource source = new DOMSource(documentNode); msg.setPayload(source); int removeme = 0; return true; } private DOMResult createDOMResult(Source source) throws Exception { if (source == null) { throw new RuntimeException("source is null in logical message"); } Transformer xFormer = TransformerFactory.newInstance().newTransformer(); xFormer.setOutputProperty("omit-xml-declaration", "yes"); DOMResult result = new DOMResult(); xFormer.transform(source, result); return result; } /**** empty methods below ****/ public void close(MessageContext context) {} public boolean handleFault(LogicalMessageContext context) { return true; } }