Where is catalina-ant.jar file?

2002-05-17 Thread Alex Colic
Hi, I am going through the build instructions online and they refer to catalina-ant.jar. I checked my install of tomcat 4.03 and I do not have that file. Any idea where I can get it? Thanks Alex -- To unsubscribe, e-mail: For additional commands, e-mail:

[Ajp13] bad read: -103 ?What's this

2002-04-12 Thread Alex Colic
Hi, I was having a look at my catalina.out log file and I notice that I have a lot of the following lines: [Ajp13] bad read: -103 Any idea what they mean? Thanks Alex -- To unsubscribe: For additional commands: Troubles with the list:

RE: is their a way to run tomcat as a service

2002-04-04 Thread Alex Colic
Hi, the latest version 4.03 has an option to run Tomcat as a service. That's how I do it. Works fine. Alex -Original Message- From: Lalit Nagpal [mailto:[EMAIL PROTECTED]] Sent: April 4, 2002 6:55 AM To: [EMAIL PROTECTED] Subject: is their a way to run tomcat as a service is their

Getting error with IIS and Tomcat

2002-04-02 Thread Alex Colic
I have somewhat successfully installed tomcat and IIS 5. Periodically I when viewing a page I get the following error: Apache/Tomcat 4.0.3 HTTP Status 404 /pwC.jsp Type status report message /pwC.jsp description The requested resource pwC.jsp is not available. I do prefix my web pages with 'pw'

AJP13 bad read -113?

2001-10-31 Thread Alex Colic
Hi I am getting the following error in my dos window. I have used Andrew Bruno's instructions for setting up Tomcat 4.0.1 to work with IIS 4 on NT svr 4. Any idea what it means? [AJP13] bad read -103 Thanks Alex -- To unsubscribe, e-mail: For additional command

Can precompiled jsp's be used with any web server?

2001-10-26 Thread Alex Colic
Hi, If I create a war file which holds precompiled jsp's will they work with any web server? I am wondering about how to develop a generic war file that is not tied to the web server. Regards Alex

RE: Can't get precompiled JSP to be welcome page?

2001-10-26 Thread Alex Colic
Ah, Thanks for the info. I will try that. Alex 8 Date: Thu, 25 Oct 2001 06:59:13 -0400 To: [EMAIL PROTECTED] From: Randy Layman <[EMAIL PROTECTED]> Subject: RE: Can't get precompiled JSP to be welcome page? Message-ID:

RE: Precompiled jsp's

2001-10-24 Thread Alex Colic
Hi, I am figuring this out myself. I used the -webxml flag to create a new web.xml file. It takes the jsp files and creates servlet and servlet mapping entries. I then copied these entries over to my original web.xml file. I then started my app. It worked fine. Although in the servlet mappings,

Can't get precompiled JSP to be welcome page?

2001-10-24 Thread Alex Colic
Hi, I have a JSP file, pwLogin.jsp that I precompiled. I then added the following to my web.xml file: pwLogin pwLogin ... pwLogin /pwLogin.jsp ... /pwLogin.jsp pwLo

Help, anyone have a set-up up for Tomcat

2001-10-01 Thread Alex Colic
Hi, I distribute Tomcat with my apps. I am trying to create a set-up for Tomcat. I need something better than the zip file. Anyone have a set-up that installs the jdk/jre and Tomcat, adds the environment variables etc. Thanks for any help. Alex Colic

How to use jspc

2001-10-01 Thread Alex Colic
Hi, thanks for all the help regarding using the jre with tomcat. In my development environment I have been placing all my jsp files into the webapps/myproject/ directory. Now I can see that I need to use the jspc to compile the jsp's so that I can distribute them with Tomcat and the JRE. Can som

RE: Why won't tomcat run with jre

2001-09-25 Thread Alex Colic
Hi, what I mean is that servlets will work but JSP's will not. As for the JSPC I did not think about that but..lets say you want to make changes to the jsp page. Do you have to make the change, recompile the page and then replace it? If so does that not make it more difficult to manage the pages?

Why won't tomcat run with jre

2001-09-25 Thread Alex Colic
Hi, I tried running tomcat with the jre and it failed. It will work aqainst a full install of the jdk. If this is the case then why? Does this mean that every machine I install tomcat on needs the full jdk? If I write a web app and I want to demo it for a customer my setup must include the jdk a

Re: Getting a Verisign certificate

2001-09-19 Thread Alex Colic
I am trying to get a certificate from Verisign. I am trying to get a demo certificate and it is asking me for a (CSR) Certificate Signing Request. Alex

Re: Getting a Verisign certificate

2001-09-19 Thread Alex Colic
Hi, we need an official certificate. Any idea where I can get one for Tomcat? Alex --- Wednesday, September 19, 2001, 3:42:33 PM, Alex Colic <[EMAIL PROTECTED]> wrote: > Hi, I am trying to get a verisign ce

Getting a Verisign certificate

2001-09-19 Thread Alex Colic
Hi, I am trying to get a verisign certificate for tomcat. The wizard is asking for a (CSR) Certificate Signing Request. Do you know where I can get one of those for tomcat? Thanks Alex

web.xml and reloading

2001-09-13 Thread Alex Colic
Hi where are these tags set? In the web.xml or servlet.xml files: Thanks Alex

Re: How can I have a class run on start-up?

2001-09-07 Thread Alex Colic
Hmm. I don't know about that. For the user that would just be another app he has to start. I was trying to automate things. I was wondering about creating a servlet and forcing it to run when Tomcat starts. What do you thing? Alex - I don't

How can I have a class run on start-up?

