The
CacheDuration attribute of a WebMethod does not work as intended in the .NET Framework 1.1. Methods that use
HTTP GET fail if the .NET Framework is v1.1. That's because, by default, the
HTTPGet protocol is not enabled. A simple workaround is to enable
HTTPGet in the
web.config file using the following code:
<webServices>
<Protocols>
<add name="HTTPGet"/>
</Protocols>
<webServices>
If you have a hot tip and we publish it, we'll pay you. However, due to accounting overhead we no longer pay $10 for a single tip submission. You must accumulate 10 acceptable tips to receive payment. Be sure to include a clear explanation of what the technique does and why it's useful. If it includes code, limit it to 20 lines if possible.
Submit your tip here.