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!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

Failed to get WSDL service "Text" from WSDL definition

4501Feb 25 2005 — edited Mar 7 2007
Hello,

I am testing User Task BPEL process. All functions correct except for the last service in the BPEL process, the callBackClient process.
This process returns the following error
<bindingFault xmlns="http://schemas.oracle.com/bpel/extension">
<part name="code">GenericError</part>
<part name="summary">Failed get wsdl service definition. Failed to get WSDL service "Text" from WSDL definition "{http://www.demo.com/checkCredibility}Demo". Please verify that WSDL service "Text" is correctly defined in the WSDL file.
</part>
</bindingFault>


Here is the definition of the callBackClient service in the .bpel file

<!-- Callback client asynchronously with response message -->
<invoke name="callbackClient"
partnerLink="client"
portType="tns:DemoCallback"
operation="onResult"
inputVariable="output"
/>

Here the entries in the .wsdl file related to this service, the porttype, message definition and the element (as part of the type definition)

<portType name="DemoCallback">
<operation name="onResult">
<input message="tns:DemoResponseMessage"/>
</operation>
</portType>


<message name="SNTDemoResponseMessage">
<part name="payload" element="tns:DemoResponse"/>
</message>

<element name="DemoResponse">
<complexType>
<sequence>
<element name="company" type="string" />
<element name="person" type="string" />
</sequence>
</complexType>
</element>

What could cause the error Failed to get WSDL service "Text" from WSDL definition?

Thanx in advance
Regards Leon Smiers

Comments

Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Apr 4 2007
Added on Feb 25 2005
2 comments
814 views