I have created a WCF Service library that is called from a Silverlight application.
The .svc file (GVFileManagementService.svc) is hosted on the web project that host also the xap.
Now, the GVFileManagementService.svc contains only a reference to the dll.
Locally, everything works fine. But when I deployed the solution on the server the xap didn't work and I noticed in Fiddler that the application is requesting the crossdomain.xml and the clientaccesspolicy.xml files.
The https are : http://localhost:1186/clientaccesspolicy.xml
and http://localhost:1186/crossdomain.xml
Why it indicates a localhost URL ? And how can I resolve this issue ? Where should I place these files ?
Thanks