We have the following code:
<asp:ScriptManager runat="server">
...
<Services>
<asp:ServiceReference Path="~/JSONServices/ProfileService.svc" />
</Services>
...
This results in a javascript proxy found in /JSONServices/ProfileService.svc/js this javscript has content expiry set to the same time it was called (so it is never cached on the client) Is it possible to have the clients cache these proxies for some time?
Yours Andreas