Are the results you return the same for all requests? I have a Web Service
which shows some numbers that are important to the management types on our
intranet, and I know that these figures change only every 3-4 ours so I used
the "CacheDuration" property..and cache the results so the DB Call is never
made...
[WebMethod(CacheDuration=60)] (C#) {on the server)
you can do it on the client as well
<%@ OutputCache Duration="60" %>
that caches the result on the server for 60 seconds, If all your consumers
get different data, this is probably not useful. Amazon and Terraserver are
also fast because they have large web farms answering those requests..or so
I would think...
Take a look here for tips:(URL may clip)
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cp
conaspnetwebservicedesignguidelines.asp
Kunal
> Hi @all,
>
[quoted text clipped - 21 lines]
>
> Mirco
Mirco Kaffsach - 25 Nov 2003 12:39 GMT
Hey,
thanks alot. The results are different, because its a login WebService.
Nearly the same as MS Passport...
But its a very good hint for other WebServices to me, which have the same
result...
I try to find some other hints on your link...
Thanks anyway...
Bye Mirco
> Are the results you return the same for all requests? I have a Web Service
> which shows some numbers that are important to the management types on our
[quoted text clipped - 12 lines]
>
> Take a look here for tips:(URL may clip)
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cp
conaspnetwebservicedesignguidelines.asp
> Kunal
>
[quoted text clipped - 24 lines]
> >
> > Mirco