INDEX.JSP in webapps/ROOT

2005-08-24 Thread Tom Spence

Hello...

I understand that TomCat's front page (index.jsp) that I can't change it cuz it 
is precompiled.  I want to change something on my own website from index.jsp to 
index.html?

Also I am trying to learn (of course I am newbie) how to change in web.xml in 
ROOT/WEB-INF.

I appreciate your assist...



(__[TomCigar]___~~~ 




Re: INDEX.JSP in webapps/ROOT

2005-08-24 Thread Tom Spence
GREAT!  It works!  Also many thanks for giving the URl about web.xml that I am 
going to learn how to use.

David Delbecq [EMAIL PROTECTED] wrote:Le Mercredi 24 Août 2005 14:58, Tom 
Spence a écrit :
 
 Hello...
 
 I understand that TomCat's front page (index.jsp) that I can't change it cuz 
 it is precompiled. 

Yes and no, you can't simply replace it's content, but you also have to change 
web.xml 
remove those lines to suppres use of precompiled index.jsp :


org.apache.jsp.index_jsp
org.apache.jsp.index_jsp



org.apache.jsp.index_jsp
/index.jsp




 I want to change something on my own website from index.jsp to index.html? 

just remove index.jsp mapping in web.xml, tomcat will then do the default 
searching 
(index.jsp, index.html, index.htm if my memory is not too corrupted)

 
 Also I am trying to learn (of course I am newbie) how to change in web.xml in 
 ROOT/WEB-INF.

with a text editor (better if text editor support xml enlighting)
More seriously, i suggest you read some documentations on java web servers tu 
understand
what is in the web.xml
there is list of tags in web.xml:
http://e-docs.bea.com/wls/docs61/webapp/web_xml.html

 
 I appreciate your assist...
 
 
 
 (__[TomCigar]___~~~ 
 
 
 

-- 
David Delbecq
Royal Meteorological Institute of Belgium

-
Is there life after /sbin/halt -p?

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]





(__[TomCigar]___~~~ 




Re: WebDav on Port 80

2005-08-22 Thread Tom Spence
On 5.5.9...
 
* Go to webapps/webdav/WEB-INF
* Edit web.xml
 
Go to bottom and fix...
 
welcome-file-list
welcome-fileindex.html/welcome-file
/welcome-file-list
 
After I fixed, still not work...
 
Tom


Kyle [EMAIL PROTECTED] wrote:
On 5.5.9,

I can get http://localhost/webdav/index.html to serve up the webdav home 
page. If I just put /webdav in, I get the directory index. Though, I 
suspect I could get it to serve it up straight away if I play with the 
mapping.

AH!!! Just occured to me. I'm picking it up through Apache as opposed to 
Tomcat standalone.

K

Marius Hanganu wrote:
 The problem can be reproduced. There is already a bug describing this
 issue:
 
 http://issues.apache.org/bugzilla/show_bug.cgi?id=26449
 
 Regards,
 Marius 
 
 -Original Message-
 From: George Francis [mailto:[EMAIL PROTECTED] 
 Sent: Sunday, August 21, 2005 7:07 PM
 To: tomcat-user@jakarta.apache.org
 Subject: WebDav on Port 80
 
 Hello,
 If I downloaded the latest Tomcat 5.0 or 5.5, WebDav works 'straight out
 of the box' by starting the server and opening 'localhost:8080/webdav'
 as a web folder.
 Great!
 If I then go in to server.xml and change the port to 80; the WebDav
 functionality is lost - I get a message from IE saying Cannot open
 'localhost:80/webdav' as a web folder - would you like to see it's
 default view instead.
 Can anyone else reproduce this? Are you all able to run webdav on port
 80 without issues? Is there any trick Im missing?
 Any help greatly appreciated!.
 G
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 

-- 

Kind Regards

Kyle Lange

Tel: +61 (0)431 88 3978


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Error log

2005-08-18 Thread Tom Spence

Hi...

Any idea why I got error message while I go to ADMIN page?

Aug 18, 2005 8:52:39 AM org.apache.struts.action.RequestProcessor processMapping
SEVERE: Invalid path /login was requested

But while I am using ADMIN page which is no problem...  Any idea.

I appreciate your assist...

Tom


RE: TomCat 5.5.9 - 8443

2005-08-17 Thread Tom Spence
Now TomCat 5.5.9 can run with 8443 that I am so happy but need to have a 
certificate.  I don't have any certificate so is there anyway for us to get 
free instead of pay to verisign?

Paul Kimbrel [EMAIL PROTECTED] wrote:
I've only used keytool - and it worked like a charm for me. 

-Original Message-
From: Tom Spence [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, August 16, 2005 9:23 AM
To: Tomcat Users List
Subject: Re: TomCat 5.5.9 - 8443

Can I use ikeyman or keytool or both?

Cuz, I need to use SSL like 8443 so bad...

Paul Kimbrel 
wrote:
Something I forgot to mention. When you are generating your certificate, it
will ask for your first and last name. Enter the name of the server your
appliation will be running on. In the case of development - this is usally
localhost. Otherwise, the certificate will be rejected when your website
loads.

--PK

On 8/15/2005, [EMAIL PROTECTED]

wrote:

It sounds like you need to set up an SSL certificate for Java. Here's a 
site that outlines how to do this:

http://jasigch.princeton.edu:9000/display/CAS/Solving+SSL+issues

To use this example, make sure you have your JAVA_HOME environment 
variable set properly (or replace it in the example with the 
appropriate value). Also, the example references %FILE_NAME%. Don't 
use this - in all the other places in the example, it uses server.crt 
- use that instead of the FILE_NAME variable. And finally, it will 
still pop up and ask you for the keystore pass code. Just enter changeit.
And don't change it - until you've gotten down the road and figure out 
how all that works. I tried it once, and things got reallys screwed up.

But once, you get that up and running, you should be gold!

--PK

On 8/15/2005, Tom Spence wrote:

 I can open
 
 http://localhost:8080
 
 but, can't open
 
 https://localhost:8443
 
 Any idea why?
 
 Of course I did uncomment at 8443 area in server.xml and set up by 
using keytool. Nothing happened.
 
 
 
 (__[TomCigar]___~~~
 

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




(__[TomCigar]___~~~ 




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




(__[TomCigar]___~~~ 




Re: TomCat 5.5.9 - 8443

2005-08-16 Thread Tom Spence
Can I use ikeyman or keytool or both?
 
Cuz, I need to use SSL like 8443 so bad...

Paul Kimbrel [EMAIL PROTECTED] wrote:
Something I forgot to mention. When you are generating your certificate,
it will ask for your first and last name. Enter the name of the server
your appliation will be running on. In the case of development - this
is usally localhost. Otherwise, the certificate will be rejected
when your website loads.

--PK

On 8/15/2005, [EMAIL PROTECTED]

wrote:

It sounds like you need to set up an SSL certificate for Java. Here's a
site that outlines how to do this:

http://jasigch.princeton.edu:9000/display/CAS/Solving+SSL+issues

To use this example, make sure you have your JAVA_HOME environment
variable set properly (or replace it in the example with the appropriate
value). Also, the example references %FILE_NAME%. Don't use this -
in all the other places in the example, it uses server.crt - use
that instead of the FILE_NAME variable. And finally, it will still pop
up and ask you for the keystore pass code. Just enter changeit. 
And don't change it - until you've gotten down the road and figure out
how all that works. I tried it once, and things got reallys screwed up.

But once, you get that up and running, you should be gold!

--PK

On 8/15/2005, Tom Spence wrote:

 I can open
 
 http://localhost:8080
 
 but, can't open
 
 https://localhost:8443
 
 Any idea why?
 
 Of course I did uncomment at 8443 area in server.xml and set up by  using 
 keytool. Nothing happened.
 
 
 
 (__[TomCigar]___~~~
 

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




(__[TomCigar]___~~~ 




TomCat 5.5.9 - 8443

2005-08-15 Thread Tom Spence

I can open

http://localhost:8080

but, can't open

https://localhost:8443

Any idea why?

Of course I did uncomment at 8443 area in server.xml and set up by using 
keytool.  Nothing happened.



(__[TomCigar]___~~~ 




Re: TomCat 5.5.9 - 8443

2005-08-15 Thread Tom Spence
Here what I got...
 
Aug 15, 2005 8:38:24 AM org.apache.coyote.http11.Http11Protocol init
INFO: Initializing Coyote HTTP/1.1 on http-8080
Aug 15, 2005 8:38:24 AM org.apache.coyote.http11.Http11Protocol init
INFO: Initializing Coyote HTTP/1.1 on http-8443
Aug 15, 2005 8:38:24 AM org.apache.catalina.startup.Catalina load
INFO: Initialization processed in 3008 ms
Aug 15, 2005 8:38:24 AM org.apache.catalina.core.StandardService start
INFO: Starting service Catalina
Aug 15, 2005 8:38:24 AM org.apache.catalina.core.StandardEngine start
INFO: Starting Servlet Engine: Apache Tomcat/5.5.9
Aug 15, 2005 8:38:24 AM org.apache.catalina.core.StandardHost start
INFO: XML validation disabled
Aug 15, 2005 8:38:30 AM org.apache.coyote.http11.Http11Protocol start
INFO: Starting Coyote HTTP/1.1 on http-8080
Aug 15, 2005 8:38:30 AM org.apache.coyote.http11.Http11Protocol start
INFO: Starting Coyote HTTP/1.1 on http-8443
Aug 15, 2005 8:38:30 AM org.apache.catalina.storeconfig.StoreLoader load
INFO: Find registry server-registry.xml at classpath resource
Aug 15, 2005 8:38:31 AM org.apache.catalina.startup.Catalina start
INFO: Server startup in 7101 ms
 
I opened https://localhost:8443 and wait for loading for forever...


Paul Singleton [EMAIL PROTECTED] wrote:
Tom Spence wrote:
 I can open
 
 http://localhost:8080
 
 but, can't open
 
 https://localhost:8443
 
 Any idea why?
 
 Of course I did uncomment at 8443 area in server.xml and set up by using 
 keytool. Nothing happened.

What kind of nothing?

Connection refused? Failed to connect after timeout?
Page not found?

Do the startup msgs claim that e.g.

09-Aug-2005 15:29:04 org.apache.coyote.http11.Http11Protocol init
INFO: Initializing Coyote HTTP/1.1 on http-8443

09-Aug-2005 15:29:09 org.apache.coyote.http11.Http11Protocol start
INFO: Starting Coyote HTTP/1.1 on http-8443

Paul Singleton




-- 
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.338 / Virus Database: 267.10.9/72 - Release Date: 14/Aug/2005


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




(__[TomCigar]___~~~ 




Error msg after catalina.sh run

2005-08-09 Thread Tom Spence

I am using AIX 5.2, TC 5.5.9, JAVA 1.4

I am working on 8443 (443) but got an error and how can I solve this problem?

Using CATALINA_BASE:   /usr/local/jakarta-tomcat
Using CATALINA_HOME:   /usr/local/jakarta-tomcat
Using CATALINA_TMPDIR: /usr/local/jakarta-tomcat/temp
Using JRE_HOME:   /usr/java14
Created MBeanServer with ID: 52d4d891:1059af76990:-8000:xxx.xxx.xxx.xxx:1
Aug 9, 2005 7:19:33 AM org.apache.coyote.http11.Http11Protocol init
INFO: Initializing Coyote HTTP/1.1 on http-8080
Aug 9, 2005 7:19:34 AM org.apache.coyote.http11.Http11Protocol init
SEVERE: Error initializing endpoint
java.io.IOException: Algorithm SunX509 not available
at 
org.apache.tomcat.util.net.jsse.JSSE14SocketFactory.init(JSSE14SocketFactory.java:125)
at 
org.apache.tomcat.util.net.jsse.JSSESocketFactory.createSocket(JSSESocketFactory.java:88)
at 
org.apache.tomcat.util.net.PoolTcpEndpoint.initEndpoint(PoolTcpEndpoint.java:292)
at org.apache.coyote.http11.Http11Protocol.init(Http11Protocol.java:142)
at 
org.apache.catalina.connector.Connector.initialize(Connector.java:928)
at 
org.apache.catalina.core.StandardService.initialize(StandardService.java:580)
at 
org.apache.catalina.core.StandardServer.initialize(StandardServer.java:764)
at org.apache.catalina.startup.Catalina.load(Catalina.java:490)
at org.apache.catalina.startup.Catalina.load(Catalina.java:509)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85)
at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60)
at java.lang.reflect.Method.invoke(Method.java:391)
at org.apache.catalina.startup.Bootstrap.load(Bootstrap.java:243)
at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:408)
Aug 9, 2005 7:19:34 AM org.apache.catalina.startup.Catalina load
SEVERE: Catalina.start
LifecycleException:  Protocol handler initialization failed: 
java.io.IOException: Algorithm SunX509 not available
at 
org.apache.catalina.connector.Connector.initialize(Connector.java:930)
at 
org.apache.catalina.core.StandardService.initialize(StandardService.java:580)
at 
org.apache.catalina.core.StandardServer.initialize(StandardServer.java:764)
at org.apache.catalina.startup.Catalina.load(Catalina.java:490)
at org.apache.catalina.startup.Catalina.load(Catalina.java:509)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85)
at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60)
at java.lang.reflect.Method.invoke(Method.java:391)
at org.apache.catalina.startup.Bootstrap.load(Bootstrap.java:243)
at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:408)




(__[TomCigar]___~~~ 




Re: R: JSTL Question

2005-08-09 Thread Tom Spence

Hi,

I plan to use TOMCAT 5.5.9 for http server but my supervisor wants me to use 
HTTP Server.

I am done for set up with HTTP Server so how can HTTP Server redirect to TOMCAT?

I apprecaite your assist...

Tom


IBM IHS and TOMCAT 5.5.9

2005-08-09 Thread Tom Spence

Hi,

I plan to use TOMCAT 5.5.9 for http server but my supervisor wants me to use 
HTTP Server.

I am done for set up with HTTP Server so how can HTTP Server redirect to TOMCAT?

I apprecaite your assist...

Tom



HTTP Server and TC 5.5.9

2005-08-08 Thread Tom Spence
Hello everyone...

My supervisor wants me to work on tomcat 5.5.9 instead
of websphere.  So I am working on it now which is my
first time.  I hope you guys help me.  SMILE!!!

Am I required to use HTTP Server first before tomcat,
correct?

I appreciate your assist...

Tom


(__[TomCigar]___~~~ 




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Hi...

2005-08-03 Thread Tom Spence
Hello I am rookie...
 
I plan to download the source but it can't open by using tar command while I am 
using AIX 5.2.  Should I download binary file?
 
I apprecaite your help...
 
Tom Spence


Re: Hi...

2005-08-03 Thread Tom Spence
What about jakarta-tomcat-5.5.10.tar.gz?
 
Or I should use 5.5.9?

Markus Schönhaber [EMAIL PROTECTED] wrote:
Am Mittwoch, 3. August 2005 17:51 schrieb Markus Schönhaber:

 gunzip -c jakarta-tomcat-5.5.9.tar.gz | tar -x

Exchange jakarta-tomcat-5.5.9.tar.gz to the actual name of the file you want 
to unpack.

Regards
mks

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




(__[TomCigar]___~~~