我只想问一下第四行是做什么的?或者它是用来做什么的?非常感谢我正在使用phonegap在android中构建一个应用程序
private static final String NAMESPACE = "http://hello_webservice/";
private static String URL = "http://192.168.1.68:7001/HelloWebService/
HelloWSService?WSDL";
private static final String METHOD_NAME = "hello";
private static final String SOAP_ACTION = "http://hello_webservice/hello";发布于 2012-03-06 06:09:35
这是要调用的SOAP操作,在名称空间+方法名上也是如此。这是文档:http://www.w3.org/TR/2000/NOTE-SOAP-20000508/#_Toc478383528
https://stackoverflow.com/questions/9574778
复制相似问题