Hi Richard,
Actually, if you want to display Bing map on the server report behind a proxy, you have to configure proxy server for Reporting Services. Otherwise you will receive this error message “ The remote name could not be resolved:’dev.virtualearth.net’”, I think the root cause of your issue is incorrect method for setting proxy server, Please follow below steps to reset it:
1. Find out web.config file at this location: <drive name>\Program Files\Microsoft SQL Server\MSRS10_50.<instance name>\Reporting Services\ReportServer
2. Add the following xml fragment between </runtime> and </configuration>node:
<system.net> <defaultProxy enabled="true" useDefaultCredentials="true"> <proxy bypassonlocal="True" proxyaddress="http://<Your Proxy Server>" /> </defaultProxy> </system.net> |
Note: If your proxy server isitgproxy.redmond.corp.microsoft.com, just type in proxyaddress="http://itgproxy.redmond.corp.microsoft.com" />
3. Save the file, and click the server report, I think you could see the Tile layer.
If you have any question, please feel free to ask.
Thanks,
Challen Fu [MSFT]
MSDN Community Support | Feedback to us
Get or Request Code Sample from Microsoft
Please remember to mark the replies as answers if they help and unmark them if they provide no help.