Re: [android-developers] Re: How to use WSDL web service in Android

2012-06-24 Thread Pr@$c#@nt..!
use above link in place of asmx file http://www.w3schools.com/webservices/tempconvert.asmx?wsdl i need help regarding how you make webservices with Visual studio such that the url you is well i, mean "www.w3schools.com" Until i used only local host. I'm unable to publish with w3schools On Mon, Jun

Re: [android-developers] Re: How to use WSDL web service in Android

2012-06-24 Thread MyName? ?
a agree USE KSOAP2 .. good luk On 25 June 2012 10:53, shashi asanka wrote: > package a.b.c; > > import org.ksoap2.SoapEnvelope; > import org.ksoap2.serialization.SoapObject; > import org.ksoap2.serialization.SoapPrimitive; > import org.ksoap2.serialization.SoapSerializationEnvelope; > import or

[android-developers] Re: How to use WSDL web service in Android

2012-06-24 Thread shashi asanka
package a.b.c; import org.ksoap2.SoapEnvelope; import org.ksoap2.serialization.SoapObject; import org.ksoap2.serialization.SoapPrimitive; import org.ksoap2.serialization.SoapSerializationEnvelope; import org.ksoap2.transport.*; import android.app.Activity; import android.net.http.AndroidHttpClien

[android-developers] Re: How to use WSDL web service in Android

2012-06-24 Thread Nguyen Le
ERROR!!! On Thursday, November 6, 2008 10:02:12 PM UTC+7, aviart1 wrote: > > I have simple WSDL web service file and added into project. > Now I am trying to use WSDL web service through android class code, > but not able to use it. > Can anybody suggest how to import WSDL file in ANdroid, so t

[android-developers] Re: How to use WSDL web service in Android

2009-01-03 Thread Margaret
I thought that would be implement by ourself. mawei...@gmail.com 13585201588 2009/1/4 Cattivik : > > It is possible to insert a timeout in AndroidHttpTransport that thrown > an Exception > when the url is down or not respond? > > Please give me some example of code > > thanks > > > --~--~-

[android-developers] Re: How to use WSDL web service in Android

2009-01-03 Thread Cattivik
It is possible to insert a timeout in AndroidHttpTransport that thrown an Exception when the url is down or not respond? Please give me some example of code thanks --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "And

[android-developers] Re: How to use WSDL web service in Android

2008-11-07 Thread Avinash Patil
Thanks Franck!! On Thu, Nov 6, 2008 at 2:55 PM, opengl es <[EMAIL PROTECTED]> wrote: > > Hi, > > I use KSOAP2 (you'll find more about KSOAP2 in forums/groups etc..) > It works great once you know how to deal with XSD and namespaces and > KvmSerializable > > here is what i do: > > private static

[android-developers] Re: How to use WSDL web service in Android

2008-11-07 Thread Quest
Hi Opengl , Initially I was working on android sdk_0.5 and ksoap2 build and my application was running fine.but now in SDk 1.0 i am unable to consume web service using the same library. I know its due to the change in the apache library, but i am unable to get a latest ksoap2 jar lib to work wi

[android-developers] Re: How to use WSDL web service in Android

2008-11-06 Thread opengl es
Hi, I use KSOAP2 (you'll find more about KSOAP2 in forums/groups etc..) It works great once you know how to deal with XSD and namespaces and KvmSerializable here is what i do: private static final String SOAP_ACTION = "MyMethod"; private static final String METHOD_NAME = "MyMethod"; pr