php 调用java webservice

php5.2

$this->client  = new soapclient($this->gwUrl, array('uri'=>'http://service.ws/'));

$parameters=array("in0"=>$mobile,"in1"=>$sms);//与wsdl参数一致

$aryResult = $this->client->sendSms($parameters);


你可能感兴趣的:(php 调用java webservice)