|
Axis 2 example source code file (AddressingInFaultHandlerTest.java)
The Axis 2 AddressingInFaultHandlerTest.java source code/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.axis2.handlers.addressing; import junit.framework.TestCase; import org.apache.axiom.om.OMElement; import org.apache.axiom.soap.SOAP12Constants; import org.apache.axiom.soap.SOAPEnvelope; import org.apache.axiom.soap.impl.builder.StAXSOAPModelBuilder; import org.apache.axis2.AxisFault; import org.apache.axis2.Constants; import org.apache.axis2.addressing.AddressingConstants; import org.apache.axis2.context.MessageContext; import org.apache.axis2.handlers.util.TestUtil; import javax.xml.namespace.QName; import java.util.List; public class AddressingInFaultHandlerTest extends TestCase { TestUtil testUtil = new TestUtil(); /** @param testName */ public AddressingInFaultHandlerTest(String testName) { super(testName); } public void testInvalidAddressingHeaderWsaToSOAP11() throws Exception { AxisFault af = getFaultForTest("InvalidAddressingHeader", true); assertNotNull(af); assertEquals("Wrong fault code!", AddressingConstants.Final.QNAME_INVALID_HEADER, af.getFaultCode()); OMElement probHeaderDetail = af.getFaultDetailElement().getFirstChildWithName( AddressingConstants.Final.QNAME_PROBLEM_HEADER); assertNotNull(probHeaderDetail); assertEquals(AddressingConstants.Final.QNAME_WSA_TO, probHeaderDetail.getTextAsQName()); } public void testMissingActionSOAP11() throws Exception { AxisFault af = getFaultForTest("MessageAddressingHeaderRequired", true); assertNotNull(af); } public void testInvalidAddressingHeaderWsaToSOAP12() throws Exception { AxisFault af = getFaultForTest("InvalidAddressingHeader", false); assertNotNull(af); assertEquals("Wrong fault code", SOAP12Constants.QNAME_SENDER_FAULTCODE, af.getFaultCode()); List subCodes = af.getFaultSubCodes(); assertNotNull(subCodes); assertEquals(1, subCodes.size()); assertEquals("Wrong fault subcode", new QName(AddressingConstants.Final.WSA_NAMESPACE, AddressingConstants.Final.FAULT_INVALID_HEADER), subCodes.get(0)); } public void testMissingActionSOAP12() throws Exception { AxisFault af = getFaultForTest("MessageAddressingHeaderRequired", false); assertNotNull(af); } private AxisFault getFaultForTest(String testName, boolean isSOAP11) throws Exception { String testfile = "fault-messages/" + (isSOAP11 ? "soap11" : "soap12") + "/" + testName + ".xml"; StAXSOAPModelBuilder omBuilder = testUtil.getOMBuilder(testfile); SOAPEnvelope envelope = ((SOAPEnvelope)omBuilder.getDocumentElement()); MessageContext msgContext = new MessageContext(); msgContext.setEnvelope(envelope); AddressingFinalInHandler afih = new AddressingFinalInHandler(); afih.invoke(msgContext); AddressingInFaultHandler aifh = new AddressingInFaultHandler(); aifh.invoke(msgContext); return (AxisFault)msgContext.getProperty(Constants.INBOUND_FAULT_OVERRIDE); } } Other Axis 2 examples (source code examples)Here is a short list of links related to this Axis 2 AddressingInFaultHandlerTest.java source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.