Hi,
I created my own LoginException but I every time I throw it get this error on the client (Silverlight 5) :
"The Login could not be completed because the server did not respond. Check that the server is available and contains a clientApplicationType configuration setting which supports this application."
On the log it seems there is a problem with the Serialization.
Une exception de première chance de type 'Common.CustomLoginException' s'est produite dans Security.Domain.Services.tn.dll Une exception de première chance de type 'Common.CustomLoginException' s'est produite dans IdeaBlade.EntityModel.Server.dll Une exception de première chance de type 'Common.CustomLoginException' s'est produite dans System.ServiceModel.dll Une exception de première chance de type 'Common.CustomLoginException' s'est produite dans System.ServiceModel.dll Une exception de première chance de type 'System.Runtime.Serialization.SerializationException' s'est produite dans System.Runtime.Serialization.dll
|
My web.config configuration looks like this :
<ideablade.configuration xmlns="http://schemas.ideablade.com/2010/IdeaBladeConfig" version="6.00" clientApplicationType="Silverlight"> <logging logFile="log\DebugLog.xml" port="9922" serviceName="TracePublisher" archiveLogs="false" /> <objectServer> <serverSettings useAspNetSecurityServices="false" /> <serverSettings allowAnonymousLogin="false" /> <serverSettings supportedClientApplicationType="Silverlight"/> </objectServer> <!-- See the DevForce Resource Center for more information on configuration settings: http://drc.ideablade.com/devforce-2012/bin/view/Documentation/deploy-iis#HConfiguration --> </ideablade.configuration>
|