FW: Administrator in need of help on new install

2003-01-24 Thread Gerstel, Rachel
02 (redirect) responses.
#
BrowserMatch "Mozilla/2" nokeepalive
BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0

#
# The following directive disables HTTP/1.1 responses to browsers which
# are in violation of the HTTP/1.0 spec by not being able to grok a
# basic 1.1 response.
#
BrowserMatch "RealPlayer 4\.0" force-response-1.0
BrowserMatch "Java/1\.0" force-response-1.0
BrowserMatch "JDK/1\.0" force-response-1.0


# End of browser customization directives


### Section 3: Virtual Hosts
#
# VirtualHost: If you want to maintain multiple domains/hostnames on your
# machine you can setup VirtualHost containers for them. Most configurations
# use only name-based virtual hosts so the server doesn't need to worry
about
# IP addresses. This is indicated by the asterisks in the directives below.
#
# Please see the documentation at http://www.apache.org/docs/vhosts/>
# for further details before you try to setup virtual hosts.
#
# You may use the command line option '-S' to verify your virtual host
# configuration.


##
##  SSL Global Context
##
##  All SSL configuration in this context applies both to
##  the main server and all SSL-enabled virtual hosts.
##

#
#   Some MIME-types for downloading Certificates and CRLs
#

AddType application/x-x509-ca-cert .crt
AddType application/x-pkcs7-crl.crl




#   Pass Phrase Dialog:
#   Configure the pass phrase gathering process.
#   The filtering dialog program (`builtin' is a internal
#   terminal dialog) has to provide the pass phrase on stdout.
SSLPassPhraseDialog  builtin

#   Inter-Process Session Cache:
#   Configure the SSL Session Cache: First the mechanism 
#   to use and second the expiring timeout (in seconds).
#SSLSessionCachenone
#SSLSessionCacheshmht:/var/run/ssl_scache(512000)
#SSLSessionCacheshmcb:/var/run/ssl_scache(512000)
SSLSessionCache dbm:/var/run/ssl_scache
SSLSessionCacheTimeout  300

#   Semaphore:
#   Configure the path to the mutual exclusion semaphore the
#   SSL engine uses internally for inter-process synchronization. 
SSLMutex  file:/var/run/ssl_mutex

#   Pseudo Random Number Generator (PRNG):
#   Configure one or more sources to seed the PRNG of the 
#   SSL library. The seed data should be of good random quality.
#   WARNING! On some platforms /dev/random blocks if not enough entropy
#   is available. This means you then cannot use the /dev/random device
#   because it would lead to very long connection times (as long as
#   it requires to make more entropy available). But usually those
#   platforms additionally provide a /dev/urandom device which doesn't
#   block. So, if available, use this one instead. Read the mod_ssl User
#   Manual for more details.
SSLRandomSeed startup builtin
SSLRandomSeed connect builtin


#   Logging:
#   The home of the dedicated SSL protocol logfile. Errors are
#   additionally duplicated in the general error log file.  Put
#   this somewhere where it cannot be used for symlink attacks on
#   a real server (i.e. somewhere where only root can write).
#   Log levels are (ascending order: higher ones include lower ones):
#   none, error, warn, info, trace, debug.
SSLLog  /var/apache/logs/ssl_engine_log
SSLLogLevel info





##
## SSL Virtual Host Context
##

#   SSL Engine Switch:
#   Enable/Disable SSL for this virtual host.
SSLEngine on

#   SSL Cipher Suite:
#   List the ciphers that the client is permitted to negotiate.
#   See the mod_ssl documentation for a complete list.
SSLCipherSuite
ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL

#   Server Certificate:
#   Point SSLCertificateFile at a PEM encoded certificate.  If
#   the certificate is encrypted, then you will be prompted for a
#   pass phrase.  Note that a kill -HUP will prompt again. A test
#   certificate can be generated with `make certificate' under
#   built time. Keep in mind that if you've both a RSA and a DSA
#   certificate you can configure both in parallel (to also allow
#   the use of DSA ciphers, etc.)
SSLCertificateFile /etc/apache/ssl.crt/server.crt


