我目前正在尝试使用php-ews,但是在soap上遇到了一些我不知道的问题,下面是错误。
Fatal error: Uncaught SoapFault exception: [VersionMismatch] Wrong Version in C:\wamp\www\intranet\dashboard\php-ews\ExchangeWebServices.php:230 Stack trace: #0 C:\wamp\www\intranet\dashboard\php-ews\ExchangeWebServices.php(230): SoapClient->__call('FindItem', Array) #1 C:\wamp\www\intranet\dashboard\php-ews\ExchangeWebServices.php(230): NTLMSoapClient_Exchange->FindItem(Object(EWSType_FindItemType)) #2 C:\wamp\www\intranet\dashboard\mailtest.php(56): ExchangeWebServices->FindItem(Object(EWSType_FindItemType)) #3 {main} thrown in C:\wamp\www\intranet\dashboard\php-ews\ExchangeWebServices.php on line 230该文件第230行如下所示
public function FindItem($request) {
return $this->initializeSoapClient()->{__FUNCTION__}($request);
}如果任何人有任何想法,将不胜感激。
发布于 2011-08-12 17:47:01
尝试:
public function FindItem($request) {
try {
return $this->initializeSoapClient()->{__FUNCTION__}($request);
}
catch(SoapFault $ex) {
print $ex->getMessage();
print $ex->getTraceAsString()
}
}然后看看PHP SOAPClient
https://stackoverflow.com/questions/7037878
复制相似问题