NonStop SOAP User's Manual
Using the SOAP Admin Tool
NonStop SOAP User’s Manual—520501-012
5-11
WSDL Files
For descriptions of SOAP classes, see Files Released and Generated on page 8-46.
•
empSoapPW_EmpInfo.dtd. This file contains a DTD to validate a SOAP message
corresponding to the DDL definition EmpDetails00 DDL Definition. The DTD is:
<?xml encoding="US-ASCII"?>
<!ELEMENT EmpInfo (request-code, employee-number)>
<!ELEMENT request-code (#PCDATA)>
<!ELEMENT employee-number (#PCDATA)>
Notice that the DTD specifies only the structure of the DDL Definition. An actual
input XML message might have the SOAP elements around the element EmpInfo,
if the input is SOAP compliant.
•
empSoapPW_EmpInfoResponse0.dtd. This file contains a DTD to validate a SOAP
message corresponding to the DDL Definition Employee-Reply. The DTD is:
<?xml encoding="US-ASCII"?>
<!ELEMENT EmpInfoResponse0 (reply-code, employee-info)>
<!ELEMENT reply-code (#PCDATA)>
<!ELEMENT employee-info (employee-number, empname, regnum,
branchnum, d401k, reqaccep)>
<!ELEMENT employee-number (#PCDATA)>
<!ELEMENT empname (first, last, middle)>
<!ELEMENT first (#PCDATA)>
<!ELEMENT last (#PCDATA)>
<!ELEMENT middle (#PCDATA)>
<!ELEMENT regnum (#PCDATA)>
<!ELEMENT branchnum (#PCDATA)>
<!ELEMENT d401k (#PCDATA)>
<!ELEMENT reqaccep (#PCDATA)>
•
empSoapPW_EmpInfoResponse1.dtd. This file contains a DTD to validate a SOAP
message corresponding to the DDL Definition Error-Reply.
<?xml encoding="US-ASCII"?>
<!ELEMENT EmpInfoResponse1 (reply-code, error-text)>
<!ELEMENT reply-code (#PCDATA)>
<!ELEMENT error-text (#PCDATA)>
•
SoapUEClassFactory.cpp. This file is used to instantiate a user-exit object. The
SOAP server takes the responsibility to release the object when appropriate.