Bonjour,
Je récupère une liste d'objets depuis mon service, et au delà de 950 environ ça bloque (Erreur NotFound).
J'ai essayé d'augmenter les tailles des buffers comme vu dans plusieurs posts, mais rien y fait.
Est ce que je m'y prend mal ?
Mon webconfig :
Code XML : 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 <bindings> <basicHttpBinding> <binding name="basicHttpBinding0" maxReceivedMessageSize="50000000" maxBufferPoolSize="50000000"> <readerQuotas maxDepth="500000000" maxArrayLength="500000000" maxBytesPerRead="500000000" maxNameTableCharCount="500000000" maxStringContentLength="500000000"/> </binding> </basicHttpBinding> </bindings> <services> <service name="GPW_silver.Web.IsrvGPW"> <endpoint address="" binding="basicHttpBinding" bindingConfiguration="basicHttpBinding0" contract="GPW_silver.Web.IsrvGPW"> <identity> </identity> </endpoint> </service> </services>
Mon clientconfig :
Code XML : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13 <bindings> <basicHttpBinding> <binding name="BasicHttpBinding_IsrvGPW" maxBufferSize="500000000" maxReceivedMessageSize="500000000"> <security mode="None" /> </binding> </basicHttpBinding> </bindings> <client> <endpoint address="http://localhost:8081/srvGPW.svc" binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IsrvGPW" contract="ServiceReference1.IsrvGPW" name="BasicHttpBinding_IsrvGPW"/> </client>
Merci !
Partager