ksoap2 Questions
2
Solved
i'm using eclipse to develop over android, i'm trying to connect to a .net webservice... when i'm calling a webmethod ,it is not able t fetch the data when checked in log cat it shows
**10-27 11:...
4
I downloaded ksoap2 from this link:
after importing the downloaded .jar file into an Android project in Eclipse, I got import error for only the first import line (HttpTransportSE). I searched but...
Sundae asked 30/9, 2011 at 6:59
2
My WSDL is like:
<?xml version="1.0" encoding="utf-8"?>
<wsdl:definitions name="ABCWcfService" targetNamespace="http://www.ABC.com/ABCWcfService" xmlns:wsdl="http://schemas.xmlsoap.org/...
1
After working with iOS and dealing with auth challenges without much of a learning curve, I've found that Windows Authentication is much more complicated of a process in Java/Android.
I tried mult...
Turner asked 17/9, 2013 at 22:18
3
Solved
I am using ksoap2 to consume a SOAP based web-service, and the format of the response I am getting is something like:
anyType{
key1=value1;
key2=value2;
key3=anyType{
key4=value4;
key5=valu...
4
Solved
I am trying to call magento api using Soap from android but I am getting XMLpullparser Exception.I am using ksoap library.I seached on google but i can't find any solution.Below is my code..
1 im...
Shock asked 25/6, 2012 at 6:11
2
I am working on an android application which calls a soap function and returns a Diction<string, List<string>>.
The response looks like the below:
<s:Envelope xmlns:s="http://sche...
4
I want to connect to a dot.net based Webservice with my Android 4.03 Device using Ksoap2.
My problem is when i call the soap request i get this exception:
11-16 08:35:08.649: W/System.err(6392): ...
5
Solved
I have to access a existing SOAP webservice from an Android application. I have been provided some WSDL files describing the webservice. Reading some other answers here on SO, it seems ksoap2-andro...
4
Solved
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;
publ...
4
Solved
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 cert...
6
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...
2
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) k...
Sharlenesharline asked 9/5, 2011 at 12:59
2
Solved
i have to pass
<?xml version='1.0' encoding='utf-8' ?>
<hello><username>[email protected]</username>
<password>test</password></hello>
to
Wsdl
&...
Macropterous asked 1/8, 2013 at 6:52
8
Solved
I need to do a Http post of some strings to a web service. I am using KSoap. (partly based on this answer by kuester2000)
@Override
protected JSONObject doInBackground(JSONObject... params) {
Stri...
Chirography asked 4/7, 2013 at 15:10
1
Solved
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 stri...
Costin asked 16/5, 2013 at 9:32
3
Solved
I have done a simple project to call wcf web service using ksoap2. But when it calls envelope.getResponse(); it gives error saying
Error:
SoapFault - faultcode: 'a:InternalServiceFault' faultstrin...
Antonio asked 17/10, 2012 at 6:56
4
i have application that picks the file from a dedicated path on my device and sends it to server.
I m using ksoap2 lib to call .NET webservice to send my file to server. i am using Base 64 encodin...
Soutache asked 1/3, 2013 at 11:58
3
Solved
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()...
2
I used this tutorial and did some changes that it should work for android 4.0.3.
But it still doesn't.
Can someone post me a correct solution?
package com.webservice;
import org.ksoap2.SoapEnvelope...
Clubhaul asked 20/3, 2013 at 11:4
1
Solved
This is in eclipse for an android app. I am using ksoap2 to access a function in an online wsdl. While making a soapobject() to do that, I am coming across this error. I have added the ksoap2 jar f...
1
I'm having a hard time trying to get to see the generated XML with my SoapRequest. This is my code:
SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME);
SoapSerializationEnvelope envelop...
3
Solved
My .NET web service returns an XML. When I call the web service with ksoap2 in Android, I have this issue.
Please help.
My Logcat in Eclipse
12-19 15:58:11.951: W/dalvikvm(2041): threadid=1: t...
Cockeye asked 19/12, 2012 at 16:1
2
Solved
Coming from iOS I'm having a pretty hard time with web services in Android. I've spent several hours trying examples, reading blogs, and communicating successfully with a web service still seems to...
Adversative asked 18/1, 2012 at 17:40
2
Solved
i red a lot of documents about, but i can't consume this .svc file.
I've no problem with .ASMX file. Only SVC i'm not able to consume. It's very very very stressfull....! I can't modify WCF part.
I...
Subhuman asked 22/6, 2012 at 16:29
© 2022 - 2024 — McMap. All rights reserved.