gpt4 book ai didi

android - 在模拟器中使用 kSOAP2 使用本地主机 WCF 服务

转载 作者:太空宇宙 更新时间:2023-11-03 12:41:53 25 4
gpt4 key购买 nike

我已经用头撞墙好几天了,所以非常感谢任何帮助。

首先介绍一下背景。我是一名经验丰富的 WindowsMo​​bile 开发人员,正在转向 Android,因此我是 Java、Android 甚至 WCF 的菜鸟。我已经对如何使用 kSOAP2 在 Android 中使用 WCF 应用程序进行了大量研究,但无论我做什么,我能想到的是由于超时导致的 Android 中的套接字错误。

首先,我在 Visual Studio 2008 中创建了一个 Web 服务应用程序,该应用程序不需要任何参数并且仅使用字符串值进行响应。 Web服务代码如下:

using System;
using System.Collections.Generic;
using System.Web;
using System.Web.Services;

namespace Sample
{
[WebService(Namespace = "http://sample.com/")]
public class Service1 : System.Web.Services.WebService
{
[WebMethod]
public string SayHello()
{
return "Hello, Android. From your friend, WCF";
}
}
}

对于此 Web 服务,我没有调整任何其他设置或对 Web.config 文件进行任何修改。

当我运行该服务时,它会打开我的浏览器并指向以下 url:

http://localhost:61554/Service1.asmx

接下来,我跳入 Eclipse 并创建了一个简单的 Android 项目来使用 WCF 服务。对于初学者,我更改了 AndroidManifest.xml 文件并向其中添加了以下语句:

<uses-permission android:name="android.permission.INTERNET" />

现在是我的 Android 类中应该完成繁重工作的代码:

package com.sample;

import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;

import org.ksoap2.*;
import org.ksoap2.serialization.SoapObject;
import org.ksoap2.serialization.SoapSerializationEnvelope;
import org.ksoap2.transport.*;

public class Sample extends Activity {
TextView result;

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);

result = (TextView)findViewById(R.id.textViewResult);

try {
SoapObject Request = new SoapObject("http://sample.com/", "SayHello");

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

HttpTransportSE androidHttpTransport = new HttpTransportSE("http://192.168.1.72:61554/Service1.asmx");

androidHttpTransport.call("http://192.168.1.72:61554/SayHello", envelope);
SoapObject response = (SoapObject)envelope.getResponse();
String resultValue = response.getProperty(0).toString();

result.setText(resultValue);
}
catch (Exception e) {
result.setText(e.getMessage());
}
}
}

给我错误的代码行是:

androidHttpTransport.call("http://192.168.1.72:61554/SayHello", envelope);

当在模拟器中运行时,代码到达该行,暂停一两分钟,然后进入 catch block 并出现超时异常。

关于我可能在这里遗漏的任何想法?感谢您的帮助。

最佳答案

好的,我终于解决了我的问题。对于这些技术的新手来说,有几个因素在起作用。希望我的错误会为其他人节省一些时间。

我遇到的第一个问题是代码中的参数错误。线路

androidHttpTransport.call("http://192.168.1.72:61554/SayHello", envelope);

不正确,因为它应该列出我的 Web 服务的命名空间,后跟方法名称。所以我将该行更改为:

androidHttpTransport.call("http://sample.com/SayHello", envelope);

此更改后,我仍然让该行抛出异常,但现在我得到了一个不同的异常,这至少是道德上的胜利。新的异常(exception)是这样说的:

expected START_TAG{http://schemas.xmlsoap.org/soap/envelope/} Envelope(position:START_TAG<html>@1:6 in java.io.InputStreamReader@d3el2cc4)

此消息在 Internet 上泛滥,但我找到的解决方案均不适合我。经过大量的反复试验,我发现了我的特殊问题。我的 Web 服务是在 Visual Studio 2008 中创建的,我只是通过在 Visual Studio 中运行它来测试它,然后尝试从我的 Android 模拟器中使用它。事实证明,VS2008“沙盒”IIS 中有一个安全设置拒绝本地 PC 以外的任何请求——显然模拟器不被视为本地 PC。

为了纠正这个问题,我在 Visual Studio 2008 中采取了以下步骤:

  1. 退出 Visual Studio 并使用管理权限打开它(我使用的是 Windows 7)。
  2. 打开项目后,我查看了项目属性。
  3. 在“Web”选项卡上,我将“服务器”部分的单选按钮更改为“使用本地 IIS Web 服务器”,为我的项目 URL 输入“http://localhost/Sample”,然后单击“创建虚拟目录”按钮.

完成这些步骤后,我再次运行我的网络服务,在模拟器中启动我的 Android 应用程序,并最终通过了一直抛出异常的那一行。然而这一次,下一行抛出了一个异常。又一次道德胜利,更近了一步。这个新的异常(exception)是:

org.ksoap2.serialization.SoapPrimitive

Google 的快速搜索为我解决了这个问题。线条

SoapObject response = (SoapObject)envelope.getResponse();
String resultValue = response.getProperty(0).toString();

我原来的代码需要改成这样:

SoapPrimitive response = (SoapPrimitive)envelope.getResponse();
String resultValue = response.toString();

在那次更改之后,我有了一个可以工作的应用程序。

最终工作代码

Web 服务(在 Visual Studio 2008 中创建并在项目属性中配置的本地 IIS Web 服务器上运行)

using System;
using System.Collections.Generic;
using System.Web;
using System.Web.Services;

namespace Sample {
[WebService(Namespace = "http://sample.com/")]
public class Service1 : System.Web.Services.WebService {
[WebMethod]
public string SayHello() {
return "Hello, Android. From your friend, WCF";
}
}
}

安卓类

package com.sample;

import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;

import org.ksoap2.*;
import org.ksoap2.serialization.SoapObject;
import org.ksoap2.serialization.SoapSerializationEnvelope;
import org.ksoap2.transport.*;
import org.ksoap2.serialization.SoapPrimitive;

public class Sample extends Activity {
TextView result;

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);

result = (TextView)findViewById(R.id.textViewResult);

final String SOAP_ACTION = "http://sample.com/SayHello";
final String METHOD_NAME = "SayHello";
final String NAMESPACE = "http://sample.com/";
final String URL = "http://192.168.1.72/Sample/Service1.asmx";


try {
SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME);

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

HttpTransportSE androidHttpTransport = new HttpTransportSE(URL);

androidHttpTransport.call(SOAP_ACTION, envelope);
SoapPrimitive response = (SoapPrimitive)envelope.getResponse();
String resultValue = response.toString();

result.setText(resultValue);
}
catch (Exception e) {
result.setText(e.getMessage());
}
}
}

关于android - 在模拟器中使用 kSOAP2 使用本地主机 WCF 服务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6538055/

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