Informatica ActiveVOS
- Informatica ActiveVOS 9.2.4.6
- All Products
<wsdl:definitions name="NCName" xmlns:vprop="http://docs.oasis-open.org/wsbpel/2.0/varprop"> <vprop:property name="NCName" type="QName"? element="QName"?/> ... </wsdl:definitions>
<wsdl:definitions name="NCName" xmlns:vprop="http://docs.oasis-open.org/wsbpel/2.0/varprop"> <vprop:propertyAlias propertyName="QName" messageType="QName"? part="NCName"? type="QName"? element="QName"?> <vprop:query queryLanguage="anyURI"?>? queryContent </vprop:query> </vprop:propertyAlias> ... </wsdl:definitions>
<wsdl:definitions name="messages" targetNamespace="http://example.com/taxMessages.wsdl" xmlns:txtyp="http://example.com/taxTypes.xsd" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"> <!-- define a WSDL application message --> <wsdl:message name="taxpayerInfoMsg"> <wsdl:part name="identification" element="txtyp:taxPayerInfoElem" /> </wsdl:message> ... </wsdl:definitions>
<wsdl:definitions name="properties" targetNamespace="http://example.com/properties.wsdl" xmlns:tns="http://example.com/properties.wsdl" xmlns:txtyp="http://example.com/taxTypes.xsd" xmlns:txmsg="http://example.com/taxMessages.wsdl" ...> <!-- define a correlation property --> <vprop:property name="taxpayerNumber" type="txtyp:SSN" /> ... <vprop:propertyAlias propertyName="tns:taxpayerNumber" messageType="txmsg:taxpayerInfoMsg" part="identification"> <vprop:query>txtyp:socialsecnumber</vprop:query> </vprop:propertyAlias> <vprop:propertyAlias propertyName="tns:taxpayerNumber" element="txtyp:taxPayerInfoElem"> <vprop:query>txtyp:socialsecnumber</vprop:query> </vprop:propertyAlias> </wsdl:definitions>