BUG?: weird nullpointer exception

2001-01-09 Thread Filip Hanik
This is why this happens, I figured it out, but I believe it is a bug. if you add in "activation.jar" in the WEB-INF/lib directory. the files will not get loaded properly by the AdaptiveClassLoader hence, when you try to execute a servlet in that context the AdaptiveClassLoader.repository variab

AW: Is ANYONE doing this?? TC3.2.1 standalone + SSL + multiple instances on multiple IP's

2001-01-09 Thread Ralph Einfeldt
You are using seperate instances of tomcat for each IP address ? If this is so, did you have in mind that tomcat in it's default configuration is using two ports ? (8080 for HTTP, 8007 for internals) If not, you have to ensure that the Ajp1[2,3]ConnectionHandler in server.xml is set to a unique

AW: bizarre JasperException on Solaris box

2001-01-09 Thread Ralph Einfeldt
If William Brodgen's assumption, that you are hitting a size limitation in javac for a single method, is right, there are two things that might help: - use a more current JDK version (1.3.0_01 is the newest version I know: http://java.sun.com/j2se/1.3.0_01/index.html) - restructure

tomcat with ssl

2001-01-09 Thread sun
hi, there, I am trying to use ssl on tomcat, and use keytool from j2ee to generate key, but I don't know where is my generated key pair after running keytool, and where to put them, who can help me? thanks a lot. rgds brent -

Handle Multiple Forms On Mutliple Include JSPs Using DifferentBeans

2001-01-09 Thread Choo Yew Beng
Hi Gurus My Question In 1.jsp Bean class use = "AA" include 2.jsp Bean class use = "BB" .. Can some one please kindly advice on how can I manipulate the information on form A1.AA1 when the BB1Handler is clicked? Can JSP handle multiple forms with different bean classe

weird nullpointer exception

2001-01-09 Thread Filip Hanik
Location: /rtx/GreeterBob Internal Servlet Error: java.lang.NullPointerException at org.apache.tomcat.loader.AdaptiveClassLoader.loadClass(AdaptiveClassLoader.j ava:471) at org.apache.tomcat.loader.AdaptiveServletLoader.loadClass(AdaptiveServletLoad er.java:174) at org.apache.tomcat.core.Servl

Re: converting mod_jserv to mod_jk

