Example of show report in java web project using oracle

Stimulsoft Reports.JAVA discussion
zzzz
Posts: 19
Joined: Thu Apr 09, 2015 3:30 am

Re: Example of show report in java web project using oracle

Post by zzzz »

I don't know how to find the Java error stack trace of DesignerFx for Java. :?

[quote="Vadim_Matveev"]Hello.
Do you have Java error stack trace, plase send it to us.
Vadim
Posts: 409
Joined: Tue Apr 23, 2013 11:23 am

Re: Example of show report in java web project using oracle

Post by Vadim »

Hello.
In previous messages you sent us stack trace.
zzzz wrote:I don't know how to find the Java error stack trace of DesignerFx for Java. :?
Vadim_Matveev wrote:Hello.
Do you have Java error stack trace, plase send it to us.
zzzz
Posts: 19
Joined: Thu Apr 09, 2015 3:30 am

Re: Example of show report in java web project using oracle

Post by zzzz »

Hello.
Can the Viewer support oracle database and others?
Can the report designed in AIR Designer for .Net show correctly in java web project without any change?
Aleksey Andreyanov wrote:Hello.

Unfortunately, due technical restrictions AIR Designer does not support Oracle connection.
It's possible to add this type of connection for further use in other our Deisngers or Viewers.
The AIR Designer support XML and MySQL data sources only.

Thank you.
Vadim
Posts: 409
Joined: Tue Apr 23, 2013 11:23 am

Re: Example of show report in java web project using oracle

Post by Vadim »

Hello.
zzzz wrote:Hello.
Can the Viewer support oracle database and others?
Viewer displays already generated reports, so no any connection is needed.
Can the report designed in AIR Designer for .Net show correctly in java web project without any change?
- Sometimes it only need to refactor connection string.
- Some Databases/datasources not supported in Java.
zzzz
Posts: 19
Joined: Thu Apr 09, 2015 3:30 am

Re: Example of show report in java web project using oracle

Post by zzzz »

Hello.
When the Java version of the report tool can support Oracle and other database.
Vadim
Posts: 409
Joined: Tue Apr 23, 2013 11:23 am

Re: Example of show report in java web project using oracle

Post by Vadim »

Hello.
Java itself support Oracle and other databases.(You must use DB connector)
But Air component not suppor Oracle.
i.e. You can render report in Java (with many databases) & than this rendered report you can display in Air Viewer.
zzzz wrote:Hello.
When the Java version of the report tool can support Oracle and other database.
zzzz
Posts: 19
Joined: Thu Apr 09, 2015 3:30 am

Re: Example of show report in java web project using oracle

Post by zzzz »

Hello.
How can i render a report(*.mrt designed by .Net Designer using oracle) without using Air component in java web project?
Vadim
Posts: 409
Joined: Tue Apr 23, 2013 11:23 am

Re: Example of show report in java web project using oracle

Post by Vadim »

Hello.
You can use next code:

Code: Select all

StiReport report = StiSerializeManager.deserializeReport(new File("C:\\6\\Report(3).mrt"));
report.render();
zzzz wrote:Hello.
How can i render a report(*.mrt designed by .Net Designer using oracle) without using Air component in java web project?
Post Reply