创建一个从自承载 WCF 服务获取数据的 Android 应用程序



这是我第一次实现WCF Web服务。我已经创建了一个 WCF Web 服务,该服务从 XML 文档中获取数据,并在调用函数时返回数据。此 WCF Web 服务是自承载的。

我想创建一个Android应用程序(使用SOAP),这样在按下按钮时,它应该在Web服务中调用该特定函数并获取数据,然后在Android的文本视图中显示。

我不知道如何在安卓中调用本地主机。

You cannot connect the WCF Service on localhost in Android.
For Android to be able to consume the WCF Service , the Android device and WCF service should be in same network.
Once your Android device and WCF service are on same network, You can consume the WCF Service by using the IP Address of system on which WCF Service is hosted.

相关内容

  • 没有找到相关文章

最新更新