Y
yao
there are two web method in my web service.
bool verifyUser(string user, string pwd)
DataSet GetData()
that I need connect the web service by WinForm, I hope the client is
verified by server by the verifyUser() ,and then it is allowed to execute
the GetData() method.
I think winform can't use Session object or Cookie for managing session
state, are there any good solutions for this?
bool verifyUser(string user, string pwd)
DataSet GetData()
that I need connect the web service by WinForm, I hope the client is
verified by server by the verifyUser() ,and then it is allowed to execute
the GetData() method.
I think winform can't use Session object or Cookie for managing session
state, are there any good solutions for this?