英文:
initiateAnalysisExport () Method with OBIEE web services not returning queryID
问题
我正在尝试使用OBIEE的webservices API,使用OBIEE 12C中AnalysisExportViews服务的initiateAnalysisExport()方法。我可以成功发送API请求,但AnalysisExportResult结构中的completeAnalysisExport和queryID字段没有返回任何内容。不过,viewData和mimeType字段已正确填充。
我不确定我做错了什么。我需要queryID来使用completeAnalysisExport方法获取导出文件。我还注意到queryID的文档为空:https://docs.oracle.com/middleware/1221/biee/BIEIT/structures.htm#BIEIT6968。
英文:
I'm trying to use the webservices API in OBIEE with the initiateAnalysisExport() method of the AnalysisExportViews service in OBIEE 12C. I can send the API request without any issues, but the completeAnalysisExport and queryID fields in the AnalysisExportResult structure aren't returning anything. However, the viewData and mimeType fields are properly populated.
I'm not sure what I'm doing wrong here. I need the queryID for the completeAnalysisExport method to obtain the export file. I've also noticed that the documentation for queryID is empty: https://docs.oracle.com/middleware/1221/biee/BIEIT/structures.htm#BIEIT6968.
答案1
得分: 1
听起来与https://forums.oracle.com/ords/apexds/post/initiateanalysisexport-method-with-obiee-web-services-not-r-8913相同,答案已发布在那里。
TL;DR:默认情况下,它以同步模式执行,因此无需查询ID。更多详细信息请参阅Oracle论坛。
英文:
Sounds like the same as https://forums.oracle.com/ords/apexds/post/initiateanalysisexport-method-with-obiee-web-services-not-r-8913, the answer is posted there.
TL;DR: by default it does execute in a synchronous mode and therefore there is no need for the queryID. More details in the Oracle Forum.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论