Dumb question, but I just can’t seem to get it to work. I’m passing in parameters and returning string values, but all I receive is: org.apache.http.conn.EofSensorInputStream. Do I need to do something special in my web service to access the parameters being passed?
Share
How are you passing parameters? In my experience with .net web services, you need to access them using soap. however, Android/Java does not have its own soap library so you need to add ksoap2 for android to your project, or write your own soap library (i suggest the first). If you google “ksoap2 for android” you should be able to find the jar, as well as some examples.