使用PHP和cURL访问Exchange Web服务

前端之家收集整理的这篇文章主要介绍了使用PHP和cURL访问Exchange Web服务前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
你好,

我目前正在写客户端来访问Microsoft Exchange服务器,并从中读取联系人,约会等.

通过几天的搜索,我已经能够通过PHP的Soap客户端和自定义的HTTPS Stream包装器连接到EWS. This网站在这一点上大大帮助了我.

使用XAMPP在我的Windows 7机器上一切正常

现在我将我的项目上传到Debian 6.0 Squeeze开发机器上,该机器与Windows机器的Web服务器,PHP设置,MysqL设置等完全相同,但是它不再工作了

debian机器可以解决和ping交换服务器没有问题

我将实际问题钉在一个点上,cURL无法检索EWS的WSDL文件

它总是收到一个空的响应和一个401(未经授权的)状态代码

我使用的凭据是正确的,相同的凭据在我的Windows机器上工作

提取错误代码段,并尝试运行它独立,它看起来像这样:

echo "Trying to get https://".$cfg[ 'Exchange.Server' ]."/EWS/Services.wsdl<br>";
    $curl = curl_init( 'https://'.$cfg[ 'Exchange.Server' ].'/EWS/Services.wsdl' );
    curl_setopt( $curl,CURLOPT_RETURNTRANSFER,true );
    curl_setopt( $curl,CURLOPT_HTTP_VERSION,CURL_HTTP_VERSION_1_1 );
    curl_setopt( $curl,CURLOPT_HTTPAUTH,CURLAUTH_NTLM );
    curl_setopt( $curl,CURLOPT_USERPWD,$cfg[ 'Exchange.User' ].':'.$cfg[ 'Exchange.Password' ] );
    curl_setopt( $curl,CURLOPT_SSL_VERIFYPEER,false );
    curl_setopt( $curl,CURLOPT_SSL_VERIFYHOST,false );

    echo '<pre>';
    $response = curl_exec( $curl );
    $info = curl_getinfo( $curl );

    var_dump( $info );
    var_dump( $response );

    curl_close( $curl );

我在这里收到的结果是提到的401状态代码和一个空的响应
当我在浏览器中调用相同的URL或在Windows机器上使用相同的代码时,我将获得我想要的WSDL文件

其实我甚至不知道这是一个基于linux的问题,或者在某些时候我做错了,我现在在努力争取2天.

有没有人可能会发现我的错误或告诉我为什么它不起作用的原因?

我可以根据需要提供任何进一步的需求信息

如果您正确初始化您的肥皂客户端,您应该可以通过以下方式提出任何请求请求:
$curl = curl_init($location); //'https://'.$server_address.'/EWS/Exchange.asmx'
curl_setopt($ch,false);
curl_setopt($ch,true);
curl_setopt($ch,CURLOPT_HTTPHEADER,$headers); //valid soap headers with keep-alive
curl_setopt($ch,CURLOPT_POST,true );
curl_setopt($ch,CURLOPT_POSTFIELDS,$request);
curl_setopt($ch,CURL_HTTP_VERSION_1_1);
curl_setopt($ch,$user.':'.$password);
$response = curl_exec($curl);

至于您的代码,请尝试注释以下行:

curl_setopt( $curl,CURLAUTH_NTLM );

还可以看看这个包装器在你的设置上的工作原理:
http://ewswrapper.lafiel.net/
如果是这样,请查看使用的SOAP类 – 它使用内置的PHP作为基础.

为什么你不能在本地存储wsdl文件

更新:

好的,我在我的Debian框中玩了这个,这对我来说完美无瑕:

$domain = 'xxxxxx';
$user = 'xxxxxx';
$password = 'xxxxxx';
$ch = curl_init('https://'.$domain.'/EWS/Services.wsdl'); 
curl_setopt($ch,CURLOPT_HEADER,0);
curl_setopt($ch,$user.':'.$password);
$response = curl_exec($ch);
$info = curl_getinfo( $ch );
$error =  curl_error ($ch);
print_r(array($response,$info,$error));

回报

Array
(
    [0] => <?xml version="1.0" encoding="utf-8"?>
<wsdl:definitions 
(...)
</wsdl:definitions>
    [1] => Array
        (
            [url] => xxxxx/EWS/Services.wsdl
            [content_type] => text/xml
            [http_code] => 200
            [header_size] => 250
            [request_size] => 147
            [filetime] => -1
            [ssl_verify_result] => 0
            [redirect_count] => 0
            [total_time] => 0.60574
            [namelookup_time] => 0.165249
            [connect_time] => 0.268173
            [pretransfer_time] => 0.474009
            [size_upload] => 0
            [size_download] => 55607
            [speed_download] => 91800
            [speed_upload] => 0
            [download_content_length] => 55607
            [upload_content_length] => 0
            [starttransfer_time] => 0.580931
            [redirect_time] => 0
            [certinfo] => Array
                (
                )

            [redirect_url] => 
        )

    [2] => 
)
原文链接:https://www.f2er.com/php/139519.html

猜你在找的PHP相关文章