Ramaze and Rack with JRuby: Some examples
We do know the difference between Ruby and Rails. There are extensive Rack/Sinatra notes at: http://blogs.sun.com/arungupta/entry/rails_conf_2009_day_1, all of which were tried on JRuby/GlassFish :)
I'll take a look at your experiments.
Despite the glassfish gem being touted as able to run any rack-based framework, it has built-in hooks for a specific set of frameworks, and the rack aspect seems lost because there are no good examples of general "rack-based framework" usage.
The massive value of Rack is that it can help us do away with needing framework-specific hooks. Ideally, a tool such as the glassfish gem would have nothing that was framework specific. All one would need is a valid config.ru file and it would Just Work. (There's a similar issue in warbler, where there is baked-in smarts for a select set of frameworks, and you have to explicitly tell it you are not using Rails. Again, the ideal approach would be to assume :rack unless otherwise specified. )
Perhaps this is the long-term goal for glassfish, but right now it does not properly handle standard config.ru files (even discounting the need for the grizzly gems).
In any event I thought it would be helpful to have some Ramze and Rack examples of what worked and what didn't, then start asking for help it getting it all running nicely.