Author: ningjiang Date: Tue Jan 25 10:07:44 2011 New Revision: 1063202 URL: http://svn.apache.org/viewvc?rev=1063202&view=rev Log: Added an unit test to show how to marshal the customer fault.
Added: camel/trunk/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/CxfConsumerPayLoadMarshalFaultTest.java (with props) Added: camel/trunk/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/CxfConsumerPayLoadMarshalFaultTest.java URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/CxfConsumerPayLoadMarshalFaultTest.java?rev=1063202&view=auto ============================================================================== --- camel/trunk/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/CxfConsumerPayLoadMarshalFaultTest.java (added) +++ camel/trunk/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/CxfConsumerPayLoadMarshalFaultTest.java Tue Jan 25 10:07:44 2011 @@ -0,0 +1,62 @@ +/** + * 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.camel.component.cxf; + +import java.io.StringReader; +import java.util.ArrayList; +import java.util.List; + +import javax.xml.bind.JAXBContext; +import javax.xml.namespace.QName; + +import org.w3c.dom.Element; + +import org.apache.camel.Exchange; +import org.apache.camel.Processor; +import org.apache.camel.builder.RouteBuilder; +import org.apache.camel.wsdl_first.types.UnknownPersonFault; +import org.apache.cxf.binding.soap.SoapFault; +import org.apache.cxf.helpers.DOMUtils; + +public class CxfConsumerPayLoadMarshalFaultTest extends CxfConsumerPayloadFaultTest { + + protected static final String DETAILS = "<detail></detail>"; + + @Override + protected RouteBuilder createRouteBuilder() { + return new RouteBuilder() { + public void configure() { + from(FROM_URI).process(new Processor() { + public void process(final Exchange exchange) throws Exception { + JAXBContext context = JAXBContext.newInstance("org.apache.camel.wsdl_first.types"); + QName faultCode = new QName("http://schemas.xmlsoap.org/soap/envelope/", "Server"); + SoapFault fault = new SoapFault("Get the null value of person name", faultCode); + Element details = DOMUtils.readXml(new StringReader(DETAILS)).getDocumentElement(); + UnknownPersonFault unknowPersonFault = new UnknownPersonFault(); + unknowPersonFault.setPersonId(""); + context.createMarshaller().marshal(unknowPersonFault, details); + fault.setDetail(details); + exchange.getOut().setBody(fault); + exchange.getOut().setFault(true); + } + }); + + } + }; + } + +} Propchange: camel/trunk/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/CxfConsumerPayLoadMarshalFaultTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/CxfConsumerPayLoadMarshalFaultTest.java ------------------------------------------------------------------------------ svn:keywords = Rev Date