Page 3 of 3

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

Posted: Wed Apr 15, 2015 6:16 am
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.

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

Posted: Wed Apr 15, 2015 7:45 am
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.

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

Posted: Thu Apr 16, 2015 8:28 am
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.

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

Posted: Thu Apr 16, 2015 10:41 am
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.

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

Posted: Fri Apr 17, 2015 1:48 am
by zzzz
Hello.
When the Java version of the report tool can support Oracle and other database.

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

Posted: Fri Apr 17, 2015 5:58 am
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.

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

Posted: Fri Apr 17, 2015 8:20 am
by zzzz
Hello.
How can i render a report(*.mrt designed by .Net Designer using oracle) without using Air component in java web project?

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

Posted: Fri Apr 17, 2015 10:20 am
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?