Sample Web service specifications
- Last Updated: January 13, 2026
- 1 minute read
- OpenEdge
- Version 12.2
- Documentation
Sample Web service specifications
These examples rely on sample Web service specifications shown in the following table.
| Property or component | Configuration, value, or name |
|---|---|
| Session model | Managed Note: Some information and examples are also
provided to show session-free interactions. |
| SOAP format |
Doc/Lit
|
| TargetNamespace |
"urn:OrderSvc"
|
| AppObject |
OrderInfo
|
| ProcObject |
CustomerOrder
|
Some of the information presented in these examples provides a review of concepts introduced and described in previous chapters of this manual. Note that some SOAP messages and code samples are edited for brevity.
Client references to the sample VB.NET interface include the following method declarations for these interface objects:
- Interface AppObject,
OrderInfo:
|
The FindCustomerByNum and CreatePO_CustomerOrder methods are represented as functions
because methods in Doc/Lit WSDLs are always defined to return a value, regardless of whether
the procedure defined in ProxyGen is specified to return the ABL RETURN-VALUE. If Return ABL RETURN-VALUE
is not specified, the return value for the function will be a null String. For more
information, see Learn about Open Clients.
|
Connect_AppObject( ) method with three parameters
(string userid, string
password, and string appServerInfo). Enabling
the Return ABL RETURN-VALUE on Connect option adds
the output parameter string result, which contains the return value of the Connection procedure.