Problum with IIS and AJP Connector.

2001-12-15 Thread seant
Thanks for you help Andy. I did all the steps which are specified in http://jakarta.apache.org/tomcat/tomcat-4.0-doc/config/ajp.html But still my IIS is not working.. I installed and restarted the system and then check for the status of ISAPI, here its showing red arrow only what could be the

changes in files for supporting multiple tomcats on different machine and one centralized apache

2001-12-15 Thread Hemant Singh
Hi All i have an application using JSP/servlet as the backend tech. and running on tomcat behind apache. Due to the heavy traffic expected for my application (which i am aiming for) , i want one machine to act as dispatcher and remaining three machines to work as servlet response caterers.Pls

problems facing while configuring the Tomcat

2001-12-15 Thread rajesh kumar jhaver
Dear Sir, I have installed and LINUX, POSTGRESQL and APACHE server in my computer. all the configured properly.i am able to get the index page page of apache by invoking the url like http://ip address, but when i installed the TOMCAT, i am not able to invoke default servlet. please help

Re: problems facing while configuring the Tomcat

2001-12-15 Thread Edy Lie
http://ipaddress:8080 for tomcat - Original Message - From: rajesh kumar jhaver [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, December 15, 2001 8:23 PM Subject: problems facing while configuring the Tomcat Dear Sir, I have installed and LINUX, POSTGRESQL and APACHE

mod_jk solaris

2001-12-15 Thread Edy Lie
Greetings ... I have installed tomcat 3.3 in Solaris 8 sparc with apache 1.3.22. Tomcat able to run and mod_jk.so has been compiled from source and place in the directory /usr/local/apache/libexec/mod_jk.so But when i tried to start mod_jk with apache i got this message. I have tried google

Re: mod_jk solaris

2001-12-15 Thread Peter Hitchman
Hi, First off I am no tomcat expert, but I recognise the dynamic link error. If you use the nm uitlity to dump the contents of the mod_jk.so, you will see that ap_table_get is an undefined reference, this means that it has to exist in another library, either linked in statically or as in this

Is Tomcat considered to be a J2EE implementation?

2001-12-15 Thread Michael Davis
Hi, I've been coding Java for a while, and now I'd like to learn J2EE. I downloaded and installed Tomcat version 4. Is Tomcat a reasonably complete implementation of J2EE? That is, if I learn and use Tomcat, can I claim to know J2EE? Thanks, -- Michael Davis Damaru Custom Programming - Web

Re: mod_jk solaris

2001-12-15 Thread Peter Hitchman
Hi, So I am guessing that the problem is that the symbol get_ap_table does not exists in the httpd binary? Pete Edy Lie wrote: Hi Pete Thanks for the reply this is what i get when i issued # ldd mod_jk.so librt.so.1 =/usr/lib/librt.so.1 libaio.so.1 =

RE: Is Tomcat considered to be a J2EE implementation?

2001-12-15 Thread Reynir Hübner
hello, The J2EE includes the following technologies : Servlets, JSP, JNDI, JAXP, JDBC, EJB, JMS, Java Transactions, JavaMail, Java IDL, J2EE connectors and Corba (am I missing something ?). Read all about j2ee and related technologies at http://java.sun.com/j2ee Tomcat is only a Servlet / JSP

Re: Is Tomcat considered to be a J2EE implementation?

2001-12-15 Thread Michael Davis
Thanks, I've been using JServ to create servlets for a while, and I thought that the difference between simply using servlets and J2EE was that the latter has an EJB container. If this is true, then does Tomcat come with an EJB container? Or maybe a better question is, can you program EJBs

Re: [tcusers]Re: JSP to PDF

2001-12-15 Thread Darth Darknerd
I plead ignorance about JSP, but doesn't JSP make HTML pages, not XML pages?!? You create your data content in XML. Then create a separate document style sheet using FO (Formatting Objects) markup. These two documents will be then converted into a PDF file using FOP. FOP is one

Re: Is Tomcat considered to be a J2EE implementation?

