In the first HTTP exchange, some web/application servers send the session ID as part of the URLs included in the page in order to determine whether the browser supports cookies or not.
In the case of Tomcat, it includes the session ID in the following format http://myserver/myUrl;jsessionid=sessID The first page requested, which includes a script tag for scriptaculous looks like this: <script src="/scriptaculous.js;jsessionid=aSessionID" type="text/ javascript"></script> Because of this, the call to Scriptaculous.load() is not working and nothing gets loaded. It's basically not finding the script tag at all. I tried to open a ticket on Rails Trac for this, but I didn't have permission to do it. I know that I can modify the code to strip out this if it is present, but was wondering whether it makes sense to also include this in the code base. Any help would be appreciated. Daniel --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Spinoffs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/rubyonrails-spinoffs?hl=en -~----------~----~----~----~------~----~------~--~---
