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