Bonjour,
Savez vous comment on fait pour activer la methode GET d'un webservice ASP.NET 2.0.
Apparemment depuis le framework 2.0, la methode GET a été desactivée, par défaut.
Tout ca pour essayer de faire marcher le cache d'un webservice.
Merci
dragan
Note In ASP.NET 2.0, the HTTP method of the test page has changed from GET to POST. However, POSTs are not ordinarily cached. If you change the test page in an ASP.NET 2.0 Web service application to use GET, caching works correctly. Additionally, HTTP indicates that a user agent (the browser or calling application) should be able to override server caching by setting the Cache-Control header to "no-cache." Therefore, ASP.NET applications ignore cached results when they find a "no-cache" header.