2001-12-15 Thread Micael Padraig Og mac Grene
At 11:48 AM 12/15/01 -0500, you wrote: Thanks, I've been using JServ to create servlets for a while, and I thought that the difference between simply using servlets and J2EE was that the latter has an EJB container. If this is true, then does Tomcat come with an EJB container? Or maybe a better

Application Design: initialization

2001-12-15 Thread hhager
Hey All, I am a bit confused in J2EE (and tomcat) concerning the best spot to do a bunch of initializations, and other startup code. Now, in Coldfusion you have the Application.cfm file which gets run on every request, thus you can load up the application scope (if its unitialized) or recycle

Re: Is Tomcat considered to be a J2EE implementation?

2001-12-15 Thread Craig R. McClanahan
On Sat, 15 Dec 2001, Michael Davis wrote: Date: Sat, 15 Dec 2001 11:48:23 -0500 From: Michael Davis [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Subject: Re: Is Tomcat considered to be a J2EE implementation? Thanks, I've been

RE: Is Tomcat considered to be a J2EE implementation?

2001-12-15 Thread Peter Romianowski
No, tomcat doesn't come with an EJB-container. But you can plug in tomcat into an EJB-Container. For instance, tomcat is the Servlet/JSP-Container for jboss (http://www.jboss.org), an open source EJB-Container. And tomcat is the Servlet/JSP-Container for the J2EE reference implementation from

Re: Application Design: initialization

2001-12-15 Thread Matt Egyhazy
you can have servlets that load on application start up. they must have an init() method and the following attribute in your web.xml: load-on-startup1/load-on-startup matt - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, December 15, 2001 1:05 PM

Re: Application Design: initialization

2001-12-15 Thread Micael Padraig Og mac Grene
At 10:05 AM 12/15/01 -0800, you wrote: Hey All, I am a bit confused in J2EE (and tomcat) concerning the best spot to do a bunch of initializations, and other startup code. Now, in Coldfusion you have the Application.cfm file which gets run on every request, thus you can load up the

Re: Application Design: initialization

2001-12-15 Thread Craig R. McClanahan
On Sat, 15 Dec 2001 [EMAIL PROTECTED] wrote: Date: Sat, 15 Dec 2001 10:05:03 -0800 From: [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED], [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Application Design: initialization Hey All, I am a bit confused in J2EE (and

RE: Is Tomcat considered to be a J2EE implementation?

2001-12-15 Thread Reynir Hübner
no Tomcat does not come with an EJB container, but it supports the use of EJBs with in servlets jsp. But you can download Jboss, bundled with Tomcat... Jboss is EJB container/ application server. Try it, it´s very good. hope it helps, -reynir -Original Message- From: Michael

Re: [tcusers]Re: JSP to PDF

2001-12-15 Thread Todd Wright
Tim, You are correct that JSP is usually for HTML, but there is no reason it couldn't generate XML. In fact it it an ideal way to deliver semantic-rich data via a web-server. Todd Wright At 11:21 AM 12/12/2001 -0800, you wrote: I plead ignorance about JSP, but doesn't JSP make HTML pages,

RE: mod_webapp error

2001-12-15 Thread William Tansill
Stupid question -- have you by any chance listed the line: AddModule mod_webapp.c Prior to the statement LoadModule webapp_module libexec/mod_webapp.so I think I recall a similar message when loading mod_webapp.so on my Windows-based system. -Original Message- From: [EMAIL PROTECTED]

Re: Application Design: initialization

2001-12-15 Thread hhager
Ok great, I guess the only reason I wanted to do application ini'ng in a JSP file was so that I could easily view all the structures in the scopes (and tag markup like that is clear at a glance) and alter them without recompiling, But I agree that I am a bit held back by my past designs in

Re: Application Design: initialization

2001-12-15 Thread hhager
Well I am primarily talking about somewhat lengthy data structures (objects) to load into the application and session scopes at startup, and the web.xml descriptor does not seem appropriate for this, its more for lighter parameters. I am using resource bundles for internationalization,

Re: Application Design: initialization

2001-12-15 Thread Craig R. McClanahan
On Sat, 15 Dec 2001 [EMAIL PROTECTED] wrote: Date: Sat, 15 Dec 2001 12:40:25 -0800 From: [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED], [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Subject: Re: Application Design: initialization Ok great, I guess the

Url handler (Cocoon/OpenOrb/Tomcat 4.0.1 mix)

2001-12-15 Thread Anton Jansen
An application I have written uses the cocoon work frame in which a java class is compiled which uses the OpenORB. Their is a problem with the initialisation of the ORB, it tries to add a url handler and for some reason tomcat doesn't like this (see

Re: InitialContext

2001-12-15 Thread renyu teng
sorry, found the typo. thanks. cheers teng --- renyu teng [EMAIL PROTECTED] wrote: hi there, could anyone tell me how to set the Context.INITIAL_CONTEXT_FACTORY in tomcat 4.0.01, I use the following code: Hashtable env_ht = new Hashtable();

tom4 session and loadbalancing

2001-12-15 Thread Michael Remme
mod_jk is running here now with tomcat 4, but i have the problem, that running sessions are not recognized. The loadbalancer is sending the requests to different servers and not, like described, back to the session-host. Is there anything know, what to do? Best, Michael Virengepruft vom G DATA

Re: Is Tomcat considered to be a J2EE implementation?

2001-12-15 Thread Michael Davis
Thanks to everyone who replied. One big relieve is that you all agree! I'll get JBoss and try that out. Regards, Michael On December 15, 2001 01:29 pm, you wrote: On Sat, 15 Dec 2001, Michael Davis wrote: Date: Sat, 15 Dec 2001 11:48:23 -0500 From: Michael Davis [EMAIL PROTECTED]

Re: Url handler (Cocoon/OpenOrb/Tomcat 4.0.1 mix)

2001-12-15 Thread Craig R. McClanahan
On Sat, 15 Dec 2001, Anton Jansen wrote: Date: Sat, 15 Dec 2001 22:33:26 +0100 From: Anton Jansen [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Url handler (Cocoon/OpenOrb/Tomcat 4.0.1 mix) An application I have written uses the cocoon

Re: Url handler (Cocoon/OpenOrb/Tomcat 4.0.1 mix)

2001-12-15 Thread Anton Jansen
I have tried it with and without the security option both instances fail. I have an explicit grant for the jar file containing openorb. The dump you wanted: exception : org.omg.CORBA.INITIALIZE: Cannot create resource URL. Please set the openorb.home property. at

InitialContext

2001-12-15 Thread renyu teng
hi there, could anyone tell me how to set the Context.INITIAL_CONTEXT_FACTORY in tomcat 4.0.01, I use the following code: Hashtable env_ht = new Hashtable(); env_ht.put(Context.INITIAL_CONTEXT_FACTORY, org.jnp.interfaces.NamingContextFactor);

this list is un-unsubscribable ?

2001-12-15 Thread felix
The automatic unsubscribe system does not work due to the email address being too long. I have emailed, as per instructions to, [EMAIL PROTECTED] and also to: [EMAIL PROTECTED] [EMAIL PROTECTED] all to no avail. i have waited a week now. -- To unsubscribe: mailto:[EMAIL PROTECTED]

Re: Url handler (Cocoon/OpenOrb/Tomcat 4.0.1 mix)

2001-12-15 Thread Craig R. McClanahan
On Sat, 15 Dec 2001, Anton Jansen wrote: Date: Sat, 15 Dec 2001 23:02:41 +0100 From: Anton Jansen [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Subject: Re: Url handler (Cocoon/OpenOrb/Tomcat 4.0.1 mix) I have tried it with and

Re: Url handler (Cocoon/OpenOrb/Tomcat 4.0.1 mix)

2001-12-15 Thread Anton Jansen
- Original Message - From: Craig R. McClanahan [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Saturday, December 15, 2001 11:08 PM Subject: Re: Url handler (Cocoon/OpenOrb/Tomcat 4.0.1 mix) On Sat, 15 Dec 2001, Anton Jansen wrote: Date: Sat, 15 Dec 2001 23:02:41