/* * 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 handler.single_handlertube.common; import static handler.single_handlertube.common.TestConstants.INBOUND; import static handler.single_handlertube.common.TestConstants.OUTBOUND; import org.w3c.dom.Node; import javax.xml.namespace.QName; import javax.xml.soap.*; import javax.xml.transform.Source; import javax.xml.transform.Transformer; import javax.xml.transform.TransformerException; 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.ProtocolException; import javax.xml.ws.handler.LogicalMessageContext; import javax.xml.ws.handler.MessageContext; import javax.xml.ws.handler.soap.SOAPMessageContext; import javax.xml.ws.soap.SOAPFaultException; /** * @author Rama Pulavarthi */ public class HandlerUtil { // used to return false only in outbound case boolean returnFalseOutbound(MessageContext context, String name) { Boolean outbound = (Boolean) context.get(MessageContext.MESSAGE_OUTBOUND_PROPERTY); return !outbound.booleanValue(); } // used to return false only in inbound case boolean returnFalseInbound(MessageContext context, String name) { Boolean outbound = (Boolean) context.get(MessageContext.MESSAGE_OUTBOUND_PROPERTY); return outbound.booleanValue(); } boolean addIntToSOAPMessage(SOAPMessageContext context, int diff) { try { SOAPMessage message = context.getMessage(); SOAPBody body = message.getSOAPBody(); SOAPElement bodyParam = (SOAPElement) body.getChildElements().next(); if (!bodyParam.getLocalName().startsWith("TestInt")) { // just a convenience to ignore report service calls return true; //todo: use ignoreReportSOAPMessage for this } SOAPElement valueParam = (SOAPElement) bodyParam.getChildElements().next(); int orig = Integer.parseInt(valueParam.getValue()); valueParam.setValue(String.valueOf(orig + diff)); } catch (SOAPException soapException) { throw new RuntimeException(soapException); } return true; } boolean addIntToLogicalMessage(LogicalMessageContext context, int diff) { try { LogicalMessage message = context.getMessage(); Source source = message.getPayload(); Transformer xFormer = TransformerFactory.newInstance().newTransformer(); xFormer.setOutputProperty("omit-xml-declaration", "yes"); DOMResult result = new DOMResult(); xFormer.transform(source, result); Node documentNode = result.getNode(); Node requestResponseNode = documentNode.getFirstChild(); if (!requestResponseNode.getLocalName().startsWith("TestInt")) { // just a convenience to ignore report service calls return true; // todo: use ignoreReportLogicalMessage for this } Node textNode = requestResponseNode.getFirstChild().getFirstChild(); int orig = Integer.parseInt(textNode.getNodeValue()); if (HandlerTracker.VERBOSE_HANDLERS) { System.out.print("\torig value = " + orig); } textNode.setNodeValue(String.valueOf(orig + diff)); if (HandlerTracker.VERBOSE_HANDLERS) { System.out.println("\tnew value = " + textNode.getNodeValue()); } source = new DOMSource(documentNode); message.setPayload(source); } catch (TransformerException te) { throw new RuntimeException(te); } return true; } boolean throwRuntimeException(MessageContext context, String name, String direction) { Boolean outbound = (Boolean) context.get(MessageContext.MESSAGE_OUTBOUND_PROPERTY); if ( (outbound == Boolean.TRUE && direction.equals(INBOUND)) || (outbound == Boolean.FALSE && direction.equals(OUTBOUND)) ) { // not the direction we want return true; } throw new RuntimeException("handler " + name + " throwing runtime exception as instructed FOO"); } boolean throwSimpleProtocolException(MessageContext context, String name, String direction) { Boolean outbound = (Boolean) context.get(MessageContext.MESSAGE_OUTBOUND_PROPERTY); if ( (outbound == Boolean.TRUE && direction.equals(INBOUND)) || (outbound == Boolean.FALSE && direction.equals(OUTBOUND)) ) { // not the direction we want return true; } throw new ProtocolException(name + " throwing protocol exception as instructed"); } boolean throwSOAPFaultException(MessageContext context, String name, String direction) { Boolean outbound = (Boolean) context.get(MessageContext.MESSAGE_OUTBOUND_PROPERTY); if ( (outbound == Boolean.TRUE && direction.equals(INBOUND)) || (outbound == Boolean.FALSE && direction.equals(OUTBOUND)) ) { // not the direction we want return true; } // random info in soap fault try { QName faultCode = new QName("uri", "local", "prefix"); String faultString = "fault"; String faultActor = "faultActor"; SOAPFault sf = SOAPFactory.newInstance().createFault(faultString, faultCode); sf.setFaultActor(faultActor); Detail detail = sf.addDetail(); Name entryName = SOAPFactory.newInstance().createName("someFaultEntry"); detail.addDetailEntry(entryName); throw new SOAPFaultException(sf); } catch (SOAPException e) { throw new RuntimeException("Couldn't create SOAPFaultException " + e); } } /* * This tests a namespace prefix issue when * faults from the endpoint go through logical and soap handlers. */ boolean getFaultInMessage(LogicalMessageContext context) { context.getMessage().getPayload(); return true; } /* * This tests a namespace prefix issue when * faults from the endpoint go through logical and soap handlers. */ boolean getFaultInMessage(SOAPMessageContext context) { try { context.getMessage().getSOAPBody(); } catch (SOAPException se) { throw new RuntimeException(se); } return true; } }