#   Server Private Key:
#   If the key is not combined with the certificate, use this
#   directive to point at the key file.  Keep in mind that if
#   you've both a RSA and a DSA private key you can configure
#   both in parallel (to also allow the use of DSA ciphers, etc.)
SSLCertificateKeyFile /etc/apache/ssl.key/server.key

#SSLOptions +FakeBasicAuth +ExportCertData +CompatEnvVars +StrictRequire

SSLOptions +StdEnvVars


SSLOptions +StdEnvVars


SetEnvIf User-Agent ".*MSIE.*" \
 nokeepalive ssl-unclean-shutdown \
 downgrade-1.0 force-response-1.0

#   Per-Server Logging:
#   The home of a custom SSL log file. Use this when you want a
#   compact non-error SSL logfile on a virtual host basis.
CustomLog /var/apache/logs/ssl_request_lo

FW: Administrator in need of help on new install

2003-01-24 Thread Gerstel, Rachel

This got bounced, so I am sending it in two bits:

First bit has the tomcat files:

I have a jk mount set up via my mod_jk.conf file. I have tomcat do the work
automagically for me and just use an Inlcude line in apache to make sure it
grabs the info. I also checked and can access cocoon from
http://granite:80/cocoon. There is a screen shot that I am attaching that
might not come through, but it will show you exactly what I see when I
connect. And, here are my relevant files:

auto config file from tomcat:
/usr/local/tomcat/conf/auto/mod_jk.conf:

## Auto generated on Thu Jan 23 17:06:43 MET 2003##


  LoadModule jk_module /usr/local/apache/libexec/mod_jk.so


JkWorkersFile "/usr/local/tomcat/conf/jk/workers.properties"
JkLogFile "/var/tomcat/logs"

JkLogLevel info


ServerName granite

 granite:/cocoon 

# Static files 
Alias /cocoon "/usr/local/tomcat/webapps/cocoon"


Options Indexes FollowSymLinks
DirectoryIndex index.html index.htm index.jsp 



# Deny direct access to WEB-INF and META-INF
#

AllowOverride None
deny from all



AllowOverride None
deny from all


