Skip to Main Content

Integration

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

No partner role on BPEL parterlink wsdl import

540866Nov 2 2006 — edited Nov 8 2006
Hi there,

I am having problems with importing this wsdl below into a partner link. It is a .NET webservice wsdl. Becuase these wsdl's are built into the asmx, i have had to copy the wsdl locally and add the partnerlink and partner role elements to the bottom.

The namespaces 'tempuri.org' were also changed to the addresses of the remote site in each corresponding namespace, but i have changed these for security reasons.

The problem i am having is that when the wsdl is imported the PartnerLink name appears on the Partnerlink setup screen fine, but i do not get any roles? Any ideas?

I am using JDeveloper and BPEL server.

<?xml version="1.0" encoding="UTF-8"?>
<definitions
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/"
xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/"
xmlns:tns="http://tempuri.org/helloworld/"
xmlns:s="http://www.w3.org/2001/XMLSchema"
xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/"
xmlns:http="http://schemas.xmlsoap.org/wsdl/http/"
targetNamespace="http://tempuri.org/helloworld/"
xmlns:plnk="http://schemas.xmlsoap.org/ws/2003/05/partnerlink/"
xmlns:bpws="http://schemas.xmlsoap.org/ws/2003/03/business-process/"
xmlns="http://schemas.xmlsoap.org/wsdl/">
<types>
<s:schema elementFormDefault="qualified" targetNamespace="http://tempuri.org/helloworld/">
<s:element name="HelloWorld">
<s:complexType />
</s:element>
<s:element name="HelloWorldResponse">
<s:complexType>
<s:sequence>
<s:element minOccurs="0" maxOccurs="1" name="HelloWorldResult" type="s:string" />
</s:sequence>
</s:complexType>
</s:element>
</s:schema>
</types>
<message name="HelloWorldSoapIn">
<part name="parameters" element="tns:HelloWorld" />
</message>
<message name="HelloWorldSoapOut">
<part name="parameters" element="tns:HelloWorldResponse" />
</message>
<portType name="HelloWorldWSSoap">
<operation name="HelloWorld">
<input message="tns:HelloWorldSoapIn" />
<output message="tns:HelloWorldSoapOut" />
</operation>
</portType>
<binding name="HelloWorldWSSoap" type="tns:HelloWorldWSSoap">
<soap:binding transport="http://schemas.xmlsoap.org/soap/http" />
<operation name="HelloWorld">
<soap:operation soapAction="http://tempuri.org/helloworld/HelloWorld" style="document" />
<input>
<soap:body use="literal" />
</input>
<output>
<soap:body use="literal" />
</output>
</operation>
</binding>
<binding name="HelloWorldWSSoap12" type="tns:HelloWorldWSSoap">
<soap12:binding transport="http://schemas.xmlsoap.org/soap/http" />
<operation name="HelloWorld">
<soap12:operation soapAction="http://tempuri.org/helloworld/HelloWorld" style="document" />
<input>
<soap12:body use="literal" />
</input>
<output>
<soap12:body use="literal" />
</output>
</operation>
</binding>
<service name="HelloWorldWS">
<port name="HelloWorldWSSoap" binding="tns:HelloWorldWSSoap">
<soap:address location="http://tempuri.org/helloworld/HelloWorldWS.asmx" />
</port>
<port name="HelloWorldWSSoap12" binding="tns:HelloWorldWSSoap12">
<soap12:address location="http://ltempuri.org/helloworld/HelloWorldWS.asmx" />
</port>
</service>
<plnk:partnerLinkType name="HelloWorldWSSoap_PL">
<plnk:role name="HelloWorld_Role">
<plnk:portType name="tns:HelloWorldWSSoap"/>
</plnk:role>
</plnk:partnerLinkType>
</definitions>
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Dec 6 2006
Added on Nov 2 2006
1 comment
1,095 views