



全文预览已结束
下载本文档
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
Java调用biee webservice参考资料:http:/obieestuff.blogspot.hk/2012/04/calling-bip-runreport-from-job-manager.htmlBiee版本:Jdeveloper版本:使用ReportService生成报表(生成的报表在服务器上)package bip;import com.oracle.xmlns.oxp.service.v2.AccessDeniedException_Exception;import com.oracle.xmlns.oxp.service.v2.InvalidParametersException_Exception;import com.oracle.xmlns.oxp.service.v2.OperationFailedException_Exception;import com.oracle.xmlns.oxp.service.v2.ReportRequest;import com.oracle.xmlns.oxp.service.v2.ReportService_Service;import com.oracle.xmlns.oxp.service.v2.ReportService;public class test1 public static void main(String args) ReportService_Service reportService_Service = new ReportService_Service(); ReportService reportService =reportService_Service.getV2ReportService(); / Add your code to call the desired methods. / Set up the credentials for our service call String username = 123; String password = 23324; / Instantiate a new ReportRequest object ReportRequest repReq = new ReportRequest(); / Define the report that we want to run repReq.setReportAbsolutePath(/test_lin/test_model_report.xdo); / This is the Report name, as an absolute path. / Define what we want to do with it repReq.setAttributeFormat(pdf); / defaults to HTML repReq.setReportOutputPath(/tmp/report.pdf); / The path on the *BIP server* to which the report should be saved / Lets go! try reportService.runReport(repReq, username, password); catch (InvalidParametersException_Exception e) System.out.println(Exception thrown: InvalidParameters!); catch (AccessDeniedException_Exception e) System.out.println(Exception thrown: AccessDenied!); catch (OperationFailedException_Exception e) System.out.println(Exception thrown: OperationFailed!); / All done System.out.println(Success!); 使用ScheduleService,DeliveryChannels生成并发送报表,可以email给某个用户,也可以ftp到某个目录。package bip;import com.oracle.xmlns.oxp.service.publicreportservice.PublicReportService;import com.oracle.xmlns.oxp.service.publicreportservice.PublicReportServiceService;import com.oracle.xmlns.oxp.service.v2.AccessDeniedException_Exception;import com.oracle.xmlns.oxp.service.v2.ArrayOfEMailDeliveryOption;import com.oracle.xmlns.oxp.service.v2.ArrayOfLocalDeliveryOption;import com.oracle.xmlns.oxp.service.v2.ArrayOfParamNameValue;import com.oracle.xmlns.oxp.service.v2.ArrayOfXsdString;import com.oracle.xmlns.oxp.service.v2.DeliveryChannels;import com.oracle.xmlns.oxp.service.v2.EMailDeliveryOption;import com.oracle.xmlns.oxp.service.v2.InvalidParametersException_Exception;import com.oracle.xmlns.oxp.service.v2.LocalDeliveryOption;import com.oracle.xmlns.oxp.service.v2.OperationFailedException_Exception;import com.oracle.xmlns.oxp.service.v2.ParamNameValue;import com.oracle.xmlns.oxp.service.v2.ParamNameValues;import com.oracle.xmlns.oxp.service.v2.ReportRequest;import com.oracle.xmlns.oxp.service.v2.ReportService;import com.oracle.xmlns.oxp.service.v2.ReportService_Service;import com.oracle.xmlns.oxp.service.v2.ScheduleRequest;import com.oracle.xmlns.oxp.service.v2.ScheduleService;import com.oracle.xmlns.oxp.service.v2.ScheduleService_Service;public class schedule_test3 public static void main(String args) throws AccessDeniedException_Exception, InvalidParametersException_Exception, OperationFailedException_Exception String username = 123321; String password = 234233; ScheduleService_Service schedule_Service = new ScheduleService_Service(); ScheduleService scheduleService =schedule_Service.getV2ScheduleService(); / scheduleService.scheduleReportInSession(scheduleRequest, deliveryChannels, bipSessionToken) /deliveryChannels DeliveryChannels deliveryChannels=new DeliveryChannels(); ArrayOfEMailDeliveryOption arrayEmailOption=new ArrayOfEMailDeliveryOption(); EMailDeliveryOption eMail = new EMailDeliveryOption(); eMail.setEmailTo(0000); eMail.setEmailSubject(This is a BIP Web Service Test.); /eMail.setEmailFrom(0000412126.com); eMail.setEmailCC(9999999); eMail.setEmailBody(Test); arrayEmailOption.getItem().add(eMail); deliveryChannels.setEmailOptions(arrayEmailOption); /scheduleRequest / Set Report request attributes ReportRequest req = new ReportRequest(); req.setAttributeFormat(html);/pdf req.setAttributeLocale(zh-hk); /en-US/ req.setAttributeTemplate(service_confirm_letter_layout); req.setReportAbsolutePath(/test_lin/service_confirm_letter_report.xdo); ScheduleRequest scheduleRequest =new ScheduleRequest(); scheduleRequest.setDeliveryChannels(deliveryChannels); scheduleRequest.setReportRequest(req); / scheduleRequest.setNotificationTo(); scheduleRequest.setSaveDataOption(true); scheduleRequest.setScheduleBurstringOption(false); scheduleRequest.setSchedulePublicOption(true); scheduleRequest.setUserJobName(WebService Job1); /Paramter ParamNameValues nameValues=new ParamNameValues(); ArrayOfParamNameValue arrValue=new ArrayOfParamNameValue(); ParamNameValue pValue=new ParamNameValue(); pValue.setName(ORDE_DATE_COMP); ArrayOfXsdString axs=new ArrayOfXsdString(); axs.getItem().add(20120510); pValue.setValues(axs); arrValue.getItem().add(pValue);/ParamNameValue arrValue.getItem().add(pVal
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 2025年教师招聘之《小学教师招聘》通关提分题库附答案详解(夺分金卷)
- 智能电力政策分析创新创业项目商业计划书
- 电商数据分析超算创新创业项目商业计划书
- 内蒙古呼伦贝尔农垦牙克石莫拐免渡河农牧场有限公司招聘笔试题库及答案详解1套
- 报社考试题及答案
- 2025年四川旺苍县上半年部分事业单位考核招聘15人笔试备考题库及答案详解一套
- 2025年四川省计算机研究院考核招聘工作人员1人考试含答案
- 教师招聘之《幼儿教师招聘》考前冲刺测试卷讲解含答案详解【轻巧夺冠】
- 2025年罗田县辅警考试练习题库
- 2025年海上风电场建设与风能资源评估与产业链发展报告
- 反走私课件教学课件
- 大货车闯红灯安全培训课件
- 2025年人教版三年级数学上册全册教案
- (2025秋新版)苏教版科学三年级上册全册教案
- 《中国人首次进入自己的空间站》导学案 部编语文八年级上册
- 四川省土地开发项目预算定额标准
- 2025年小儿惊厥的应急预案演练脚本
- 2025年秋期新课标人教版四年级上册数学全册教案(核心素养教案)
- 闪闪发光的我心理健康教育
- 第一单元 第2课时 摘苹果(分层作业)数学北师大版二年级上册
- 休闲运动组织与管理课件
评论
0/150
提交评论