首页 > 解决方案 > 如何在 ExternalReportWSSService 中指定附件名称:deliveryService webservice

问题描述

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>

但不确定在哪里指定附件文件名。

在此处输入图像描述

标签: obiee

解决方案


请原谅我问,但你确定那是“OBIEE 服务”吗?现有的少数参考文献都指向 Fusion - 因此 Fusion BI Publisher 而不是 OBIEE 分析平台。


推荐阅读