How can I use BIRT with a remote (http/https) data source that reqiures authentication?

Go To StackoverFlow.com

0

Is it possible to use BIRT with a remote (http/https) XML data source that requires authentication?

  • Cookie based
  • HTTP authentication
  • SSL Client certificate

Any of the above would suffice.

2009-06-16 08:43
by serbaut


1

Try to use HTTP based authentication with a syntax:

http://username:password@hostname:portnumber/path

But anyway you can use scripted data source and construct a report via API. I.e. you can write a Java software that pass an authentication and get data, bind them to BIRT and generate output in BIRT internal or standard format (html,pdf,doc,xls etc.).

2009-06-16 20:09
by FoxyBOA
Thank you. Got it working with both HTTP Basic and Digest over HTTPS - serbaut 2009-06-18 10:14
Ads