Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Archived » BIRT » Send post-request to Birt report viewer on tomcat behind webserver
Send post-request to Birt report viewer on tomcat behind webserver [message #997012] Thu, 03 January 2013 12:13
nari noori is currently offline nari nooriFriend
Messages: 33
Registered: November 2012
Member
Im trying to make WebViewerExample/Birt Report Viewer work on a tomcat server behind an apache web server.

I have problems running the report thorugh apache web server with a POST-request.


EXAMPLE 1 - POST through apache web server - doesnt work:
if i run through POST-request, it does not work:
The screen shows "Processing, please wait...," but the report result is not shown...i just see the birt report viewer screen, with no report result...and no error

This is the jsp code:
<form method="POST" action="https://www.mydomain.com/birt/frameset" name="reportForm">
 <input type="hidden" name="__report" value="rpt/test/test.rptdesign" />
 <input type="submit" value="Show report" />
</form>  


EXAMPLE 2 - GET through apache web server - works:
If i copy the url in browser, and send GET-request it works:
https://www.mydomain.com/birt/frameset?__report=test.rptdesign


EXAMPLE 3 - POST direct on tomcat - works:
It works if i send post directly to tomcat on port 8080...
<form method="POST" action="http://www.mydomain.com:8080/birt/frameset" name="reportForm">
 <input type="hidden" name="__report" value="rpt/test/test.rptdesign" />
 <input type="submit" value="Show report" />
</form>  


I urgently need help. Hope someone can help, how i can find the problem ?.
Previous Topic:Assigning selected drop down list value to report parameter
Next Topic:please delete duplicate
Goto Forum:
  


Current Time: Fri Apr 26 04:24:55 GMT 2024

Powered by FUDForum. Page generated in 0.02908 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top