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