Thanks for your reply ,at least somebody replied.
May be my question is not that clear.
Can you using ClientApplicationServices 3.5 call any method in the membership provider?
It looks like to me that you can only call ValidateUser and logout all the rest of methods are not supported by ClientApplicationServices.Is this true?#
In answer to your question and I dont think it's relevant I have a full blown Custom Sql MembershipProvder where all methods are implemented.In my web config i have
<membership defaultProvider="MyAppSqlMembershipProvider">
<providers>
<clear/>
<add name="MyAppSqlMembershipProvider" type="MyApp.Security.MembershipEntaSqlProvider"
connectionStringName="Authorization"
enablePasswordRetrieval="true"
enablePasswordReset="true"
requiresQuestionAndAnswer="true"
requiresUniqueEmail="true"
passwordFormat="Encrypted"
applicationName="MyApp"
applicationId="1"
writeExceptionsToEventLog="false"/>
</providers>
</membership>
+
<system.web.extensions>
<scripting>
<webServices>
<authenticationService enabled ="true"
requireSSL="false" />
</webServices>
</scripting>
</system.web.extensions
Again.Calling validateUser works!!! any other methods throws me an exception of not Supported.
Can anybody clarify?
thanks a lot as usual