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 non-persistent (external) procedure
 

Running a non-persistent (external) procedure

The following example shows how you might invoke the sample FindCustomerByNum( ) method:
' Send a request to the AppServer to get the Customer Name
' and display in the UI
WS_OrderService.FindCustomerByNum(custNum, custName)
If custName <> Nothing Then
       lblCustName.Text = custName
Note: The OrderInfoIDValue is automatically inserted in the SOAP request header by the interface.