Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Intelligence (Analytics)
Integrating with ASP.NET + C# Web App
Dexter
I have a test web app done in asp.net with c# code-behind that will produce the resultsets. this web app will also provide the front-end for designing the rptdesign-compliant report. After designing the report, I want it published in an Actuate iServer 9. Is this possible?
Find more posts tagged with
Comments
rmurphy
The BIRT Design Engine API is Java based. You could build a Java applicaiton that accepted input from your C# application and used the information to build a BIRT rptdesign file. Once the design is constructed, the iServer Express does have a web service api that will allow you to upload files.<br />
<br />
Another approach you could take would be to pass the required information to a web service from your C# application and from their invoke BusinessReport Studio with a custom data source. BusinessReport Studio is a web based designer for building BIRT based reports.<br />
<br />
Here is some information about BusinessReport Studio:<br />
<a class='bbc_url' href='
http://www.birt-exchange.com/modules/products/index.php?productid=3'>http://www.birt-exchange.com/modules/products/index.php?productid=3</a><br
/>
<br />
Information about building a custom data source for BusinessReport Studio can be found here:<br />
<a class='bbc_url' href='
http://www.birt-exchange.com/modules/wfdownloads/singlefile.php?cid=3&lid=279'>http://www.birt-exchange.com/modules/wfdownloads/singlefile.php?cid=3&lid=279</a>
;
alagar_bece
Dear Frineds
How To Connect Birt Tool With .net , If There Possible Or Not ..?
It's Possible How ? Any other Resources Are There
averma
<a class='bbc_url' href='
http://www.birt-exchange.com/modules/vbulletin/showthread.php?t=10134'>http://www.birt-exchange.com/modules/vbulletin/showthread.php?t=10134</a>
;
ramganesh
hai
I am Using birt-report-designer-all-in-one-2_2_2
i am able to connect with Oracle this is oracle driver
(oracle.jdbc.driver.OracleDriver (v1.0))......
but i am not able to connect with SQLserver
becuase sun.jdbc.odbc.JdbcOdbcDriver (Sun JDBC-ODBC Bridge Driver) .....
the driver is not there ... How to download the files
please help me
Ramganesh
rmurphy
Instead of using the JDBC ODBC Bridge, you should use the true SQL Server JDBC driver. You can download the driver from <a class='bbc_url' href='
http://msdn2.microsoft.com/en-us/data/aa937724.aspx'>http://msdn2.microsoft.com/en-us/data/aa937724.aspx</a>.<br
/>
<br />
Rob
Prabir
Hi All,
I want to run Birt Report in my web application that was build on asp.net(C#). Anyone, can help me??
Regards,
Prabir
rmurphy
The BIRT Engine is a Java based engine and will required a Java VM to run. You could simply have a link in your ASP application that points to the BIRT Viewer running on a Java container such as Tomcat. To make the URL integration a bit more seemless, you could use the AJP connector to forward request to the BIRT Viewer in Tomcat.<br />
<br />
Another option which will let you directly embed BIRT content in your ASP app is the Actuate JavaScript API. The Actuate JavaScript API is available with the BIRT Deployment Kit, iServer, and iServer Express. The Actuate Java Script API (JSAPI) is an AJAX-based JavaScript library that enables integration of BIRT report content with virtually any web front end. I would recomend reviewing the following:<br />
<a class='bbc_url' href='
http://www.birt-exchange.com/wiki/GSG:Getting_Started_with_BIRT_JavaScript_API/'>GSG:Getting
Started with BIRT JavaScript API - BIRT Wiki - BIRT Exchange</a><br />
<br />
Rob