Hey!
i have a little Question:
I'm currently building a little Air Application with a central server (PHP + MySQL).
I want my app to call this Server, and get the Data.
Well, i think because of XSS Protection or something like that, this isn't possible with the 'normal' way.
When using a external Link, the Ext.Store is not loading
Code:
var queueListStore = new Ext.data.Store({
url: 'http://mydomain.com/data.php',
autoLoad: true,
reader: new Ext.data.JsonReader({
root: 'rows',
totalProperty: 'results',
idProperty: 'ID',
fields: [
'ID',
...
]})
});
Is there a way to take external Data? Maybe through a proxy?
Hope for help 
~Aqua