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

djain_1

Members
  • Posts

    2
  • Joined

  • Last visited

 Content Type 

Profiles

Forum

Events

Featured Visualizations

Knowledge Base

Documentation (PDF Downloads)

Blog

Documentation (Test Area)

Documentation

Dr. Jaspersoft Webinar Series

Security Advisories

Downloads

Everything posted by djain_1

  1. I am using Jasper 6.1 and configured my server to allow token based authentication. It works fine when i use token to login from browser. With the valid token, I am able to get into the system without entering username and password. Now, I am integrating it with visualize.js in order to show reports on our application's web page. Below is request call :- var authToken = encodeURIComponent("u=jsmith|r=admin|exp=20150831172506-0800|t=ABC"); visualize.config({ server: "http://localhost:8080/jasperserver-pro", scripts: "optimized-scripts", logEnabled: true, logLevel: "error", auth: { token: authToken, preAuth: true, tokenName: "pp" }}, function (v) { $scope.v = v; $scope.reportingInitialized = true; $scope.$digest(); }, function (err) { alert("Auth error! Server said: " + err.message); }); However, on successful authentication it is not redirecting to success url but returning the below html with HTTP code 200. Due to which the Authentication is failing with the error message as "Unexpected token <". Appreciate any help on this. <html> <head> <title></title> <meta http-equiv="refresh" content="0;url=home.html"> <script language="javascript" type="text/javascript"> window.location="home.html"; </script> </head> <body> If your browser doesn't automatically go there, you may want to go to <a href="home.html">the destination</a> manually. </body> </html>
×
×
  • Create New...