tomcat start

2001-07-06 Thread Mario Meisenberger
hi, I am new to tomcat but not new to servlets and jserv. but i cannot get my project to live with tomcat. CONFIGURATION = Apache == htpd.conf - I added the following line Include G:/Programme/ApacheGroup/apache322/conf/mod_jk.conf mod_jk -- I use the

Re: Access protected

2001-07-06 Thread Antony Bowesman
Nicolas Preget wrote: Hi I would like to protect (using password for instance) the access to parts on my Tomcat installation. Do you know how I can make it ? Have a look for 'Realm' in the archive. Realms give access to user repositories for authentication and access control

Re: List traffic et al

2001-07-06 Thread Jeff Kilbride
I'm not sure that I agree with the idea that I have to wade through all these messages for the good of the list. As I said, I have no experience with Tomcat on Windows, so I'm not interested in Windows specific issues nor can I help to solve them. Splitting along platform lines should retain a

Trouble trying to port from JServ

2001-07-06 Thread Barry
Hi all, I hope someone can help me with a problem. I'm sorry if this is a stupid newbie question but I've been working on this for days with no success. I have been through all the documentation too. I am trying to port my web application from JServ to Tomcat/mod_jk and am having trouble

RE: Tomcat Logging.

2001-07-06 Thread Hughes, Tim
Hi, I am not sure about this but I think that one of the following should work: - if you just comment out the lines related to logging in conf/server.xml - or if you take out the path attribute from the logging elements in conf/server.xml then logging will be disabled.

Re: strange way to start tomcat

2001-07-06 Thread Peter Hrastnik
The first time a jsp script is requested, it has to be compiled. This procedure takes some time. But I agree with you: Waiting some minutes is very long. What processor, memory etc do you have and is the machine loaded (use top to display the load). Perhaps you should try to use another JVM?

AW: User login logging (JDBC authentication)

2001-07-06 Thread Reto Badertscher
Hi, yeah this is more or less OK. For my application i have a servlet acting as a controller (like a portal) - all functions are accessed thru the controller, which dispatches the request to the correct JSP (in your case), for my part i'm using Velocity and templates. This controller servlet

Re: List traffic et al

2001-07-06 Thread Dmitri Colebatch
Jeff, On Fri, 6 Jul 2001 16:38, Jeff Kilbride wrote: Splitting along platform lines should retain a relatively good mix of newbies and experienced developers in each list, so I don't see the problem you are pointing out. correct. I suppose my reply was not so much to your email, more the

Invoke New Window From Applet

2001-07-06 Thread Sunil Chandurkar
Hi There I know the question i'm going to ask, the best place is Java Forum, and I have tried there. but i didn't find quick response compartively here...I m asking you all this question... Actually from Browser Applet I want to open new Window which should look like New Application:

Problem changing default web.xml : conf/web.xml is not processed

2001-07-06 Thread guido . bartels
Hi there, I have a problem changing the web.xml in the conf dir (conf/web.xml). I wanted to configure some central stuff there and wondered why it isn't working. Then I placed a wrong tag with no closing tag into the web.xml. The sax-parser must throw an exception with this file. But nothing

Re: strange way to start tomcat

2001-07-06 Thread Alex Madon
Hi Kris, thanks for the answer. I have narrowed down the problem. The default server.xml file sets tomcats to run on port 8080 as stand alone server. If i comment out the lines corresponding in the server.xml file, and run tomcat as an apache module, evererything starts smoothly, just with a

Apache Web and Tomcat on different machines

2001-07-06 Thread Christian . Schildt
Hi, We have a little performance problem because and want to run the web server (Apache) on one computer and the tomcat on another. If somebody has done something like that, please help. My questions are: 1) Is it worthy at all? 2) Are there different way to do this? Mit freundlichen Grüßen

redirect problems?

2001-07-06 Thread Pär-Joel Utsi
Hello Tomcat/Jakarta/Apache I am experiencing some weird problems with my web server setup. My system configuration is: Windows 2000 server IIS 5.0 Jakarta Tomcat 3.2.2 MS SQL 2000 Avenir aveConnect JDBC-driver 2.4M (developer verison) I have built an insert post page in MM Dreaweaver Ultradev

RE: Invoke New Window From Applet

