views:

48

answers:

1

Hi,

I am trying to call Java webservices developed using JAX-WS 2.1.4 from php but it doesnt seem to work as expected. All the parameter values being passed to the method has been intrepreted as "null" value, but i am passing the proper values from php side.

Can anyone please help me on this?

Thanks, Mani

A: 

try

$soapObj->method(array('arg0' => 'test', 'arg1' => 'test, 'arg2' => 1));

piotrsz