Try OpenEdge Now
skip to main content
Web Services
Developing a .NET Client to Consume OpenEdge SOAP Web Services : Developing the VB.NET client application : Running a procedure with a TABLE parameter
 

Running a procedure with a TABLE parameter

This example shows how you might invoke a method that passes a TABLE parameter, by calling the sample method, GetOrderDetails( ):
' Run the internal procedure GetOrderDetails in CustomerOrder.p.
' OUTPUT parameter is the OrderDetails TEMP-TABLE
Dim WS_OrderDetails(-1) As OrderService.OrderDetailsRow
WS_custOrder.GetOrderDetails(WS_OrderDetails)
Note: The CustomerOrderIDValue is automatically inserted in the SOAP request header by the interface.