1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
| <?xml version="1.0" encoding="UTF-8"?>
<definitions name="LoanRequester" targetNamespace="http://j2ee.netbeans.org/wsdl/LoanRequester"
xmlns="http://schemas.xmlsoap.org/wsdl/"
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:ns="http://xml.netbeans.org/schema/LoanRequester" xmlns:plnk="http://docs.oasis-open.org/wsbpel/2.0/plnktype" xmlns:tns="http://j2ee.netbeans.org/wsdl/LoanRequester">
<types>
<xsd:schema targetNamespace="http://j2ee.netbeans.org/wsdl/LoanRequester">
<xsd:import namespace="http://xml.netbeans.org/schema/LoanRequester" schemaLocation="LoanRequestor.xsd"/>
</xsd:schema>
</types>
<message name="LoanRequesterOperationRequest">
<part name="requestLoanMessage" element="ns:processApplicElement"/>
</message>
<message name="LoanRequesterOperationReply">
<part name="responsePart" element="ns:processApplicRespElement"/>
</message>
<portType name="LoanRequesterPortType">
<operation name="LoanRequesterOperation">
<input name="input1" message="tns:LoanRequesterOperationRequest"/>
<output name="output1" message="tns:LoanRequesterOperationReply"/>
</operation>
</portType>
<plnk:partnerLinkType name="LoanRequester1">
<!-- A partner link type is automatically generated when a new port type is added. Partner link types are used by BPEL processes.
In a BPEL process, a partner link represents the interaction between the BPEL process and a partner service. Each partner link is associated with a partner link type.
A partner link type characterizes the conversational relationship between two services. The partner link type can have one or two roles.-->
<plnk:role name="LoanRequesterPortTypeRole" portType="tns:LoanRequesterPortType"/>
</plnk:partnerLinkType>
</definitions> |
Partager