I've recently published a .NET web project, which includes some RIA domain services. The solution works perfectly in the local system, the dev box, but it does not work on the production server.

For example: 1) One of the domain services is an AuthenticationDomainService. The Login method apparently works perfectly, it does not fail, no exception is thrown, but if I try to call GetUser() I get a "null" user (the user object that is returned has no value in the Name field and "Roles" is just an empty array).

2) I think - almost surely - this issue is related to the one above; I can invoke methods that have no security restrictions and they work (I've built a HelloWorld method and I receive back a "hello world!" string.). However, the methods decorated with the attribute RequireRole throw an exception.

3) In the local box, the dev environment, if an exception is thrown in the RIA service, in the client I receive a valid FaultException. When consuming the service in the production server, I receive empty FaultExceptions.

Does anyone have any idea on the possible reasons of this strange circumstances?

Thanks in advance,

Cheers, Gianluca

link|improve this question

58% accept rate
In your web project do you have these assemblies to set to Copy Local: True? System.ServiceModel.DomainServices.Server, System.ServiceModel.DomainServices.Hosting, and if you're using EF, System.ServiceModel.DomainServices.EntityFramework. – Derek Beattie Mar 23 '11 at 18:21
@Derek: Hi! Yes, I set to Copy Local: true all of the System.ServiceModel.* assemblies. The server where I am trying to deploy the solution is a Win2k8 Web Edition. Does that make any difference? – Gianluca Colucci Mar 24 '11 at 13:18
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.