I have a plain old wcf service that I tried to deploy to my hosting service. When I try to access my service on the remote server I get "Could not load file or assembly 'System.ServiceModel.DomainServices.Hosting'" I searched my project for any references to that .dll (and system.web.ria) and there are none, which I believe is correct. To be clear, I never tried to configure my wcf service to use ria, so I don't know how my project even knows such a thing exists.
I have a silverlight client that accesses this service but I do not (intentionally) use RIA services on the client or the server. My service is (or should be) plain old wcf - I generate client side proxies using slsvcutil and it works fine on my development machine.
Do I need RIA services to access my wcf service with silverlight? How do I get rid of this error without deploying ria services? I do not want to use ria services unless I have too.
Thank you.