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 ABL and VB.NET interface method prototypes : Non-persistent procedure
 
Non-persistent procedure
*ABL:
/* FindCustomerByNum.p */

DEFINE INPUT PARAMETER CustomerNumber AS INTEGER.
DEFINE OUTPUT PARAMETER CustomerName AS CHARACTER.
*VB.NET OrderInfoObj (AppObject) method:
Public Sub FindCustomerByNum(
              ByVal CustomerNumber As Integer,
              ByRef CustomerName As String)