- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我刚刚接触到 ksoap2,因为它在 android 应用程序中使用了我自己的 asp .net web 服务。我在 Internet 上发现了一些很棒的资源,并且我已经在 Android 应用程序中实现了我的网络服务。
以下是我使用的网络服务的响应:
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<CheckAuthenticationResponse xmlns="http://tempuri.org/">
<CheckAuthenticationResult>boolean</CheckAuthenticationResult>
</CheckAuthenticationResponse>
</soap:Body>
</soap:Envelope>
为了使用上述服务,我实现了以下代码:
public static Boolean isAuthenticated(String UserName, String Password)
{
String NAMESPACE = "http://tempuri.org/";
String METHOD_NAME = "CheckAuthentication";
String SOAP_ACTION = "http://tempuri.org/CheckAuthentication";
String URL = "http://primehangout.com/primehangoutweb.asmx";
SoapObject Request = new SoapObject(NAMESPACE, METHOD_NAME);
PropertyInfo pi = new PropertyInfo();
pi.setName("UserId");
pi.setValue(UserName);
pi.setType(String.class);
Request.addProperty(pi);
PropertyInfo pi2 = new PropertyInfo();
pi2.setName("Password");
pi2.setValue(Password);
pi2.setType(String.class);
Request.addProperty(pi2);
SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11);
envelope.dotNet = true;
envelope.setOutputSoapObject(Request);
try
{
AndroidHttpTransport transp = new AndroidHttpTransport(URL);
transp.call(SOAP_ACTION, envelope);
SoapPrimitive result = (SoapPrimitive)envelope.getResponse();
return Boolean.parseBoolean(result.toString());
}
catch(Exception e)
{
}
return false;
}
它工作正常..但是现在我要消费一个服务。所需服务的请求格式如下:
POST /primehangoutweb.asmx HTTP/1.1
Host: primehangout.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://tempuri.org/GetComment"
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Header>
<AuthSoapHd xmlns="http://tempuri.org/">
<strUserName>string</strUserName>
<strPassword>string</strPassword>
</AuthSoapHd>
</soap:Header>
<soap:Body>
<GetComment xmlns="http://tempuri.org/">
<UId>string</UId>
<refID>int</refID>
</GetComment>
</soap:Body>
</soap:Envelope>
所需服务的响应如下:
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<GetCommentResponse xmlns="http://tempuri.org/">
<GetCommentResult>
<xsd:schema>schema</xsd:schema>xml</GetCommentResult>
</GetCommentResponse>
</soap:Body>
</soap:Envelope>
我在以前的 iPhone 应用程序中使用 XMLReader 类使用过相同的服务,但由于我是 android 的新手,我需要你们的帮助。
:)
感谢大家阅读我的帖子!
最佳答案
对于集成 KSoap 2 你必须添加依赖到你的 build.gradle 文件。
repositories {
maven { url 'https://oss.sonatype.org/content/repositories/ksoap2-android-releases/' }
}
dependencies {
compile 'com.google.code.ksoap2-android:ksoap2-android:3.6.2'
}
修改AndroidManifest.xml
为了在 Internet 上公开的 Web 服务上进行 soap 调用,需要添加额外的权限。
<uses-permission android:name="android.permission.INTERNET" />
然后深入研究代码
Thread thread = new Thread() {
@Override
public void run() {
String SOAP_ACTION = "https://www.w3schools.com/xml/FahrenheitToCelsius";
String METHOD_NAME = "FahrenheitToCelsius";
String NAMESPACE = "https://www.w3schools.com/xml/";
String URL = "https://www.w3schools.com/xml/tempconvert.asmx";
//Initialize soap request
SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME);
//Use this to add parameters
request.addProperty("Fahrenheit", "10");
//Declare the version of the SOAP request
SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11);
envelope.dotNet = true;
envelope.setOutputSoapObject(request);
try {
//Needed to make the internet call
HttpTransportSE transport = new HttpTransportSE(URL);
List<HeaderProperty> headerList = new ArrayList<HeaderProperty>();
headerList.add(new HeaderProperty("Authorization", "Basic " + Base64.encode((username + ":" + password).getBytes())));
transport.call(SOAP_ACTION, envelope, headerList);
//Get the Response from the envelope body.
SoapPrimitive result = (SoapPrimitive) envelope.getResponse();
} catch (Exception e) {
Log.e("TESTS", "KSOAP2", e);
}
}
};
thread.start();
关于java - 如何在安卓中使用 KSoap 2,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5155027/
我的 kSOAP 网络服务将 xml 返回为这种格式我如何从中获取 country_name anyType{country=anyType{country_name=Egypt; };
我能够使用 ksoap2 获取复杂的类响应,现在我得到的响应是 xml 形式 任何人都可以帮我解决如何解析这个 Ksoap 响应吗?我已经在论坛上阅读了为它添加映射的内容,我也添加了映射。我可以使用
我一直在使用 Android 版 KSOAP 发送包含 6 个元素的 SOAP 请求,最后一个元素是一个值数组。这是代码... PropertyInfo properties[] = n
我在我的 Android 应用程序中使用 KSoap。我的应用程序使用 Web 服务与服务器通信。我找到了一个 KSoap wev 服务客户端的代码示例。在示例中,客户端使用以下代码与服务器进行通信
我正在使用 KSOAP2 调用 Web 服务。我收到了回复,但该回复中的特殊字符未正确显示。 我怎样才能改变它? 编辑: 以下代码负责发送和接收数据: package org.ksoap2.trans
我正在使用 Android ksoap2 库来使用 SOAP 网络服务。 请求中的一个节点看起来像.. //some more nodes .............
我有 ksop 请求。我揉出来的是 asdfdsafdsfasdfdsa
我正在使用支持超时的 ksoap2 2.5.4(在 Android 2.2 上)。我正在使用 Apache 2.2.16 来处理我的请求。一切正常,但当我关闭我的 Apache(或断开运行 Apach
帮帮我,我花了大约 3 周的时间搜索整个 www,但无法正常工作! 我有一个 WS,只想让我的应用程序有响应。但不幸的是,我在更正所有内容后总是得到以下错误! 08-09 15:29:30.930:
当向 soap 对象添加属性时无法指定其类型....我需要整数但它总是将其设置为“d:string”1312191347这是我添加属性(property)的方式: SoapObject _client
我在尝试使用 kSOAP2 在 Android 中使用 ColdFusion SOAP 服务时遇到了一个问题。这是我的 java 代码,用于调用我在 ColdFusion 中编写的测试方法(它只返回一
我正在尝试通过 kSOAP(直接从 Google 下载并包含“.jar”)调用公共(public) Web 服务 (w3schools.com/webservices/tempconvert.asmx
有没有人有使用 kSOAP 包的良好的复杂对象编码示例? 最佳答案 虽然这个例子不是可编译的和完整的,但基本思想是有一个类告诉 kSOAP 如何将 XML 标记转换为对象(即 readInstance
我正在通过 SOAP 发送多个 PDF 文件,Android 客户端将接收这些文件。但是当收到 SOAP 响应时,它会抛出 OutOfMemoryException。 我想知道它是否是 kSOAP 或
我正在使用 Android 中的 Ksoap 访问 .net 网络服务。 wsdl 的格式是这样的 Date1 Date2 我对 DateTo 使用相同的 addPropert
我不知道为什么我不能得到这个?......也许我遗漏了什么或者我太笨了 我想尝试从 Android 应用程序调用网络服务 现在要做到这一点,发现适用于 Android 的 kSOAP 2 是所需的库
我正在使用 ksoap2 (ksoap2-android-assembly-3.0.0-RC.1-jar-with-dependencies.jar) 与我的 android 应用通信在 jboss
我在下面显示的代码中使用 soap 访问 Web 服务并收到以下错误,我需要帮助来理解: SoapFault - faultcode: 'soap:Server' faultstring: 'Syst
我希望生成像这样的 soap 请求: - - Connect -
马上,这是我的 Soap 调用实现,减去不相关的位。 public class MySoapClient implements AbstractSoapClient { private Str
我是一名优秀的程序员,十分优秀!