Try OpenEdge Now
skip to main content
Web Services
Developing a .NET Client to Consume OpenEdge SOAP Web Services : Creating the VB.NET client interface : Sample interface object prototypes in Reference.vb
 

Sample interface object prototypes in Reference.vb

The Web reference file (Reference.vb) defines the sample interface objects using the following Class declarations. Note the member variables:
*Object ID classes
OrderInfoID:
Public Class OrderInfoID Inherits SoapHeader
   Public UUID As String
End Class
CustomerOrderID:
Public Class CustomerOrderID Inherits SoapHeader
   Public UUID As String
End Class
*AppObject class
OrderInfoObj:
Public Class OrderInfoObj
   Public OrderInfoIDValue As OrderInfoID
   Public CustomerOrderIDValue As CustomerOrderID
   ...
End Class
Note: The methods in this class declaration are not shown.
*ProcObject class
CustomerOrderObj:
Public Class CustomerOrderObj
   Public CustomerOrderIDValue As CustomerOrderID
   ...
End Class
Note: The methods in this class declaration are not shown.