I am having difficulty deploying RIA services/Silverlight 3 to a staging environment.
Here is my situation: 1) I am using RIA for authentication. This works fine on both my development machine and in the staging environment.
2) I created a custom LinqToEntities RIA service to get data from the database into my application. This service works fine when I do a local build, but does not work on the staging server.
- The server side RIA code never gets called when the client makes a call to it.
- The RiaContext appears to be initialized ok, i.e. it does not throw an exception.
- I use code sililar to
Context.Load(qry);
to put data into the entities. The LoadOperation's complete event fires, but no data was loaded, the serverside methods were never called.
Any ideas on what may be wrong?