I had a question. I have a coldfusion server that has javascript, and I am using Flex on another server. I need to use javascript from the CF server to access the Flex server, and wanted to know if there would be any cross-server (same domain though) issues that would arise. Thanks guys
Share
You can use CORS instead of Ajax, part of HTML 5. Ajax doesn’t allow Cross Site Scripting. But the CORS allows. They are all the same, but you should set some additional headers when request, and server should check the headers and response them. take a look at this page. and also this one