Re: jsp cached in Netbeans

2006-07-04 Thread leo voss
A. Lotfi wrote: I am using Neatbeans 5 in windows XP, when I change a jsp file and I run the project the change never take effect, always the first JSPs appear, could you please tell me how to deal with this problem ? In the project tab: right-click the project, select 'properties | 'run'

org.apache.jasper.JasperException: 16

2004-09-15 Thread Leo Mt Voss
approaches, checked the java code manually, still doesn't work. Hints appreciated. leo === To unsubscribe: mailto [EMAIL PROTECTED] with body: signoff JSP-INTEREST. For digest: mailto [EMAIL PROTECTED] with body: set JSP

Re: Urgent !!!!!!!! Please help me

2001-12-17 Thread Leo
I think second will allow the JVM to use a single String object for multiple references is like this: String s1 = abc; String s2 = abc; System.out.println(s1==s2); String s3 = new String(abc); String s4 = new String(abc); System.out.println(s3==s4); Result:

: Upgrade to Tomcat4.0

2001-11-21 Thread leo
HI chen: It is so easy to install Tomcat 4.0 than 3.2.1, Just Unzip the ZIP file and run /bin/startup.bat and you can see the name change to "catalina", I like this pretty name.You can edit conf file server.xml and web.xml as other version tomcat. enjoy it . zheng rui

Re: Been getting the same message...

2000-12-18 Thread leo prince
i got 118 messages in one day from this list and about 70 from same person. Pravesh --- Meera Gajanan Nayak [EMAIL PROTECTED] wrote: I did not get any messages from this list last week.And today i got one or two particular messages from the same person -the one on good jsp engines -around

question of adding new WEBAPP to tomcat

1999-12-10 Thread Leo Fu
Anyone know if I can register a new application, by adding a new Context in the sever.xml file, without rebooting tomcat? Thanks, -Leo === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST&q

sharing resources in between WEBAPPs?

1999-12-10 Thread Leo Fu
it can't obtain the user session object created by the User Authentication application (req.getSession() returns null). Am I missing anything here? Seems like the "resources" among web applications can't be shared. Is there any work around? Thanks in adva

Re: getRequestDispatcher(aURL).forward(req,res) and Relative Refs

1999-09-04 Thread Leo Neumeyer
Craig, On Sat, 4 Sep 1999 00:01:03 -0700, Craig R. McClanahan [EMAIL PROTECTED] wrote: Leo Neumeyer wrote: I read many postings from people having problems using getServletContext().getRequestDispatcher(targetPage).forward(req, res); The problem seems to be that relative references

getRequestDispatcher(aURL).forward(req,res) and Relative Refs

1999-09-03 Thread Leo Neumeyer
I read many postings from people having problems using getServletContext().getRequestDispatcher(targetPage).forward(req, res); The problem seems to be that relative references in the target page will not work because the base path is the original servlet path and not the path of the target page.