2001-07-06 Thread Frerichs, Rene
Hi, from there Applet they don't invoke a new application, they only invoke a new Dialog-window inside their application (you see it by the words in the statusbar Java Applet Window). When you look at the html code, you see they have done it with the swing components. That means you only need

RE: NT services applet

2001-07-06 Thread James Radvan
start settings control panel administrative tools services - James Radvan Websphere Analyst/Architect London, UK [EMAIL PROTECTED] +44 7990 624899 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: 05 July 2001 17:17

problems with redirect after inserting post with form

2001-07-06 Thread Pär-Joel Utsi
Hello Tomcat users. I am experiencing some weird problems with my web server setup when trying to redirect after a plain form for posting data. My system configuration is: Windows 2000 server IIS 5.0 Jakarta Tomcat 3.2.2 MS SQL 2000 Avenir aveConnect JDBC-driver 2.4M (developer verison)

Re: strange way to start tomcat

2001-07-06 Thread Alex Madon
Hello Peter, I have noticed the difference in speed you talk about when I use the mod_jk.so apache module (not stand alone mode): the first time I load the page is a bit slower than the next times. But when I use tomcat as a stand alone server, it is very very slow (order of minute...) I don't

creating a instance of a servlet: takes too long!!

2001-07-06 Thread pedro salazar
Greetings, why is that my servlet when the first time is invoked, it takes about 30 seconds or more to start when the servlets that came in tomcat are instantaneous? After the servlet container instantiated and initialized my servlet, all the following requests are very fast. Is there any advice

tomcat exception

2001-07-06 Thread Lakshminarayanan Ramakrishnan
Title: tomcat exception Hi When given a jsp request, tomcat throws an exception saying... What could be the probable reasons?(FYI.class files placed in webpps/root/WEB-INF/classes folder) Pls. Help.. Thanx in adv Lax EXCEPTION TROWN: javax.servlet.ServletException

Re: tomcat exception

2001-07-06 Thread Jim Cheesman
At 11:17 AM 06/07/01, you wrote: Hi When given a jsp request, tomcat throws an exception saying... What could be the probable reasons?(FYI.class files placed in webpps/root/WEB-INF/classes folder) Pls. Help.. From the stack trace the NullPointerException is being thrown in the

RE: tomcat exception

2001-07-06 Thread albert
hi, I try to help, may be this can solve your problem 1) Delete all the *.java file inside the jar file 2) put the class in \webapps\ROOT\WEB-INF\lib 3) check your classpath setting, it must be point to your jar file, (e.g : \webapps\ROOT\WEB-INF\lib\myjar.jar) [albertoscarina]

Re: List traffic et al

2001-07-06 Thread Andrew Robson
Hi, I've been on the list about eight months and I'm not sure I agree that splitting it will alleviate the volume problem. I'm rather afraid that I would end up subscribed to 2 or 3 high volume lists rather than one. I imagine that we would see a lot of multiple posts across the lists.

AW: creating a instance of a servlet: takes too long!!

2001-07-06 Thread Ralph Einfeldt
The time it takes to start a servlet depend on following factors: - if it is run for the first time or has been changed since it was run last it will be regenerated and recompiled. Depending on size and conplexity this can take some time. - if it is the second call after a

RE: mod_jk

2001-07-06 Thread Saurabh Shukla
is path, file permissions correct ? is it finding the files ? -Original Message- From: Anagha Mudigonda [mailto:[EMAIL PROTECTED]] Sent: Friday, July 06, 2001 11:42 AM To: [EMAIL PROTECTED] Subject: mod_jk hi, while compiling the source for mod_jk i find a lot of .h files cant be

RE: List traffic et al

2001-07-06 Thread Saurabh Shukla
I TOTALLY agree with this, deviding will not be helpful. Rather let all of us try to reduce volume(both in size and number), it does not require much effort. Lets just try to follow the following. - Please go through the archives and docs before posting a question. The members should also

AW: List traffic et al

2001-07-06 Thread Nico Wieland
i agree 100%. i think a _good_ thing would be to include these guidelines in the confirmation message one receives after subscribing to the list. this is the way how it's done eg. on sun-managers, they post the guidelines once a month. it's the most disciplined list i know. -nico Rather let

RE: log files

