Hello
I wrote WCF service which be called directly from PHP or Zend Framework.
When operation contract wants simple argument like String everything works fine. For example:
[OperationContract]
ComplexClass Znajdz(String simpleArgument);
Then calling from
$client = new Zend_Soap_Client("http://URL/?wsdl");
$client ->setSoapVersion(SOAP_1_1);
$parameter = array(
'simpleArgument' => "myValue",
);
print_r( $client->Add($parameter ));
And ComplexClass is returned to PHP script.
But when I try to use function where ComplexClass is argument, function are calling with null argument.
What should I look for?
Regards
Przemysław Staniszewski

