2012年12月25日

PHP调用.net webservice 用户身份认证

摘要: 简单实例如下: 1 class SoapUserInfo { 2 public $UserID; 3 public $Password; 4 public function __construct($l, $p) { 5 $this->Password = $p; 6 $this->UserID = $l; 7 } 8 } 9 try {10 //创建客户端11 $client = new SoapClient("http://******/?wsdl");12 $reversed = $client->__... 阅读全文

posted @ 2012-12-25 11:30 jQing 阅读(325) 评论(0) 推荐(0) 编辑

导航