2001-09-07 Thread Alex Colic
questions are: 1: how can you have a class start when the web server starts? This needs to work with all web servers. 2: how can you have a class in a web app register itself with the class listening on the port? Any suggestions are appreciated. Regards Alex Colic

JRE

2001-08-03 Thread Alex Colic
Hi, I am creating a set-up file for Tomcat. Can it run with the JRE 1.3 or does it need the full JDK? Thanks Alex Alex Colic.vcf

Need icon

2001-08-02 Thread Alex Colic
Hi, I am creating an install script for tomcat and I need an icon for the windows shortcut. Anyone out there have one for tomcat that they could send to me? Thanks Alex

ref: JRE

2001-08-02 Thread Alex Colic
Sorry about the v card. It gets attached automatically to my e-mails. Let me elaborate about my requirements. I have created a set-up that uses the jre 1.3 but when I start tomcat I get errors about class files not being instantiated. If I install tomcat using the jdk then I do not get those erro

Is this a bug in tomcat or me?

2001-04-19 Thread Alex Colic
Hi, I am having major problems with the servletContext. In my main class I do the following: ServletContext context=getServletContext(); context.setAttribute("Key", Boolean.TRUE); Then in one of my jsp tags if want to check the value of "Key" I do the following: Boolean active = (Boolean)

Help with refreshing servletContext please.

2001-04-18 Thread Alex Colic
Hi, I am implementing a method of caching lists that I want available to all my web users. I place lists in the servletcontext via: context.setAttribute("storeroomList",storerooms ); When the lists change I recall my cachelist method which gets the new data and then put the list back into t

Re: How to get around a tricky situation.

2001-04-04 Thread Alex Colic
Just so I understand, to do the below I would have to modify my server.xml file...correct? This cannot be done in my web.xml file? Thanks Alex >Date: Wed, 04 Apr 2001 09:47:56 +0200 >To: [EMAIL PROTECTED] >From: =?iso-8859-1?Q?St=E9phane?= BAUDET <[EMAIL PROTECTED]> >Subject: Re: How to get aro

Re: Still Can't set-up Tomcat for ssl. Please help.

2001-04-04 Thread Alex Colic
Hi, Thanks for the reply. I changed the port to 443 but there was no change. Am I correct in assuming that once I have https working I should be able to access the same page via: http:\\localhost\index.html and https:\\localhost\index.html or https:\\localhost:443\index.html Because I can see

Can't set-up Tomcat for ssl. Please help.

2001-04-03 Thread Alex Colic
understanding how to get Tomcat and direct ssl to work is appreciated. Regards Alex Colic

How to get around a tricky situation.

2001-04-03 Thread Alex Colic
distribute our app without having the customer copy images over to the root/images directory. Thanks for any help. Regards Alex Colic-0132

FW: RE: how to access a properties file as a resource.

2001-04-02 Thread Alex Colic
But that would mean that the property file is somewhere on the class path. I want it in the web-inf/ directory. Do you understand what I mean? >Date: Mon, 2 Apr 2001 06:53:38 -0700 >To: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]> >From: William Kaufman <[EMAIL PROTECTED]> >Subject: RE: how to a

how to access a properties file as a resource.

2001-04-02 Thread Alex Colic
Hi, I have a properties file in the web-inf directory of my web app. How can I access that file. It holds my localization settings I have tried. String pathSeperator =File.separator. InputStream is=context.getResourceAsStream("Web-inf" + pathSeperator + "pwWorkRequestProLocalization"); Propert

how to read servletcontext comments?

2001-03-26 Thread Alex Colic
Hi, I am creating an jsp admin screen to allow users to modify programsetting found in web.xml. The below code reads the context paramters andcreates a simple table. What I can't figure out to read is the attributecomments. Any idea how to do this.Any help is appreciated.Alex<%  ServletContex

How to set user.dir in web.xml

2001-03-26 Thread Alex Colic
Hi,I have a database in the root directory of my web app that I use with myJSP. I want to create a war file that does not require any further userintervention in configuring the application.I am not using a dsn to connect to my access database rather I am using thebelow string.DRIVER={Micros

How to change context parameter?

2001-03-26 Thread Alex Colic
Hi,If you have a jsp how can you change the context parameter.Eg. in you web.xml file you have: App wr    The short name for this application. Do NotModify.You can read this via ServletContext context=config.getServletContext();  String name="App";  String value=(String)context.getInit

tomcat no longer runs??

2001-03-22 Thread Alex Colic
Hi, all of a sudden I am getting the below error when I try to run tomcat. Any ideas? Thanks Alex Context log path="" :jsp: init Context log path="" :default: init Starting endpoint port="80" handler="org.apache.tomcat.service.http.HttpConnectionHandler" Starting endpoint port="81" handler="org

How to reload a web app?

2001-02-25 Thread Alex Colic
Hi, I am creating an admin servlet that will reload a web app. What command do you send Tomcat to do that? Thanks for any help. Alex = Regards Alex Colic, HBA, B. Ed PopWare Inc. "Driving down the cost of conversions" E-Mail: [EMAIL PROTECTED] Tel: 1-905-777-8171 ext. 104

Answer three simple questions and I will be thrilled.

2001-02-21 Thread Alex Colic
t_Class_This_Is).class.getName())? Thanks for any help. Alex = Regards Alex Colic, HBA, B. Ed PopWare Inc. "Driving down the cost of conversions" E-Mail: [EMAIL PROTECTED] Tel: 1-905-777-8171 ext. 104 Fax: 1-905-777-0132 __ Do You Yahoo!? Y