I’m creating a sample web service using visual studio.
When i run the web service the path is = http://localhost:62558/SmartPosterV1.asmx.
My Operation name is = HelloWorld().
How do i get SOAP_ACTION and 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 = ?
Please help. Thanks.
I published the web service in server and call it from server. Problem solved. Thanks.