有人可以帮忙吗
我在 NetBeans 中创建 Web 服务,但找不到soapAction。我想用它在eclipse中连接我的android应用程序
假设您的包是“com.android”,方法名称是“yourmethod”,那么soapAction 将是-
Private String SoapAction="http://android.com/yourmethod"
我认为最简单的解决方案是解决我关于 Android 中 Ksoap 的问题
static final String ADDRESS = "http://10.0.2.2";
private static final String METHOD_NAME = "amir";
private static final String NAMESPACE = "http://abc/";
private static final String SOAP_ACTION = NAMESPACE + METHOD_NAME;
private static final String URL = ADDRESS + ":8080/Test/myaccount?WSDL";