Hi There,
I Have a problem implementing the Loginmanager with ideablade 6.0.4.0
The loginmanager is implemented as shown in the samples / documentation.
I have two viewmodels having their own _mgr EntityManager (_mgr1 , _mgr2)
When I call _mgr1.loginAsync(credentials), the login method on the login manager is fired properly returning a principal object.
When I call _mgr2.Executeasync() (no _mgr2.loginAsync() is executed), the the login method on the login manager is fired whithout credentials(null) coursing an exeption.
When I remove the loginmanager , the process is executed without errrors.
Is the principal object somehow global on the silverlight side or should i make a bridge from the 1rst manager to the 2nd manager?
The settings in my webconfig are:
<serverSettings allowAnonymousLogin="true" loginManagerRequired="false",
<authentication mode="Forms" />
Thanks, Peer