Jump to content
We've recently updated our Privacy Statement, available here ×

a.manojkumar1987

Members
  • Posts

    12
  • Joined

  • Last visited

a.manojkumar1987's Achievements

Apprentice

Apprentice (3/14)

  • Week One Done
  • One Month Later
  • One Year In
  • First Post Rare
  • Collaborator Rare

Recent Badges

0

Reputation

  1. Hi I am using mongodb, since there is no joins in the mongo db i need to use the sub reports,for some alignment details, i want to access some Fields from sub report to main report. please help to solve this.
  2. var http = require("http");//var app = express();var request = require("request"); http.createServer(function (req, res) { request.post({url: "http://localhost:8080/jasperserver/rest_v2/login", qs: {j_username: "jasperadmin", j_password: "jasperadmin"} }, function(err, res1, body1) {if(err) {return console.error(err);} request.get({url:"http://localhost:8080/jasperserver/rest_v2/reports/reports/JREPORT.pdf",qs: {j_username: "jasperadmin" , j_password:"jasperadmin"} },function(error, response, body) {// console.log(body);res.writeHead(200 ,{'Content-Type': 'application/pdf'})res.end(body); }); });}).listen(8081);console.log("Server is running n 8081");It returns the pdf page empty but when i run the rest_v2 it shows the pdf with data, please help
  3. The above link is not working, it returns page not found, please help
  4. http://localhost:8081/jasperserver-pro/rest_v2/serverinfo? returns page not found please help
  5. Hi , I would like launch the report in jasper report viewer. so that i can get the options to save as excel or pdf or other formats.
  6. Hi Is there any option in jasper reports to show the report in the report viewer in my web application without using visualize js?
×
×
  • Create New...