Is it ever possible?

2000-12-09 Thread Tomas Marek
Hi, I'm running standalone Tomcat 3.1 under W98 and I have to get connected otherwise Tomcat won't start. Do I do something wrong or it's pretty normal? Why? Sorry for such a silly question. Tom.

Share Web Hosting

2000-12-09 Thread Joseph Wong
Hi, do you know how to do share web hosting on a machine running Apache 1.3.14 AND Tomcat 3.1 ??? what are the details of the settings of Apache AND Tomcat for achieving this??? Thanks. _ Get more from the

RE: Ant compile error

2000-12-09 Thread G.Nagarajan
hi, you have to download the ant and xerces packages and put them in the classpath. Using the approach mentioned in the doc is good if you have to manage a project. If just want to try out some examples, you can ignore it. Regards, Nagaraj. -Original Message-From: Matt Becker

RE: Is it ever possible?

2000-12-09 Thread Nacho
You have a netcard? if not i think that the only way to get TCP/IP working on windows is to have a open connection to internet, or to install a net card to have tcp/ip loaded every time Saludos , Ignacio J. Ortega -Mensaje original- De: Tomas Marek [mailto:[EMAIL PROTECTED]]

Re: Is it ever possible?

2000-12-09 Thread Craig R. McClanahan
Nacho wrote: You have a netcard? if not i think that the only way to get TCP/IP working on windows is to have a open connection to internet, or to install a net card to have tcp/ip loaded every time You might also try creating a text file "c:\windows\hosts" with the following line in it:

Secure and Insecure sites with the same URL on Tomcat

2000-12-09 Thread Nirav S. Desai
Hi, I am trying to set up a secure tomcat/apache server. I have Apache set up with mod_ssl and tomcat 3.2 setup with viruatl hosts. All of this works great. However, I am having trouble getting the secure and insecure hosts to map to different pages in tomcat. That is, I want

Tomcat as NT Service. HowTo?

2000-12-09 Thread Iwan Eising
Hi, Is there a way to start Tomcat as an NT service on Win2K? How do I do this? Iwan

Re: Using Jikes with Tomcat 3.2 final

2000-12-09 Thread Zsolt Koppany
I'm not sure what you mean. How can be tomcat-3.2 final configure that it uses jikes? Zsolt Arun Katkere wrote: We ended up writing our own ContextInterceptor which looked up servlet named "jsp" and configured it to use jikes: public void contextInit(Context ctx) throws

how to execute servlets using tomcat

2000-12-09 Thread Kotturi, Rajendra
Hi , I have Tomcat installed along with the apache server on an Solaris Machine. We already have an application (JSP based) running on this apche - tomcat config. Now I want to execute some servlets on it. I already have the context defined for this application in the server.xml in the

tomcat and internet explorer

2000-12-09 Thread PerseP
Hi, Ihave just setup tomcat 3.2 on windows 98 and i've just discovered that when running tomcat without apache on I can see the index page of tomcat in Netscape (port 8080) but I can't see anything with Internet Explorer, I just get "Can't display page". Does tomcat need any special

RE: tomcat and internet explorer

2000-12-09 Thread Iwan Eising
No special settings, just go to http://localhost:8080 that should work. Works for me. Iwan -Original Message-From: PerseP [mailto:[EMAIL PROTECTED]]Sent: Saturday, December 09, 2000 2:42 PMTo: [EMAIL PROTECTED]Subject: tomcat and internet explorer Hi, Ihave just

Re: tomcat and internet explorer

2000-12-09 Thread William Brogden
PerseP wrote: Hi, I have just setup tomcat 3.2 on windows 98 and i've just discovered that when running tomcat without apache on I can see the index page of tomcat in Netscape (port 8080) but I can't see anything with Internet Explorer, I just get "Can't display page". Does tomcat

Re: tomcat and internet explorer

2000-12-09 Thread PerseP
Thank you for your reply, it does work all right with IE,it's just that it didn't put the http:// automatically and Netscape did :-) - Original Message - From: Iwan Eising To: [EMAIL PROTECTED] Sent: Saturday, December 09, 2000 8:48 PM Subject: RE: tomcat and

Re: documentation for jk_nt_service.exe

2000-12-09 Thread Yong Boone
http://jakarta.apache.org/tomcat/jakarta-tomcat/src/doc/NT-Service-howto.html try this site

Re: tomcat and internet explorer

2000-12-09 Thread Patrick Berry
on 12/9/00 11:42 AM, PerseP at [EMAIL PROTECTED] wrote: Hi, I have just setup tomcat 3.2 on windows 98 and i've just discovered that when running tomcat without apache on I can see the index page of tomcat in Netscape (port 8080) but I can't see anything with Internet Explorer, I just get

Re: how to execute servlets using tomcat

2000-12-09 Thread Madhu Narasa
There is no mention made of the web.xml file, this should be in the WEB-INF directory with the correct servlet mappings. --- "Kotturi, Rajendra" [EMAIL PROTECTED] wrote: Hi , I have Tomcat installed along with the apache server on an Solaris Machine. We already have an application (JSP

How to enable Jikes without changing Tomcat 3.2 source code

2000-12-09 Thread Barbara Nelson
I succeeded in getting Tomcat 3.2 final to use Jikes rather than Sun's compiler, but only after I changed the code in com.apache.tomcat.context.WebXMLReader. Is there any way to enable it via config file? The settings in conf/web.xml don't appear to be being read. There is a comment that says

JSP bodycontent?

2000-12-09 Thread James Carman
Does Tomcat support the JSP body content for a BodyTag? In my doAfterBody method (inherited from BodyTagSupport), I return EVAL_BODY_TAG. I have some debug statements in my code, so I can see that the doAfterBody method is called multiple times, but I'm not seeing the html that should be

Re: JSP bodycontent?

2000-12-09 Thread Jeff Turner
On Sat, 9 Dec 2000, James Carman wrote: Does Tomcat support the JSP body content for a BodyTag? In my doAfterBody method (inherited from BodyTagSupport), I return EVAL_BODY_TAG. I have some You must return EVAL_BODY_TAG in your doStartTag() method, not doAfterBody(). Have a look at the

RE: JSP bodycontent?

2000-12-09 Thread James Carman
I copied this out of the documentation of the BodyTagSupport class' doAfterBody method... "Actions after some body has been evaluated. Not invoked in empty tags or in tags returning SKIP_BODY in doStartTag() This method is invoked after every body evaluation. The pair "BODY -- doAfterBody()" is