这是我第一次实施WCF网络服务。我已经创建了一个WCF Web服务,它从XML文档中获取数据并在调用函数时返回数据。此WCF Web服务是自托管的。
我想创建一个Android应用程序(使用SOAP),这样在按下按钮时,它应该在Web服务中调用该特定函数并获取数据,然后在android中的textview中显示。
我不知道如何在Android中调用本地主机。
答案 0 :(得分:0)
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.