I have my webservice running on the Server version 4.2.1. I am able to access the methods
from clients which I had developed using the eclipse plugin and wsconsume. However if I
try to access via a PHP client [used SOAP module], I am able to invoke the service but the
arguments are passed as null into my login method. I face a similar situation with another
tool[Mirth] that uses Java WS libraries. Any pointers will help.
Here is the PHP snippet :
| <?php
| require_once '/usr/local/lib/php/SOAP/Client.php';
|
| $wsdl_url =
| 'http://192.168.1.20:8081/myAppService/myAppService?wsdl';
| $WSDL = new SOAP_WSDL($wsdl_url);
| $client = $WSDL->getProxy();
|
| $params = array(
| 'arg0' => 'abc',
| 'arg1' => 'xyz'
| );
| $resp = $client->login($params);
| print_r($resp);
| ?>
|
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4154500#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...