0

拥有 WSDL:

<definitions targetNamespace="http://MyWebService/" name="MyWebService">
    <types>
        <xsd:schema>
            <xsd:import namespace="http://MyWebService/" schemaLocation="http://localhost:8081/MyWebService?xsd=1"/>
        </xsd:schema>
    </types>
    <message name="doIt">
        <part name="Word" type="xsd:string"/>
        <part name="SomeParameters" type="tns:MapWrapper"/>
    </message>
    <message name="doItResponse">
        <part name="return" type="xsd:string"/>
    </message>
    <portType name="MyWebService">
        <operation name="doIt" parameterOrder="Word SomeParameters">
            <input message="tns:doIt"/>
            <output message="tns:doItResponse"/>
        </operation>
    </portType>
...
</definitions>

和相关的xsd:

<xs:schema version="1.0" targetNamespace="http://MyWebService/">
    <xs:complexType name="MapWrapper">
        <xs:sequence>
            <xs:element name="map">
                <xs:complexType>
                    <xs:sequence>
                        <xs:element name="entry" minOccurs="0" maxOccurs="unbounded">
                            <xs:complexType>
                                <xs:sequence>
                                    <xs:element name="key" minOccurs="0" type="xs:string"/>
                                    <xs:element name="value" minOccurs="0" type="xs:string"/>
                                </xs:sequence>
                            </xs:complexType>
                        </xs:element>
                    </xs:sequence>
                </xs:complexType>
            </xs:element>
        </xs:sequence>
    </xs:complexType>
</xs:schema>

发布此 WebService 以获取 WS 的输入参数以使用的最佳/最简单的方法是什么。路线应如下所示:(1) WS -> (2) InputParameters -> (3) inputParameters 的一些处理步骤 -> (4) 取决于 (2) 中的参数。

我试图从 camel-example-cxf 获取知识;但是有很多东西混合在一起,很难理解 imo。

一些 Java DSL 代码片段会很好。

4

1 回答 1

1

最简单的方法是使用Spring. 例如:如果您要创建自定义 bean 并希望在将消息路由到实际端点之前修改您的消息,您可以执行以下操作:

public class CustomProcessor {

    public void processDoIt(Exchange exchange) {
        DoIt smth = exchange.getIn().getBody(DoIt.class); //Your message's body              
    }

}

和使用 Spring 的骆驼路线:

<bean id="processor" class="your.custom.CustomProcessor"/>

<camel:camelContext trace="true" id="camelContext" >

    <camel:route id="camelRoute">
        <camel:from uri="cxf:bean:yourWebServiceListenerEndpoint?dataFormat=POJO&amp;synchronous=true" />
        <camel:choice>
            <camel:when>
                <camel:simple>${headers.operationName} == 'doIt'</camel:simple>
                <camel:bean ref="processor" method="processDoIt"/>
            </camel:when>
        </camel:choice>
        <camel:to uri="cxf:bean:yourWebServiceTargetEndpoint"/>
    </camel:route>

</camel:camelContext>

根据操作名称骆驼将消息路由到相应的处理器。您也可以将您的消息路由到其他地方。它是由你决定。这只是一个如何完成的例子。

也可以看看:

于 2013-02-15T21:58:16.930 回答