> > urltoken, except it places the jsessionid in the URL twice > > I just noticed this.. This is not supposed to happen.. > > In theory/manuals .. it should be like > "index.cfm?jsessionid=80301958431047056318625&cfid=20241&cftok > en=52485459" > > It does something like ... > index.cfm;JSESSIONID=80301958431047056318625?CFID=20241&CFTOKE > N=52485459&jsessionid=80301958431047056318625 > and the page does NOT display.. ";"
Actually, according to the J2EE specification, the JSESSIONID should be added after the file name with a semicolon. I'm not really sure why that is, but there it is, on page 50 of the Servlet 2.3 specification: http://www.jcp.org/aboutJava/communityprocess/final/jsr053/ That link was pointed out to me by Aaron Johnson. Now, there is a known bug in CFLOCATION; if ADDTOKEN="NO", it still appends the JSESSIONID to the file name with a semicolon. Whether or not the page will run depends on how your web server is configured; if you're using IIS, I believe you'd need to use an ISAPI filter instead of an ISAPI extension to connect to CFMX. You can choose to use either a filter or an extension when you run wsconfig. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4 FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