JkMount /cocoon/*.html  ajp13
JkMount /cocoon/servlet/*  ajp13
JkMount /cocoon/*.jsp  ajp13

 granite:/manager 

# Static files 
Alias /manager "/usr/local/tomcat/webapps/manager"


Options Indexes FollowSymLinks
DirectoryIndex index.html index.htm index.jsp 



# Deny direct access to WEB-INF and META-INF
#

AllowOverride None
deny from all



AllowOverride None
deny from all


JkMount /manager/*  ajp13
JkMount /manager/servlet/*  ajp13
JkMount /manager/*.jsp  ajp13


my tomcat server.xml:
/usr/local/tomcat/conf/server.xml:





 




  
  

  
  


















-Original Message-
From: Jim McCullough [mailto:[EMAIL PROTECTED]]
Sent: Thursday, January 23, 2003 5:54 PM
To: [EMAIL PROTECTED]
Subject: Re: Administrator in need of help on new install


Perhaps I also should have asked it you are able
to access Cocoon by specifying the Tomcat port:

http://mymachine.com:8080/cocoon

or whatever port Tomcat is listening on, usually 8080.

If the cocoon welcom page is displaying properly when
accessing Tomcat directly - then there is really only
one line out of the httpd.conf file that matters:

JkMount /cocoon/* ajp13

you can also setup an alias to cocoon

Alias /cocoon "[path-to-cocoon]"

These are the only lines in the httpd.conf file that
refer to cocoon and should get cocoon showing up
when using http://mymachine.com/cocoon

Obviously the above lines would need to be included
under the specific virtual host in your httpd.conf file if you
are using virtual hosts, or under the default host.


Jim


Jim McCullough
Risk Analytics Inc. - Las Vegas
Software Engineering
[EMAIL PROTECTED]
[EMAIL PROTECTED]
(702) 407-1814 (voice)
(702) 407-1824 (fax)



- Original Message -
From: "SAXESS - Hussayn Dabbous" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, January 23, 2003 8:41 AM
Subject: Re: Administrator in need of help on new install


> Hy,
>
> can you send your tomcat/apache/cocoon config files ?
> That should be a solvable problem ...
>
> If the mailing list agent refuses your email (due to size
> limitations) you can send it directly to my personal
> email adress if you like...
>
> regards, hussayn
>
> Jim McCullough wrote:
> > Have you setup a JkMount in your httpd.conf file
> > for cocoon?
> >
> > JkMount /cocoon/* ajp13
> >
> >
> > Jim McCullough
> > Risk Analytics Inc. - Las Vegas
> > Software Engineering
> > [EMAIL PROTECTED]
> > [EMAIL PROTECTED]
> > (702) 407-1814 (voice)
> > (702) 407-1824 (fax)
> >
> >
> >
> > - Original Message -
> > From: "Gerstel, Rachel" <[EMAIL PROTECTED]>
> > To: <[EMAIL PROTECTED]>
> > Sent: Thursday, January 23, 2003 8:25 AM
> > Subject: Administrator in need of help on new install
> >
> >
> >
> >>Hello All,
> >>
> >>Apologies if this has already been covered, but I have not been able to
> >
> > find
> >
> >>a similar problem in the archives.
> >>
> >>I have no experience with xml whatsoever and have a brand-new developer
> >
> > with
> >
> >>no experience whatsoever wanting to start playing around with cocoon.
> >>
> >>I have installed: Tomcat 4.0.4, Apache 1.3.26 and Cocoon 2.0.4 (als

RE: Administrator in need of help on new install

2003-01-24 Thread Gerstel, Rachel
ed in the general error log file.  Put
#   this somewhere where it cannot be used for symlink attacks on
#   a real server (i.e. somewhere where only root can write).
#   Log levels are (ascending order: higher ones include lower ones):
#   none, error, warn, info, trace, debug.
SSLLog  /var/apache/logs/ssl_engine_log
SSLLogLevel info





##
## SSL Virtual Host Context
##

#   SSL Engine Switch:
#   Enable/Disable SSL for this virtual host.
SSLEngine on

#   SSL Cipher Suite:
#   List the ciphers that the client is permitted to negotiate.
#   See the mod_ssl documentation for a complete list.
SSLCipherSuite
ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL

#   Server Certificate:
#   Point SSLCertificateFile at a PEM encoded certificate.  If
#   the certificate is encrypted, then you will be prompted for a
#   pass phrase.  Note that a kill -HUP will prompt again. A test
#   certificate can be generated with `make certificate' under
#   built time. Keep in mind that if you've both a RSA and a DSA
#   certificate you can configure both in parallel (to also allow
#   the use of DSA ciphers, etc.)
SSLCertificateFile /etc/apache/ssl.crt/server.crt


#   Server Private Key:
#   If the key is not combined with the certificate, use this
#   directive to point at the key file.  Keep in mind that if
#   you've both a RSA and a DSA private key you can configure
#   both in parallel (to also allow the use of DSA ciphers, etc.)
SSLCertificateKeyFile /etc/apache/ssl.key/server.key

#SSLOptions +FakeBasicAuth +ExportCertData +CompatEnvVars +StrictRequire

SSLOptions +StdEnvVars


SSLOptions +StdEnvVars


SetEnvIf User-Agent ".*MSIE.*" \
 nokeepalive ssl-unclean-shutdown \
 downgrade-1.0 force-response-1.0

#   Per-Server Logging:
#   The home of a custom SSL log file. Use this when you want a
#   compact non-error SSL logfile on a virtual host basis.
CustomLog /var/apache/logs/ssl_request_log \
  "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"



Include /usr/local/tomcat/conf/auto/mod_jk.conf


-Original Message-
From: Jim McCullough [mailto:[EMAIL PROTECTED]]
Sent: Thursday, January 23, 2003 5:54 PM
To: [EMAIL PROTECTED]
Subject: Re: Administrator in need of help on new install


Perhaps I also should have asked it you are able
to access Cocoon by specifying the Tomcat port:

http://mymachine.com:8080/cocoon

or whatever port Tomcat is listening on, usually 8080.

If the cocoon welcom page is displaying properly when
accessing Tomcat directly - then there is really only
one line out of the httpd.conf file that matters:

JkMount /cocoon/* ajp13

you can also setup an alias to cocoon

Alias /cocoon "[path-to-cocoon]"

These are the only lines in the httpd.conf file that
refer to cocoon and should get cocoon showing up
when using http://mymachine.com/cocoon

Obviously the above lines would need to be included
under the specific virtual host in your httpd.conf file if you
are using virtual hosts, or under the default host.


Jim


Jim McCullough
Risk Analytics Inc. - Las Vegas
Software Engineering
[EMAIL PROTECTED]
[EMAIL PROTECTED]
(702) 407-1814 (voice)
(702) 407-1824 (fax)



----- Original Message -
From: "SAXESS - Hussayn Dabbous" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, January 23, 2003 8:41 AM
Subject: Re: Administrator in need of help on new install


> Hy,
>
> can you send your tomcat/apache/cocoon config files ?
> That should be a solvable problem ...
>
> If the mailing list agent refuses your email (due to size
> limitations) you can send it directly to my personal
> email adress if you like...
>
> regards, hussayn
>
> Jim McCullough wrote:
> > Have you setup a JkMount in your httpd.conf file
> > for cocoon?
> >
> > JkMount /cocoon/* ajp13
> >
> >
> > Jim McCullough
> > Risk Analytics Inc. - Las Vegas
> > Software Engineering
> > [EMAIL PROTECTED]
> > [EMAIL PROTECTED]
> > (702) 407-1814 (voice)
> > (702) 407-1824 (fax)
> >
> >
> >
> > - Original Message -
> > From: "Gerstel, Rachel" <[EMAIL PROTECTED]>
> > To: <[EMAIL PROTECTED]>
> > Sent: Thursday, January 23, 2003 8:25 AM
> > Subject: Administrator in need of help on new install
> >
> >
> >
> >>Hello All,
> >>
> >>Apologies if this has already been covered, but I have not been able to
> >
> > find
> >
> >>a similar problem in the archives.
> >>
> >>I have no experience with xml whatsoever and have a brand-new developer
> >
> > with
> >
> >>no experience whatsoever wanting to start playing around with cocoon.
> >>
> >>I have installed: Tomcat 4.0.4, Apache 1.3.26 and Cocoon 2.

Re: Administrator in need of help on new install

2003-01-23 Thread Jim McCullough
Perhaps I also should have asked it you are able
to access Cocoon by specifying the Tomcat port:

http://mymachine.com:8080/cocoon

or whatever port Tomcat is listening on, usually 8080.

If the cocoon welcom page is displaying properly when
accessing Tomcat directly - then there is really only
one line out of the httpd.conf file that matters:

JkMount /cocoon/* ajp13

you can also setup an alias to cocoon

Alias /cocoon "[path-to-cocoon]"

These are the only lines in the httpd.conf file that
refer to cocoon and should get cocoon showing up
when using http://mymachine.com/cocoon

Obviously the above lines would need to be included
under the specific virtual host in your httpd.conf file if you
are using virtual hosts, or under the default host.


Jim


Jim McCullough
Risk Analytics Inc. - Las Vegas
Software Engineering
[EMAIL PROTECTED]
[EMAIL PROTECTED]
(702) 407-1814 (voice)
(702) 407-1824 (fax)



- Original Message -
From: "SAXESS - Hussayn Dabbous" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, January 23, 2003 8:41 AM
Subject: Re: Administrator in need of help on new install


> Hy,
>
> can you send your tomcat/apache/cocoon config files ?
> That should be a solvable problem ...
>
> If the mailing list agent refuses your email (due to size
> limitations) you can send it directly to my personal
> email adress if you like...
>
> regards, hussayn
>
> Jim McCullough wrote:
> > Have you setup a JkMount in your httpd.conf file
> > for cocoon?
> >
> > JkMount /cocoon/* ajp13
> >
> >
> > Jim McCullough
> > Risk Analytics Inc. - Las Vegas
> > Software Engineering
> > [EMAIL PROTECTED]
> > [EMAIL PROTECTED]
> > (702) 407-1814 (voice)
> > (702) 407-1824 (fax)
> >
> >
> >
> > - Original Message -----
> > From: "Gerstel, Rachel" <[EMAIL PROTECTED]>
> > To: <[EMAIL PROTECTED]>
> > Sent: Thursday, January 23, 2003 8:25 AM
> > Subject: Administrator in need of help on new install
> >
> >
> >
> >>Hello All,
> >>
> >>Apologies if this has already been covered, but I have not been able to
> >
> > find
> >
> >>a similar problem in the archives.
> >>
> >>I have no experience with xml whatsoever and have a brand-new developer
> >
> > with
> >
> >>no experience whatsoever wanting to start playing around with cocoon.
> >>
> >>I have installed: Tomcat 4.0.4, Apache 1.3.26 and Cocoon 2.0.4 (also
> >>uninstalled and tried 2.0.3, but got the same results). I have a feeling
I
> >>am missing some really basic item, but haven't been able to figure it
out
> >>and am getting a headache so I hope someone can please help. :--)
> >>
> >>My tomcat and apache are configured with mod_jk to talk to each other
(via
> >>auto config in tomcat ../conf/auto/mod_jk.conf) with apache serving
static
> >>pages and tomcat serving servlet, java stuff. That works fine. I put the
> >>cocoon.war into webapps and it auto-deploys, no error messages
anywhere!!!
> >>But when I click on http://mymachin/cocoon the only thing I see is the
> >>directory index. No welcome page that I keep hearing so much about.
> >>
> >>Can someone smack me over the head and tell me what vital thing I have
> >>missed?
> >>
> >>Thanks,
> >>Rachel
> >>
> >>
> >>-
> >>Please check that your question  has not already been answered in the
> >>FAQ before posting. <http://xml.apache.org/cocoon/faq/index.html>
> >>
> >>To unsubscribe, e-mail: <[EMAIL PROTECTED]>
> >>For additional commands, e-mail:   <[EMAIL PROTECTED]>
> >
> >
> >
> > -
> > Please check that your question  has not already been answered in the
> > FAQ before posting. <http://xml.apache.org/cocoon/faq/index.html>
> >
> > To unsubscribe, e-mail: <[EMAIL PROTECTED]>
> > For additional commands, e-mail:   <[EMAIL PROTECTED]>
> >
>
> --
> Dr. Hussayn Dabbous
> SAXESS Software Design GmbH
> Neuenhöfer Allee 125
> 50935 Köln
> Telefon: +49-221-56011-0
> Fax: +49-221-56011-20
> E-Mail:  [EMAIL PROTECTED]
>
>
> -
> Please check that your question  has not already been answered in the
> FAQ before posting. <http://xml.apache.org/cocoon/faq/index.html>
>
> To unsubscribe, e-mail: <[EMAIL PROTECTED]>
> For additional commands, e-mail:   <[EMAIL PROTECTED]>


-
Please check that your question  has not already been answered in the
FAQ before posting. <http://xml.apache.org/cocoon/faq/index.html>

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




Re: Administrator in need of help on new install

2003-01-23 Thread SAXESS - Hussayn Dabbous
Hy,

can you send your tomcat/apache/cocoon config files ?
That should be a solvable problem ...

If the mailing list agent refuses your email (due to size
limitations) you can send it directly to my personal
email adress if you like...

regards, hussayn

Jim McCullough wrote:

Have you setup a JkMount in your httpd.conf file
for cocoon?

JkMount /cocoon/* ajp13


Jim McCullough
Risk Analytics Inc. - Las Vegas
Software Engineering
[EMAIL PROTECTED]
[EMAIL PROTECTED]
(702) 407-1814 (voice)
(702) 407-1824 (fax)



- Original Message -
From: "Gerstel, Rachel" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, January 23, 2003 8:25 AM
Subject: Administrator in need of help on new install




Hello All,

Apologies if this has already been covered, but I have not been able to


find


a similar problem in the archives.

I have no experience with xml whatsoever and have a brand-new developer


with


no experience whatsoever wanting to start playing around with cocoon.

I have installed: Tomcat 4.0.4, Apache 1.3.26 and Cocoon 2.0.4 (also
uninstalled and tried 2.0.3, but got the same results). I have a feeling I
am missing some really basic item, but haven't been able to figure it out
and am getting a headache so I hope someone can please help. :--)

My tomcat and apache are configured with mod_jk to talk to each other (via
auto config in tomcat ../conf/auto/mod_jk.conf) with apache serving static
pages and tomcat serving servlet, java stuff. That works fine. I put the
cocoon.war into webapps and it auto-deploys, no error messages anywhere!!!
But when I click on http://mymachin/cocoon the only thing I see is the
directory index. No welcome page that I keep hearing so much about.

Can someone smack me over the head and tell me what vital thing I have
missed?

Thanks,
Rachel


-
Please check that your question  has not already been answered in the
FAQ before posting. <http://xml.apache.org/cocoon/faq/index.html>

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




-
Please check that your question  has not already been answered in the
FAQ before posting. <http://xml.apache.org/cocoon/faq/index.html>

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



--
Dr. Hussayn Dabbous
SAXESS Software Design GmbH
Neuenhöfer Allee 125
50935 Köln
Telefon: +49-221-56011-0
Fax: +49-221-56011-20
E-Mail:  [EMAIL PROTECTED]


-
Please check that your question  has not already been answered in the
FAQ before posting. <http://xml.apache.org/cocoon/faq/index.html>

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




Re: Administrator in need of help on new install

2003-01-23 Thread Jim McCullough
Have you setup a JkMount in your httpd.conf file
for cocoon?

JkMount /cocoon/* ajp13


Jim McCullough
Risk Analytics Inc. - Las Vegas
Software Engineering
[EMAIL PROTECTED]
[EMAIL PROTECTED]
(702) 407-1814 (voice)
(702) 407-1824 (fax)



- Original Message -
From: "Gerstel, Rachel" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, January 23, 2003 8:25 AM
Subject: Administrator in need of help on new install


> Hello All,
>
> Apologies if this has already been covered, but I have not been able to
find
> a similar problem in the archives.
>
> I have no experience with xml whatsoever and have a brand-new developer
with
> no experience whatsoever wanting to start playing around with cocoon.
>
> I have installed: Tomcat 4.0.4, Apache 1.3.26 and Cocoon 2.0.4 (also
> uninstalled and tried 2.0.3, but got the same results). I have a feeling I
> am missing some really basic item, but haven't been able to figure it out
> and am getting a headache so I hope someone can please help. :--)
>
> My tomcat and apache are configured with mod_jk to talk to each other (via
> auto config in tomcat ../conf/auto/mod_jk.conf) with apache serving static
> pages and tomcat serving servlet, java stuff. That works fine. I put the
> cocoon.war into webapps and it auto-deploys, no error messages anywhere!!!
> But when I click on http://mymachin/cocoon the only thing I see is the
> directory index. No welcome page that I keep hearing so much about.
>
> Can someone smack me over the head and tell me what vital thing I have
> missed?
>
> Thanks,
> Rachel
>
>
> -
> Please check that your question  has not already been answered in the
> FAQ before posting. <http://xml.apache.org/cocoon/faq/index.html>
>
> To unsubscribe, e-mail: <[EMAIL PROTECTED]>
> For additional commands, e-mail:   <[EMAIL PROTECTED]>


-
Please check that your question  has not already been answered in the
FAQ before posting. <http://xml.apache.org/cocoon/faq/index.html>

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




Administrator in need of help on new install

2003-01-23 Thread Gerstel, Rachel
Hello All,

Apologies if this has already been covered, but I have not been able to find
a similar problem in the archives.

I have no experience with xml whatsoever and have a brand-new developer with
no experience whatsoever wanting to start playing around with cocoon. 

I have installed: Tomcat 4.0.4, Apache 1.3.26 and Cocoon 2.0.4 (also
uninstalled and tried 2.0.3, but got the same results). I have a feeling I
am missing some really basic item, but haven't been able to figure it out
and am getting a headache so I hope someone can please help. :--)

My tomcat and apache are configured with mod_jk to talk to each other (via
auto config in tomcat ../conf/auto/mod_jk.conf) with apache serving static
pages and tomcat serving servlet, java stuff. That works fine. I put the
cocoon.war into webapps and it auto-deploys, no error messages anywhere!!!
But when I click on http://mymachin/cocoon the only thing I see is the
directory index. No welcome page that I keep hearing so much about.

Can someone smack me over the head and tell me what vital thing I have
missed?

Thanks,
Rachel


-
Please check that your question  has not already been answered in the
FAQ before posting. 

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