biee webservice的使用java.doc_第1页
biee webservice的使用java.doc_第2页
biee webservice的使用java.doc_第3页
biee webservice的使用java.doc_第4页
全文预览已结束

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

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. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论