IIS Hosting Issue in configuring proxy server

mngegq9pap

New Member
I want to access data from other domain URL.\[code\]function get_message() {$.getJSON('http://localhost:9090/nodejs/server/messages/1', function(result) {debugger;var df = result; document.getElementById('txtCompanyId').value = http://stackoverflow.com/questions/13716836/result[0]['CompanyID']; document.getElementById('txtCompanyName').value = http://stackoverflow.com/questions/13716836/result[2]['CompanyName'];});\[/code\]I am using this function to get data. In apache i configured proxy settings.works fine.In IIS I tried with this\[code\]<system.net><defaultProxy useDefaultCredentials="true"> <proxy proxyaddress="http://localhost:9090/nodejs/server/messages/1" usesystemdefault="True"/></defaultProxy>\[/code\]Not working. Help me in this regard that how to configure proxy settings.
 
Back
Top