IIS - Tomcat Caching problems

2001-08-20 Thread Georges Boutros
hi, it seems like tomcat-IIS does some caching (not client side). even if i have in my headers the no-cache specifications, the server seems to display the page from the cache. does anyone have any idea how to bypass this problem. i wan't the server to always check for new pages but without

tomcat with IIS on NT4

2001-09-05 Thread Georges Boutros
hi, i installed tomcat for IIS on an NT4 machine. i can't access tomcat without writing it's port number (8080) http://localhost:8080/examples/servlet/HelloWorldExample i do not want to write the port number to access tomcat. I wanna be able to do this

RE: Servlets do not run under Apache-tomcat

2001-03-29 Thread Georges Boutros
hi, i don't know if anyone could help but i have the inverse problem of Animesh. my servlet works well like https://server-name/examples/servlet/HelloWorldExample but when i try to call it from a jsp page it doesn't work to submit a form or forward and it works when i include the servlet in

tomcat start error

2001-04-09 Thread Georges Boutros
hi everyone, when i shutdown tomcat i get this error message ./tomcat.sh: line 164: 770 Segmentation fault (core dumped) $JAVACMD $TOMCAT_OPTS -Dtomcat.home=${TOMCAT_HOME} org.apache.tomcat.startup.Tomcat -stop "$@" does anyone know why??? thanks Georges

tomcat HANDLER THREAD PROBLEM

2001-04-11 Thread Georges Boutros
hi, i'm using tomcat with apache on RedHat 7.0 i'm using a WebPerformance software to test my webpage with multiple users (100 users) in the beginning it all works good but after about 15 minutes of stress test i start getting this error with tomcat .

tomcat configuration

2001-04-13 Thread Georges Boutros
hi, I'm new to tomcat and i'm trying to change the configuration of tomcat to be able to put my jsp pages in another folder. in server.xml i changed the home to home="/usr/local/mypages" and i added the following context: Context path="/webpages" docBase="webpages" debug="0" reloadable="true"

include a file in a servlet

2001-04-17 Thread Georges Boutros
hi, i wanna know how can i include a jsp or html file in a servlet thanks Georges

RE: include a file in a servlet

2001-04-17 Thread Georges Boutros
hi, i wanna know how can i include a jsp or html file in a servlet thanks Georges hi again, the error i get seems like the file is not found here's how i do it:

RE: include a file in a servlet

