3

我在 Microsoft Azure 上有一个 ASMX 网络服务设置,我正在尝试将数据发送到网络服务并使用 android 应用程序接收输出。为此,我使用了 KSOAP 库。

在网络服务上,我正在检查字符串是否为空。如果是,我返回错误代码“2405”

[WebMethod]
        public string LoginUser(string auth_token, string username)
        {
            // All these tests performed, so someone from outside of out application
            // scope does not attempt to abuse our webservice.
            #region Check for nulls
            if (string.IsNullOrEmpty(auth_token))
                return "2405";
            if (string.IsNullOrEmpty(username))
                return "2405";
            #endregion
        }

在我的android应用程序中,我正在发送数据,但是webservice仍然返回2405错误代码,这意味着数据没有发送。

以下是我的安卓代码:

        SoapObject request = new SoapObject(NAMESPACE, method_name);

        PropertyInfo pi = new PropertyInfo();
        pi.setName("auth_token");
        pi.setValue("TestAuth");
        request.addProperty(pi);

        PropertyInfo pe = new PropertyInfo();
        pe.setName("username");
        pe.setValue("TestUser");
        request.addProperty(pe);

        SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(
                SoapEnvelope.VER11);
        envelope.dotNet = true;

        envelope.setOutputSoapObject(request);
        HttpTransportSE androidHttpTransport = new HttpTransportSE(URL);
        androidHttpTransport.call(SOAP_ACTION, envelope);

对不起,我可以给你提供命名空间、方法名、url等。这是违反公司政策的,希望你能理解。:)

不过,我会再次检查错误。调用上述 Android 代码后,webservice 返回 2405,根据 ASMX 代码,这两个值中的任何一个为 null。

更新:我调试了 SOAP 请求(androidHttpTransport.debug = true)并得到了 requestDump 和 responseDump 的以下结果。

请求转储

<v:Envelope xmlns:i="http://www.w3.org/2001/XMLSchema-instance" 
            xmlns:d="http://www.w3.org/2001/XMLSchema" 
            xmlns:c="http://schemas.xmlsoap.org/soap/encoding/" 
            xmlns:v="http://schemas.xmlsoap.org/soap/envelope/">
  <v:Header />
  <v:Body>
    <LoginUser xmlns="http://tempuri.org" id="o0" c:root="1">
      <auth_token i:type="d:string">TestAuth</auth_token>
      <username i:type="d:string">TestUser</username>
    </LoginUser>
  </v:Body>
</v:Envelope>

响应转储

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" 
               xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
               xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <soap:Body>
    <LoginUserResponse xmlns="http://tempuri.org/">
      <LoginUserResult>2405</LoginUserResult>
    </LoginUserResponse>
  </soap:Body>

</soap:Envelope>

更新 2
这是服务器所期望的:

<?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>
    <LoginUser xmlns="http://tempuri.org/">
      <auth_token />
      <username />
    </LoginUser>
  </soap:Body>
</soap:Envelope>

这是android 应用程序发送的内容:

<?xml version="1.0" encoding="utf-8"?>
<v:Envelope xmlns:i="http://www.w3.org/2001/XMLSchema-instance"     xmlns:d="http://www.w3.org/2001/XMLSchema"  xmlns:c="http://schemas.xmlsoap.org/soap/encoding/"     xmlns:v="http://schemas.xmlsoap.org/soap/envelope/">
<v:Header />
    <v:Body>
        <LoginUser xmlns="http://tempuri.org" id="o0" c:root="1">
            <auth_token i:type="d:string">TestAuth</auth_token>
            <username i:type="d:string">TestUser</username>
        </LoginUser>
    </v:Body>
</v:Envelope>

除此之外,我还在 android 代码中添加了以下行:

androidHttpTransport.setXmlVersionTag("<?xml version=\"1.0\" encoding=\"utf-8\"?>");

请帮忙!

非常感谢!

4

3 回答 3

2

我能够清除错误...问题是我在命名空间 URI 之后没有反斜杠...我没有的原因是反斜杠出现错误“序列不包含元素”。 ..现在,但是,我遇到了不同的错误...如果我需要帮助,我会在 StackOverFlow 上发帖...感谢您的慷慨帮助 :)

需要明确的是,命名空间的末尾必须有一个反斜杠,以便服务器接收任何参数。

于 2012-01-16T16:32:53.500 回答
0

您好
有两种方法可以解决您的问题:一种是您使用 PropertyInfo 的方法,一种是我的方法:直接将参数添加到请求参数中。

第一种方法:

            PropertyInfo pi = new PropertyInfo();
            pi.setName("auth_token");
            pi.setValue("TestAuth");
            pi.setType(String.class);
            request.addProperty(pi);

            PropertyInfo pe = new PropertyInfo();
            pe.setName("username");
            pe.setValue("TestUser");
            pe.setType(String.class);
            request.addProperty(pe);

第二种方式:

    SoapObject request = new SoapObject(NAMESPACE, method_name);
    request.addProperty("auth_token","TestAuth");
    request.addProperty("username","TestUser");

试试这个代码它会工作。

于 2012-01-12T08:24:37.703 回答
0

在命名空间它可以帮助你用大写 H 编写 http,就像这样

而不是命名空间=“http://tempuri.org/”;试试这个命名空间=“http://tempuri.org”;

至少在我的情况下有所帮助。我希望一些身体有所帮助!

加布里埃尔

于 2012-12-01T04:25:00.740 回答