【发布时间】:2017-06-05 07:26:10
【问题描述】:
我想连接到网络服务 网址:
https://bill.samanepay.com/CheckBill/BillStateService.svc?wsdl
在 c# 中它正在工作,我收到数据
ServiceReference1.BillStateServiceClient bdclinet = new ServiceReference1.BillStateServiceClient();
s= bdclinet.VerifyBillPaymentWithAddData("4546330305913", "54360101", "10400061", "9768914");
但在php 中的响应是null
$client = new oapClient("https://bill.samanepay.com/CheckBill/BillStateService.svc?wsdl");
$res= $client->VerifyTransaction("0911229170","1411727361","6010","10780538");
可能是什么问题?
【问题讨论】:
标签: c# php web-services wcf soap