如何在 ExternalReportWSSService 中指定附件名称:deliveryService webservice
Posted
技术标签:
【中文标题】如何在 ExternalReportWSSService 中指定附件名称:deliveryService webservice【英文标题】:How to specify attachment Name in ExternalReportWSSService: deliveryService webservice 【发布时间】:2019-08-06 18:10:19 【问题描述】:OIBEE 具有 ExternalReportWSSService 网络服务和方法 deliveryService 以将 pdf 内容作为附件发送。此附件的唯一问题始终是默认名称为“ReportData”
我设置 SOAP 请求以将 pdf 发送到我的电子邮件,如下所示:
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:pub="http://xmlns.oracle.com/oxp/service/PublicReportService">
<soap:Header/>
<soap:Body>
<pub:deliveryService>
<pub:deliveryRequest>
<pub:contentType>application/pdf</pub:contentType>
<pub:documentData>abadadfasdfaf</pub:documentData>
<pub:emailOption>
<pub:emailBCC></pub:emailBCC>
<pub:emailBody>V1RG</pub:emailBody>
<pub:emailCC></pub:emailCC>
<pub:emailFrom>test@gmail.com</pub:emailFrom>
<pub:emailReplyTo>test@gmail.com</pub:emailReplyTo>
<pub:emailServerName>DefaultEmail</pub:emailServerName>
<pub:emailSubject>test</pub:emailSubject>
<pub:emailTo><EMAIL ID></pub:emailTo>
</pub:emailOption>
</pub:deliveryRequest>
</pub:deliveryService>
</soap:Body>
</soap:Envelope>
但不确定在哪里指定附件文件名。
【问题讨论】:
【参考方案1】:对不起,您确定这是“OBIEE 服务”吗?现有的少数参考文献都指向 Fusion - 因此 Fusion BI Publisher 而不是 OBIEE 分析平台。
【讨论】:
以上是关于如何在 ExternalReportWSSService 中指定附件名称:deliveryService webservice的主要内容,如果未能解决你的问题,请参考以下文章
如何在异步任务中调用意图?或者如何在 onPostExecute 中开始新的活动?