WinForms and WebService

  • Thread starter Thread starter Jack Wright
  • Start date Start date
J

Jack Wright

Dear All,
If I create a proxy object to a WebService in my Form as an
instance object, does it create a process thread in my WebServer that
is hosting the WebService?....
As the WebService object gets an error if I try to call a WebService
method after around 30 minutes of inactivity...is re-creating the
oprxy object the right solution...

Please help...

Many Regards
Jack
 
If I create a proxy object to a WebService in my Form as an
instance object, does it create a process thread in my WebServer that
is hosting the WebService?....

No. The instance of the server side class is created in the moment you call
a method and is
destroyed when the execution of the method finishes.


Ernest
 
But how is my WebServer timing out after 30 minutes of inactivity...my
WebServices have SessionEnabled to false...so it must be ingoring the
SessionTimeout...
Any Clues...

Thanks & Regards
Jack
 
Back
Top