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-HANDLE parameter
 

Running a procedure with a TABLE-HANDLE parameter

This example shows how you might invoke a method on a Doc/Lit Web service that takes a TABLE-HANDLE parameter, by calling the sample method, DynTT( ):
Imports System.Xml
. . .

Dim dynTTEl as XmlElement
' Code to create XML document representing dynTTEl goes here

' Run the non-persistent procedure DynTT.p.
‘ INPUT-OUTPUT parameter is a TABLE-HANDLE
wsObj.DynTT(dynTTEl)

' Code to process the output TABLE-HANDLE from DynTT.p goes here