Hello
I have both a web service and a client app, both written using c#.
My question is how can I get the client app call the methods of the web service using the same session?
Hello
I have both a web service and a client app, both written using c#.
My question is how can I get the client app call the methods of the web service using the same session?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Jef VerheydenPosted May 12, 2009, 4:08 AM
Dan McCoyPosted Sep 22, 2007, 9:09 AM
It matters if you want data on the server to persist accross multiple calls.
After the first call (a call to a login function), I want the server to remember which client is which over the next series of calls (and handle each slightly differently), until the client calls a "logout" method.
Anyway, I have solved this problem now. But thanks for your help.
abhishek trivediPosted Sep 22, 2007, 8:50 AM
hi!!
session doesnt matter while you are calling web service function from your application.
simply your application will call different methods of web service and use will ge tthe output depends upon the response.
you dont need to concern about the session.
if you are thinkig in other way do reply me. i will suggest you the alternative.