https soap链接示例

1.先安装soap扩展sudo yum install php-soap

2.安装openssL

3.function  issure($sn){//通过soap链接接口 
进行确认是否是正确的sn码
   
try{
        $client = new
SoapClient("https://118.124.139.234/gethtc.php?wsdl",array(‘soap_version‘=>
SOAP_1_2,"trace"=>true,"exceptions"=>false,‘ssl_method‘=>3));

       
$sn =
$client->getstatusBysn(array(‘smn‘=>$sn));
       
$pd=0;
       
if($sn->getstatusBysnResult  ===
true){
           
$pd=1;
        }else
if($sn->getstatusBysnResult  ===
false){
           
$pd=0;
       
}else{
           
$pd=0;
//           
echo
"未知".$sn->getstatusBysnResult;
       
}
    }catch (SoapFault
$e){
       
$pd=0;
//        echo
"未知".$sn->getstatusBysnResult;
    }
   
return $pd;
}

时间: 2024-10-21 04:57:08

https soap链接示例的相关文章

PHP SOAP 使用示例

soap_client.php <?php try { $client = new SoapClient( null, array('location' =>"http://localhost/soap_server.php",'uri'=>"http://test-uri") ); echo $client->getVar(); } catch (SoapFault $fault){ echo "Error: ".$fa

go与c++链接示例

go lang与c/c++的链接示例: foo.hpp //foo.hpp #ifndef _FOO_HPP_ #define _FOO_HPP_ template<typename T> T add(const T& lhs,const T& rhs) { return lhs+rhs; } void display(); #endif //_FOO_HPP_ foo.cpp //foo.cpp #include "foo.hpp" #include &l

SOAP简单示例

看了网上的几个文章,SOAP的示例布局都不清晰,不能马上入手,特意写个例子与大家分享,同时记录备用. 当前环境:VS2013 + WPF private void Button_Click(object sender, RoutedEventArgs e) { string url = "http://www.webxml.com.cn/WebServices/WeatherWS.asmx"; string soap = SetSoapMessage();// 构造soap请求信息 s

Nginx+Tomcat实现https安全链接

操作环境操作系统:centos5.5前段静态内容处理:nginx后端JSP处理:tomcat 6 一.Nginx + https + 免费SSL证书配置指南 生成证书 $ cd /usr/local/nginx/conf $ openssl genrsa -des3 -out server.key 1024 $ openssl req -new -key server.key -out server.csr $ cp server.key server.key.org $ openssl rsa

tomcat 配置https 外部链接显示证书不安全 原因找到为其他地方的链接用的ip地址,证书是发给域名的所以报错

启动两个端口为了80跳转 443 <Connector connectionTimeout="20000" port="80" protocol="HTTP/1.1" redirectPort="443"/> <Connector port="443" protocol="HTTP/1.1" SSLEnabled="true" scheme=&quo

php https链接

1.安装soap扩展 2.安装openssL 3.代码执行 function  issure($sn){//通过soap链接接口  进行确认是否是正确的sn码    try{        $client = new SoapClient("https://112.122.122.22/gethtcpro.asmx?wsdl",array('soap_version'=> SOAP_1_2,"trace"=>true,"exceptions&q

wget下载HTTPS链接

wget -c -O master.zip --no-check-certificate https://github.com/mitsuhiko/flask/archive/master.zip # master.zip 为文件名# https://... 为链接 wget是linux最常用的下载命令, 通常的运用要领是: “wget 空格+要下载文件的url路径”. 比方 : [linux]# wget http://www.test.com/xxxx/xxx.tar.gz 其中-c参数,

在 ASP.NET MVC 中使用 HTTPS (SSL/TLS)

某些安全性较高的网页,如网上支付或用户登陆页面,可能会使用到https(SSL/TLS)来提高安全性.本文介绍了如何在ASP.NET MVC中强制某action使用https和如何进行向https页面的跳转.我们先实现强制一个action使用https.这里写了一个RequireHttpsAttribute,它的作用是将非https连接转换成https连接,这样所有使用了RequireHttps这个filter的controller都会强制使用https连接. 1 using System.We

python 爬取页面链接

思路: 1 确定入口链接 2 构造链接提取正则表达式 3 模拟成浏览器 4 过滤重复链接 示例: #!/usr/bin/env python # -*- coding: utf-8 -*- import re import urllib.request def getlink(url): headers=("User-Agent","Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like