<!-- Provide URL to Visualize.js --> <script type="text/javascript" src="https://serverAddress/jasperserver-pro/client/visualize.js"></script> <!-- Provide container to render your visualization --> <div id="container"></div>
and this is the js:
visualize({ server: "https://serverAddress/", auth: { name : "jasperadmin", password: "mypassword", organization:"organization_1" } }).done(function(v){ var report = v.report({ resource: "/KSZF/NYITOTT_KOTESALLOMANY/NyitottKotesallomany", (I watched this for web ui report mouse right click properties, so the kszf is in the root (http://snag.gy/BHQG1.jpg)) container: "#container" }); }).fail(function(err){ alert(err.message); });
My report run well in web ui, and i see visualize.js get request worked in the browser(chrome), but I have different errors:
Uncaught TypeError: Cannot read property 'done' of undefined fiddle.jshell.net/:29 Failed to load resource: the server responded with a status of 500 (Internal Server Error) https://serverAddress/xdm.html?logEnabled=true&logLevel=error&xdm_e=http...
I try many things, different settings, but cant work.
any idea?
thanks
1 Answer:
Posted on March 3, 2015 at 3:23pm
Looks like a network issue.. You can try it locally.
Anyway you can put visualize.js in debug mode by adding "&logLevel=debug" at the end of the script call like:
<script src="http://bi.example.com:8080/jasperserver-pro/client/visualize.js?logLevel..."></script>
For more info on startup parameters check: http://community.jaspersoft.com/documentation/tibco-jasperreports-server...
The server log doesnt contain these errors, and I use https.
This is the response page for the given error in the network area error (i showed above):
http://snag.gy/A9Ea0.jpg
Maaybe it's a network issue?
How can i enable the connected logging?