http 302 issue on tomcat 4.0.1

2002-06-03 Thread remy.menetrieux
Hello, When browsers request my url containing a filename, Tomcat does not internally redirect this request, it sends a HTTP 302 redirect. How can we configure and patch Tomcat to disable this feature ? Thx for any help. Here is what we get : GET / HTTP/1.0 host: www.SiteName.com HTTP/1.1 3

REDIRECT 302 all http request

2002-05-30 Thread remy.menetrieux
Hello, I working with tomcat 4.0.1, each request on my apache send an http header 302 (Moved Temporarly) When browsers request a url without a filename, such as http://www..net/ web servers typically have some form of default page to serve, any seasoned web surfer will be familiar with the

Re: 2 instance of tomcat within 1 machine

2002-02-26 Thread remy.menetrieux
eally >dunno... pls help > > >-Original Message- >From: remy.menetrieux [mailto:[EMAIL PROTECTED]] >Sent: Tuesday, February 26, 2002 5:52 PM >To: Tomcat Users List >Subject: Re: 2 instance of tomcat within 1 machine > > >Actually i have 3 different server of tomcat

Re: 2 instance of tomcat within 1 machine

2002-02-26 Thread remy.menetrieux
Actually i have 3 different server of tomcat on the same machine and it's work perfectly ... which configuration files have you ?? REmY Keith Ng wrote: >Hi > >I need to run two different server of tomcat 4.0.2 within one machine >tried running two instances of tomcat-4.0.2 startup and its not

Re: Classpath Issue

2002-02-25 Thread remy.menetrieux
You can add the specific .jar in the WEB-INF/lib of you're application I hope this help you ... RemY Rui Oliveira wrote: >Hello, > >sorry for the newbie question... > >Can someone please tell me how to configure the classpath for a specific >application only, instead of defining it for all the t

Re: mod_proxy and getRemoteAddr()

2002-02-25 Thread remy.menetrieux
Hi, add this on server.xml Where proxyPort is the port where apache liste and proxyName=the IP adress of apache in httpd.conf the config is the next ProxyPass /mysamplehttp://mytomcat:8081/mysample ProxyPassReverse /mysample http://mytomcat:8081/mysample I hope this help you

Re: oracle/TC4.0.2/linux

2002-02-22 Thread remy.menetrieux
ner might also work). > > Randy > >>-Original Message- >>From: remy.menetrieux [mailto:[EMAIL PROTECTED]] >>Sent: Friday, February 22, 2002 2:06 PM >>To: Tomcat Users List >>Subject: Re: oracle/TC4.0.2/linux >> >> >>I have already

Re: oracle/TC4.0.2/linux

2002-02-22 Thread remy.menetrieux
you any idea ?? P.S : The same configuaration and same code under WinNT works Randy Layman wrote: > The most common problem is not renaming classesXXX.zip to >classesXXX.jar. (Tomcat doesn't automatically see ZIP files, but it does >JAR). > > Randy > >&

oracle/TC4.0.2/linux

2002-02-22 Thread remy.menetrieux
Has anybody succeeded in making this specific configuration working ? Has anybody can access to a database with a Datasource?? Could you send me you're configuration please... -- To unsubscribe: For additional commands: Troubles with the

No suitable driver under linux Mandrake and classes12.zip HELP !!!!!

2002-02-22 Thread remy.menetrieux
Sorry for the spam,and for my english but after 3 days I have not solution: Classes12.jar is in common/lib When I use a datasource for oracle driver, it doesn't works--> No suitable Driver . But if I use a classical connection like this: String url="jdbc:oracle:thin:@**.**.**.***:1521:db8ir3";

Strange results with 4.0.2 and oracle connection

2002-02-20 Thread remy.menetrieux
Hello, My problem is the next: in my classpath classes12.zip doesn't appear in $CATALINA_HOME/common/lib not classes12.zip or classes12.jar in $CATALINA_HOME/lib not classes12.zip or classes12.jar in mywebapp/WEB-INF/lib not classes12.zip or classes12.jar in my JAVA_HOME/jre/l

Re: web connectors

2002-02-19 Thread remy.menetrieux
the new connector are available only for linux where can i find buil mod_webapp for windows Thanks in advance Remy GOMEZ Henri wrote: >>What web connectors are available for connecting apache 1.3.x to tomcat >>4.0.x? I recall trying to setup mod_webapp a while back but the attempt >>failed in

Re: No suitable driver Datasource Problem

2002-02-19 Thread remy.menetrieux
> >>-Original Message- >>From: remy.menetrieux [mailto:[EMAIL PROTECTED]] >>Sent: Tuesday, February 19, 2002 7:51 AM >>To: Tomcat Users List >>Subject: No suitable driver Datasource Problem >> >> >>When I use a datasource I obtain this error. &g

No suitable driver Datasource Problem

2002-02-19 Thread remy.menetrieux
When I use a datasource I obtain this error. But when i use same option directly in my servelt all is OK. Have you seen this errors ??? regards Remy Java.sql.SQLException: No suitable driver at java.sql.DriverManager.getDriver(DriverManager.java:249) at tyrex.jdbc.xa.EnabledDataSource.getConnecti

Re: HttpResponse.sendRedirect problem

2002-02-18 Thread remy.menetrieux
now i use the mod_prox under apache and the proxy listener under tomcat I configurated the name and the port of the apache in my proxy listener configuration like this [EMAIL PROTECTED] wrote: >Hi Remy, > >I had problems with response.sendRedirect since tomcat 4.x too (under 3.2 >the same c

Re: Oracle JNDI DataSource example?

2002-02-18 Thread remy.menetrieux
I have the same problem and i delete resource-ref in my web.xml and it works now ... If you find an other solution could you send me a mail ?? Remy Mark wrote: >Does anyone have a working example of an Oracle DataSource using server.xml > and web.xml under TC 4.0.1? I've looked at >Tomcat JNDI

HttpResponse.sendRedirect problem

2002-02-15 Thread remy.menetrieux
I have resolve with this conguration ... on apache i have configured the mod_proxy and on tomcat de proxied HTTP connector . So i think the mod_webapp have a bug with HttpResponse.sendRedirect My apache run under a Windows 2000 and my tomcat under linux remy menetrieux wrote: > Hi, > > I ha