Hi
iam calling BIRT viewer from my ServletA
using
URL parURL = new URL("
http://localhost:8080/birt/frameset?__report=test.rptdesign");
HttpURLConnection urlConnection =
(HttpURLConnection) parURL.openConnection();
urlConnection.setRequestMethod("GET");
urlConnection.setDoOutput(true);
urlConnection.setDoInput(true);
iam wrtiting the response i got to a string and returning to my extJS client as HTML
im my ExtJS window iam able to see the report viwer with toolbar but, the content (result of report) is not getting displayed
Please help... this task is a bit urgent to me