WSO2从BPS(BPEL)向ESB请求缺少soapAction标头

时间:2015-01-22 09:59:38

标签: wso2 wso2esb wso2carbon bpel

我使用的是WSO2 BPS 3.2.0,WSO2应用服务器5.2.1和WSO2身份服务器5.0.0。 我制作BPS流程,通过HTTPS与基本身份验证安全ESB代理服务进行通信。过程有肥皂行动的问题。请求以故障响应结束:

<message><fault><faultcode xmlns:soapenv="http://schemas.xmlsoap.org/soa...">axis2ns10:Client</faultcode><faultstring xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">The endpoint reference (EPR) for the Operation not found is /services/RepositoryService and the WSA Action = . If this EPR was previously reachable, please contact the server administrator.</faultstring></fault></message>

我使用this blog中的统一端点(UEP)。

<wsa:EndpointReference
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.w3schools.com uep_schema.xsd"
    xmlns:wsa="http://www.w3.org/2005/08/addressing"
    xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">
    <wsa:Action>http://docs.oasis-open.org/ns/cmis/ws/200908/RepositoryServicePort/getRepositoriesRequest</wsa:Action>
    <wsa:Metadata>
       <id>SInvokeEPR</id>
       <transport type="http">
       <authorization-username>user</authorization-username>
       <authorization-password>pass</authorization-password>
       </transport>
   </wsa:Metadata>
</wsa:EndpointReference>

我发现了分配

的可能性
<bpel:literal>
<wsa:Action xmlns:wsa="http://www.w3.org/2005/08/addressing">http://docs.oasis-open.org/ns/cmis/ws/200908/RepositoryServicePort/getRepositoriesRequest</wsa:Action>
</bpel:literal>

输出变量属性

<bpel:to variable="RepositoryServicePLRequest" header="Action"></bpel:to>

但它不起作用。但是当我在ESB中启用SOAP Message Tracer时,我发现它开始工作。为什么呢?

2 个答案:

答案 0 :(得分:0)

您可以使用此post的解决方案 添加参数

<parameter name="disableOperationValidation" locked="false">true</parameter>

到WSO2 ESB中的代理配置

答案 1 :(得分:0)

过去两天我一直在解决这个问题。我对你的问题和答案有几点意见。为了让你知道我没有ESB,所以我有同样的问题,但我不能用这种方法来解决它。

首先检查你看到的第一个链接没有wsa:Action所以你需要指定wsa:address。

第二个问题是您的SOAPACTION未设置。如果您使用SOAP 1.1,则需要此标头,以便BPS将其设置为“”,但大多数服务器需要实际操作。要解决此问题,您需要在epr文件中启用Addressing。它有点令人困惑,因为它添加了正确的ws-addressing信息,但它控制了与之无关的SOAPACTION。

所以要解决这个问题只需要把你的epr这样:

<wsa:EndpointReference
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.w3schools.com uep_schema.xsd"
xmlns:wsa="http://www.w3.org/2005/08/addressing"
xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">
**<wsa:Address>http://docs.oasis-open.org/ns/cmis/ws/200908/RepositoryServicePort</wsa:Address>**
<wsa:Metadata>
   <id>SInvokeEPR</id>
   <transport type="http">
   <authorization-username>user</authorization-username>
   <authorization-password>pass</authorization-password>
   </transport>
   **<qos>
        <enableAddressing version="final" separateListener="true"/>
    </qos>**