2001-01-09 Thread Debra Mendelson, CCE
Got it working!!!  My correct tomcat-apache.conf:     LoadModule    jk_module  libexec/mod_jk.so    JkWorkersFile /app/conf/workers.properties    JkLogFile /app/logs/mod_jk.log    JkLogLevel    error     JkMount /servlet1/* servlet1    JkMount /servlet2/* servlet2     JkMount /servlet3

Integrate JBuilder 4 and tomcat server

2001-01-09 Thread John Tan
Hi guys, i will like to know how do u integrate the classes and libraries JBuilder4.0 Enterprise into the tomcat server so as to ensure that the .jsp or .java files are executable in the the webserver itself. Do i have to copy the libraries and the classes from the JBuilder 4.0...Please advise

Re: Tomcat Test Enivironment - Error Messages

2001-01-09 Thread John Tan
Hi, i will like to check with u some errors that i encountered too. there's this error 500 which i always encountered...was just wondering what it wasthe error reads as below: Error: 500 Location: /Pt33/SampleJSP.jsp Internal Servlet Error: org.apache.jasper.JasperException: Unable to load

RE: IllegalStateException: Short Read while trying to do forward()

2001-01-09 Thread Tal Dayan
It seems that the problem is related to package javax.servlet.http.HttpUtils which is deprecated. Are you using HttpUtils.parsePostData() ? When I added a call to this method to a working servlet (Tomcat 3.2.1), the servlet generated a 'read short' excpetion when trying to forward the call to th

RE: newbie question

2001-01-09 Thread Henry DU
If I remove or comment out connector, can Apache send the servlet/jsp requests to tomcat? Thanks >From: Michael Kuz <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]> >Subject: RE: newbie question >Date: Tue, 9 Jan 2001 15:54:35 -0700 > >Actually, A

Re: JSP mailing list

2001-01-09 Thread Rick Horowitz
Try... http://archives.java.sun.com/archives/index.html ...and go the JSP Interest group. At 11:28 AM 1/9/01 +, you wrote: >Hi, > >Does anyone know a good JSP mailing list? >-- >Fábio Sato - [EMAIL PROTECTED] > >- >To unsub

?? Hardware Recommendations + Database replication, any ideas ??

2001-01-09 Thread Cato, Christopher
Hello. I'd appreciate some advice from the pro's on what hardware to buy for a certain web application. The system in question is a commerce system based on JDK 1.3, TomCat, Apache and MySQL, run on Red Hat Linux 6.2 (we need to stick to that OS and version.) and is built as servlets. The system

Accesing Servlet thro' java program using Tomcat as WebServer

2001-01-09 Thread Suresh Avadhanula
Hi, I am using Tomcat 3.1 as webserver and JSP engine. When I hit a Servlet through the browser, I get the response and everying works fine. The problem occurs when I try to hit the serlet through a java program. I dont get any response. Has anyone faced similar problem? Any help is appreciate

Re: automated URL rewriting

2001-01-09 Thread Robert Wohleb
hmm... lets see... for question two, if you do a bitwise XOR of the IP and session ID you can get a new ID. Then when you want to "decrypt" the new ID, you can do a bitwise XOR of the new ID with the accessing IP resulting in the origional sessionID. If the IP is wrong, you get back a sessionI

Form Based Authorization Question

2001-01-09 Thread David Haraburda
Hi, I am implementing the Java Servlet Form based login mechanism in my web application, and had a question. Is it possible for me to have a "default location" that a user goes to when they login? In many instances, a user will go directly to the login JSP, rather than requesting a web resource

RE: bizarre JasperException on Solaris box

2001-01-09 Thread Troy Landers
Jeff, Thanks for the info. Unfortunately we have Tomcat setup so I can't hit it directly. If I don't get anywhere in the next day or so I might change that just to verify that we're seeing the same thing. Also, I'm pretty sure that our box is reasonably up to date on patches. The only thing that

Tomcat Test Enivironment - Error Messages

2001-01-09 Thread Maurizio Meluzzi
I'm a java developer. I'm running Tomcat Test Enivronment (included in Visual Age for Java). I'm using it to test my JSPs and my servlets. When the system compiles a JSP it shows these messages (on the Tomcat console): -1- Context log: path="" Error: Calling servlet Wrapper(tomcat.errorPage S:or

Re: newbie question

2001-01-09 Thread Robert Wohleb
Apache "forwards" requests to a tomcat "handler" based upon the rules specified, say like *.jsp. The handlers are the things called APJ12, APJ13, etc. Tomcat has the ability to act as its own web server, and by defualt it is on port 8080 where apache is 80. Is this what you were asking about? ~R

RE: newbie question

2001-01-09 Thread Michael Kuz
Title: RE: newbie question Actually, Apache (on port 80) is forwarding the servlet requests to Tomcat, AND Tomcat has a stand alone web server running on port 8080. Edit your server.xml file and comment out/remove the connector listening on 8080 Michael R. Kuz Developer Service Intelligence

newbie question

2001-01-09 Thread Henry DU
The servlet URL is the same when I typed http://my.domainame.com/examples/servlet/HelloWorld and http://my.domainame.com:8080/examples/servlet/HelloWorld, they display the same information. Is this due to that Apache port 80 redirects to tomcat 8080 as indicated in server.xml? Thanks __

Re: Building mod_jk fails with odd apxs error: "apxs:Break: Command failed with rc=255"

2001-01-09 Thread Simon Orchanian
I've tried this one before. It does not work for Apache/Solaris. --- Filip Hanik <[EMAIL PROTECTED]> wrote: > http://www.ccl.net/cca/software/UNIX/apache/solaris-t3.2/files/mod_jk.so > > let me know if this one works for you, otherwise I have compiled one for > Apache 1.3.14. SunOS 5.8 myself

Re: Building mod_jk fails with odd apxs error: "apxs:Break: Command failed with rc=255"

2001-01-09 Thread Simon Orchanian
I've tried this one before. It does not work for Apache/Solaris. --- Filip Hanik <[EMAIL PROTECTED]> wrote: > http://www.ccl.net/cca/software/UNIX/apache/solaris-t3.2/files/mod_jk.so > > let me know if this one works for you, otherwise I have compiled one for > Apache 1.3.14. SunOS 5.8 myself

Re: Building mod_jk fails with odd apxs error: "apxs:Break: Command failed with rc=255"

2001-01-09 Thread Simon Orchanian
I've tried this one before. It does not work for Apache/Solaris. --- Filip Hanik <[EMAIL PROTECTED]> wrote: > http://www.ccl.net/cca/software/UNIX/apache/solaris-t3.2/files/mod_jk.so > > let me know if this one works for you, otherwise I have compiled one for > Apache 1.3.14. SunOS 5.8 myself

Re: RES: RES: JasperException from introspection?

2001-01-09 Thread Robert Wohleb
Looking at the source for the introspecthelper, I see that it will throw a JasperException with a message on jsp.error.beans.noproperty or jsp.error.beans.nomethod.setproperty errors. The rest is clumped into a try that throws a JasperException without a message. I'm looking at this trying to find

Re: Fwd: javax.servlet.ServletResponse: method flushBuffer()V not found

2001-01-09 Thread Craig R. McClanahan
Make sure you didn't put an old servlet.jar or jsdk.jar file in $JAVA_HOME/jre/lib/ext either -- if you did, those classes would override the ones listed on the classpath, and cause this kind of an exception. Craig Randy Engwall wrote: > --- rengwall <[EMAIL PROTECTED]> wrote: > > From: rengwa

RE: converting mod_jserv to mod_jk

2001-01-09 Thread Ed Gomolka
Your code appears to be missing a lot of the context information that is automatically generated in mod_jk.conf-auto. I would recommend that you forget about tomcat-apache.conf, and focus on modifying mod_jk.conf-auto. Also, did you make the startup.sh, shutdown.sh and server.xml changes t

Re: How is HttpConnectionHandler used, please?

2001-01-09 Thread Craig R. McClanahan
"Siak Keong, Cheong" wrote: > I'm trying to see whether it's possible to run tomcat 3.2.1 standalone > without tying it to any web server. > I found in server.xml the HttpConnectionHandler which is preconfigured > against port 8080. I could see from the init message of tomcat that this > connecto

Re: Xalan2 in server environment (was Xalan2 Stree Module spans sec ondthread to do transform?)

2001-01-09 Thread Scott_Boag
In response to this I've created the following method in org.apache.xalan.TransformerImpl: /** * Create a thread for the transform. This can be overridden by derived * implementations to provide their own thread, for thread pooling and the * like. * * @return thread suitable to

Configuring Socks for Tomcat

2001-01-09 Thread CHEOK,MELISSA (HP-PaloAlto,ex1)
I am trying to deploy a SOAP server on Tomcat, and I need to specify that it uses a Socks proxy. I have tested the soap server and it works. But now, I cannot seem to find out how to setup the Socks proxy. I have set the TOMCAT_OPTS to the appropriate value : -DsocksProxyHost=my-socks-server -D

RES: RES: JasperException from introspection?

2001-01-09 Thread Edson Carlos Ericksson Richter
Yes, you are correct... I've simulated this and get my pages redirected to my own login.jsp page, but I've not done tests with final int... Edson Richter > - Mensagem original - > De: Robert Wohleb [SMTP:[EMAIL PROTECTED]] > Enviada em: terça-feira, 9 de janeiro de 2

Request URL in 404.jsp?

2001-01-09 Thread Kees Jan Koster
Dear Tomcat users, I'm sorry if this is a FAQ, but I really could not find an answer. I'm using Tomcat 3.1 standalone on FreeBSD, JDK 1.2. I am successfully intercepting 404 errors with an directive in web.xml. However, I'm trying to implement a 404.jsp that logs the URL that was requested. Ho

Fwd: javax.servlet.ServletResponse: method flushBuffer()V not found

2001-01-09 Thread Randy Engwall
--- rengwall <[EMAIL PROTECTED]> wrote: > From: rengwall <[EMAIL PROTECTED]> > To: "'[EMAIL PROTECTED]'" ><[EMAIL PROTECTED]> > CC: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]> > Subject: javax.servlet.ServletResponse: method > flushBuffer()V not found > Date: Tue, 9 Jan 2001 15:26:05 -0500

Re: converting mod_jserv to mod_jk

2001-01-09 Thread Debra Mendelson, CCE
Thanks for the advice based on this and rereading the howto I came up with the following that still doesn't work.  Any ideas?:   tomcat-apache.conf:     LoadModule    jk_module  libexec/mod_jk.so    JkWorkersFile /app/conf/workers.properties    JkLogFile /app/logs/mod_jk.log    JkLogLe

Where I can install Visual C++ ?

2001-01-09 Thread Sam T.
I need Visual C++ for building the module(mod_jk), thanks sam, - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email: [EMAIL PROTECTED]

Tomcat Security

2001-01-09 Thread Jim Urban
I am running Tomcat with Apache on NT. I have a servlet context which contains three servlets and their supporting classes. All the .class files have been "jared" and the .jar file placed in the web-inf/lib directory. I have set up my web.xml file to find the servlets an pass them init params j

RE: Same site multiple developpers

2001-01-09 Thread Eric di Domenico
Well, thanks... I see that there are no easy awnsers... hopefully version 4 will be easier to work with... If I find a suitable configuration I will port it on the list Thanks Eric -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Robert Wohleb Sent: 9-

ufs attribute caching problem

2001-01-09 Thread Andreas Sheriff
Hi, I have two Sun E250's (http://www.sun.com/servers/workgroup250/), both of which are connected to a single Sun StorEdge D1000 drive mounted via ufs (in /etc/vfstab ) serving web pages using Apache and Tomcat 3.2. A problem arises, however, when I modify files from one server the change isn't

getting tomcat and apache to work together

2001-01-09 Thread Christopher Nallo
I'm running linux mandrake 7.2. I have the jserv_module mod_jserv.so. I included tomcat-apache.conf in apache (include /path/to/tomcat-apache.conf). I start tomcat then start apache. Apache give me the error in the tomcat-apache.conf ,Invalid command LoadModule. So I comment that line out and

Re: Is ANYONE doing this?? TC3.2.1 standalone + SSL + multiple instances on multiple IP's

2001-01-09 Thread Aleksey Tsalolikhin
On Tue, Jan 09, 2001 at 12:10:57PM -0500, [EMAIL PROTECTED] wrote: > Problem 2: > I can not seem to get Tomcat to bind to different IP addresses. I have tried > adding "inet=" and "address=" directives in various spots throughout the > server.xml file for each test server created, but starting up

Re: Tomcat 3.2.1 Source Tar Corrupt?

2001-01-09 Thread Aleksey Tsalolikhin
On Tue, Jan 09, 2001 at 11:31:06AM -0800, Pogo Com wrote: > I've tried downloading the Tomcat 3.2.1 source tar > multiple times. It always gunzips fine, but when > doing the untar, I get a directory checksum error. Yup, you need to use GNU tar to untar it. You can get it from http://www.gnu.or

Re: Tomcat 3.2.1 Source Tar Corrupt?

2001-01-09 Thread Shahed Ali
I got the same error, but I just ignored the error, built mod_jk from the source and its has been running fine for me for the last month. Regards Shahed >tar: directory checksum error > >Any help appreciated. Thanks, >Bill -

RE: Tomcat 3.2.1 Source Tar Corrupt?

2001-01-09 Thread Watson, Randy (STP)
This happened to me on Solaris using the sun provided tar. You need to use gnu tar (this is a known issue with sun tar). Try /usr/local/bin/tar and see if your admins have installed the gnu tar. Good luck! Randy > -Original Message- > From: Pogo Com [SMTP:[EMAIL PROTECTED]] > Sent:

Re: RES: JasperException from introspection?

2001-01-09 Thread Robert Wohleb
I specify the bean with scope=session in all pages. All pages name the bean exactly the same. All jsp files are either in / (like login.jsp) or /process/ or /interface/. Is this what you meant? I'm still not clear as to why instrospection would fail because of diff contexts. If anything, I would t

Tomcat 3.2.1 Source Tar Corrupt?

2001-01-09 Thread Pogo Com
I've tried downloading the Tomcat 3.2.1 source tar multiple times. It always gunzips fine, but when doing the untar, I get a directory checksum error. Has anyone been able to download it successfully? I've tried both the .gz and .Z files with the same results. garlic.wlipa% gunzip jakarta-tomc

Re: VirtualHost ?

2001-01-09 Thread Trevor Little
I'm not exactly sure what you are asking but to get rid of the 8080 you just need to edit server.xml and change the port from 8080 to 80. That is for tomcat standalone. But if you're using apache with tomcat this isn't the correct thing to do. "Guy-Noël MATHIEU" wrote: > > Hi, > I want to acce

RE: bizarre JasperException on Solaris box

2001-01-09 Thread Troy Landers
I just verified that I can compile this file from the command line using the same environment and command line args. I'm confused. Troy -Original Message- From: William Brogden [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 09, 2001 9:12 AM To: [EMAIL PROTECTED] Subject: Re: bizarre

RES: JasperException from introspection?

2001-01-09 Thread Edson Carlos Ericksson Richter
Are you using different context for interface directory??? If so, keep in mind that each context mantain their own session objects, with no communication between them (so, one JSP in one context should not see objects created by another JSP in other context)... Edson Richter > - Mensagem or

RE: Antw: mod_jk build fails - apxs:Break: Command failed with rc=255

2001-01-09 Thread Ed Gomolka
I struggled with this one for half a day. The order of arguments was critical, as were the apxs settings. This was the command that worked: /usr/local/apache/bin/apxs -o mod_jk.so -c -I /usr/java/include -I /usr/java/include/solaris -I ../jk -DSOLARIS -l posix4 *.c ../jk/*.c Here is the configu

Re: jvm.dll error

2001-01-09 Thread Robert Wohleb
Have you tried reinstalling? This error (at least in my experience) is from corrupt DLLs or from version mismatch... ~Rob [EMAIL PROTECTED] wrote: > > I get a > > "Procedure entry point_jvm_FindClassFromClass@16 could not be located in the > dynamic link library jvm.dll" > > error every time

Re: JasperException from introspection?

2001-01-09 Thread Robert Wohleb
Here is an update to my problem. Someone please help me with this! Upon further development on this project I tried adding a new form with button to the "menu". Again I got jasper.introspection error without any explanation. It appears introspection is failing on submission of a form. I have a j

VirtualHost ?

2001-01-09 Thread Guy-Noël MATHIEU
Hi, I want to access my servlet using the URL http://localhost/examples/. TOMCAT work fin with http://localhost:8080/examples/ . Does I use VirtualHost ou "mapping" the direct URL with server.xml to work directly ??? I use mod_jk with apache, is it a good solution and how configure this 3 server

Re: how to forward to a newpage in Java

2001-01-09 Thread Robert Wohleb
Do either of these two solutions forward any form input data like does? ~Rob "Cato, Christopher" wrote: > > This would do the trick: > > HttpServletResponse res = new HttpServletResponse(); // this you've probably > allready got somewhere in the code > res.sendRedirect("relative or full url t

jvm.dll error

2001-01-09 Thread Karri . Mikola
I get a "Procedure entry point_jvm_FindClassFromClass@16 could not be located in the dynamic link library jvm.dll" error every time I try to start tomcat. Running the shutdown bat gives the same expression. Any good Ideas -Karri Mikola --

RE: error message while creating a gif from a servlet

2001-01-09 Thread Ed Gomolka
If you start Tomcat from an Xterm it will pick up the X environment, but if you start it via telnet or as part of your boot process, it won't pick it up. In that case you'll need Xvfb (X virtual frame buffer), in order to provide a native graphics enivronment, so that you can build your gif. Xvfb

Re: Building mod_jk fails with odd apxs error: "apxs:Break: Command failed with rc=255"

2001-01-09 Thread Filip Hanik
http://www.ccl.net/cca/software/UNIX/apache/solaris-t3.2/files/mod_jk.so let me know if this one works for you, otherwise I have compiled one for Apache 1.3.14. SunOS 5.8 myself Filip - Original Message - From: Chris Stavros To: [EMAIL PROTECTED] Sent: Tuesday, January 09, 2001 10:31 AM

RE: converting mod_jserv to mod_jk

2001-01-09 Thread Ed Gomolka
I have tried setting up multiple Tomcat instances standalone, but I have not tried to connect them to Apache, so I may not be able to help you all the way, but here goes:   First, change the port references in the server.xml and workers.properties files, and rename these files to somethin

Building mod_jk fails with odd apxs error: "apxs:Break: Commandfailed with rc=255"

2001-01-09 Thread Chris Stavros
Hi All, OK, I have just about given up on trying to build mod_jk for Solaris. The history is below if anybody is interested in taking a stab at this. However, all of the suggestions I have received thus far are basically the "standards". That is, I have tried finishing the build with both apxs a

Re: Same site multiple developpers

2001-01-09 Thread Robert Wohleb
This will work assuming you have two copies of the files, else the java will reload upon a change anyways and thus effect the sessions. If you are using CVS, then you can both make changes to YOUR copy (again two diff copies for two the two tomcats) and then grab the other persons changes when you

Re: Is ANYONE doing this?? TC3.2.1 standalone + SSL + multiple instanceson multiple IP's

2001-01-09 Thread Mike Spreitzer
Dion, I am not doing the full combination you gave, but I *am* succeeding with my own app + SSL using Tomcat 3.2.1 in standalone mode (your problem #1). In my case, I am succeeding on AIX 4.3.3 with IBM's JDK 1.3 (and I'm failing on Linux, but that's another story, elsewhere in this mailing li

How is HttpConnectionHandler used, please?

2001-01-09 Thread Siak Keong, Cheong
I'm trying to see whether it's possible to run tomcat 3.2.1 standalone without tying it to any web server. I found in server.xml the HttpConnectionHandler which is preconfigured against port 8080. I could see from the init message of tomcat that this connector is running. But when I try access it

RE: Tomcat 3.2.1, taglib demo /examples/jsp/simpletag/foo.jsp throws NoSuchMethodError in TagLibraryInfoImpl.createAttribute

2001-01-09 Thread Coetmeur, Alain
2 days I was working on that, digging into the archives... the solution was to install the servlet.jar from latest jakarta-servletapi3.2 instead of the servlet2_2.jar found with cocoon, that cocoon ask to put in leu of the basic servlet.jar of tomcat... coccon seems to work perfectly anyway...

RE: how to forward to a newpage in Java

2001-01-09 Thread Cato, Christopher
This would do the trick: HttpServletResponse res = new HttpServletResponse(); // this you've probably allready got somewhere in the code res.sendRedirect("relative or full url to redirect to"); Regards, Christopher > -Original Message- > From: Georges Boutros [mailto:[EMAIL PROTECTED]]

Is ANYONE doing this?? TC3.2.1 standalone + SSL + multiple instances on multiple IP's

2001-01-09 Thread Dion_Vansevenant
My frustration level has reached it's peak with this, so if I come across as being a little short, I apologize in advance. I have not been able to find anything in the archives about this, and previous posts have not netted much to help me with this problem. Perhaps it was just the holidays, so

proxy authentication with domain

2001-01-09 Thread André Alves
Hi, I am having problems to make authentication with Microsoft Proxy server because it requires a domain to authentication. I wrote the following program of test to try the authentication because I did not obtain access servlets. I only receive code 407, of required authentication. I would like

Re: how to forward to a newpage in Java

2001-01-09 Thread Carlos
sendredirect - Original Message - From: "Georges Boutros" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, January 09, 2001 5:48 PM Subject: how to forward to a newpage in Java > hello, > > i just wanna know how to forward to a New Page in java and not jsp. > > thanks > >

Re: How to: make authentication on tomcat

2001-01-09 Thread Andrew Robson
Try http://jakarta.apache.org/tomcat/jakarta-tomcat/src/doc/JDBCRealm.howto There's an jsp example in your tomcat distribution (3.2 anyway) which this takes you through -A On Tue, 09 Jan 2001, you wrote: > Hi all, > > Do you know any documentation on how to set the authentication on tomcat > fro

JSP Tag Problem: teiclass (TagExtraInfo) never called

2001-01-09 Thread Ian Emmons
I am using tomcat 3.2.1 (standalone) on a Windows 2000 (SP1) machine, and I am developing a tag library. I have gotten a few tags working, and I am now trying to add a teiclass to one of them to validate the tag attributes. I defined an extension of the TagExtraInfo class, compiled it (into the

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]

RE: JSP Include Directive not workin

2001-01-09 Thread Patrick M. Early
You may need to use flush="true" in the tag declaration. For example: - patrick -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 09, 2001 5:16 AM To: [EMAIL PROTECTED] Subject: JSP Include Directive not workin I am trying to use <%@

Re: I may be too stupid...

2001-01-09 Thread Glen Campbell
On 1/8/01 5:37 PM, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> casually stated: > Is it in Dreamweaver UD your trying to make a live data > connection, if so the driver must be accessible via > Dreamweaver, this is not a tomcat config issue it would be > local WS config (try throwing the dll in the s

SV: Tomcat on linux without X

2001-01-09 Thread Rikard Westlund
Hi! I got the same error when installing Apache/jserv and trying to start that... What you need is the library files under /usr/X11R6/libI use slackware 7.1 and to get these files i installed the x-lib pakages (sorry but i cant point you to the exact pakage) You will also have to edit your /e

RE: bizarre JasperException on Solaris box

2001-01-09 Thread Troy Landers
Here's what java says: java version "1.3.0" Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.0-beta_refresh) Java HotSpot(TM) Client VM (build 1.3.0-beta_refresh, mixed mode) This is a little bit of a surprise since it looks like we're still using a beta version of the 1.3 jdk.

Re: Hi

2001-01-09 Thread Denis Haskin
Sudhir wrote: > Why request.getPathInfo() is giving null . Is there any settings to be done > to get the pathInfo Well, it's probably returning null because the URI for the request doesn't include any path info. See the servlet spec, pages 28 & 29 (section 5.4, "Request Path Elements"). dwh

jndi.properties not found in app. classpath

2001-01-09 Thread Erik Grøntoft Dybdahl
Looking up an EJB in jBoss from Tomcat 3.2.1 works if Tomcat is started with -Djava.naming.factory.initial=org.jnp.interfaces.NamingContextFactory -Djava.naming.factory.url.pkgs=org.jnp.interfaces -Djava.naming.provider.url=localhost but not if the same information is provided in a jndi.properti

.jsp extension support and apache conf for Tomcat.

2001-01-09 Thread Sudeep Kumar
Hai all, I am a NewBie, I would like to know how do i run .jsp files. .Please let me know where to put the files with .jsp extension so that apache would server them.I have a linux box up in running with apache Installed and Tomcat installed. Tomcat runs on port 8080.as far as i know. I dont

Re: bizarre JasperException on Solaris box

2001-01-09 Thread William Brogden
Jeffry Guttadauro wrote: > > Hi, Troy. > > Unfortunately, I don't have a solution for you. But, I am having the > same exact problem here on long, complex pages with a configuration of > Stronghold & Tomcat 3.2 (using mod_jk) on Solaris 2.6. The app has a lot of > long, complex pages though

Re: bizarre JasperException on Solaris box

2001-01-09 Thread Jeffry Guttadauro
Hi, Troy. Unfortunately, I don't have a solution for you. But, I am having the same exact problem here on long, complex pages with a configuration of Stronghold & Tomcat 3.2 (using mod_jk) on Solaris 2.6. The app has a lot of long, complex pages though, so it's hard to track down the problem.

RE: Problem with configuring Tomcat

2001-01-09 Thread Lubos Vrba
Hi Simon, may guess you found the mistake! If I place index.html into /myExample I can not see it in browser! But when I place it into /webapps/myExamples I can see it! (when changing server.xml of course) Why? I hate the docs to apache projects. I can never find what I want. All docs looks the

Tomcat 3.2.1, taglib demo /examples/jsp/simpletag/foo.jsp throws NoSuchMethodError in TagLibraryInfoImpl.createAttribute

2001-01-09 Thread Coetmeur, Alain
I've intalled tomcat 3.2.1 with cocoon1.8, xerces 1.2, servlet 2.2 jar, ... jdk1.3 SE on Windows NT SP6. Cocoon and most of the JSP demos work perfectly, but the taglib demo throws the NoSuchMethoError exception... I have recompiled the examples classes but nothing changes... the TLD seems OK

RE: Problem with configuring Tomcat

2001-01-09 Thread Kitching Simon
Hi Lubos, Your CLASSPATH does not need to include myExample/WEB-INF/classes, this is added automatically by tomcat (also, every jar file in myExample/WEB-INF/lib will be added). In fact, it is a very bad idea to put the classes directory of a webapp in CLASSPATH, for various reasons. If you put

RE: Problem with configuring Tomcat

2001-01-09 Thread Lubos Vrba
Thanks for info, but I still get the same 404 error, grr. What about the CLASSPATH, I use JDK1.1.8 but classpath is looking good to me... (the classes dir is not in CLASSPATH..) If I look into examples that are packed with tomcat distribution I can not see any mapping to servlets how is it possibl

tomcat server variables

2001-01-09 Thread Gallagher, Stephen
With ASP/IIS you can access server variables to determine someones NT username. Is this possible with JSP/Tomcat? Steve - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email: [EMAIL PROTECTED]

RE: Problem with configuring Tomcat

2001-01-09 Thread Kitching Simon
> -Original Message- > From: Lubos Vrba [SMTP:[EMAIL PROTECTED]] > Sent: Tuesday, January 09, 2001 1:32 PM > To: Tomcat (E-mail) > Subject: Problem with configuring Tomcat > > Hello I'm really a newbie I need your help > I installed tomcat and try to run examples and it worked fi

Re: Problem with configuring Tomcat

2001-01-09 Thread Angelo Brunoro
try with this url http://lmyhost:myport/examples/myExample/servlet/MyStart - Original Message - From: "Lubos Vrba" <[EMAIL PROTECTED]> To: "Tomcat (E-mail)" <[EMAIL PROTECTED]> Sent: Tuesday, January 09, 2001 1:32 PM Subject: Problem with configuring Tomcat > Hello I'm really a newbie I

Problem with configuring Tomcat

2001-01-09 Thread Lubos Vrba
Hello I'm really a newbie I need your help I installed tomcat and try to run examples and it worked fine. I also tried to build my servlet that runs in JServ into Tomcat but I failed. I think I completely misunderstand the configuration.. Here are steps I made: 1. I add this to TOMCAT_HOME/conf/se

Rejected Message

2001-01-09 Thread Administrator
The attached mail message has been rejected for the following reason: Could not extract file 'isapi_redirect.dll' from archive '[4]isapi_redirect.zip'. Additional Information: It could be that either the file is password protected or else corrupted. Make sure that you check the attachment ma

RE: building mod_jk error

2001-01-09 Thread Michal Biernacki
> > Here is the answer. You didn't install apxs. If you are working with > > redhat distribution you will find it in apache-devel package. > > Actually, yes he did, as it's apxs that throws out the error. > What he didn't do, was compile DSO support into Apache. > > Re-run the Apache configure

AW: bizarre JasperException on Solaris box

2001-01-09 Thread Ralph Einfeldt
What JDK (1.2/1.2.2/1.3) are you using and in which version? java -version > -Ursprüngliche Nachricht- > Von: Troy Landers [mailto:[EMAIL PROTECTED]] > Gesendet: Dienstag, 9. Januar 2001 07:42 > An: '[EMAIL PROTECTED]' > Betreff: bizarre JasperException on Solaris box >

bizarre JasperException on Solaris box

2001-01-09 Thread Troy Landers
Hi, We're currently running Stronghold & Tomcat 3.1 on a Solaris 2.7 box and are running into a bizarre JasperException (see below) where certain large pages won't compile. This problem only occurs on our staging Solaris machines and never on any of our NT development machines. Further when I loo

RE: Configuring tomcat and IIS - Nagarajan

2001-01-09 Thread G.Nagarajan
Hi Nitin, The uriworkermap.properties file is slightly different from mine. In the last line you have typed /context/*=worker_name Just try commenting it or deleting it. and check if you can open the examples context by http://localhost/examples Nagaraj. -Original Message- From: G.

JSP mailing list

2001-01-09 Thread Fabio Sato
Hi, Does anyone know a good JSP mailing list? -- Fábio Sato - [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email: [EMAIL PROTECTED]

RE: Configuring tomcat and IIS - Nagarajan

2001-01-09 Thread G.Nagarajan
Hi Nitin, I wanted the source code for the DLL, not the dll itself. So that I could trace what was going on. Thanks Nagarajan. -Original Message- From: nitin dubey [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 09, 2001 12:12 PM To: [EMAIL PROTECTED] Subject: RE: Configuring tomcat a

Newbie mod_jk question

2001-01-09 Thread Kristian R. Ashton
Hi all. This is a newbie mod_jk question...but I couldn't find the exact answer I wanted in the archives. We were using a JServ/Apache configuration which specified servlet zones, such that "/servlets/" pointed to something like "/www/site/servlets". Within this directory, I was then able to hav

RE: Configuring tomcat and IIS - Nagarajan

2001-01-09 Thread nitin dubey
Hi, I am using Win 2000, IIS 5.0 and Tomcat 3.2.1. I m attaching the .properties file and isapi_redirect.dll that I downloaded from jakarta site(I saw your mail asking for url for isapi_redirect.dll file). check attachments nitin --- "G.Nagarajan" <[EMAIL PROTECTED]> wrote: > Hi, > > If you a

How to: make authentication on tomcat

2001-01-09 Thread Johnson Lim
Hi all, Do you know any documentation on how to set the authentication on tomcat from database or other xml file. Thanks in advance. Regards johnson - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email:

RE: Tomcat on linux without X

2001-01-09 Thread GOMEZ Henri
Here is what I use in tomcat.sh :-) ... if [ "$DISPLAY" = "" ] ; then export DISPLAY=":1.0" /usr/bin/X11/Xvfb :1 -screen 0 1x1x24 -fn fixed -fc fixed -fp "/usr/lib/X11/fonts/misc:/usr/lib/X11/fonts/100dpi" & fi export TOMCAT_OPTS="-Xmx128M -Xms128M" Hope it will help ;-)

Re: Tomcat on linux without X

2001-01-09 Thread Morten \(hetnet\)
Thanks for all the replies. I'm currently not able to test the suggestions (I'm at work now), but as soon as I get home, I will try to get things working. You will here from me soon. Morten - Original Message - From: "Martin Holz" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: <[EMAIL P

Re: Tomcat on linux without X

2001-01-09 Thread Martin Holz
Hello Morten, "Morten \(hetnet\)" <[EMAIL PROTECTED]> writes: > Is this possible? > I've installed an old P60 with 420Mb HD with Linux. Obviously I do not want > to install the entire X Windows system on this box as it simply is to large. > But now I'm trying to run tomcat and it complains abo

Re: AW: Tomcat on linux without X

2001-01-09 Thread horn_ken
Make sure the DISPLAY variable is not set -- the JVM uses this as an indication of X. This won't be enough on some VM's, so you can install xvfb (virtual frame buffer -- a dummy X server). This will make any app think X is running. [EMAIL PROTECTED] on 09/01/2001 05:47:22 Please respond to

  1   2   >