Sign in to follow this  
Scott K

Data Protection

Recommended Posts

Is there a way to hide or obfuscate the XML data sent down to the browser? I have a client who would like to protect the data being charted. Right now a saavy individual could "View Source" and extract all the data from the chart.

Share this post


Link to post
Share on other sites

What you can do is:

  1. Load the chart initially without any data (like in few of our blueprint charts)
  2. Use AJAX to load the XML data from server on-demand
  3. Provide this data to chart at client side.

This way, the XML data is never exposed to end user and you can build your authentication wrappers around data retrieval too.

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this