Hi, thanks for the fast answer
Ok but if I have to declare a partnerlink how can I refer to a wsdl which does not provide a partnerlinktype and which I cannot change? <wsdl:message name="acceptMessageRequest"> <wsdl:part name="in0" type="xsd:string" /> </wsdl:message> <wsdl:message name="acceptMessageResponse"> <wsdl:part name="acceptMessageReturn" type="xsd:string" /> </wsdl:message> <wsdl:portType name="_Proxy6"> <wsdl:operation name="acceptMessage" parameterOrder="in0"> <wsdl:input message="impl:acceptMessageRequest" name="acceptMessageRequest" /> <wsdl:output message="impl:acceptMessageResponse" name="acceptMessageResponse" /> </wsdl:operation> </wsdl:portType> <wsdl:binding name="LogSoapBinding" type="impl:_Proxy6"> <wsdlsoap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http" /> <wsdl:operation name="acceptMessage"> <wsdlsoap:operation soapAction="" /> <wsdl:input name="acceptMessageRequest"> <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://DefaultNamespace" use="encoded" /> </wsdl:input> <wsdl:output name="acceptMessageResponse"> <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://CentralServices_Se2889.dev1.com" use="encoded" /> </wsdl:output> </wsdl:operation> </wsdl:binding> <wsdl:service name="_Proxy6Service"> <wsdl:port binding="impl:LogSoapBinding" name="Log"> <wsdlsoap:address location="http://Se2889.dev1.com:8089/services/Log" /> </wsdl:port> </wsdl:service> </wsdl:definitions> cheers, Markus >> Using an invoke I always have to provide a partnerlink ( so it seems to >> me as it looks in the specs ) so how can I construct an invoke for this >> service using only the provided information, maybe with an example? >partnerLinks are a part of the BPEL specification, not WSDL. So, it's >not a bug that your WSDL document doesn't provide any partnerlink. >You MUST declare such informations inside your business process >cheers, >-- > Sebastian
