0

我正在尝试从 PHP 访问 SharePoint 提供的分类 Web 服务,但到目前为止运气不佳。

我设法让它与列表网络服务一起工作,但这项服务要困难得多。

该服务的区别之一是输出参数,我不知道如何处理。

这是我正在使用的核心代码。

$params = array('sharedServiceIds' => '<termStoreId>66e3f3ae-573a-4dab-b86a-5175f01ca3b5</termStoreId>',
                    'termSetIds' => '<termSetId>e7df9a5c-a760-4247-96ed-e4c125fad54a</termSetId>',
                    'lcid' => 1033,
                    'clientTimeStamps' => '<timeStamp>633992461437070000</timeStamp>',
        'clientVersions' => 1,
                    );



//echo file_get_contents($wsdl, FILE_TEXT, stream_context_create(array('http' => array('timeout' => 1))), 0, 1);

$rawXMLresponse = null;
try{
    $rawXMLresponse = $soapClient->GetTermSets($params);//->GetListItemsResult->any;
}
catch(SoapFault $fault){
    echo 'Fault code: '.$fault->faultcode;
    echo 'Fault string: '.$fault->faultstring;
}

echo "Printing response<br>\n";
print_r($rawXMLresponse);

我收到以下故障代码和消息

Fault code: soap:ServerFault string: Server was unable to process request. ---> Data at the root level is invalid. Line 1, position 1.

现在在我的 SharePoint 日志中,我收到此错误

TaxonomyClientService: Get term sets failed: System.Xml.XmlException: Data
 at the root level is invalid. Line 1, position 1.    
 at System.Xml.XmlTextReaderImpl.Throw(Exception e)    
 at System.Xml.XmlTextReaderImpl.ParseRootLevelWhitespace()    
 at System.Xml.XmlTextReaderImpl.ParseDocumentContent()    
 at Microsoft.SharePoint.Taxonomy.Internal.CommonUtilities.GetIntsFromXml(String ints)    
 at Microsoft.SharePoint.Taxonomy.WebServices.TaxonomyClientService.GetTermSets(String sharedServiceIds, String termSetIds, Int32 lcid, String clientTimeStamps, String clientVersions, String& serverTermSetTimeStampXml)

我在 ac# 桌面应用程序中有这个工作,所以我知道该服务正在工作。

我不知道该怎么做才能让它从 php 中工作。

4

1 回答 1

0

好的,所以我花了一整天的时间来解决这个问题,发现我没有正确格式化 clientVersions 参数

'clientVersions' => 1,

应该

'clientVersions' => '<version>1</version>',
于 2012-10-02T20:45:02.163 回答