我正在尝试在位置下的policy studio中注册WSDL: 商业服务> Web服务存储库>网络服务 但是在注册时我收到了这个错误:
无法生成WSFilter
我还通过WS-i基本配置文件验证了WSDL,结果已通过。
请帮助我解决问题。
这是我想要注册的WSDL:
<wsdl:definitions xmlns:plnk="http://schemas.xmlsoap.org/ws/2003/05/partner-link/" xmlns:client="http://xmlns.oracle.com/Test_SOA_Service/Test_SOA_Service" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" name="Test_SOA_Service" targetNamespace="http://xmlns.oracle.com/Test_SOA_Service/Test_SOA_Service">
<wsdl:documentation>
<abstractWSDL>
http://soadev1.cp.np.com:1234/soa-infra/services/Test_SOA_Service!1.0/Test_SOA_Service.wsdl
</abstractWSDL>
</wsdl:documentation>
<plnk:partnerLinkType name="Test_SOA_Service">
<plnk:role name="Test_SOA_ServiceProvider">
<plnk:portType name="client:Test_SOA_Service"/>
</plnk:role>
</plnk:partnerLinkType>
<wsdl:types>
<schema xmlns="http://www.w3.org/2001/XMLSchema">
<import namespace="http://xmlns.oracle.com/Test_SOA_Service/Test_SOA_Service" schemaLocation="http://soadev1.cp.np.com:1234/soa-infra/services/Test_SOA_Service/test_soa_service_client_ep?XSD=xsd/Test_SOA_Service.xsd"/>
</schema>
</wsdl:types>
<wsdl:message name="Test_SOA_ServiceRequestMessage">
<wsdl:part name="payload" element="client:process"/>
</wsdl:message>
<wsdl:message name="Test_SOA_ServiceResponseMessage">
<wsdl:part name="payload" element="client:processResponse"/>
</wsdl:message>
<wsdl:portType name="Test_SOA_Service">
<wsdl:operation name="process">
<wsdl:input message="client:Test_SOA_ServiceRequestMessage"/>
<wsdl:output message="client:Test_SOA_ServiceResponseMessage"/>
</wsdl:operation>
</wsdl:portType>
<wsdl:binding name="Test_SOA_ServiceBinding" type="client:Test_SOA_Service">
<soap:binding transport="http://schemas.xmlsoap.org/soap/http"/>
<wsdl:operation name="process">
<soap:operation style="document" soapAction="process"/>
<wsdl:input>
<soap:body use="literal"/>
</wsdl:input>
<wsdl:output>
<soap:body use="literal"/>
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:service name="test_soa_service_client_ep">
<wsdl:port name="Test_SOA_Service_pt" binding="client:Test_SOA_ServiceBinding">
<soap:address location="http://soadev1.cp.np.com:1234/soa-infra/services/Test_SOA_Service/test_soa_service_client_ep"/>
</wsdl:port>
</wsdl:service>
</wsdl:definitions>
&#13;
答案 0 :(得分:0)
我找到了答案。 Vordel的配置方式只能触及OSB服务。在这里,我试图点击BPEL服务。