Hi,
I have generated .atom file using Export to Data Feeds option provided by SQL Reporting Services 2008 R2 RDL report. Report is hosting a chart. Now I want to load this feeds OData i.e. .atom file (which is in XML format) into HTML 5 Infragistic chart control.
I downloaded jquery samples (NetAdvantage_jQuery_20112_WithSamplesAndHelp). I can see chart example which bind to the OData but it’s in JSON format not XML.
Following is the sample Atom file which I am trying to bind to HTML chart:
Do we have any samples which supports OData binding but with XML format not JSON?
Any feedback or help will be appreciated. Thanks.
If i had to guess, I'd say you are running up against Same Origin Protection when you are trying to access that atom feed. What does the url you are using to access the sample look like in comparison to the url of the atom feed? You may need to set up some cross origin policies for the feed in order to allow your access from the sample. A good way to test if this is the error you are hitting is to try hosting that atom feed on the same url and scheme as the sample and see if the issue still occurs.
-Graham