0

Using VS2010, we deployed a WCF service to our remote server in the same network. We use IIS 7. This project is called WcfService.

Opening my browser locally and entering the http://RemoteServer/Service1.svc/GetSales?Band=Last will return correct json data. So the project works and it's not a firewall issue.

If I set my report to the URL above, the graphs in the report will not be displayed.

During debug of WcfService, if I set the report to the local url (http://localhost:1023/Service1.svc/GetSales?Band=Last) then the graphs in the report are shown correctly.

What can the issue be?

Thanks.

fdkgfosfskjdlsjdlkfsf
  • 3,165
  • 2
  • 43
  • 110

1 Answers1

2

How are you "testing" RemoteServer/Service1.svc/GetSales?Band=Last when you return JSON? Your problem might be CORS related. You can try this Enable CORS

You can debug this in Chrome Debug CORS in Chrome

Community
  • 1
  • 1
Spencer Sullivan
  • 527
  • 6
  • 13