Problem with context changes...

2001-10-27 Thread Chandramouli Nagarajan
Hai, In my application, i am forwarding the control to some other jsp file which is located in some other directory than the forwarding page.The destination page uses relative addresses for loading images.But i think when i forward using jsp forward directive, the path context is not getting

Tomcat startup trouble...

2001-10-26 Thread Chandramouli Nagarajan
Hai, I am deploying TOMCAT3.2.3 with Apache1.3.20 in Solaris-7 platform. I have configured TOMCAT to work with apache. When i start tomcat after setting all the contexts, i am getting an error as below.

RE: Handling apostrophes

2001-10-22 Thread Chandramouli Nagarajan
Not really a big overhead, this piece of code wld do that... public String padApos(String toPad) { StringTokenizer tokenizer=new StringTokenizer(toPad,'); String retVal=new String(); while(tokenizer.hasMoreTokens()) {

RE: Handling apostrophes

2001-10-22 Thread Chandramouli Nagarajan
That's a good idea. Thanks for noting me.I wld follow it. Regards, N.Chandramouli.

RE: Problem with browsing

2001-10-22 Thread Chandramouli Nagarajan
Hi, I have already tried the setting of supress attribute to true in my server.xml.I am using tomcat3.2.3 with Apache. After this is restarted both of them. But it didn't seem to work.I am still getting the directory listing. Can i have not set some other attribute? Please guide me. Thanks,

RE: JDBC Errors

2001-10-19 Thread Chandramouli Nagarajan
Have you registerd your driver with drivermanager? Either you can do it explicitly by DriverManager.registerDriver(Driver driver) or by calling, Class.forName(driver).