Web services SAP BPC获取AppPublication文件夹的内容

Web services SAP BPC获取AppPublication文件夹的内容,web-services,xhtml,xmlhttprequest,sap,soapui,Web Services,Xhtml,Xmlhttprequest,Sap,Soapui,是否有人试图获取SAP BPC中名为AppPublication的文件夹的内容 我有一些使用SAP BPC ePublish->Web Ready File发布的文件 现在我想使用XHTML创建一个列表,其中包含所有已发布的文件 我一直在尝试以下web服务 /OSoft/Proxy/ContentsProxy/ContentsProxy.asmx /OSoft/Proxy/StateManageProxy/ContentStateManageProxy.asmx 我似乎只能从中得到一个结果:

是否有人试图获取SAP BPC中名为AppPublication的文件夹的内容

我有一些使用SAP BPC ePublish->Web Ready File发布的文件

现在我想使用XHTML创建一个列表,其中包含所有已发布的文件

我一直在尝试以下web服务

  • /OSoft/Proxy/ContentsProxy/ContentsProxy.asmx
  • /OSoft/Proxy/StateManageProxy/ContentStateManageProxy.asmx
我似乎只能从中得到一个结果: -HTTP响应:500(内部服务器错误) 我还尝试使用SoapUI,并得到了以下响应:

HTTP/1.1500内部服务器错误 缓存控制:专用 内容类型:text/xml;字符集=utf-8 服务器:Microsoft IIS/7.0 X-AspNet-Version:2.0.50727 X-Powered-By:ASP.NET 日期:2011年11月24日星期四格林威治标准时间10:12:22 内容长度:435


soap:服务器
服务器无法处理请求。-->未设置对象变量或带块变量。
有人知道这个问题是什么吗


或者有更好的方法获取此列表吗?

如果使用MS平台版本,可以直接从IIS文件夹(通常是C:\PC\U MS\…)检索文件夹内容
<?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
 <soap:Body>
  <soap:Fault>
   <faultcode>soap:Server</faultcode>
   <faultstring>Server was unable to process request. ---> Object variable or With block variable not set.</faultstring>
   <detail />
  </soap:Fault>
 </soap:Body>
</soap:Envelope>