c# - SOAP Service missing sent 'parameters' -


php:

$client = new soapclient($wsdl); $arrayofstring = array(0 => "first", 1 => "second");  $header = new soapheader($wsdl, 'authenticationheader', $authentication); $client->__setsoapheaders($header);  $values = $client->getinfo(array($arrayofstring)); print_r($values); 

that's invokes in c#

[webmethod(enablesession = true)] [soapheader("serviceauthenticationheader")] public inforesponse getinfo(list<string> text) { } 

after invoke method - parameter (list<string> text) null.
ideas, because day watched, tested every methods internet, not effect!?
thank you!


Comments

Popular posts from this blog

java - Static nested class instance -

c# - Bluetooth LE CanUpdate Characteristic property -

JavaScript - Replace variable from string in all occurrences -