I have an app that consumes a web service. I can consume it no problem in a Winform app...in the asp.net the code below doesn't work. I get that no values are coming back to fill rsp. Works in the app but not the web. Any one had any problems with webservices??
Dim req As New comsbciotlinequalLineQualRequest
Dim rsp As New comsbciotlinequalLineQualResponse
'Dim x As comsbciotcompqualComputerQualifyRequest
With req
.clientID = USERNAME
.clientPassword = PASSWORD
.workingTN = phoneNumber
.requestType = "1"
.appVersion = "1"
'.promo = PROMOCODE
End With
rsp = Service.processLineQual(req)
Return rsp
Dim req As New comsbciotlinequalLineQualRequest
Dim rsp As New comsbciotlinequalLineQualResponse
'Dim x As comsbciotcompqualComputerQualifyRequest
With req
.clientID = USERNAME
.clientPassword = PASSWORD
.workingTN = phoneNumber
.requestType = "1"
.appVersion = "1"
'.promo = PROMOCODE
End With
rsp = Service.processLineQual(req)
Return rsp