2001-07-06 Thread Randy Layman
Built in to Tomcat, no and no. It is possible to rotate logs by using some scripting and stopping/starting the server. I don't believe there is any way to limit the log file size without modifying the Tomcat source. Randy -Original Message- From: John

RE: Tomcat as an NT Service, in win 2000

2001-07-06 Thread Randy Layman
The most common reasons for this is spaces in the paths of TOMCAT_HOME and JAVA_HOME. Other possibilities are classpath errors (not finding a critical class) and bind errors (something else running on the port Tomcat wants). Randy -Original Message- From: Govind Agarwal

RE: stand alone tomcat webserver question

2001-07-06 Thread Randy Layman
-Original Message- From: Yomyung Leem [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 05, 2001 9:18 PM To: [EMAIL PROTECTED] Subject: stand alone tomcat webserver question Hi folks. I am quite new to this web server stuff, and I found tomcat today. What I want to know

RE: Reverse DNS lookup

2001-07-06 Thread Randy Layman
The InetAddress...getHostName() call will use the DNS databases. For most computers, however, this won't return anything useful. Randy -Original Message- From: David Wall [mailto:[EMAIL PROTECTED]] Sent: Friday, July 06, 2001 12:02 AM To: [EMAIL PROTECTED] Subject:

Re: List traffic et al

2001-07-06 Thread Jim Cheesman
At 11:11 AM 06/07/01, you wrote: Hi, I've been on the list about eight months and I'm not sure I agree that splitting it will alleviate the volume problem. I'm rather afraid that I would end up subscribed to 2 or 3 high volume lists rather than one. I imagine that we would see a lot of

RE: creating a instance of a servlet: takes too long!!

2001-07-06 Thread Michael Wentzel
why is that my servlet when the first time is invoked, it takes about 30 seconds or more to start when the servlets that came in tomcat are instantaneous? After the servlet container instantiated and initialized my servlet, all the following requests are very fast. Is there any advice

RE: creating a instance of a servlet: takes too long!!

2001-07-06 Thread Randy Layman
Really it depends upon what you are doing in your init method. I have several servlets that load almost instantly, but don't do anything in their constructor or init methods. The only thing that you should do in your init method is to call super.init at the beginning.

RE: JDBC Realm Questions Tomcat 3.2.2

2001-07-06 Thread Michael Wentzel
Now, when somebody wants to access myServlet resource, he/she must have the role of an Administrator or Operator. I think this should be checked into the database. The problem is that, when I've tried to access myServlet for the first time, the following message was generated in the

tomcat-documentroot

2001-07-06 Thread Lakshminarayanan Ramakrishnan
Title: tomcat-documentroot Hi This is a peculier situation where in, i need to place my files(jsp) outside tomcat's default root (in a different machine). Everything works fine when the files(jsp) are in tomcat default root, that is, the servlet classes get loaded automatically as i

Re[2]: Reverse DNS lookup

2001-07-06 Thread wire
Friday, July 06, 2001, 7:02:45 AM, [EMAIL PROTECTED] wrote: RL The InetAddress...getHostName() call will use the DNS databases. RL For most computers, however, this won't return anything useful. That is not true. Most of US IPs have PTR records. That includes your own IP, that you

Re: creating a instance of a servlet: takes too long!!

2001-07-06 Thread wire
Friday, July 06, 2001, 5:01:37 AM, [EMAIL PROTECTED] wrote: ps Greetings, ps why is that my servlet when the first time is invoked, it takes about 30 ps seconds or more to start when the servlets that came in tomcat are ps instantaneous? After the servlet container instantiated and

Re: creating a instance of a servlet: takes too long!!

2001-07-06 Thread wire
If your servlet has changed and needs to be recompiled, then using jikes instead of javac will save a lot of time. Friday, July 06, 2001, 5:01:37 AM, [EMAIL PROTECTED] wrote: ps Greetings, ps why is that my servlet when the first time is invoked, it takes about 30 ps seconds or more to start

RE: creating a instance of a servlet: takes too long!!

2001-07-06 Thread Frederick Lefebvre
The connection pool could cause your problem. If it initiates many database connections, it is normal even if your db server was on the same machine than your app server, for it to take a few seconds per connection. Fred -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

Re: creating a instance of a servlet: takes too long!!

2001-07-06 Thread Bo Xu
pedro salazar wrote: Greetings, why is that my servlet when the first time is invoked, it takes about 30 seconds or more to start when the servlets that came in tomcat are instantaneous? After the servlet container instantiated and initialized my servlet, all the following requests are

Get Me Out Of This

2001-07-06 Thread Nino Uziel
Title: Get Me Out Of This I have unsubscribed 3 times and still getting indicidual mails from [EMAIL PROTECTED] This is starting to be a nightmare. Get me out of it please. It is killing my mailbox. N.

Re: Multiple Hosting on IIS

2001-07-06 Thread Allan Kamau
One thing I have noticed is that you may not be able to isolate contexts to individual web sites on IIS when running multiple web sites on one IIS server with the web sites all configured to use tomcat. ie. www.myhypotheticaldomain.com/contextname/servletname and

Re: creating a instance of a servlet: takes too long!!

2001-07-06 Thread Peter Davison
There's another reason for this and it has to do with the java.security.SecureRandom class. From what I can tell, tomcat uses this class to generate a seed value for the session ID. The first request for a SecureRandom value (eg. new SecureRandom().nextLong()) can take many, many seconds to

Re: creating a instance of a servlet: takes too long!!

2001-07-06 Thread Bo Xu
Bo Xu wrote: pedro salazar wrote: Greetings, why is that my servlet when the first time is invoked, it takes about 30 seconds or more to start when the servlets that came in tomcat are instantaneous? After the servlet container instantiated and initialized my servlet, all the

RE: creating a instance of a servlet: takes too long!!

2001-07-06 Thread William Kaufman
Note that a good deal of this time might be spent in HttpServletRequest.getSession(): the 3.2.1 implementation is much slower than the 3.2.2 version. You might want to time your calls and, if that's where the slow-down is, upgrade to 3.2.2. -- Bill K.

Re: Trouble trying to port from JServ

2001-07-06 Thread anil
Hi Barry, If you want all your servlets served through the my.domain.com/int, On the server.xml change RequestInterceptor className=org.apache.tomcat.request.InvokerInterceptor debug=0 prefix=/servlet/ / RequestInterceptor

RE: Multiple Hosting on IIS

2001-07-06 Thread Cox, Charlie
Title: RE: Multiple Hosting on IIS you could map the contextname to something else to return an error for that context(in server.xml): Host name=www.myhypotheticaldomain.com Context path=/contextname docBase=webapps/contextname/ Context path=/othercontextname docBase=webapps/errorcontext/

Re[2]: creating a instance of a servlet: takes too long!!

2001-07-06 Thread wire
Friday, July 06, 2001, 10:16:05 AM, [EMAIL PROTECTED] wrote: PD There's another reason for this and it has to do with the java.security.SecureRandom class. From what I can tell, tomcat uses this class to generate a seed value for the PD session ID. The first request for a SecureRandom value

Re: can't find tomcat.jar ? [solved]

2001-07-06 Thread wire
For the archives: this problem only occurs when using Jikes. By setting JIKES_PATH to include ...\lib\tomcat.jar the problem is solved. Friday, July 06, 2001, 12:05:30 AM, [EMAIL PROTECTED] wrote: wmc A fresh install of 3.3-m4 (with jdk1.4 on '98), and when I try to access a wmc jsp I get an

Re: Spanish characters

2001-07-06 Thread wapeditor
Hi! I have the same behave when the server (in with tomcat runs) is not configured properly with the spanish locale. I.E. if using Solaris, the shell running tomcat has to be configured whith a locale like 'es_ES.ISO8859-15'. Some other times I had problems with unsupported characters in Oracle

Jakarta NT service

2001-07-06 Thread Wu, Michael
Hi, I recently installed tomcat3.2 on a windows NT machine. But the NT service always got stopped everytime I logged in and then logged out. Could anyone help? Regards Michael

Re: Jakarta NT service

2001-07-06 Thread Matt Goodall
See http://jakarta.apache.org/tomcat/tomcat-3.3-doc/NT-Service-howto.html. Having said that JavaService, from http://www.alexandriasc.com/software/JavaService/index.html, is really easy to use. Cheers, Matt. - Original Message - From: Wu, Michael [EMAIL PROTECTED] To: [EMAIL PROTECTED]

Re: Re[2]: Reverse DNS lookup

2001-07-06 Thread David Wall
RL The InetAddress...getHostName() call will use the DNS databases. RL For most computers, however, this won't return anything useful. That is not true. Most of US IPs have PTR records. That includes your own IP, that you had when sending your msg. By far, most servers have rDNS,

Help: no luck using JavaService to make Tomcat A Service

2001-07-06 Thread Russell, Steve
Hi; Several people recomended JavaService to make Tomcat a service. I tried it, it was easy, and it didn't work :). I'm on windows 2000, I'm using I'm using Tomcat 3.2.1 I'm using the JDK 1.3.1 My TOMCAT_HOME = C:\Tomcat My JAVA_HOME = C:\JDK I unzipped all of the JavaService

Re: List traffic et al

2001-07-06 Thread Milt Epstein
On Fri, 6 Jul 2001, Dmitri Colebatch wrote: I think the big problem with splitting the list is that everyone is going to be interested in their own little niche. I for instance learn nothing by answering many questions that I answer, but I do learn things from reading other answers. If the

RES: filtering IP's on Tomact

2001-07-06 Thread Jose Euclides da Silva Junior - DIGR.O
-BEGIN PGP SIGNED MESSAGE- I think its impossible, since tomcat isnt a firewall.or even a webserver. José Euclides Júnior __ E-mail: [EMAIL PROTECTED] [EMAIL PROTECTED] http://euclides.8m.com - -Mensagem original- De:

Re[4]: Reverse DNS lookup

2001-07-06 Thread wire
Friday, July 06, 2001, 12:15:19 PM, [EMAIL PROTECTED] wrote: RL The InetAddress...getHostName() call will use the DNS DW databases. RL For most computers, however, this won't return anything useful. That is not true. Most of US IPs have PTR records. That includes your own IP, that

Re: RES: filtering IP's on Tomact

2001-07-06 Thread wire
Friday, July 06, 2001, 1:08:12 PM, [EMAIL PROTECTED] wrote: JEdSJDO -BEGIN PGP SIGNED MESSAGE- JEdSJDO I think its impossible, since tomcat isnt a firewall.or even a webserver. It seems the most you can do is accept or deny from within the servlet, with getRemoteAddr(). JEdSJDO José

Tomcat As A Service: Still Problems

2001-07-06 Thread Russell, Steve
I'm on windows 2000, I'm using I'm using Tomcat 3.2.1 I'm using the JDK 1.3.1 My TOMCAT_HOME = C:\Tomcat My JAVA_HOME = C:\JDK I checked all of my paths...no spaces in any of them :) I tried JavaService at: http://www.alexandriasc.com/software/JavaService/index.html It didn't

Re: Jakarta NT service

2001-07-06 Thread Brett Knights
You can use jdk 1.3.1 to overcome this problem. I am running TC as a service on NT4 no problem. Note you have to add -Xrs on the command line (in the wrapper.properties file) to overcome the stop on logout problem. See

RES: RES: filtering IP's on Tomact

2001-07-06 Thread Jose Euclides da Silva Junior - DIGR.O
-BEGIN PGP SIGNED MESSAGE- Ok, but you have to write your own code. José Euclides Júnior __ E-mail: [EMAIL PROTECTED] [EMAIL PROTECTED] http://euclides.8m.com - -Mensagem original- De: [EMAIL PROTECTED] [SMTP:[EMAIL

Re: Making Tomcat 3.2 A Service On Win 2000 ( using jdk 1.3.0_02 )

2001-07-06 Thread Gary Dale
Are you sure there are no problems with jdk1.3.1? The main problem I found with 1.3.0 was that it shut down when you logged off. I found the same problem in 1.3.1. The fix is to add -Xsa to the execution line that starts Java in Tomcat. As for making Tomcat a service, I found the

Re: jk_nt_service is not shutting down

2001-07-06 Thread Gary Dale
I'm getting the same error (2186). It started when I added the -Xsa parameters to the Java startup, which seems to be necessary to keep the service from shutting down on logout. The problem seems to be that the service takes, as you noted, about 20 seconds too long to shut down. I'm ignoring

Re: Problem with stopping Tomcat

2001-07-06 Thread Gary Dale
I thought 3.2.2 could use AJP13 instead? Am I wrong on that? Randy Layman wrote: Tomcat uses AJP12 to shutdown. -Original Message- From: Richard Richter [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 03, 2001 1:15 PM To: [EMAIL PROTECTED] Subject: Problem with stopping Tomcat

RE: Help on application scope

2001-07-06 Thread Michael Wentzel
Dear all, I used a java.util.HashMap for session invalidation in my JSPs. It is declared as such in 2 jsps: jsp:useBean id=monitor class=java.util.HashMap scope=application / (GalleryViewBottom.jsp and Logout.jsp)

RE: Making Tomcat 3.2 A Service On Win 2000 ( using jdk 1.3.0_02 )

2001-07-06 Thread Randy Layman
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, July 06, 2001 2:50 PM To: [EMAIL PROTECTED] Subject: Re: Making Tomcat 3.2 A Service On Win 2000 ( using jdk 1.3.0_02 ) Are you sure there are no problems with jdk1.3.1? The main problem I

RE: Problem changing default web.xml : conf/web.xml is not processed

2001-07-06 Thread Jann VanOver
You didn't mention which version of Tomcat you were running. The thing is, in some version, conf/web.xml became a SAMPLE, not a DEFAULT. You should not count on conf/web.xml to be used because that doesn't follow the J2EE standard. You MUST make a copy of the web.xml and put it into each webapp

RE: Problem with stopping Tomcat

2001-07-06 Thread Randy Layman
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, July 06, 2001 3:10 PM To: [EMAIL PROTECTED] Subject: Re: Problem with stopping Tomcat I thought 3.2.2 could use AJP13 instead? Am I wrong on that? My understanding is Tomcat 3.1-3

RE: JDBC Realm Questions Tomcat 3.2.2

2001-07-06 Thread Jann VanOver
Tomcat's JDBC Realm won't work with an empty database password. I posted about this a week ago and asked if it was a bug and noone responded. If you proved the JDBCRealm a valid username with a blank (empty string) password, Tomcat will ignore BOTH Username and password. Here's my previous

Re: apache not able to access jsp files

2001-07-06 Thread Gary Dale
I've found that setting a host to the tomcat webapps directory sort of works except that you don't get the ROOT folder. I can get to the examples via http://hostname.dom/examples/ however. I just don't get the Tomcat start page. Moreover, going ot http://hostname.dom/ROOT/ brings up the start

turbine's database connectin pool service

2001-07-06 Thread Kim, Phillip
Is there any documentation on how to use turbine's database connection pooling service? I'm running tomcat3.2.2 and interested in using tubrin's db pooling service only. Thanks!

Re: Apache - Tomcat - Servlet Mapping

2001-07-06 Thread Gary Dale
It would probably help if the mod_jk howto contained an example showing how to run the examples through Apache. For example, I have Tomcat 3.2.2 running nicely and get the examples to run using http://servername:8080/ to launch the examples. When I connect Apache to Tomcat, using

JDBC Realm error on startup

2001-07-06 Thread David Herder
I have the following configuration WinNT4 workstation Apache 1.3.20 tomcat 3.2.2 jdk 1.3.1 I am getting the following error on startup of Tomcat: Using CLASSPATH: C:\Tomcat\classes;C:\Tomcat\lib\ant.jar;C:\Tomcat\lib\dt.jar; C:\Tomcat\lib\htmlconverter.jar;C:\Tomcat\lib\i18n.jar;

bootstrap.jar ?

2001-07-06 Thread Russell, Steve
Hi; I'm trying to install tomcat as a service. I have been using JavaService. It is complaining that it can't find my startup class which is supposed to be Tomcat_Home/bin/boostrap.jar ( org.apache.Bootstrap ). I don't have this class. I tried downloading tomcat again..no dice. Where

RE: Invoke New Window From Applet

2001-07-06 Thread Jann VanOver
You're right dude, this is COMPLETELY the wrong place for this. -Original Message- From: Sunil Chandurkar [mailto:[EMAIL PROTECTED]] Sent: Friday, July 06, 2001 12:31 AM To: [EMAIL PROTECTED] Subject: Invoke New Window From Applet Hi There I know the question i'm going to ask, the

Re:RE: Invoke New Window From Applet

2001-07-06 Thread Jonathan Pierce
This is done using the Java Web Start technology. http://www.javasoft.com/products/javawebstart/index.html If you have more questions you should discuss them further on the java web start forum since this list is for tomcat user issues. http://forum.java.sun.com/forum.jsp?forum=38 Jonathan

RE: imp - Tomcat with SSL

2001-07-06 Thread Mandar Joshi
I guess it does not support digest based (SSL) client authenticationthough. cheers, Mandar -Original Message-From: Rams [mailto:[EMAIL PROTECTED]]Sent: Thursday, July 05, 2001 11:24 PMTo: [EMAIL PROTECTED]Subject: RE: imp - Tomcat with SSL Tomcat does support SSL..

Re:java error in database access

2001-07-06 Thread Dwaipayan
my problem concerning JdbcOdbcDriver was not solved.a friend(Randy it was u!) suggested that this driver is not thread safe/has problems with multithreading.(that's hebrew to me,coz i am a first time server programmer) incidentally i got the following server window msgs when using

RE: JDBC Realm error on startup

2001-07-06 Thread Michael Wentzel
I am getting the following error on startup of Tomcat: 2001-07-06 02:49:01 - ContextManager: JDBCRealm: Starting JDBCRealm, trying to acquire JDBC Driver class and DB Connection You need your libraries in TOMCAT_HOME/lib to be able to make the connection. Although JDBCRealm has been

RE: JDBC Realm Questions Tomcat 3.2.2

2001-07-06 Thread Michael Wentzel
Tomcat's JDBC Realm won't work with an empty database password. I posted about this a week ago and asked if it was a bug and noone responded. If you proved the JDBCRealm a valid username with a blank (empty string) password, Tomcat will ignore BOTH Username and password. Guess I must

RE: java error in database access

2001-07-06 Thread Randy Layman
-Original Message- From: Dwaipayan [mailto:[EMAIL PROTECTED]] Sent: Friday, July 06, 2001 4:01 PM To: [EMAIL PROTECTED] Subject: Re:java error in database access my problem concerning JdbcOdbcDriver was not solved.a friend(Randy it was u!) suggested that this driver is not

Re:java error in database access

2001-07-06 Thread Dwaipayan
thanx randy i am checking out ur solutions. ddr Buy Feng Shui Package for Rs. 151/- only, at http://shopping.rediff.com/shopping/fengshui_mailer.htm

Re[2]: Problem with stopping Tomcat

2001-07-06 Thread wire
Friday, July 06, 2001, 2:47:01 PM, [EMAIL PROTECTED] wrote: -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, July 06, 2001 3:10 PM To: [EMAIL PROTECTED] Subject: Re: Problem with stopping Tomcat I thought 3.2.2 could use AJP13 instead? Am

ajp13 error

2001-07-06 Thread Fran Fabrizio
What does this error message mean and what can cause it? [jk_ajp13_worker.c (325)]: Error ajp13_process_callback - write failed I'm getting quite a few on my sites and our sites are also exhibiting weird/slow behavior so I'm trying to put the two together... Thanks, Fran

Re: AW: List traffic et al

2001-07-06 Thread Jeff Kilbride
In a perfect world, yes, I totally agree. However, in the real world, who's going to enforce the guidelines? (we already have guidelines that few people pay attention to...) Reposting the guidelines and links to the FAQ and archive on a regular basis would probably help, and I agree that it

Re: Re[4]: Reverse DNS lookup

2001-07-06 Thread David Wall
Thanks for all the help. It wasn't my code or my ISP, but a security manager problem... Turns out the problem was a security permission I needed to define: permission java.net.SocketPermission *, resolve; What's unusual is that no exception was thrown to make that clear. It just failed

question about classpaths in tomcat run

2001-07-06 Thread Shyam Sarkar
Hello, I specified wrapper.classpath in tomcat.properties file fora certain run and it could not findmy classes. Then I stopped tomcat and set classpath to the same destination directory and started tomcat in the same window. This time my program worked. Any clarifications about these

Servlet Error

2001-07-06 Thread Stuart Shay
Hello All: Below is the error code I am recieciving when I run a simple Servlet on my laptop, everything works fine on my test machine so i know the code works. The example servlets run fine, are there any configuration settings that I may have over looked. The version of Tomcat/Apache that I

AW: Get Me Out Of This

2001-07-06 Thread Algarve, Leila
Just send an email to this address: [EMAIL PROTECTED] If you subscribes the digest list, send an email to: [EMAIL PROTECTED] Leila

RE: Servlet Error

2001-07-06 Thread Jann VanOver
I think you'll have to look at your servlet code and see where it could be creating a null pointer exception. -Original Message- From: Stuart Shay [mailto:[EMAIL PROTECTED]] Sent: Friday, July 06, 2001 3:35 PM To: [EMAIL PROTECTED] Subject: Servlet Error Hello All: Below is the error

How to configure a custom page for JSP 404 errors?

2001-07-06 Thread Courtney, Pierce
Hello, This question probably has come up before, I just can't find it in the archives I am using Tomcat 3.2.2 standalone (not with Apache). How can I configure a particular page (servlet, static html, or jsp) to be the default page that comes up if the requested jsp is not found, instead

mod_jk error

2001-07-06 Thread Jason Koeninger
Anyone had any experience with this one? [Fri Jul 06 14:53:19 2001] [jk_ajp12_worker.c (522)]: ajpv12_handle_response, no value supplied I have an application that's working fine in most cases, but I get Apache errors in the browser with this in my mod_jk log when something goes wrong.

Problem running servlets on Apache/Tomcat

2001-07-06 Thread Priya Gupta
Hi This query has been posted on this list quite a no. of times and even after going through the archives I'm still stuck up with this problem! To start with the configuration... I'm working Windows 2000 professional with Tomcat 3.2.2 and Apache 1.3.20. The backend is Oracle 8.1.6. I have

RE: Apache - Tomcat - Servlet Mapping

2001-07-06 Thread Keng Wong
You could try adding the following in the TOMCAT_HOME/conf/server.xml: Context path=/ docBase=webapps/examples ../Context This will map your examples webapp to the '/'. This will allow you to access http://servername/servlet/HelloWorld. -keng wong -Original Message- From: Gary

Re: How to configure a custom page for JSP 404 errors?

2001-07-06 Thread Ryan Lubke
Hi Pierce, From what I've been able to gather, you should be able to set the error page using the error-page directive within the deployment descriptor for a web app (web.xml). error-page error-code404/error-code location/error.jsp/location /error-page Looking through the bug

Pre-compilation of JSP

2001-07-06 Thread Saritha Pula
Hi We had been provided with JSPC for pre-compilation of JSP in tomcat.. But problem is I am unable to generate web.xml file with new JSP file mapping like if I give this command jspc -webxml pweb.xml -uriroot c:\myapp *.jsp the above should actualy convert all JSP files in directory myapp

Pre-compilation of JSP

2001-07-06 Thread Saritha Pula
Hi We had been provided with JSPC for pre-compilation of JSP in tomcat.. But problem is I am unable to generate web.xml file with new JSP file mapping like if I give this command jspc -webxml pweb.xml -uriroot c:\myapp *.jsp the above should actualy convert all JSP files in directory

webapp classloader ProtectionDomain (running secured tomcat)

2001-07-06 Thread Vladimir Grishchenko
Hi all, It seems that webapp classloader puts all classes loaded from a webapp directory into the same ProtectionDomain regardless of the location where the class was loaded from (like classes dir or a jar file). It means that any security grant entry granting permssions to a webapp codesource

RE: Get Me Out Of This

2001-07-06 Thread Saritha Pula
-Original Message- From: Algarve, Leila [mailto:[EMAIL PROTECTED]] Sent: Friday, July 06, 2001 9:05 AM To: '[EMAIL PROTECTED]' Subject: AW: Get Me Out Of This Just send an email to this address: [EMAIL PROTECTED] If you subscribes the digest list, send an email to: [EMAIL

Re:Jakarta NT service

2001-07-06 Thread Jonathan Pierce
This is a bug in jdk1.3 or newer that happens when you use the tomcat NT service. Use JavaService.exe instead to install Tomcat as a service. It is easy to configure, and was designed to address this problem. I'm using it with jdk1.3.1 on NT successfully.

  1   2   >