2001-04-17 Thread Georges Boutros
-Original Message- From: Georges Boutros [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 17, 2001 10:11 AM To: '[EMAIL PROTECTED]' Subject: RE: include a file in a servlet hi, i wanna know how can i include a jsp or html file in a servlet thanks Georges

ServletOutputStream

2001-04-17 Thread Georges Boutros
hi, i want to use the ServletOutputStream to send the data of a JPG image to the browser. ServletOutputStream ServletOut = response.getOutputStream(); it's working good but i can't write any text before or after the image. if i set response.setContentType("text/html"); i see the text

RE: to many tomcat processes!! AAH!!

2001-04-17 Thread Georges Boutros
does anyone know how can i force java to use green threads? thanks -Original Message- From: Ansgar W. Konermann [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 12, 2001 8:31 PM To: [EMAIL PROTECTED] Subject: Re: to many tomcat processes!! AAH!! Hi, maybe the many processes are

getInputStream

2001-04-18 Thread Georges Boutros
hi, I'm trying to submit a file to a servlet. I'm wanna use the request.getInputStream() to get the data of the file and request.getContentType() to get the content type I'd like to know if it's possible to get the pure content of the file without any headers of the

tomcat configuration

2001-04-19 Thread Georges Boutros
Title: Property file location in tomcat? hi, I have added a context for my project in server.xml Context path="/myWeb" docBase="/user/local/myWeb" crossContext="true" debug="0" reloadable="true" trusted="false" /Context but it seems like tomcat always loks under webapps/examples

tomcat webapps/examples

2001-04-24 Thread Georges Boutros
hi all, i'm a new user to tomcat, i'd would like to access ma pages with this command : http://myServer/myweb/jsp/myjsppages/example.jsp instead of http://myServer/examples/jsp/myjsppages/example.jsp i just want to change the examples to myweb can anyone tell me how can i do it ??? i

inputstream

2001-04-30 Thread Georges Boutros
hi everyone, i'm trying to use a form to upload a file from the webpage to my server. i don't want to store the file on myserver, i just want to receive the file data and send it somewhere else right away. i know that i have to parse the received data to eliminate the boundaries and th content

tomcat.log

2001-05-02 Thread Georges Boutros
hi, i'm testing the durability of tomcat under a heavy attack of users , i got a problem with the tomcat.log and jasper.log , those 2 files got so big they took all the available space on my harddisk which have failed my test. does anyone know how to manage the log files not to get so big.

JDBC Bad handshake error

2001-07-03 Thread Georges Boutros
hi, I'm trying to use mysql with tomcat IIS i downloaded and installed the mm.mysql.jdbc-1.2c driver i have this error when i try to access the database: java.sql.exception: Communication link failure : Bad handshake can anyone tell me what did i do wrong??? thanks Georges

find the NT account name with tomcat for IIS

2001-07-12 Thread Georges Boutros
hi, i would like to get the NT account name of the person browsing the web page. i'm using jsp pages with tomcat for IIS. does anyone know how can i do it? thanks Georges

URL vs. cookies

2001-07-16 Thread Georges Boutros
hi, i'd like to know where can i set tomcat to send the JSESSIONID on the URL instead of using the cookies? thanks Georges

Servlet error

2001-02-14 Thread Georges Boutros
hi i'm trying to send a picture to the browser but i keep getting this error public class GetTiff extends HttpServlet { protected void doGet(HttpServletRequest req, HttpServletResponse res) throws ServletException,IOException {

RE: Unreachable servlets

2001-03-08 Thread Georges Boutros
-- How did you do to reach your servlet with tomcat??? thanks OK I have found it Gerard BORREILL wrote: Hello, There is probably something I do not understand, but I can't manage making my servlets reachable with tomcat . I am using Tomcat 3.2.1 with apache on Solaris. So I have

servlets and configuration

2001-03-12 Thread Georges Boutros
hi, i'm using Apache webserver with tomcat . i have jsp pages and servlets. my jsp pages are in tomcat/webapps/examples/jsp/mypages/ my servlets are in tomcat/webapps/examples/WEB-INF/classes my jsp pages works fine and my servlets works fine too but the only problem is that i can't access my

servlet and tomcat configuration

2001-03-13 Thread Georges Boutros
hi, i'm working with jsp pages as long as some servlets i could access my jsp pages-- no problem -- at: http://www.domain.com/examples/jsp/webclient/MYPAGE.jsp i could access my servlet -- no problem -- at: http://www.domain.com/examples/servlet/CookieExample but when i try to call my servlet

RE: Servlet path configuration in Tomcat/Apache

2001-03-15 Thread Georges Boutros
i've been having the same problem. i didn't find a solution yet thanks -Original Message- From: Zhengan Cai [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 14, 2001 11:51 PM To: [EMAIL PROTECTED] Subject: Servlet path configuration in Tomcat/Apache Dear Sir/Madam: I have installed

RE: Change path of the jakarta-tomcat on Windows NT

2001-03-20 Thread Georges Boutros
Hello Everyone, i have another question about the same subject i could access my jsp pages in http://localhost/examples/jsp/myFolder (No Problem) i could access my servlet in http://localhost/examples/servlet (No Problem) but if i want to access a servlet from a jsp page i could only do it

how to forward to a newpage in Java

2001-01-09 Thread Georges Boutros
hello, i just wanna know how to forward to a New Page in java and not jsp. thanks - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email: [EMAIL PROTECTED]