B
Bob Connolly
I have a vb.net windows console
program running on my pc that is serving as a client to pull down information
from a web service on a server. To do this I first added a Web reference (in
Solution Explorer) which I called AmiClmSvc_WebService (setting the Web
Reference URL property to point to the WSDL on my server with the web
service). Then in my code I have:
Dim AmiClmSvc_Proxy As New AmiClmSvc_WebService.AmiClmSvc
Then later I have:
Dim AmiClaimSummary_Result As Object
AmiClaimSummary_Result = _
AmiClmSvc_Proxy.AmiClaimSummary(SelectDate.ToString, SelectDate.ToString)
On this last step I am getting a timeout after 100 seconds, which I have
read is the default setting. I need to change the timeout value to something
higher than that, but do not know what syntax I need to use in order to do
that.
Can anyone help me with this?
program running on my pc that is serving as a client to pull down information
from a web service on a server. To do this I first added a Web reference (in
Solution Explorer) which I called AmiClmSvc_WebService (setting the Web
Reference URL property to point to the WSDL on my server with the web
service). Then in my code I have:
Dim AmiClmSvc_Proxy As New AmiClmSvc_WebService.AmiClmSvc
Then later I have:
Dim AmiClaimSummary_Result As Object
AmiClaimSummary_Result = _
AmiClmSvc_Proxy.AmiClaimSummary(SelectDate.ToString, SelectDate.ToString)
On this last step I am getting a timeout after 100 seconds, which I have
read is the default setting. I need to change the timeout value to something
higher than that, but do not know what syntax I need to use in order to do
that.
Can anyone help me with this?