Re: [Zope] Zope and Tomcat troubles

2006-04-04 Thread Thomas Bennett
If I'm not mistaken, by default out of the package both Zope and Tomcat 
defaults to run on port 8080, don't know about the relation to OpenXchange.  
You need to change one of them.  

As Tino mentioned, Zope port is set in zope.conf.   zope.conf, with the Suse 
10 rpm I used on my notebook, is in /var/opt/zope/default/etc.   Look for  

http-server
 address 8080
http-server


Tomcat port is set in server.xml in the conf directory.  Look for something 
similar to:

!-- Define a non-SSL HTTP/1.1 Connector on port 8080 --
Connector port=8080 maxHttpHeaderSize=8192
   maxThreads=150 minSpareThreads=25 maxSpareThreads=75
   enableLookups=false redirectPort=8443 acceptCount=100
   connectionTimeout=2 disableUploadTimeout=true /
!-- Note : To disable connection timeouts, set connectionTimeout value
 to 0 --

Also, you may want to check your environment to make sure the java paths are 
still correct although not related to a zope installation java paths can sure 
srew things up if they are wrong.  Defaults on Suse 10 are, assuming you 
haven't installed another version of jdk:

JAVA_ROOT=/usr/lib/jvm/jre
JAVA_HOME=/usr/lib/jvm/jre
JAVA_BINDIR=/usr/lib/jvm/jre/bin
JRE_HOME=/usr/lib/jvm/jre

and include /usr/lib/jvm/jre/bin in the PATH.

Thomas

On Friday 31 March 2006 18:25, Mads Munch Hansen wrote:
 Hi,
 Since I installed Zope on my server Tomcat has stoped working, and I was
 wondering if any of you knew of a solution. When I try to load the
 management interface for TomCat, all I get is a blank page, the same
 when I try to log into OpenXchange... I installed zope from the Plone
 Suse 10 rpm bundle on a Suse 10 box.

 I hope this isn't too much off topic, but I'm quite sure Zope related.

 Thanks in advance,
 Mads Munch Hansen

-- 

Thomas McMillan Grant Bennett   Appalachian State University
Computer Consultant III P O Box
University Library  Boone, North Carolina 28608

Please use the Systems Help Desk at http://linux.library.appstate.edu/help
All in Systems receive an email with each submission.

___
Zope maillist  -  Zope@zope.org
http://mail.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope-dev )


[Zope] Zope and Tomcat troubles

2006-03-31 Thread Mads Munch Hansen
Hi,
Since I installed Zope on my server Tomcat has stoped working, and I was
wondering if any of you knew of a solution. When I try to load the
management interface for TomCat, all I get is a blank page, the same
when I try to log into OpenXchange... I installed zope from the Plone
Suse 10 rpm bundle on a Suse 10 box.

I hope this isn't too much off topic, but I'm quite sure Zope related.

Thanks in advance,
Mads Munch Hansen



signature.asc
Description: OpenPGP digital signature
___
Zope maillist  -  Zope@zope.org
http://mail.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope-dev )


Re: [Zope] Zope and Tomcat troubles

2006-03-31 Thread Tino Wildenhain
Mads Munch Hansen wrote:
 Hi,
 Since I installed Zope on my server Tomcat has stoped working, and I was
 wondering if any of you knew of a solution. When I try to load the
 management interface for TomCat, all I get is a blank page, the same
 when I try to log into OpenXchange... I installed zope from the Plone
 Suse 10 rpm bundle on a Suse 10 box.
 
 I hope this isn't too much off topic, but I'm quite sure Zope related.

At best its Suse related... But check:

1) did the package you installed conflict with tomcat and
   therefore removed components?

2) check with netstat -lntp (as root) which program binds
   which port (zope is there as python) and if zope runs
   on a port you need for tomcat just change the settings
   in zope.conf and restart your zope.

Regards
Tino
___
Zope maillist  -  Zope@zope.org
http://mail.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope-dev )


[Zope] Zope and Tomcat

2000-07-27 Thread Christophe Lombart

Hi all,

I'm currently analysing this wonderfull product named Zope and I'm wondering 
if it is possible to integrate Zope with the JSP technology via why not 
Tomcat. The reason is the devevelopment team has a good experience with JSP 
and our current project - write in java - should plugged in a portal like 
ZOPE can do !


