I have a problem that i dont know how to solve, few days ago i posted a question about using session web service with ksoap. ksoap session web service The problem was that ksoap doesn`t have cookie option so that the sessionID can be stored. But i though about a possible solution, which will work with cookieless session, (sending the sessionID inside the url). The problem is that the session in the web service doesnt work in "cookieless mode", only with cookies which i cant use. Another idea was to implement the same web service methods inside a aspx page so that the cookieless session will work there, but i dont know how to call a page method.And since i dont know how to call a page method, i thought that i should call it from my web service and just resend the returned data.So i need a way to implement my solutions:1) A way to make cookieless session work in a asmx web service2) A way to call a page web method with ksoap so that the cookiless session will work there3) Maybe a way to call an aspx page method from web service method so that i use the web service method like a "bridge" which will resend the page methods returned data.\[code\] String NAMESPACE = "http://tempuri.org/"; String METHOD_NAME = "Test"; String SOAP_ACTION = "http://tempuri.org/Test"; String URL = "http://mysite.com/WebService.asmx"; SoapObject Request = new SoapObject(NAMESPACE, METHOD_NAME); PropertyInfo pi = new PropertyInfo(); pi.setName("s"); pi.setValue("dddddddd"); pi.setType(String.class); Request.addProperty(pi); SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11); envelope.dotNet = true; envelope.setOutputSoapObject(Request); envelope.addMapping(NAMESPACE, "Category",new Category().getClass()); AndroidHttpTransport androidHttpTransport = new AndroidHttpTransport(URL); androidHttpTransport.call(SOAP_ACTION, envelope); SoapObject response = (SoapObject)envelope.getResponse(); \[/code\]........................And my web service method returns a list of Category objects (that is tested and working, but not if i use session).Does anyone has a proposal??