Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Getting back data from webservices

Status
Not open for further replies.

GDX

Programmer
Jun 4, 2000
186
US
Hello i am having some problems getting back data from a compiled wsdl im calling. Here is a copy of the simple code, I do not recieve an error i just need to view the return data from the"WebClientAsyncResult" can someone please help?


Dim oCatalog As New CatalogService
Dim oPartReq As New PartnumberSearchRequest
Dim oPartRes As New PartnumberSearchResponse
Dim oSync As System.Web.Services.Protocols.WebClientAsyncResult
Dim oCallback As System.AsyncCallback

oPartReq.accountNumber = 444444
oPartReq.partNumber = 1011
oPartRes = oCatalog.partnumberSearch(oPartReq)
oSync = oCatalog.BeginpartnumberSearch(oPartReq, oCallback, oSync)
Response.Write(oPartRes.products)

Gordon R. Durgha
gd@vslink.net
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top