RE: Problems getting generated images through the IIS connector.

2000-11-13 Thread Etienne Baert
Hi, I do have have the same problem, I am interested in sharing any solution you can find. Etienne -Original Message- From: Michel Lehon [mailto:[EMAIL PROTECTED]] Sent: mardi 14 novembre 2000 8:17 To: [EMAIL PROTECTED] Subject: Problems getting generated images through the IIS connecto

howto: allow access to a context only from a single ip?

2000-11-13 Thread freakazoid
hi, is it possible to deny all access to a context of my tomcat server except for clients with a specific ip adress? tnx

Re: mod_jk does not compile (3.2b7)

2000-11-13 Thread carnell
For Solaris: apxs -o mod_jk.so -DSOLARIS -I../jk -I/usr/java/include -I/usr/java/include/solaris -c *.c ../jk/*.c On some systems, this will build the module correctly, but will fail at runtime with a "symbol "fdatasync" not found". To fix, add -lposix4 just before the -c in the above command.

Problems getting generated images through the IIS connector.

2000-11-13 Thread Michel Lehon
Hi, We are having a wierd problem here... here's the (short) story. We are generating JPEG Images from one of our servlets (Java2D and the sun Jpeg codec). It shows up correctly in IE without problems... but when we try to print the page (yep, some of our users want to do that), the images do n

servlets problem is still there

2000-11-13 Thread Rasika
Hello,I have installed TOMCAT with Apache. I followed your user guide and then tomcat faqs to install tomcat.Now I am able to run .jsp files using both tomcat as well as Apache. I can also run sample servlet provided alongwith examples. But I cannot run my own servlet.I have stored itin web

RE: difficulty in running servlets

2000-11-13 Thread Jovie
try adding this     hi    /hi      to your web.xml -Original Message-From: Rasika [mailto:[EMAIL PROTECTED]]Sent: Tuesday, November 14, 2000 5:06 PMTo: [EMAIL PROTECTED]Subject: difficulty in running servlets Hello,I have instal

difficulty in running servlets

2000-11-13 Thread Rasika
Hello,I have installed TOMCAT with Apache. I followed your user guide and then tomcat faqs to install tomcat.Now I am able to run .jsp files using both tomcat as well as Apache. I can also run sample servlet provided alongwith examples. But I cannot run my own servlet.I have stored itin web

difficulty in running servlets

2000-11-13 Thread Rasika
Hello,I have installed TOMCAT with Apache. I followed your user guide and then tomcat faqs to install tomcat.Now I am able to run .jsp files using both tomcat as well as Apache. I can also run sample servlet provided alongwith examples. But I cannot run my own servlet.I have stored itin weba

problem in running servlet

2000-11-13 Thread Rasika Joshi
Hello, I have installed TOMCAT with Apache. I followed your user guide and then tomcat faqs to install tomcat. Now I am able to run .jsp files using both tomcat as well as Apache. I can also run sample servlet provided alongwith examples. But I cannot run my own servlet. I have stored itin weba

RE: [BUG] OutputStream is already being used for this request

2000-11-13 Thread kramer
I am getting this while using request.getOutputStream() to write binary data is a JSP. I did some more hunting and it looks like this is not allowed, and should be done only in a servlet. I is a shame, because it was only three lines of code and to go through all the servlet sets just for just thr

Tomcat 3.1 crashes when closing ODBC connection

2000-11-13 Thread Hany Hassan
Hi,   I'm using tomcat 3.1 with apache on WinNT. I'm doing both Servlets, JSP and also call some classes from the JSP files. I do creae a connection object to the ODBC. But whenever I close the connection object tomcat crashes (shuts down) and gives an "access violation" message. If I do not

I want to unsubscribe from this list

2000-11-13 Thread truename
Hi Tomcat, I have tried 3 times to sign out the mail list. Who can help me? Best Regards, Leslie ¸Ï¿ì×¢²áÍøÒ×È«ÐÂ163.comÃâ·ÑÐÅÏä http://images.163.com/images/163com/ WAPÊÖ»ú--ÖÁ¿á´ó½±µÈ×ÅÄ㣡

adding sessionId to apache logs

2000-11-13 Thread kenneth topp
Well, I did it, and it was too easy. Adding a line in SessionInterceptor.beforeBody(): response.addHeader("jsessid", (reqSessionId!=null) ? reqSessionId : rrequest.getRequestedSessionId() ); And in httpd.conf: LogFormat "%h %l %{jsessid}o %t \"%r

Re: New user question...

2000-11-13 Thread Pierre Delisle
The error is in the first line of your JSP file 'tag_test.jsp'. org.apache.jasper.compiler.ParseException: C:\tag_test.jsp(0,4) Invalid directive at... The error message says it is a directive, but without the details, it is hard to tell exactly what is wrong. If you tell us what's ther

Re: auto-loading

2000-11-13 Thread Jim Richards
Uncomment, no ... comment out the interceptor for AutoSetup and this will stop it loading everything in $TOMCAT_HOME/webapps Ypu'll then need to create a context for anything you want loaded from there (admin/examples/test) ' wrote: > > Hi, > How do I stop tomcat from automatically loading ap

RE: Contexts and dispatchers

2000-11-13 Thread Richard Evans
Hi Wyn Yes, that's what I'm trying to do. My problem is that the uri is not fixed; it could belong to any of the other web apps, including the default / handler. Now getContext() gets the right ServletContext fine, but to then get a RequestDispatcher, I need to strip off the context root part o

SSL stopped working for index.jsp welcome page in Tomcat 3.2 Beta 7

2000-11-13 Thread Xia, Alex
This used to work in Tomcat 3.2 Beta 5. I have submitted a bug regarding this one, but would hope some one has an answer. If you put a index.jsp under any of your directory, the server either hangs or throw the following exception: java.io.IOException: The filename, directory name, or volume lab

RE: auto-loading

2000-11-13 Thread Kitching Simon
> -Original Message- > From: ' [SMTP:[EMAIL PROTECTED]] > Sent: Monday, November 13, 2000 7:37 PM > To: [EMAIL PROTECTED] > Subject: auto-loading > > Hi, > How do I stop tomcat from automatically loading applications in /webapps? > do I uncomment the ...context.AutoSetup Context

New user question...

2000-11-13 Thread Reynshteyn, Leonid
I just installed Tomcat for the first time and am trying to run a simple JSP that uses a very simple custom tag. When I run the JSP, I am getting the following Jasper compiler exception: org.apache.jasper.compiler.ParseException: C:\tag_test.jsp(0,4) Invalid directive at org.apache.jasper.compile

New user question...

2000-11-13 Thread Reynshteyn, Leonid
I just installed Tomcat for the first time and am trying to run a simple JSP that uses a very simple custom tag. When I run the JSP, I am getting the following Jasper compiler exception: org.apache.jasper.compiler.ParseException: C:\tag_test.jsp(0,4) Invalid directive at org.apache.jasper.compile

Re: Setting JAVA_HOME path on Linux 7.0

2000-11-13 Thread Gregory Guthrie
At 03:11 PM 11/10/2000 -0500, you wrote: >I'm using tomcat 3.2 and jdk1.3 and it works fine on debian. Haven't >tryed tomcat 3.1 with jdk1.3 -- I've had many problems trying to get this to work, I started with the Debian tomcat, and have posted a few notes to this group, but not gotten much he

j_security_check preprocessing

2000-11-13 Thread Barry Dunne
I need to store the username/password entered by the user in order to use them later to connect to an external system, so I tried changing login.jsp to post to a jsp file rather than j_security_check. The jsp then stores the username/password and tries to call j_security_check as follows:

RE: jk_nt_service

2000-11-13 Thread Mark Franz
I run it with 3.1 Mark G. Franz -Original Message- From: Hernandez, Rey [mailto:[EMAIL PROTECTED]] Sent: Monday, November 13, 2000 2:48 PM To: '[EMAIL PROTECTED]' Subject: jk_nt_service Is jk_nt_service only available for the Tomcat beta builds?

RE: Is 3.1 a production ready release?

2000-11-13 Thread Mark Franz
3.1 is the latest release build and is in server environments at my sites. Mark G. Franz -Original Message- From: Ranko Bijelonic [mailto:[EMAIL PROTECTED]] Sent: Monday, November 13, 2000 2:51 PM To: [EMAIL PROTECTED] Subject: Is 3.1 a production ready release? Hi, would you use 3.1

Re: Contexts and dispatchers

2000-11-13 Thread Wyn Easton
Hi Richard, Sorry for the misunderstanding. I think I finally see what you are trying to do. Suppose you have two web apps app1 and app2. You are in a servlet in app1 and you want a RequestDispatcher for a JSP (say my.jsp) in app2. You would: RequestDispatcher rd; String uri = "/app2/my.jsp";

Is 3.1 a production ready release?

2000-11-13 Thread Ranko Bijelonic
Hi, would you use 3.1 in your production environment or is this just for testing and development?

jk_nt_service

2000-11-13 Thread Hernandez, Rey
Is jk_nt_service only available for the Tomcat beta builds?

SSL support

2000-11-13 Thread Christian Pich
I am wondering if there is any SSL support in Tomcat 3.1. If yes how do I do it? Christian

Re: mod_jk does not compile (3.2b7)

2000-11-13 Thread Igor Stelmashenko
I'm having the same problem on solaris(apache_1.3.14, gcc version 2.95.2 19991024 (release)) Any tips or pointers are greatly appreciated! I've tried everything mentioned on http://jakarta.apache.org/tomcat/jakarta-tomcat/src/doc/mod_jk-howto.html I have also collected kernel trace - apxs tries

Why do I have to use 8080 in URL?

2000-11-13 Thread Mark Franz
On my server, I can run .jsp files by using the URL string http://servername/dir/file.jsp But on my dev machine running Workstation 4.0 and the option pack PWS I have to use http://machinename:8080/dir/file.jsp I have gone t

RE: Why do I have to use 8080 in URL?

2000-11-13 Thread Mark Franz
Not Found (404) Original request: /jakarta/isapi_redirect.dll Not found request: /jakarta/isapi_redirect.dll Mark G. Franz -Original Message- From: Michael J. Suzio [mailto:[EMAIL PROTECTED]] Sent: Monday, November 13, 2000 2:21 PM To: [EMAIL PROTECTED] Subject: Re: Why do I have to u

Re: Why do I have to use 8080 in URL?

2000-11-13 Thread Michael J. Suzio
Mark Franz wrote: > on my dev machine running Workstation 4.0 and the option > pack PWS I have to use > http://machinename:8080/dir/file.jsp > I have gone through all the properties I can think of but > nothing works to alieviate this requirement to use > 8080 in the URL. Your PWS option pack

Re: user authentication

2000-11-13 Thread Daniel Bruce Lynes
On Mon, 13 Nov 2000, Michelle wrote: > I've been delving through the Tomcat archives and various guru site > out there, trying to piece together a sound approach to handling > user authentication and rights access. I've seen some threads and > articles on using sessions, some references in the T

Re: downloading Word doc

2000-11-13 Thread Laurens Pit
It could be that, however I do notice: 1. When I check with Network Monitor to see the actual bytes that are received over the internet it shows that the Word document is send completely. Also, the server reports that it has send the document (the number of bytes send are equal to the size of th

RE: 3.2b7 Fails to Compile on WinNT4.0

2000-11-13 Thread Marc Saegesser
I had the same problem until I realiazed that I didn't have the tomcat_32 branch of jakarta-servletapi. cvs co -r tomcat_32 jakarta-servletapi -Original Message- From: Pierre Delisle [mailto:[EMAIL PROTECTED]] Sent: Monday, November 13, 2000 3:28 PM To: [EMAIL PROTECTED] Subject: Re: 3

Re: 3.2b7 Fails to Compile on WinNT4.0

2000-11-13 Thread Pierre Delisle
Looks like it is not picking up the proper servlet.jar. If I compile with the 2.3 servlet.jar, I get the same compilation errors as you do... -- Pierre [EMAIL PROTECTED] wrote: > > Hello, > > I am trying to build 3.2b7 for Windows. > > Using > WindowsNT 4.0 SP5 > suns jdk1.3, > jax

Error while executing JSP on IIS

2000-11-13 Thread Ruikar, Mahesh
I got a 500 error which had at the end of it following line: sun/tools/javac/Main What did go wrong? (I did all the steps mentioned at http://jakarta.apache.org/tomcat/jakarta-tomcat/src/doc/tomcat-iis-howto.htm l#troubleshoot for configuring IIS on Windows2000 and could see all the jsp files l

IIS how to

2000-11-13 Thread Eric Min
Hi, After configed with IIS 4.0, the url www.test.com/examples and www.test.com:8080/myproject work well, but www.test.com/myproject does not work. I con not change the port number to 80 because it is used by IIS. Waiting for your reply. Thanks, Eric Min DigitlaEmissary.com

Re: downloading Word doc

2000-11-13 Thread Juan Ramirez
Just a guess, but try setting the content type to application/msword instead of application/x-www-form-urlencoded. Juan CPC Livelink Admin wrote: > > Is it just word, or excel, powerpoint, etc too? Could this be the Frontpage > extentions/Office SP1a bug rearing it's ugly head? This bug cause

IIS Configuration

2000-11-13 Thread Eric Min
Hi, I followed the tomcat-IIS how-to to configes tomcat with IIS. It works fine with http://localhost:8080; http://127.0.0.1 and http://www.test.com/examples/, but if I changed the url to my project with http header, for example, http://www.test.com, it does not work. It asks me for username, p

RE: Using Jasper for template processing?

2000-11-13 Thread CPC Livelink Admin
Remember, Servlets are not necessarily HTTP beasts. The servlet spec (from my perusal) specifically leaves open what kind of environment the servlet will live in. This is why there are specific HTTP extentions of the base servlet classes. Now, that being said, I don't know of any other way to

Windows SMB paths in server.xml

2000-11-13 Thread Rogério Meneguelli Gatto
Hello, I've noticed a difference in behaviour in Tomcat 3.1, 3.2b7, and 4.0m4 regarding Windows SMB paths, like this one: I included this same element (paths are altered here for security) on all three server.xml. Tomcat 3.1 and 4.0m4 handle it fine, 3.2b7 gives a 404. All three instance

Re: Using Jasper for template processing?

2000-11-13 Thread Dave Smith
Hi Jaroslav, I already make use of user-defined JSP templates on my site http://www.zzpost.com/. The webapp runs a user-defined JSP then uploads the output to the users own website. The question you need to ask is, for what reason would you take the time and trouble to "decouple" servlets from

RE: downloading Word doc

2000-11-13 Thread CPC Livelink Admin
Is it just word, or excel, powerpoint, etc too? Could this be the Frontpage extentions/Office SP1a bug rearing it's ugly head? This bug causes issues when Word tries to download the file, but it doesn't share the same browser cookies/sessions and so it gets sent to a login page or something els

3.2b7 Fails to Compile on WinNT4.0

2000-11-13 Thread raimee
Hello, I am trying to build 3.2b7 for Windows. Using WindowsNT 4.0 SP5 suns jdk1.3, jaxp v.1.01 servlet.jar 2.2 here is the output of the compile: Searching for build.xml ... Buildfile: D:\Tomcat\jakarta-tomcat-3.2-b7-src\build.xml prepare: [mkdir] Created d

RE: non-cookie session tracking?

2000-11-13 Thread CPC Livelink Admin
Title: RE: non-cookie session tracking?   Well, for the first one, they don't have a session yet - so the JavaScript just needs to be smart enough to behave when it's not there.  As sson as they hit a dynamic page, they will get a session, and then the 'static' pages can use it. -Orig

downloading Word doc

2000-11-13 Thread Laurens Pit
Hi, Whenever I download a file using Tomcat (i.e. it uses org.apache.tomcat.servlets.DefaultServlet) it works, except when I try to download a Word document. Then the client side seems to get stuck. This is reproducable on different client machines using different servers (Linux and Sun). Is anyo

RE: non-cookie session tracking?

2000-11-13 Thread Burgess, Jay
Title: RE: non-cookie session tracking? While our servlets use cookies for session handling, we use this technique all the time with parameters other than session ID.  I thought it might be applicable to your problem.  However, now I'm wondering about the "bootstrap" case i.e. how do you get

Re: writing jsp output to a file

2000-11-13 Thread Joe Laffey
On Mon, 13 Nov 2000, John Ellis wrote: > All you need to do is create a virtual browser: > > URL pageYouWant = new URL(completeRequestString); > InputStream in = pageYouWant.openStream(); > // burn off the header from in, then write the rest to a file... > > This will all be done, of course, in a

Re: writing jsp output to a file

2000-11-13 Thread John Ellis
All you need to do is create a virtual browser: URL pageYouWant = new URL(completeRequestString); InputStream in = pageYouWant.openStream(); // burn off the header from in, then write the rest to a file... This will all be done, of course, in a completely seperate JVM than your Tomcat JVM. It s

writing jsp output to a file

2000-11-13 Thread Juan Ramirez
I would like to write the output of a jsp file to a static html file instead of sending it out to a browser. I have a pagebuilding system that uses the power of jsp to do a lot of things, but I need to write the resulting jsp to a file instead of streaming it out. Has anyone done anything like t

user authentication

2000-11-13 Thread Michelle
I've been delving through the Tomcat archives and various guru site out there, trying to piece together a sound approach to handling user authentication and rights access. I've seen some threads and articles on using sessions, some references in the Tomcat archives to JDBCRealm (which I cannot fi

Re: non-cookie session tracking?

2000-11-13 Thread Daniel A. Theobald
This approach sounds promising, with much less of a performance hit than doing it dynamically on the server side. Has anyone actually tried this approach before? The way the site works right now, any page that leaves the site is brought up in a separate window anyway. So by the same token we co

Re: mod_jk does not compile (3.2b7)

2000-11-13 Thread John Tangney
On 11/13/00 2:54 AM, carnell at [EMAIL PROTECTED] wrote: > apxs:Break: Command failed with rc=16711680 > > And it worked under 3.2 b6 :( Any ideas? Yeah. I worked through a similar one. It's probably something in apxs itself. In my case, I needed to modify $CFG_LD_SHLIB inside apxs. Maybe your

auto-loading

2000-11-13 Thread '
Hi, How do I stop tomcat from automatically loading applications in /webapps? do I uncomment the ...context.AutoSetup ContextInterceptor in server.xml? Will this effect anything else? thanks!

Re: out.write() method

2000-11-13 Thread Peter Choe
hey! that actually worked. thanks for the tip. peter choe CPC Livelink Admin wrote: > > Maybe its that you need to replace "\n" with "" (Break Line) to get the > new lines in HTML, since HTML ignores the formatting of the input text. > (Unless you use the tag I think) > > -Original Mess

RE: non-cookie session tracking?

2000-11-13 Thread Burgess, Jay
Title: RE: non-cookie session tracking? Another option, assuming you know ahead of time which URLs on a page should have the session ID propagated, would be to use Javascript to grab the session ID off of the current page's URL, add it to the new page's URL, and then ask for the new page.  F

RE: out.write() method

2000-11-13 Thread CPC Livelink Admin
Maybe its that you need to replace "\n" with "" (Break Line) to get the new lines in HTML, since HTML ignores the formatting of the input text. (Unless you use the tag I think) -Original Message- From: Peter Choe [mailto:[EMAIL PROTECTED]] Sent: Monday, November 13, 2000 11:44 AM To: [

RE: non-cookie session tracking?

2000-11-13 Thread CPC Livelink Admin
That's the problem with not using cookies. Since (in most cases) you will be using tomcat in conjunction with some other web server (tomcats limited web server is not sufficient for heavy use), the web server will directly serve your static pages - tomcat will never see them. If you need to trac

apache Can't locate API module structure in file mod_jk.so

2000-11-13 Thread Marco Pöhler
Hi, i try to start apache with mod_jk. I compiled mod_jk using the source-dist and copy mod_jk.so to APACHE/libexec. The lines in my httpd.conf are: LoadModule jk_module libexec/mod_jk.so AddModule mod_jk.c when i try to start apache i got this error:

out.write() method

2000-11-13 Thread Peter Choe
i am writing a web based mail client in jsp. i have tomcat3.2 running on a freebsd machine. i am using java mail package and have managed to connect to the pop server and get a list of the unread mail. but when i try to view mail that is just plain text something strange happens. the message i

Re: non-cookie session tracking?

2000-11-13 Thread Daniel A. Theobald
I have a huge tree of static html. Does this mean that anytime I serve a page, I would have to first parse all the URLs and run them each through the encodeURL method for every link that appears on every page? Is there another (more automatic) way? The performance hit seems prohibitive. theo

RE: workers - loadbalancing

2000-11-13 Thread Alistair Hopkins
A guess, but do green threads show up in your monitoring? if sun uses green by default, but blackdown uses native, you may not see the green as they are internal. Al. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Christopher Blasnik Sent: Monday, Nov

Tomcat Test Environment - earlier version?

2000-11-13 Thread olav_van_kessel
Hi, We're looking for a version of Tomcat that would run under Visual Age 3.0. Does this exist? The following is the problem: We're having a web-application based on Java 1.1.2. Now we would like to rearrange some things on it. Therefore, we'd like to run the application using a Tomcat-server t

session.getSessionContext();

2000-11-13 Thread David Molloy
Hi, I'm trying to write a simple Snoop servlet for my system and have run into a small problem while porting from JServ to Tomcat. I have sessions working for authentication etc. - however when I use HttpSessionContext context = session.getSessionContext(); System.err.println("Context =

RE: design for a database pool and applets

2000-11-13 Thread David Oxley
An idea is to set up you servlet as an RMI server and make requests to your servlet from your applet. Bear in mind that you should design your app in a multi-tier way. i.e. Your database access, business logic and UI code should all be seperate. Applets are normally classed as UI and should theref

RE: workers - loadbalancing

2000-11-13 Thread David Oxley
I haven't yet got round to trying this but I believe the worker.ajp13.lbfactor parameter is only the priority of this worker (not the number of processes). You must start your own processes seperatley as in virtual hosting and set up your worker.loadbalancer.balanced_workers to point at the v

RE: largeFile init parameter

2000-11-13 Thread Christian Mallwitz
Hi, I tried JSP files of different sizes up to 512 KB size. All static text is generated into the class file. So how do I enable the largeFile option? Thanks Christian -- Christian Mallwitz INTERSHOP Communications Germany Senior Software Engineerphone: +49 3641 894 334 > -Original Me

RE: non-cookie session tracking?

2000-11-13 Thread Konrad Kamiński
Use response.encodeURL (url) for URL encoding with session tracking -Original Message- From: Daniel A. Theobald [mailto:[EMAIL PROTECTED]] Sent: Monday, November 13, 2000 4:20 PM To: [EMAIL PROTECTED] Subject: non-cookie session tracking? Does or will tomcat support automatic url rewri

RE: Request Parameters Getting Lost

2000-11-13 Thread Voegele, Jason
Title: RE: Request Parameters Getting Lost I've discovered the problem with the request parameters.  When using the web.xml file to identify a "welcome page" for a webapp, the file needs to be explicitly identified in the URL.  I was failing to do this.  So, invoking a JSP like this fails to

non-cookie session tracking?

2000-11-13 Thread Daniel A. Theobald
Does or will tomcat support automatic url rewriting for session tracking? Our client does not allow the use of cookies. Any suggestions? theo

RE: Request Parameters Getting Lost

2000-11-13 Thread Voegele, Jason
Title: RE: Request Parameters Getting Lost I'm still having difficulty obtaining the request parameters from the implicit JSP request object.   I tried the JSP page listed below.  It worked fine when I put it in the TOMCAT_HOME\webapps\root directory, however, if I put it in another subdirec

Re: tomcat 4.0 m4: ParseException: Cannot read file: ze file

2000-11-13 Thread James Cook
It appears to be an error that occurs while parsing jar files. ze probably refers to a ZipEntry object. Perhaps, one or more of your jar files are corrupt? jim - Original Message - From: "Christian Mallwitz" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, November 13, 2000 8:36

making mod_jk.conf-auto default to ajp13???

2000-11-13 Thread Jacob Kjome
Gal Shachor wrote: At 09:30 AM 6/23/2000 +0200, you wrote: This does require you to change mod_jk.conf, or just to change the ApacheConfig task and recompile... From the above statement, it sounds like the only way to get Tomcat to spit out a mod_jk.conf-auto file that uses ajp13 rather than

making mod_jk.conf-auto default to ajp13???

2000-11-13 Thread Jacob Kjome
Gal Shachor wrote: At 09:30 AM 6/23/2000 +0200, you wrote: >This does require you to change mod_jk.conf, or just to change the >ApacheConfig task >and recompile... From the above statement, it sounds like the only way to get Tomcat to spit out a mod_jk.conf-auto file that uses ajp13 rather th

Getting the content of the actual page.

2000-11-13 Thread Zsolt Koppany
Hi, how could I get the content of the current page after my application created it? (It would like to save the content.) Zsolt -- Zsolt Koppany Intland GmbH www.intland.com Schulze-Delitzsch-Strasse 16 D-70565 Stuttgart Tel: +49-711-7871080 Fax: +49-711-7871017

tomcat 4.0 m4: ParseException: Cannot read file: ze file

2000-11-13 Thread Christian Mallwitz
Can someone tell me what that means ? Thanks Christian -- Christian Mallwitz INTERSHOP Communications Germany Senior Software Engineerphone: +49 3641 894 334

workers - loadbalancing

2000-11-13 Thread Christopher Blasnik
Hi, I am currently working on a virtual hosting solution for JSPs / Java Servlets for my company fyi: i am using redhat 6.2, tomcat 3.2 beta6 (eagerly awaiting the final 3.2) and the SUN JDK 1.2.2 as the platform for all of this i am doing all fine configuring virtual hosts and i think i have (a

dial up server

2000-11-13 Thread GoldenDawn Fan
Hi, does anyone know how Apache can be used as server for dial up ISP? If so, can someone briefly explain how? Thanks! __ Do You Yahoo!? Yahoo! Calendar - Get organized for the holidays! http://calendar.yahoo.com/

RE: Tomcat3.1 & solaris2.7 - problems with shutdown.sh

2000-11-13 Thread Kitching Simon
I suspect it is more of a JVM-related issue. Tomcat's failure to shutdown under some conditions has been an intermittent discussion on this group for several months now. It happens to me on HPUX, but works fine on the solaris machine I have access to. Have you tried running the shutdown command

tomcat4.0m4 java.net.SocketException

2000-11-13 Thread Juergen Baumann
I have installed tomcat4.0 Milestone 4 on my w2000 pc. The examples do run fine, however I get the following exception everytime I run one of the examples. Here is what I have added in startup.bat and shutdown.bat: set CATALINA_HOME=C:\Java\tom4.0m4 With tomcact4.0 Milestone 1 or tomcat3.2 beta

Tomcat3.1 & solaris2.7 - Tomcat threading problem?

2000-11-13 Thread Chris Francis
Hi All, I'm having some problems with Tomcat. I'm pretty sure it's Tomcat anyway. The symptoms are whenever I start my service the machine locks up regularly for a few seconds then comes alive again. It looks like a thread is trying to hog the processor but Solaris being the nice OS that it is

[ANNOUNCEMENT] Tomcat 3.2 Beta 7 RPM available

2000-11-13 Thread GOMEZ Henri
RPM for TC 3.2b7 are available at : http://rpmized.free.fr/ Compiled under Redhat 6.1 + updates with SSL support. size 2106243 tomcat-3.2-beta7.1.src.rpm 1567141 tomcat-3.2-beta7.1.noarch.rpm 257654 tomcat-manual-3.2-beta7.1.noarch.rpm 1093345 tomcat-mod-3.2-beta7.1.src.rpm 84332

Re: Contexts and dispatchers

2000-11-13 Thread Richard Evans
> > There are two getRequestDispatcher() methods. > One in the ServletContext that uses absolute paths (start with /). > One in the request that uses relative paths. > Looks like you need the absolute path one. No. My understanding is that the one in ServletContext takes paths relative to t

mod_jk does not compile (3.2b7)

2000-11-13 Thread carnell
cd /opt/tomcat/jakarta-tomcat/src/native/apache1.3 /opt/apache/bin/apxs -o mod_jk.so -DSOLARIS -I../jk -I/usr/java/include -I/usr/java/include/solaris -lposix4 -c *.c ../jk/*.c gcc -DSOLARIS2=260 -DUSE_EXPAT -I../lib/expat-lite -fPIC -DSHARED_MODULE -I/ opt/apache_1.3.12/include -I../jk -I/usr/j

RE: question about RequestDispatcher.forward() in tomcat

2000-11-13 Thread Lacerda, Wellington (AFIS)
I wrote a small MVC framework and I have my controller mapped to a common name like "dispatch.htm" and I send all requests directly to it, with a parameter specifying the action. So, all the requests are always like: do something It's working fairly well. Wellington Silva UN/FAO -Original

Using Jasper for template processing?

2000-11-13 Thread Jaroslav Gergic
Hello Tomcat developers and advanced users! I have following question: I would like to use Jasper engine for template processing. I use Tomcat with JSPs and its good, but I would like to alter Jasper usage this way: An JSP page is compiled into a Java source where the user's JSP page extends t

Unable to run JSPs

2000-11-13 Thread Gareth Cantrell
I have been having problems getting tomcat to run JSPs for the last week. I have tried with 3.2b4, b5, b6 and now b7... and still get the same problems: "cannot load servlet name: jsp" I'm currently using RH Linux 6.2, with Sun's JDK1.3. I've also tried this on NT4, and Win2000 with the same resu

RE: Setting JAVA_HOME path on Linux 7.0

2000-11-13 Thread Jon Skeet
> Oops ! > > Maybe it doesn't with JDK1.3 on Linux, because I've 4 servers running with > long up-times and my own machine using tomcat 3.1 AND JDK1.3. The problem I > found on NT was when using Tomcat as a service as soon as you logged off the > JDK was being shut down, but even this was a probl

RE: Setting JAVA_HOME path on Linux 7.0

2000-11-13 Thread Lacerda, Wellington (AFIS)
Oops ! Maybe it doesn't with JDK1.3 on Linux, because I've 4 servers running with long up-times and my own machine using tomcat 3.1 AND JDK1.3. The problem I found on NT was when using Tomcat as a service as soon as you logged off the JDK was being shut down, but even this was a problem on the JD