Re: jsp:include buffers generated data?

2005-11-13 Thread Jacob Hookom
This has come up in the JSF RI and was recently corrected with Glassfish, you might want to check their dev mailing lists On 11/13/05, Simon Kitching <[EMAIL PROTECTED]> wrote: > > Hi, > > I'm working with JSF, and am having some problems related to jsp:include. > > It appears that jsp:include alw

jsp:include buffers generated data?

2005-11-13 Thread Simon Kitching
Hi, I'm working with JSF, and am having some problems related to jsp:include. It appears that jsp:include always creates a temporary buffer, stores the included data into that buffer, then appends the buffer to the original response output stream after the include has completed. This causes n

Re: tomcat 5.5.9 basic config

2005-11-13 Thread David Smith
Just finish the docBase attribute as in: --David Michael Chaplin wrote: I'm stumped on a simple issue. I have only one webapp in my tomcat5/webapps directory called "crypto" my context tags within the host tag of my server.xml is: I would expect that browsing to http://gus.csbc.v

Re: tomcat 5.5.9 basic config

2005-11-13 Thread Hassan Schroeder
michael chaplin wrote: > Thanks for the advice about moving the context tag. I moved it as you > suggested and it works the same. Then either you didn't do exactly as I said, or there's something else wrong in your configuration. You won't have these problems described below when your default web

Re: WatchedResource not watched

2005-11-13 Thread Len Popp
A relative pathname will work for . Look at the default entry in conf/context.xml: WEB-INF/web.xml which is exactly what you want. I just tested it, and editing web.xml causes my app to be reloaded, whether the is in conf/context.xml or in my app's META-INF/context.xml. I'm running Tomcat 5.5

Re: Using CORBA objects

2005-11-13 Thread Pawel Niewiadomski
I resolved my problem. > protected Context getNamingContext() throws NamingException { > org.omg.CORBA.ORB orb = org.omg.CORBA.ORB.init(); > if( orb != null ) { > Hashtable env = new Hashtable(); Here I should have put also: env.put("org.omg.CORBA.ORBInitRef", "NameServ

JSVC Daemon Permissions

2005-11-13 Thread wapace
OS: Open SuSE 10.0 Tomcat Version: Tomcat 5.5.12 I've successfully compiled JSVC, written my init script and am able to launch Tomcat at system startup. I'm a total newbie to both Linux and Tomcat and had been working through a Tomcat tutorial. One exercise in the tutorial covered file upload

Re: WatchedResource not watched

2005-11-13 Thread Darryl L. Miles
Peter Menzel wrote: docBase="D:\dev\projects11\maven-tomcat-plugin\tests\devContext\target\devContext"> WEB-INF/web.xml The watched resource seems to be ignored. If I modify the web.xml tomcat doesn't reload the webapp. If any other resources are modified (classes or the context.xml

Re: WatchedResource not watched

2005-11-13 Thread Peter Menzel
Nathan Coast schrieb: Hi, I have the following context.xml to configure a web application docBase="D:\dev\projects11\maven-tomcat-plugin\tests\devContext\target\devContext"> WEB-INF/web.xml The watched resource seems to be ignored. If I modify the web.xml tomcat doesn't reload the

RE: maintain separate sessions for each browser tab/window

2005-11-13 Thread Peter Crowther
From: John Cartwright [mailto:[EMAIL PROTECTED] Does anyone have a suggestion on how to maintain a separate session for each browser tab and window? Currently the same session is shared for each frame, window, tab of a given brower instance and context. I only wish this were possible - it wo

Re: Data source realm, using primary keys (not varchar)?

2005-11-13 Thread Mark Thomas
Structure your data any way you like and use views to present it in the form Tomcat expects. Mark [EMAIL PROTECTED] wrote: Hi I'm trying to learn authentication and authorization within a web application, and I think I know the basic stuff an maybe a bit more. I just read the Tomcat howto gui

Data source realm, using primary keys (not varchar)?

2005-11-13 Thread tomcat
Hi I'm trying to learn authentication and authorization within a web application, and I think I know the basic stuff an maybe a bit more. I just read the Tomcat howto guide on realm, and especially data source realm. But I think their data base example is a bit strange. They have a table user_rol

Re: issue tomcat and special characters

2005-11-13 Thread ary martini
Hi Seak, thank you for your response. 1) mysql has charset Latin I would like to use ISO-8859-1 as encoding, as I can then insert special characters like è and à. For some reason it does not work for UTF-8 in my case Do you know How I can change the charset on mysql? I cannot locate any config

Re: issue tomcat and special characters

2005-11-13 Thread Seak, Teng-Fong
On what encoding is your MySQL configured? ISO-8859-1 or UTF-8? Those Ãx means that your characters are in UTF-8. Somehow, something in your program sends UTF-8 to the DB server. I've done a webapp totally in UTF-8 without any problem. But I have to say that I don't have the same confi