A lightweight and efficient SOAP engine suitable for J2ME or constrained java devices.

learn more… | top users | synonyms

1
vote
0answers
4 views

send zip file using ksoap2

I'm trying to send a zip file using ksoap2 as client... File is arriving but corrupted, I think is something in my code when I encode it in Base64 (I'm using commons code)... WS FileInputStream fis ...
0
votes
0answers
10 views

Customization of ksoap2-android body

How i customize my body in envelop? For example, how I can read and change "id" in body. This my cod SoapObject request = new SoapObject(NAMESPACE, "State"); request.addProperty( "a", ...
0
votes
1answer
23 views

issue in blackberry app with ksoap library

I need to consume a web service from blackberry. But i couldn't run the app with the Ksoap library - i am using ksoap2-j2me-core-2.1.2.jar. when i run the app i got this run time issue ...
1
vote
0answers
36 views

How to sign SOAP Message used ksoap2 library whit certificate x509 on Android app?

How I can sign my SOAP Message (for example UserToken in Header) used ksoap2 library for SOAP message and certificate x509 on Android app? I can send this message: <soap:Envelope ...
3
votes
0answers
48 views

How to parse Complex response with use of ksoap2 library in android

Hi all i am parsing following type of response with use of Ksoap2 library but not getting success to get result my request is like this: <soapenv:Header/> ...
0
votes
1answer
15 views

When to use Soapobject and SoapPrimitive

I have been working with ksoap2 lately. I am still confused whether what is the EXACT difference between SoapObject and SoapPrimitive. And when to use them. I guess its something related to string ...
0
votes
1answer
54 views

android send data to a .net webservice

I am trying to create a android app to send text and photos to .net webservice. I have functions in my webservice. one of them gets a dummy name(I created this to check if I can make a connection) and ...
0
votes
0answers
35 views

issue for blackberry webservice consume

Hi I am new to blackberry.So i have to try consume the web service. and pre-verified the ksoap2-j2me-core-2.1.0. and import the jar into my project. But I got some warning messages in run time.. And i ...
0
votes
0answers
28 views

android take photos and send it to soap webservice

I have two activities in my application. First on is takes 3 photos with the camera and get some text from the user. when the user clicks the "next" button, it goes to the second activity with all ...
0
votes
0answers
24 views

android ksoap2 crashes and I cannot catch it

I am following this tutorial . it is very straight-forward and I like it but It crashes on emulator. I cannot catch the error. I dont understand the problem. here is the piece of code. private final ...
2
votes
1answer
84 views

Server was unable to process request.Connection was not closed

I am new for android and and webservices. I am trying to access the web service . I am using asp.net webservices and doing all these work in asyntask.But it gives me error as 05-14 15:28:20.838: ...
0
votes
0answers
21 views

Receive and cast complex object with android and ksoap2 from WCF

I am using ksoap2 and wcf service. I am able to sending and receiving data. I Send complex objects implements(KvmSerializable) but i am not able to receive the same objects from server. All time i ...
0
votes
0answers
36 views

Parsing XML for using variables and listview,gridview

I have a simple problem that I wasn't able to solve. I get xml from web service but I cannot use each them for string etc. variables or list. Thread Thread_ = new Thread() { ...
0
votes
0answers
16 views

Complex Type Response Ksoap2

I have this response (envelope) for a complex object. <S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"> - <S:Body> - <ns2:getPermissionsResponse ...
-2
votes
1answer
32 views

How to parse <strxml>String</strxml> using soap?

This is my SOAP webservice.i have donn. Bt it got error.This is my code.Can anyone help me.how to parse string in android. int string int int string string ...
0
votes
0answers
46 views

Sending GUID ksoap2 on Android and .NET Wcf service

I Have problem with send guid (in complex object) from android (by ksoap2) to wcf service. I implemented KvmSerializable and in this class have UUID. Implementation looks like that: public Object ...
0
votes
1answer
41 views

KSOAP2 Handling complex response (vector)

I'm struggeling on getting a complex type (list) out of my response for three days now, but always getting a ClassCastException D/SOAPEnvelope(1552): Error: java.lang.ClassCastException: ...
0
votes
2answers
48 views

How can I make a ksoap2 call in async task?

I am a newbie on android development. I am trying to develop an application which will connect with .net webservice in order to retrieve data. I would like to make the ksoap2 call with async task. How ...
-1
votes
0answers
51 views

Error on Soap primitive data Android

I m using Soap to call asp.net (c#) web service from android. Below is my service.cs file [WebService(Namespace = "http://tempuri.org/")] [WebServiceBinding(ConformsTo = ...
-3
votes
0answers
26 views

how to know if ksoap2 uses http or https [closed]

I have an android app which comunicates with a web service using ksoap2. I tried to figure whether I am using http or https but with no luck. This is my code, I hope to get some help: SoapObject ...
1
vote
0answers
50 views

Getting org.xmlpull.v1.XmlPullParserException for SOAP connection in BlackBerry

I am using ksoap2.jar in my application for webservice call. While conneting, to the server it is giving the below error when i am testing using Wi-fi or simulator: ...
-1
votes
1answer
39 views

string parsing to get an attribute java android

I am programming in android and I am getting some xml data through SOAP which I am placing in a string object. Now I want to get all the id's from and put them in an array. How do I do that ?????? ...
0
votes
0answers
53 views

How to call multiple webservices in the same activity

I am new to Android and working on calling multiple web services in one Activity in different AsyncTask. If I call two web services in same activity it gives me that server connection is not close. ...
0
votes
0answers
59 views

Web service denying a passed string, on Android with KSoap2

I'm creating an Android application that communicates with a SOAP web service, and I'm using KSoap2 to do it. KSoap 2 has been functional (though a little unreliable at times) for the calls I make, ...
0
votes
0answers
29 views

Android: Issue working with SoapObject

I know this may be a trivial question, but I'm going crazy. Considering this three code lines: SoapObject Request = new SoapObject(NAMESPACE,"method"); Request.addProperty("idService", 111); int id ...
0
votes
1answer
70 views

Error in getting a response from web service

I created an Android app which must connect to a web service (created by me), which stores in a database (hosted in a site of free hosting). The web service takes latitude, longitude and text to store ...
0
votes
0answers
30 views

How to send HttpPost request via Ksoap2 library

well I have consumed a .NET web service and parsed the XML response via DOM XML Parser and is working just awesome. but now i want to use kSoap2 for sending the post request and get the XML ...
0
votes
1answer
77 views

Android: calling a simple webservice method using ksoap2

I'm trying to call the method getWeather() of this webservice: http://www.webservicex.com/globalweather.asmx?WSDL Here is my code: public class ServiceCall { private static final String NAMESPACE = ...
0
votes
0answers
16 views

Using ksoap2 in Android - date string gets changed in transport

I am calling a web service method, from my Android application, that returns a date as a string. I just want the date to stay as the string I send back, but when it is returned to the Android app the ...
0
votes
1answer
72 views

kSOAP2 communication with webservices C#

I am trying to send the login credentials from android user to a C# web service running in my local host through visual studio. I have used KSOAP2 for the SOAP communication and wanted to send the ...
1
vote
0answers
72 views

ksoap2 on Android XMLPullParserException: Unexpected Token when using 3g connection

I'm using ksoap2 version 2.5.4 to send soap requests to a server from an android application based on cordova. This works great when using a wifi connection from our test device, but fails whenever a ...
0
votes
1answer
45 views

Accessing primary paramater array in response of a ksoap2 on android

I am using ksoap2 webservice from my android application. I get the following Response from the server: validateUserResponse{return=anyType{authenticated=true; contactNumber=9856456589; ...
0
votes
3answers
30 views

Error ksoap2 serialization

I try to make a simple application to pick up a string of a webservice, I have downloaded the package ksopa2, amounts well made and the correct data (tested on Internet tutorials) and I get the error ...
0
votes
1answer
37 views

Restoring web serivce call

I am not so sure whether this is even possible or not. I am using Ksoap2 to get the result from webservice. Now I want to just save the data which is returned by server. And want to later use it. Its ...
0
votes
1answer
50 views

Where Can I put IF statement for working?

I have some ksoap web service in timer action which is working every half an hour if I did it well. One of them send whole table rows to sql server and it turns me 0 or 1 depends on correctly sending. ...
1
vote
2answers
149 views

how to parse through complex soap objects in Android

Hello Friends i am using soap web services very first time in my code. but i am not getting how to handle nested soap objects. this is my code private final String URL = ...
2
votes
0answers
90 views

Getting ksoap object from HttpTransportSE.responseDump

I am clueless how to proceed further while converting transport.responseDump which returns string(xml data in string form) to ksoap object. May be some code snippet will help me in describing my ...
0
votes
1answer
183 views

java.lang.RuntimeException: Cannot serialize: 0.0

I am making a soap request in an asyncTask but i getting strange error like 04-18 13:51:25.070: E/AndroidRuntime(23482): at ...
1
vote
1answer
82 views

How to remove i:type=“d:string” from PropertyInfo of SOAP in KSOAP2 Android.(URGENT)

I know this has been asked before and I have surfed for 2 days to find the appropriate solution but failed. I am using ksoap2-android-assembly-3.0.0-jar-with-dependencies.jar I am working on a ...
1
vote
0answers
80 views

Format of ksoap2 envelope not correct

Im trying to send a soap envelope to my .net webservice using ksoap2. Unfortunately the envelope it is creating, the webservice doesn't like. I tested this in soapUI and was getting the same return of ...
0
votes
0answers
32 views

Custom header with Ksoap2

I need my header to look like this: <soap:Header> <ListAuthenticationHeader XmlAttribute="" xmlns="http://example.com/services"> <ApiKey>1234567890</ApiKey> ...
0
votes
2answers
56 views

How to parse soapfault's detail?

I am trying to get the values inside this soap fault's "detail", but I haven't found any ways of doing so. The response from the server: <?xml version="1.0" encoding="UTF-8"?> ...
0
votes
0answers
66 views

Web Service SAP with Android: XmlPullParserException

I have a problem trying to connect a Web Service made in SAP with Android. I know That are already a lot of questions with this Thread, but I tried a lot of solutions and nothing worked. I'm having ...
1
vote
0answers
120 views

KSOAP2 - serialize complex object array in another complex object

I'm trying to send complex object to webmethod via ksoap2. A problem occurs when IDE execute AndroidHttpTransport.call command, it sends that error; java.lang.RuntimeException: Cannot serialize: ...
0
votes
1answer
101 views

Android ksoap2 wsdl

I´am using ksoap2 library. And I need to get namespace, method name, url and action name from http://ec.europa.eu/taxation_customs/vies/checkVatService.wsdl Thx for help
0
votes
0answers
58 views

How to use ksoap2-generating-stub-0.1-SNAPSHOT-jar for android

I have a very complex web service and my project is stuck in constructing Stubs from the WSDL files. I have gone many links and found WsClinet++(Demo version doesn't work for me). I tried using ...
0
votes
3answers
790 views

using SOAP web services with android 4.2

I am developing an application which connects to a web services using SOAP, but I could not make the connection correctly this is my activity: import java.io.IOException; import ...
1
vote
0answers
765 views

Soap Throws java.io.IOException: HTTP request failed, HTTP status: 500

Actually I used this code to access this web service FahrenheitToCelsius Method, am getting the correct response, but when I tried to access my webservice am getting java.io.IOException: HTTP ...
0
votes
1answer
80 views

How to Build ArrayAdapter from result received from webservice?

I am using web service which developed in asp.net that return data type List (List(of String)), I am using Ksoap2 api to call the above Web Service and to get the result from it which is something ...
0
votes
1answer
372 views

is there clear Example of Android ksoap2 returning array of objects from .Net Web service?

I spent a time trying and debugging errors in this issue due to lack of specific info , i followed this articel ...

1 2 3 4 5 17