我正在尝试从PHP访问SharePoint提供的分类法Web服务,但到目前为止还没有太多运气。
我设法让它使用列表webservice,但这项服务要困难得多。
此服务的一个不同之处是输出参数,我不知道如何处理。
这是我正在使用的核心代码。
$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)
我在c#桌面应用程序中工作,所以我知道该服务正在运行。
我不知道该怎么做才能让这个从php工作。
答案 0 :(得分:0)
好的,所以我花了整整一天时间来解决这个问题,注意我没有正确格式化clientVersions参数
'clientVersions' => 1,
应该是
'clientVersions' => '<version>1</version>',