Tagged Questions
A lightweight and efficient SOAP engine suitable for J2ME or constrained java devices.
17
votes
7answers
58k views
How to call a .NET Webservice from Android using KSOAP2?
I have a problem while calling a webservice. I have a .NET web service on the server, and I am using KSOAP2 (ksoap2-j2se-full-2.1.2) in Android. While running the program I got an runtime exception ...
7
votes
3answers
8k views
How to call a WCF service using ksoap2 on android?
Here is my code
import org.ksoap2.*;
import org.ksoap2.serialization.*;
import org.ksoap2.transport.*;
import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;
public ...
5
votes
1answer
3k views
ksoap2 casting getResponse()
Calling a .net SOAP1.1 web service from android using ksoap2 lib I met a problem of casting response to a custom object. For instance the code below is called correct after ...
4
votes
2answers
441 views
How to pass an enum value to wcf webservice
can ksoap2 pass an enum to webservice?
there is a wcf webservice:
[OperationContract]
string TestEnum(CodeType code);
CodeType is dotnet enum:
public enum CodeType
{
[EnumMember]
...
4
votes
3answers
3k views
Android, KSoap2 and .NET Web Service w/ parameters = NULL result
Apparently this is a fairly often experienced issue. I'm not sure entirely where the problem lies, or what needs to be adjusted, but for the life of me I cannot retrieve anything other than a NULL ...
4
votes
6answers
9k views
how to pass parameter to a webservice using ksoap2?
i'm using eclipse to develop over android, i'm trying to connect to a .net webservice...
when i'm calling a webmethod with no parameters it works fine... but when i come to pass a parameter to the ...
4
votes
4answers
9k views
How to call a .NET web service from Blackberry Simulator?
I have to call a .NET web service (http://192 .168.1.14/ CG/authentication.asmx)from the Blackberry Simulator.Already i have done it in Android with KSOAP2, but i have no idea about how to do this in ...
3
votes
2answers
351 views
Please Android, Ksoap, webService problem 3weeks =(
help me, i'm on it about 3 weeks searching the entire www and cant make it work!
I have a WS and just want to make my app have the response. but I after correct everything unfortunately always get ...
3
votes
1answer
656 views
Web services stub generation + android
I want to generate a android(java) based STUB for accessing all the web services. I have tried generating the stub using following tools:
1) Sun Java (TM) Wireless Toolkit 2.5.2_01 for CLDC,
2) ...
3
votes
2answers
3k views
how to set soap Header using ksoap2 - android
I need to set the soap header information as part of authentication of a web method. I'm using ksoap2 API to call .NET web service. Here is the soap header with request.
soap:Header
DTHeader ...
3
votes
1answer
822 views
Problem with Ksoap2 response
Hey all, i'm having a little problem with ksoap2 and getting response i have the following code on Blackberry client side:
private boolean AddVoiceNote()
{
_webMethod = "AddVoiceNote";
...
3
votes
2answers
3k views
Parse KSoap2 response in android
So I managed to call a webservice using KSoap2 in android but I can't find a way to parse the response...
So here's what I receive from the webservice
anyType{
...
3
votes
0answers
522 views
How to consume Session dependent WCF services using Ksoap2-Android
I am using Ksoap2-Android for consuming the WCF Services.
For the dotnet client we keep the allowCookies="true" in our binding configuration and it sends the same sessionid and keeps my sessions ...
3
votes
3answers
5k views
Andoird ksoap2 https problem
has any one been able to connect to a soap server using ksoap2 android via https?
i keep getting the error that "Hostname <###>was not verified"
im doing
AndroidHttpTransport ...
2
votes
2answers
171 views
Web-service with KSOAP
I am working on a Currency Converter application, and I cannot get a proper output (I am getting a zero).
I am using the webservice from ...
2
votes
2answers
67 views
Saving bytes from a .NET WebService from Android
I have an Android application that calls an .NET WebService that sends back a base64 binary encoded bytes (it's a PDF file).
My goal is to save these bytes as a PDF file on the device's sdcard.
Here ...
2
votes
1answer
72 views
Android:About android webservice
I have to set proxy,username and password when my computer try to connect with the Internet.And I set them in my Android Virtual machine and it works.(The virtual machine can access the Internet).But ...
2
votes
1answer
139 views
How to get round trip time while calling SOAP webservice using KSOAP in android?
I am developing an android application which rely on .Net web service for dynamic data. So, to communicate with SOAP web methods i am using KSOAP2 third party api. It is working fine. but i need to ...
2
votes
1answer
516 views
Accessing HTTP authentificated SOAP webservice via KSOAP2 HttpTransportBasicAuth
I need to connect to webservice, which requers authorization.
I tried to use headers:
Element usernameElement = new Element().createElement(NAMESPACE, "Username");
...
2
votes
2answers
403 views
Consuming a SOAP webservice without ksoap2 in Android
In my Android application, i'm using ksoap2 library for consuming a soap ( & .net) webservice. It works correctly but it's very slow (for parsing, controls, loops and Base64ToBinary processes). I ...
2
votes
2answers
643 views
How to add properties to this soap wsdl android
My Soap wsdl is:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:tem="http://tempuri.org/">
<soapenv:Header/>
<soapenv:Body>
...
2
votes
1answer
361 views
Android KSoap2 how to get property name
I am using KSoap2 for calling web-services for my Android app. I am using following code tto call the web-service.
SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME);
...
2
votes
1answer
180 views
How to use KSOAP fault-messages
I'm invoking a Java-based web-service with KSOAP2 for Android, and I would like to know how I can make use of the KSOAP fault-messages.
For example: The response-dump looks like this:
...
2
votes
1answer
287 views
Webservice response is not XML
I am new to Android. I'm trying to consume a web service that's response is not XML. It's a string. Also my friend who's developing iPhone application get an XML response.
I'm using ksoap2 lib and ...
2
votes
1answer
2k views
using addMapping without the “i:type=” attribute in ksoap2 for android
I am using the envelope.addMapping function in ksoap2 and I need to make it generate items with no i:type attribute.
This is the soap request my code generates
<v:Envelope ...
2
votes
1answer
604 views
ksoap2 error sending complex object
Need help! I'm trying to figure this problem
03-01 20:56:17.342: WARN/System.err(610): java.lang.NullPointerException
03-01 20:56:17.463: WARN/System.err(610): at ...
2
votes
2answers
2k views
Ksoap2 is not working in android 3.0 getting NetworkOnMainThreadException
Ksoap2 is not working in Android 3.0. Logcat shows:
02-24 20:18:34.536: ERROR/AndroidRuntime(428): java.lang.RuntimeException: Unable to start activity ComponentInfo{com. Bill/com. Bill.Diag}: ...
2
votes
2answers
4k views
KSOAP2 for Android gives
I'm trying to access a web service whose WSDL is at http://srilanka.lk:9080/services/CropServiceProxy?wsdl . Using SoapUI I sent a request and successfully got a response.
Then using KSoap2 for ...
2
votes
1answer
2k views
Blackberry kSoap2 & Soap Header
Trying to specify a custom soap header. Not sure how the SoapEnvelope.headerOut propery is to be populated.
My code so far?
String soapAction = serviceNamespace + "/SearchCustomer";
SoapObject rpc = ...
2
votes
3answers
3k views
Android 1.6 ksoap2 “RuntimeException: Cannot serialize: java.util.GregorianCalendar..”, while passing datetime parameter
I have to call .net web services in android using ksoap2 api.
My code is working well for passing parameter as String or int. But it showing "java.lang.RuntimeException: Cannot serialize: ...
2
votes
1answer
612 views
KSoap-Android\JCIFS sends empty HTTP post
I created an NTLM authenticating SOAP client based on KSOAP-Android and JCIFS. The implementation looks something like this:
public class NtlmServiceConnection implements ServiceConnection
{
...
2
votes
3answers
4k views
KSOAP 2 Android with HTTPS
I am using KSOAP2 to manage SOAP in Android but it use https for the SOAP url and I am getting this error: javax.net.ssl.SSLException: Not trusted server certificate
A normal error because the ...
2
votes
3answers
1k views
Problem passing simple string parameter to .net webservice
I have the following code which invokes a .net webservice. The code connects to the service fine, but the paramter(deviceid) does not appear to get passed. The method simply returns the passed ...
2
votes
3answers
1k views
Return ArrayList from .net web service to android application using kSoap
My web service is returning quite a bit of data, so i'm storing it in an arraylist and returning that to my application. I don't know whether or not this is the preferred method or not. When the ...
2
votes
2answers
869 views
NullPointerException when trying to connect to web service using kSoap method Android
My web service should be returning an integer, but every time i run the code i get the NullPointerException error.
Any ideas or help would be very appreciated
Here's my code:
public class ...
2
votes
1answer
2k views
Call webservice from Android using KSoap simply returning “error” string
I'm trying to use ksoap to call a simple webservice. I followed this video to try to get started. When I call "getResponse()" on the envelope I just get the string "Error". There's no exceptions ...
2
votes
2answers
4k views
Having trouble binding a ksoap object to an ArrayList in Android
I'm working on an app that calls a web service, then the webservice returns an array list. My problem is I am having trouble getting the data into the ArrayList and then displaying in a ListView. Any ...
1
vote
1answer
20 views
How can I cast or deserialize SoapObject to my object?
I have a .Net Webservice that returns a simple serialized object.
I Have the following code to get response from my .Net webservice. How can I deserialize returned XML to my object?
I want to return ...
1
vote
2answers
88 views
XmlPullParserException when using SAP WSDL WebService
I'm desperatly searching for the cause of this XmlPullParserException in KSOAP2-Android.
Here is the code:
String NAMESPACE = "urn:sap-com:document:sap:soap:functions:mc-style";
...
1
vote
2answers
77 views
Exception is raised in J2ME when calling a webservice which calls a PHP function selecting accentuated letters from a MySQL table column
I want to call a webservice from a J2ME application :
public String alimenterBaseDeDonneesEtapeProsp( String login, String password,String adresse,String site)
{
Object ...
1
vote
2answers
109 views
KSOAP2 Library…Error sending data to asmx webservice
I have an ASMX webservice setup on Microsoft Azure and I'm trying to send data to the webservice and receive output using an android application. For this purpose, I am using the KSOAP library.
On ...
1
vote
1answer
28 views
Complex types passing between axis2 server and Android application
I am having a very big problem!
I have a web service (running on tomcat, axis2) and an Android client (using ksoap2).
The web service has method that recieve and return complex types in array or as ...
1
vote
2answers
143 views
KSOAP 2 with complex objects
I have a problem with KSOAP2 for android with dependencies on an Android device.
I followed the instruction from seesharpgears ...
1
vote
0answers
78 views
Android XStream Object Java WebService
I have a running webservice and I want to call the Method of the Webservice and should show the result in a TextView on the mobile. The Webservice is working very well, for testing I can get a string ...
1
vote
1answer
85 views
Pass Array using Web services in Ksoap2
I have to call a web service in which web service is called by kSoap2 method, now in this one node is a Array so how i can pass it.
POST /opera/OperaWS.asmx HTTP/1.1
Host: 182.71.19.26
Content-Type: ...
1
vote
1answer
214 views
call a web service from android app
i build a simple soap web service to Netbeans. Now i am trying to call that web service from my android application in Eclipse. I use ksoap2 and i run the android app to a real device not to ...
1
vote
3answers
95 views
Compare two hash strings generated using SHA-1 in Android
Here is the flow of my Android code:
I am using SHA-1 hashing to hash a password entered by the user via EditText. I get a hash string as output over here.
After that I am calling a SOAP web service ...
1
vote
1answer
110 views
Issue in sending Complex parameters in KSOAP
I am facing an exception while sending the complex class parameters over the wsdl.
In my response I am getting this Log:
Exception: SoapFault - faultcode: 'S:Server' faultstring: ...
1
vote
1answer
214 views
Out of memory on a byte allocation (Bitmap as String to webservice using soap)
Am having a bitmap , so I want to upload a webserivceas string and want to retrive the string.
For converting bitmap to string am using:
ByteArrayOutputStream stream = new ByteArrayOutputStream();
...
1
vote
1answer
107 views
SOAP web service returning incorrect response
I am working on localhost ..I have made a web service in .NET that takes in user name and password and authenticates the user..My web service code is:http://pastebin.com/GQGtKSqq and my log cat shows ...