0

我应该使用什么转换器从 http 消息中提取参数,例如 http://localhost:8088/?id=xxx&type=yyyyans 将idtype参数的值放入固定的soap请求中,例如:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:wsd="http://wsdouane/">
   <soapenv:Header/>
   <soapenv:Body>
      <wsd:find>
         <entity>
            <id>xxxx</id>
            <type>yyyy</type>
         </entity>
      </wsd:find>
   </soapenv:Body>
</soapenv:Envelope>

Http 输出

Cannot bind to address "http://127.0.0.1:8088/" No component registered on that endpoint

文件输出

<?xml version='1.0' encoding='UTF-8'?>
<S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
<S:Body>
<ns2:findResponse xmlns:ns2="http://wsdouane/"/>
</S:Body>
</S:Envelope>

为了传递给 JAX-WS Web 服务?

谢谢你

4

1 回答 1

1

检索查询参数并将它们设置在一个对象中,然后再设置为一个 SOAP 对象的过程,不是使用单个转换器的单步过程。

第 1 步:您可以使用

 <http-request-to-parameter-map>

转换器以获取查询参数作为地图。

第 2 步:然后使用此地图创建一个带有地图 vlaues 的对象。

第 3 步:然后将对象发送到您的 JAX-WS 客户端组件。

可以在下面的链接中找到有关转换器的更多参考以及 http 和 servlet 模块参考。

HTTP 传输参考。

Servlet 传输参考

更新了使用 XSLT 和代理客户端的答案。

    <flow name="SOAPWebService" >

    <http:inbound-endpoint address="http://localhost:8088/"   exchange-pattern="request-response">          
    </http:inbound-endpoint>

    <set-variable value="#[message.inboundProperties['id']]" variableName="paramId"></set-variable>
    <set-variable value="#[message.inboundProperties['type']]" variableName="paramType"></set-variable>

    <component class="com.example.components.SampleComponent" ></component>

    <mule-xml:xslt-transformer
        maxIdleTransformers="2" maxActiveTransformers="5"
        xsl-file="C:\WorkSpace\MyProject\src\main\resources\xslt\PrepareRequestXML.xsl">
        <mule-xml:context-property key="paramId"
            value="#[flowVars['paramId']]" />
        <mule-xml:context-property key="paramType"
            value="#[flowVars['paramType']]" />
    </mule-xml:xslt-transformer>

    <cxf:proxy-client payload="body"
        enableMuleSoapHeaders="true">           
    </cxf:proxy-client>
    <http:outbound-endpoint exchange-pattern="request-response"
        address="http://localhost:8080/ClientsDB/douane" doc:name="HTTP">
    </http:outbound-endpoint>   

    <byte-array-to-string-transformer   doc:name="Byte Array to String" />      
    <file:outbound-endpoint ....... .. />
</flow>     

下面是正确的 XSLT

<xsl:stylesheet version="2.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
    xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns="http://wsdouane/">
    <xsl:output method="xml" indent="yes" />
    <xsl:param name="paramType"></xsl:param>
    <xsl:param name="paramId"></xsl:param>

    <xsl:template match="*" >
        <xsl:element name="find" namespace="http://wsdouane/">
        <xsl:element name="entity">
         <xsl:element name="id">
           <xsl:value-of select="$paramType"/>
         </xsl:element>
         <xsl:element name="type">
            <xsl:value-of select="$paramId"/>
         </xsl:element> 
       </xsl:element>        
      </xsl:element>
    </xsl:template>

    <xsl:template match="text()|processing-instruction()|comment()">
        <xsl:copy>
            <xsl:apply-templates select="@*|node()" />
        </xsl:copy>
    </xsl:template>
</xsl:stylesheet>    

SampleComponent 类的代码是

package com.example.components;

import org.mule.api.MuleEventContext;
import org.mule.api.lifecycle.Callable;

public class SampleComponent implements Callable {
    @Override
    public Object onCall(MuleEventContext eventContext) throws Exception {
        String str = "<sample> </sample>";
        return str;
    }
}  
于 2013-05-16T14:06:43.257 回答