Re: Can't get JSPs to recompile
Posted By:
Luigi_Viggiano
Posted On:
Monday, May 27, 2002 01:04 AM
Also, set-up your browser to skip the proxy for your specific application, maybe the proxy is caching your page. If you still get the "old page", try adding a parameter to make caching impossible: let's say your page is http://yourhost.com/yourpage.jsp you should requeste the page as http://yourhost.com/yourpage.jsp?dummyparam=randomvalue . Where randomvalue is get randomly or from System.currentTimeMillis(). In this way the browser (and eventually the proxy) cannot get cached data due to a different parameter passed in the GET request.
Re: Can't get JSPs to recompile
Posted By:
Dave_Hemingway
Posted On:
Thursday, January 17, 2002 10:25 PM
I have had this exact problem before, I did the exact same things that you did and teh only way i could fixed it was by removing teh file from the directory, attempting to access it still (of course getting a page not found error) then putting the file back, hitting refresh and everything was rosey, may sound ridiculous but it was the only thing i could do to get it to work, I have spoken to a few other people which have fixed it a similar way.