Reputation: 6056
I have created an silverlight application and services. After i published it in IIS(Win Xp or Win server 2003), i need to do an IIS reset to access that app. What may be the reasons?
Thanx in advance
Upvotes: 0
Views: 1079
Reputation: 21
Consider any Asp.net application deployed with some javascript version 1.0 and then after in development you changed the script and re-deployed ,if user don't hit refresh button,asp.net website will keep continue using script 1.0 ,so in this case either we ask user to hit refresh or else change the script version to 1.1 and re-deployed.As it was cached at client (browser)
Silverlight itself is client-side technology,when we request for any silverlight application it downloaded the xap folder (including dlls,client-side code).
Give try ,once you again deploy the Silverlight on IIS. Just Refresh the url,clear browser cache and see,it should work without IIS Reset.
Upvotes: 1