Bonsoir à tous,
je rencontre actuellement le pb suivant après le déploiment de l'appli sur mon serveur IIS:

Load operation failed for query 'Login'. Une exception de type 'System.ServiceModel.DomainServices.Client.DomainOperationException' à été levée.
cela se produit juste après avoir rentré mon login et password

alors qu'en local sous VS ca marche impeccable !

voici mon web.config
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<?xml version="1.0"?>
<!--
  Pour plus d'informations sur la configuration de votre application ASP.NET, consultez
  http://go.microsoft.com/fwlink/?LinkId=169433
  -->
<configuration>
	<connectionStrings>
		<add name="MySqlMembershipConnection" connectionString="Data Source=xxxxxx;user id=xxxxxx;password=xxxxx;database=MEMBERSHIP;" providerName="MySql.Data.MySqlClient"/>
	</connectionStrings>
	<system.webServer>
		<modules runAllManagedModulesForAllRequests="true">
			<add name="DomainServiceModule" preCondition="managedHandler" type="System.ServiceModel.DomainServices.Hosting.DomainServiceHttpModule, System.ServiceModel.DomainServices.Hosting, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
		</modules>
 
 
 
		<validation validateIntegratedModeConfiguration="false"/>
	</system.webServer>
	<system.web>
    <httpModules>
      <add name="DomainServiceModule" type="System.ServiceModel.DomainServices.Hosting.DomainServiceHttpModule, System.ServiceModel.DomainServices.Hosting, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
    </httpModules>
 
    <authentication mode="Forms"/>
    <machineKey validationKey="AutoGenerate" validation="SHA1" />
    <membership defaultProvider="MySqlMembershipProvider">
			<providers>
				<clear/>
				<add name="MySqlMembershipProvider" type="MySql.Web.Security.MySQLMembershipProvider, mysql.web" connectionStringName="MySqlMembershipConnection" enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="false" requiresUniqueEmail="true" passwordFormat="Hashed" maxInvalidPasswordAttempts="5" minRequiredPasswordLength="6" minRequiredNonalphanumericCharacters="0" passwordAttemptWindow="10" applicationName="/" autogenerateschema="true"/>
			</providers>
		</membership>
		<roleManager enabled="true" defaultProvider="MySqlRoleProvider">
			<providers>
				<clear/>
				<add connectionStringName="MySqlMembershipConnection" applicationName="/" name="MySqlRoleProvider" type="MySql.Web.Security.MySQLRoleProvider, mysql.web" autogenerateschema="true"/>
			</providers>
		</roleManager>
    <profile enabled="true">
      <properties>
        <add type="System.Int32" defaultValue="10" name="DefaultRows"/>
      </properties>
    </profile>
    <compilation debug="true" targetFramework="4.0" /></system.web>
 
 
  <httpModules>
    <add name="DomainServiceModule"
type="System.ServiceModel.DomainServices.Hosting.DomainServiceHttpModule,
System.ServiceModel.DomainServices.Hosting, Version=4.0.0.0,
Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
  </httpModules>
 
 
 
 
 
  <system.serviceModel>
		<behaviors>
			<serviceBehaviors>
				<behavior name="">
					<serviceMetadata httpGetEnabled="true"/>
					<serviceDebug includeExceptionDetailInFaults="false"/>
				</behavior>
			</serviceBehaviors>
		</behaviors>
    <serviceHostingEnvironment aspNetCompatibilityEnabled="true" />
 
 
 
  </system.serviceModel>
 
 
 
</configuration>

si quelqu'un à une idée sur le problème ? merci encore