I m working on a Google Web Toolkit driven site that communicates via AJAX to a WCF server. Once deployed the GWT code will run in the same domain as the WCF service but when developing/debugging locally they both run as separate processes and therefore on separate ports. This causes my browser to assume that I m making a cross site call and promptly blocks any server/client communication. As you can imagine, this doesn t make debugging a happy affair.
Anything I can do to convince my browser that it s okay to let localhost:1234 talk to localhost:5678?
(Focusing primarily on Chrome and Firefox, BTW)