Christopher B. Hamlin wrote: > For uniqueness, what do you do, just add something to the >end like "?time=1341324112" and then you've got things solved >down to the second?
I tried that, and even that got cached by (at least) one proxy server I encountered. Some servers (BorderManager specifically) have the option to ignore the right-hand side of a question mark in a URL, and that's as good as saying it is being used somewhere. Seems like your best option is to create URLs like http://my.site/myservlet/time/1341324112 and have a servlet strip off the ...time/etc part of it before forwarding to your jsp. However, this will completely mess up any logging mechanism trying to make statistics on your pages (we use RedSheriff), as each URL issued now will be unique(!). (Does anyone by chance know whether RedSheriff can adapt to this?) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/[email protected]/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
