Dim CustomerName As String
webService.FindCustomerByNum(3, CustomerName) |
<?xml version="1.0" encoding="utf-8" ?>
<soap:Envelope namespaces defined here...> <soap:Body> <FindCustomerByNum xmlns="urn:OrderSvc:OrderInfo"> <CustomerNumber>3</CustomerNumber> </FindCustomerByNum> </soap:Body> </soap:Envelope> |
<?xml version="1.0" encoding="UTF-8" ?>
<soap:Envelope namespaces defined here...> <soap:Body> <FindCustomerByNumResponse xmlns="urn:OrderSvc:OrderInfo"> <CustomerName>Hoops</CustomerName> </FindCustomerByNumResponse> </soap:Body> </soap:Envelope> |