> Well, I do want it in place for the export version, but I was having trouble with the proxy-accessible files on the preview mode.
>
> I found a way around it though, so this was a possible solution that I asked about.
>
What solution did you find gumshoe2029? I am facing the same problem and I don't want to publish every time in order to test my app.
Thank you!
I had to add this line of code to my servlets to fix it:
response.setHeader("Access-Control-Allow-Origin", "*");
I will eventually be removing this tag from our production servers, since the client and server are not the same in production, but on my local test machine I run both the server and the client on the same machine.