@Koder303,Glad you got it working!It's not working for me using proxy. Here is my config:Index.aspx file:require(["esri/config"], function(esriConfig) {
esriConfig.defaults.io.proxyUrl = "proxy.ashx"
esriConfig.defaults.io.alwaysUseProxy = true;
});
Proxy.ashx: Leave everything default.Proxy.config file:<ProxyConfig allowedReferers="*" mustMatch="true">
<serverUrls>
<serverUrl url="http://services.arcgisonline.com" matchAll="true"/>
<serverUrl url="http://RemoteIP" matchAll="true"/>
<serverUrl url="http://RemoteIP:6080" matchAll="true"/>
</serverUrls>
</ProxyConfig>
These work fine when I do http://localhost/index.aspxBut, after copying the files the remote server and doing:http://RemoteIP/index.aspx FireFox still shows the 'Cross Origin Request Block' error when accessing the url from my local workstation browser.This is my first time with Proxies. What am I missing?Thanks,