WinForms and WebService

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
 
E

Ernest Morariu

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
 
J

Jack Wright

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top