Adding cookies to Webservices
Iam trying to pass cookies from User Interface(WebApp) to WEbservice.
Iam using soapcontext to add the cookies
//the cookie is added //Iam trying to find out whether the cookie is passed at webservice it always return false I would like to know what is wrong with this or any other method thru which i can pass cookies
m is the webservice proxy name
SoapContext sContext = m.RequestSoapContext;
sContext.Add("cookies",aCookie);
Thanks in advance

