This is a php code I was testing
$soapClient = new SoapClient('URL?WSDL');
$parametros = array(
'VALUE1' => '123456',
'VALUE2' => ''
);
$result = $soapClient->__soapCall("METHOD_NAME", array($parametros));
I know in C# I can add a reference to my project and then I'll be able to consume the web service, but I'd like to know if it's possible to consume it as I did in PHP, where I don't need to add any references to my project. I'm having a hard time when running the application on the server, so I wanted to test something out.