gpt4 book ai didi

android - 通过 KSOAP2 HttpTransportBasicAuth 访问 HTTP 认证的 SOAP 网络服务

转载 作者:行者123 更新时间:2023-11-29 02:11:48 24 4
gpt4 key购买 nike

我需要连接到需要授权的网络服务。我尝试使用 header :

Element usernameElement = new Element().createElement(NAMESPACE, "Username");
usernameElement.addChild(Node.TEXT, "user");
Element passwordElement = new Element().createElement(NAMESPACE, "Password");
passwordElement.addChild(Node.TEXT, "pass");
Element header = new Element().createElement(NAMESPACE, "AuthHeader");
header.addChild(Node.ELEMENT, usernameElement);
header.addChild(Node.ELEMENT, passwordElement);

soapEnvelope.headerOut= new Element[]{header};

我收到错误:07-25 14:03:20.922: WARN/System.err(584): org.xmlpull.v1.XmlPullParserException: 预期: START_TAG { http://schemas.xmlsoap.org/soap/envelope/ }信封(位置:java.io.InputStreamReader@44f632f8中的START_TAG @1:6)

我知道,网络服务正在返回一些 HTML 格式的错误,但我如何才能看到它是什么?我可以制作这样的请求的 textview.settext() 或将其打印到 LogCat 吗?我怎样才能做到,为什么我会收到它?:(

然后,我尝试使用 HttpTransportBasicAuth 类 - 遇到很多问题才能使其正常工作 - 我不得不将其添加到项目中,手动将其扩展名从 HttpTransport 更改为 HttpTransportSE,从 ServiceConnectionMIDP 更改为 ServiceConnectionSE,因为没有这样的ksoap2-android-assembly-2.5.7 中的类。终于编译成功了:

package com.android.testinet;

import org.ksoap2.transport.*;

import org.ksoap2.transport.HttpTransportSE;
import java.io.*;

public class HttpTransportBasicAuth extends HttpTransportSE {
private String username;
private String password;
/**
* Constructor with username and password
*
* @param url
* The url address of the webservice endpoint
* @param username
* Username for the Basic Authentication challenge RFC 2617
* @param password
* Password for the Basic Authentication challenge RFC 2617
*/
public HttpTransportBasicAuth(String url, String username, String password) {
super(url);
this.username = username;
this.password = password;
}

protected ServiceConnection getServiceConnection() throws IOException {
ServiceConnectionSE midpConnection = new ServiceConnectionSE(url);
addBasicAuthentication(midpConnection);
return midpConnection;
}

protected void addBasicAuthentication(ServiceConnection midpConnection) throws IOException {
if (username != null && password != null) {
StringBuffer buf = new StringBuffer(username);
buf.append(':').append(password);
byte[] raw = buf.toString().getBytes();
buf.setLength(0);
buf.append("Basic ");
org.kobjects.base64.Base64.encode(raw, 0, raw.length, buf);
midpConnection.setRequestProperty("Authorization", buf.toString());
}
}

}现在可以使用 HttpTransportBasicAuth.call 方法,因为没有错误,但我仍然收到错误:07-25 14:03:20.922: WARN/System.err(584): org.xmlpull.v1.XmlPullParserException: 预期: START_TAG { http://schemas.xmlsoap.org/soap/envelope/ }信封(位置:在 java.io.InputStreamReader@44f632f8 中的 START_TAG @1:6)当我运行项目时。这是我尝试连接到网络服务的代码:

  HttpTransportBasicAuth aht= new HttpTransportBasicAuth(URL, "user", "pass");
try
{

aht.call(SOAP_ACTION, soapEnvelope);

SoapPrimitive tmp_ResultString = (SoapPrimitive) soapEnvelope.getResponse();
ResultString = tmp_ResultString.toString();
// tv.setText(ResultString);
}
catch(Exception e)
{
e.printStackTrace();

}

最后,我尝试使用这个来源: Webservice Http Authentication - KSOAP2 on Android但是编译器不知道 HeaderProperty 是什么。我应该导入什么才可以?请回答我如何查看 webservice 在 <html> 中返回的确切错误消息标记,因为我在 LogCat 中收到错误,如果我在尝试使其工作时做错了什么,请回答。

最佳答案

您需要使用 ksoap2-Android 2.5.7 (http://code.google.com/p/ksoap2-android/wiki/ProjectNews)

在那里您可以找到 HeaderProperty 类。您显示的链接至少对我有用。

关于android - 通过 KSOAP2 HttpTransportBasicAuth 访问 HTTP 认证的 SOAP 网络服务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6817685/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com