I have a problem with maintaining sessions in ksoap, i asked this question: cookie header missing but nobody seems to know the answer.I have noticed something: when i call a aspx page like this\[code\]URLConnection connection = new URL(url).openConnection(); String cookies = connection.getHeaderFields().toString();\[/code\]where the URL is the url of the aspx page, the returned result had a Set-cookie header.I dont understand why, so anyway i had an idea of calling an aspx web page method instead of web service method, since this one is sending session header.But the problem is that i dont know how to call a aspx page method.I call a web service method like this:\[code\] String NAMESPACE = "http://tempuri.org/"; String METHOD_NAME = "Vrati"; String SOAP_ACTION = "http://tempuri.org/Vrati"; String URL = "http://proba2.somee.com/WebService1.asmx"; SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11); envelope.dotNet = true; envelope.setOutputSoapObject(Request); envelope.addMapping(NAMESPACE, "Kladilnici",new Kladilnici().getClass()); AndroidHttpTransport androidHttpTransport = new AndroidHttpTransport(URL); androidHttpTransport.call(SOAP_ACTION, envelope); SoapObject response = (SoapObject)envelope.getResponse(); \[/code\]So how do i call a asmx method, what should i change? I have been trying to fix this problem for 5 days, im desperate in finding the solutin