Thanks you for your information
Christophe Lombart


Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com


___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




Re: [Zope] Zope and Tomcat

2000-07-27 Thread J. Atwood

To start you might want to look at some benchmarking I did between Zope and
Tomcat 

http://www.zope.org/Members/BwanaZulia/zope_benchmarks/tomcat1.html (1 of 4
rounds)

To answer your question though, since Zope can sit behind Apache (cgi based,
proxy pass, etc) and Tomcat can sit behind Apache (writes its own config
file NOTE TO DC THIS IS REALLY NICE!) you should be able to mix and match.
Tomcat will not server Zope and Zope will not serve Tomcat but you could get
them to talk to the same databases and serve off the same instance of
Apache.

Good luck.

J

 From: "Christophe Lombart" [EMAIL PROTECTED]
 Date: Thu, 27 Jul 2000 16:25:05 CEST
 To: [EMAIL PROTECTED]
 Subject: [Zope] Zope and Tomcat
 
 Hi all,
 
 I'm currently analysing this wonderfull product named Zope and I'm wondering
 if it is possible to integrate Zope with the JSP technology via why not
 Tomcat. The reason is the devevelopment team has a good experience with JSP
 and our current project - write in java - should plugged in a portal like
 ZOPE can do !
 
 
 Thanks you for your information
 Christophe Lombart
 
 
 Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com
 
 
 ___
 Zope maillist  -  [EMAIL PROTECTED]
 http://lists.zope.org/mailman/listinfo/zope
 **   No cross posts or HTML encoding!  **
 (Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )
 
 


___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




Re: [Zope] Zope and Tomcat

2000-07-27 Thread Christophe Lombart


There is a plan to integrate the java technology (mainly JSP  servlet) into 
the Zope engine in order to use only one web extension for the content 
management and java program.

Christophe


From: "J. Atwood" [EMAIL PROTECTED]
To: Christophe Lombart [EMAIL PROTECTED], [EMAIL PROTECTED]
Subject: Re: [Zope] Zope and Tomcat
Date: Thu, 27 Jul 2000 10:49:18 -0400

To start you might want to look at some benchmarking I did between Zope and
Tomcat

http://www.zope.org/Members/BwanaZulia/zope_benchmarks/tomcat1.html (1 of 4
rounds)

To answer your question though, since Zope can sit behind Apache (cgi 
based,
proxy pass, etc) and Tomcat can sit behind Apache (writes its own config
file NOTE TO DC THIS IS REALLY NICE!) you should be able to mix and match.
Tomcat will not server Zope and Zope will not serve Tomcat but you could 
get
them to talk to the same databases and serve off the same instance of
Apache.

Good luck.

J

  From: "Christophe Lombart" [EMAIL PROTECTED]
  Date: Thu, 27 Jul 2000 16:25:05 CEST
  To: [EMAIL PROTECTED]
  Subject: [Zope] Zope and Tomcat
 
  Hi all,
 
  I'm currently analysing this wonderfull product named Zope and I'm 
wondering
  if it is possible to integrate Zope with the JSP technology via why not
  Tomcat. The reason is the devevelopment team has a good experience with 
JSP
  and our current project - write in java - should plugged in a portal 
like
  ZOPE can do !
 
 
  Thanks you for your information
  Christophe Lombart
 
  
  Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com
 
 
  ___
  Zope maillist  -  [EMAIL PROTECTED]
  http://lists.zope.org/mailman/listinfo/zope
  **   No cross posts or HTML encoding!  **
  (Related lists -
  http://lists.zope.org/mailman/listinfo/zope-announce
  http://lists.zope.org/mailman/listinfo/zope-dev )
 
 


___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists -
  http://lists.zope.org/mailman/listinfo/zope-announce
  http://lists.zope.org/mailman/listinfo/zope-dev )



Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com


___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




Re: [Zope] Zope and Tomcat

2000-07-27 Thread Jacques Exelrud

Do you have a timeframe for this to avaiable ?

There is a plan to integrate the java technology (mainly JSP  servlet)
into
 the Zope engine in order to use only one web extension for the content
 management and java program.
Christophe



___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )