2012-02-16 55 views
0

我正在使用visual studio創建示例web服務。 當我運行Web服務的路徑是= http:// localhost:62558/SmartPosterV1.asmx
我的操作名稱是= HelloWorld()
我如何獲得SOAP_ACTIONWSDL_TARGET_NAMESPACE如何設置SOAP_ACTION和WSDL_TARGET_NAMESPACE?

private static final String SOAP_ADDRESS = "http://localhost:62558/SmartPosterV1.asmx"; 
private static final String OPERATION_NAME = "HelloWorld"; 
private static final String SOAP_ACTION = ? 
private static final String WSDL_TARGET_NAMESPACE = ? 

請幫忙。謝謝。

+0

確實需要WSDL(請參閱http://en.wikipedia.org/wiki/Web_Services_Description_Language)文件,指定程序可以訪問SOAP Web服務的方式。 – s1lence 2012-02-16 02:27:28

回答

0

我在服務器上發佈了Web服務,並從服務器調用它。問題解決了。謝謝。

private static final String SOAP_ACTION = "http://sposter.smartag.my/getFileName"; 
private static final String SOAP_ADDRESS = "http://sposter.smartag.my/WebService1.asmx"; 
private static final String WSDL_TARGET_NAMESPACE = "http://sposter.smartag.my"; 
private static final String OPERATION_NAME = "getFileName"; 
相關問題