简体   繁体   中英

how to use wcf and svc in php?

I want to connect to a webservice Url:

https://bill.samanepay.com/CheckBill/BillStateService.svc?wsdl

in c# it's working and I recieve data

ServiceReference1.BillStateServiceClient bdclinet = new ServiceReference1.BillStateServiceClient();
s=  bdclinet.VerifyBillPaymentWithAddData("4546330305913", "54360101", "10400061", "9768914");

but in in php response is null

$client = new  oapClient("https://bill.samanepay.com/CheckBill/BillStateService.svc?wsdl");
$res=  $client->VerifyTransaction("0911229170","1411727361","6010","10780538");

What could be the problem?

Have you turned on error exposure on the php side? By default php supresses most exceptions and error messages, wich is a acceptable strategy at runtime.

But during Development you have to explicitly override that behavior or you never get any debugging data.

Unless you manage to extract an actuall error message from SoapClient or VerifyTransaction, we are both just trying to navigate a very Dark space.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM