From mukeshprasad_ddn at indiatimes.com Thu Apr 1 05:34:57 2004 From: mukeshprasad_ddn at indiatimes.com (mukeshprasad_ddn) Date: Thu, 01 Apr 2004 11:04:57 +0530 Subject: [redhat-ccm-list] query about pdl Message-ID: <200404010506.KAA20211@WS0005.indiatimes.com> hi iam writing a query in PDL file for select and passing a string value (2,4,6)from java like this arrList = dependents.getSpouseList(id,1,"2,6,7"); and iam collecting in a string variable and passing in query query.setParameter("inputDependentType",passedDependentType); and collecting in pdl query variable like this and eventdependent.dependenttype in(:inputDependentType) i have problem this (2,4,6) value is not comming hare and not able to further proceeds and when i pass one value ("3") then it is working plz help me Get Your Private, Free E-mail from Indiatimes at http://email.indiatimes.com Buy The Best In BOOKS at http://www.bestsellers.indiatimes.com Bid for for Air Tickets @ Re.1 on Air Sahara Flights. Just log on to http://airsahara.indiatimes.com and Bid Now! From mukeshprasad_ddn at indiatimes.com Thu Apr 1 07:08:53 2004 From: mukeshprasad_ddn at indiatimes.com (mukeshprasad_ddn) Date: Thu, 01 Apr 2004 12:38:53 +0530 Subject: [redhat-ccm-list] to many clients in postgres Message-ID: <200404010640.MAA22343@WS0005.indiatimes.com> hi iam working on postgres then iam getting to many clients problem i dont get why this problem is comming plz give me solution mukesh Get Your Private, Free E-mail from Indiatimes at http://email.indiatimes.com Buy The Best In BOOKS at http://www.bestsellers.indiatimes.com Bid for for Air Tickets @ Re.1 on Air Sahara Flights. Just log on to http://airsahara.indiatimes.com and Bid Now! From emmanuel.gaillot at thales-is.com Thu Apr 1 07:53:42 2004 From: emmanuel.gaillot at thales-is.com (Emmanuel Gaillot) Date: 01 Apr 2004 09:53:42 +0200 Subject: [redhat-ccm-list] query about pdl In-Reply-To: <200404010506.KAA20211@WS0005.indiatimes.com> References: <200404010506.KAA20211@WS0005.indiatimes.com> Message-ID: <1080806022.4644.3.camel@devpt04> Greetings, > hi iam writing a query in PDL file for select > and passing a string value (2,4,6)from java like this (...) > i have problem this (2,4,6) value is not comming hare > and not able to further proceeds and when i pass one value ("3") then > it is working How do you determine that the "(2,4,6)" value doesn't go through? That the "3" value does? What does the SQL query in which you inject those values look like? -- Emmanuel. From mukeshprasad_ddn at indiatimes.com Thu Apr 1 09:34:34 2004 From: mukeshprasad_ddn at indiatimes.com (mukeshprasad_ddn) Date: Thu, 01 Apr 2004 15:04:34 +0530 Subject: [redhat-ccm-list] how to debbug pdl Message-ID: <200404010906.OAA11842@WS0005.indiatimes.com> hi is there any way to debbuing the pdl files through command line or what ever you konw plz give me solution mukesh Get Your Private, Free E-mail from Indiatimes at http://email.indiatimes.com Buy The Best In BOOKS at http://www.bestsellers.indiatimes.com Bid for for Air Tickets @ Re.1 on Air Sahara Flights. Just log on to http://airsahara.indiatimes.com and Bid Now! From mukeshprasad_ddn at indiatimes.com Thu Apr 1 16:28:21 2004 From: mukeshprasad_ddn at indiatimes.com (mukeshprasad_ddn) Date: Thu, 01 Apr 2004 21:58:21 +0530 Subject: [redhat-ccm-list] query about pdl Message-ID: <200404011559.VAA03325@WS0005.indiatimes.com> hi i was worked on postgres query and i get problem in pdl i dont know how to debbug pdl file plz give me any solution if u know mukesh Get Your Private, Free E-mail from Indiatimes at http://email.indiatimes.com Buy The Best In BOOKS at http://www.bestsellers.indiatimes.com Bid for for Air Tickets @ Re.1 on Air Sahara Flights. Just log on to http://airsahara.indiatimes.com and Bid Now! From mukeshprasad_ddn at indiatimes.com Thu Apr 1 16:30:46 2004 From: mukeshprasad_ddn at indiatimes.com (mukeshprasad_ddn) Date: Thu, 01 Apr 2004 22:00:46 +0530 Subject: [redhat-ccm-list] to many clients Message-ID: <200404011602.VAA03857@WS0005.indiatimes.com> hi i was worked on postgres and i got problem of too many clients in postgres i dont kow how to solve this plz gide me mukesh Get Your Private, Free E-mail from Indiatimes at http://email.indiatimes.com Buy The Best In BOOKS at http://www.bestsellers.indiatimes.com Bid for for Air Tickets @ Re.1 on Air Sahara Flights. Just log on to http://airsahara.indiatimes.com and Bid Now! From goldfish at i-manila.com.ph Fri Apr 2 19:54:31 2004 From: goldfish at i-manila.com.ph (Jun Yamog) Date: 03 Apr 2004 03:54:31 +0800 Subject: [redhat-ccm-list] query about pdl In-Reply-To: <1080806022.4644.3.camel@devpt04> References: <200404010506.KAA20211@WS0005.indiatimes.com> <1080806022.4644.3.camel@devpt04> Message-ID: <1080935641.2853.134.camel@draco.vnet> Hi, Its possible to do this. I forgot to answer my own question, I think its related to this post. https://listman.redhat.com/archives/redhat-ccm-list/2004-March/msg00004.html Anyway here is how to pass in multiple values to a query param. In your pdl you may have something like this. select * form foo where bar in (:barparam); In you java code you will use an ArrayList. So its something like this. ArrayList barParamList = new ArrayList(); (put values to array list) (call the query... SessionManager.getSession().retrieveQuery.... ) myquery.setParameter("barparam", barParamList); So by using an ArrayList the pdl will parse it and put them in separate values. I thank RedHat for originally answering my inquiry, I hope this helps you and someone reading this in the future. Jun On Thu, 2004-04-01 at 15:53, Emmanuel Gaillot wrote: > Greetings, > > > hi iam writing a query in PDL file for select > > and passing a string value (2,4,6)from java like this > (...) > > i have problem this (2,4,6) value is not comming hare > > and not able to further proceeds and when i pass one value ("3") then > > it is working > > How do you determine that the "(2,4,6)" value doesn't go through? That > the "3" value does? What does the SQL query in which you inject those > values look like? > > -- Emmanuel. > From goldfish at i-manila.com.ph Fri Apr 2 20:02:07 2004 From: goldfish at i-manila.com.ph (Jun Yamog) Date: 03 Apr 2004 04:02:07 +0800 Subject: [redhat-ccm-list] how to debbug pdl In-Reply-To: <200404010906.OAA11842@WS0005.indiatimes.com> References: <200404010906.OAA11842@WS0005.indiatimes.com> Message-ID: <1080936127.2853.142.camel@draco.vnet> Hi, Normally validation of pdl is done during startup, so syntax errors are be caught on startup. Wrong queries or operation will show up on the log files, it should also tell what the db has returned as the error. You can also see the query and the bind variable values, so its possible to cut and paste and run the query by hand. If you are looking at a performance problem, turning on developer support will help a lot. Hope this helps. Jun P.S. I do recommend to build complex queries out of rhea and use your favorite db tools. After finishing and testing the query then cut and paste to the pdl file. Change the needed parameters to bind vars. Its easier that way. On Thu, 2004-04-01 at 17:34, mukeshprasad_ddn wrote: > hi is there any way to debbuing the pdl files through command line or what ever you konw plz give me solution mukesh > > Get Your Private, Free E-mail from Indiatimes at http://email.indiatimes.com > > Buy The Best In BOOKS at http://www.bestsellers.indiatimes.com > > Bid for for Air Tickets @ Re.1 on Air Sahara Flights. Just log on to http://airsahara.indiatimes.com and Bid Now! > From goldfish at i-manila.com.ph Fri Apr 2 20:06:42 2004 From: goldfish at i-manila.com.ph (Jun Yamog) Date: 03 Apr 2004 04:06:42 +0800 Subject: [redhat-ccm-list] to many clients In-Reply-To: <200404011602.VAA03857@WS0005.indiatimes.com> References: <200404011602.VAA03857@WS0005.indiatimes.com> Message-ID: <1080936398.2853.147.camel@draco.vnet> Hi, I think you will need to configure pg to accept more connections. It just a parameter on the config file of postgres or passing a switch when starting up postgres. You can try reading the postgres docs. http://www.postgresql.org/docs/7.3/static/admin.html Jun On Fri, 2004-04-02 at 00:30, mukeshprasad_ddn wrote: > hi i was worked on postgres and i got problem of too many clients in postgres > i dont kow how to solve this plz gide me > mukesh > > Get Your Private, Free E-mail from Indiatimes at http://email.indiatimes.com > > Buy The Best In BOOKS at http://www.bestsellers.indiatimes.com > > Bid for for Air Tickets @ Re.1 on Air Sahara Flights. Just log on to http://airsahara.indiatimes.com and Bid Now! > From mukeshprasad_ddn at indiatimes.com Mon Apr 5 13:13:45 2004 From: mukeshprasad_ddn at indiatimes.com (mukeshprasad_ddn) Date: Mon, 05 Apr 2004 18:43:45 +0530 Subject: [redhat-ccm-list] how to deploy my project Message-ID: <200404051244.SAA21573@WS0005.indiatimes.com> hi, we are working on a WAF project. The project is completed and we have to deploy on to the client machine. This machine does not have the development environment set up. How do we deploy on a machine which does not have the development environment? I do not want to create a development environment there. Is ther e a way out? Get Your Private, Free E-mail from Indiatimes at http://email.indiatimes.com Buy The Best In BOOKS at http://www.bestsellers.indiatimes.com Bid for for Air Tickets @ Re.1 on Air Sahara Flights. Just log on to http://airsahara.indiatimes.com and Bid Now! From chris at runtime-collective.com Mon Apr 5 15:47:00 2004 From: chris at runtime-collective.com (Chris Burdess) Date: Mon, 5 Apr 2004 16:47:00 +0100 Subject: [redhat-ccm-list] Error loading APLAWS+ applications (ccm load-bundle step) Message-ID: <79D0BDD9-8718-11D8-92CA-000D934FF4B2@runtime-collective.com> I'm investigating the porting of APLAWS+ (from aplaws-plus-1.0.0-1-src.zip) to various systems, and am in the process of building from scratch and installing from the zipfiles without recourse to the RPMs. When I get to the step of populating the database it fails. The command I issue is: ccm load --interactive ccm-core ccm-cms ccm-cms-assets-relatedlink ccm-ldn-dublin ccm-cms-types-contact ccm-cms-types-esdservice ccm-cms-types-article ccm-cms-types-filestorageitem ccm-cms-types-mparticle ccm-cms-types-newsitem ccm-cms-types-pressrelease ccm-cms-types-formitem ccm-cms-types-formsectionitem ccm-cms-types-inlinesite ccm-ldn-xmlfeed ccm-ldn-util ccm-ldn-atoz ccm-ldn-rss ccm-ldn-portal ccm-ldn-navigation ccm-ldn-search ccm-ldn-shortcuts ccm-ldn-subsite ccm-ldn-terms ccm-ldn-aplaws ccm-forum ccm-ldn-importer ccm-ldn-theme --parameter-file $prefix/share/ccm-tools/bundles/aplaws-plus-standard/ integration.properties The result is: ... 2004-04-05 15:02:03,321 [ main] INFO packaging.Loader - Running initializer com.arsdigita.london.rss.Initializer 2004-04-05 15:02:03,898 [ main] ERROR domain.InstantiatorRegistryException - Registering non existent ObjectType com.arsdigita.london.rss.RSS against instantiator class com.arsdigita.london.rss.installer.Initializer$1 Possible causes are a missing PDL file, or an incorrect BASE_DATA_OBJECT_TYPE com.arsdigita.domain.InstantiatorRegistryException: Registering non existent ObjectType com.arsdigita.london.rss.RSS against instantiator class com.arsdigita.london.rss.installer.Initializer$1 Possible causes are a missing PDL file, or an incorrect BASE_DATA_OBJECT_TYPE at com.arsdigita.domain.DomainObjectFactory.registerInstantiator(DomainObje ctFactory.java:269) at com.arsdigita.web.ApplicationSetup.process(ApplicationSetup.java:332) at com.arsdigita.web.ApplicationSetup.run(ApplicationSetup.java:212) at com.arsdigita.london.rss.installer.Initializer.setupChannelControlCenter (Initializer.java:99) at com.arsdigita.london.rss.installer.Initializer.doStartup(Initializer.jav a:80) at com.arsdigita.kernel.BaseInitializer$1.excurse(BaseInitializer.java:53) at com.arsdigita.kernel.KernelExcursion.run(KernelExcursion.java:57) at com.arsdigita.kernel.BaseInitializer.startup(BaseInitializer.java:56) at com.arsdigita.initializer.Script.startup(Script.java:231) at com.arsdigita.initializer.Script.startup(Script.java:202) at com.arsdigita.runtime.LegacyInitializer.init(LegacyInitializer.java: 120) at com.arsdigita.runtime.CompoundInitializer.init(CompoundInitializer.java: 139) at com.arsdigita.runtime.CompoundInitializer.init(CompoundInitializer.java: 139) at com.arsdigita.runtime.Startup.run(Startup.java:221) at com.arsdigita.packaging.Loader.loadData(Loader.java:111) at com.arsdigita.packaging.Load.run(Load.java:348) at com.arsdigita.packaging.MasterTool.main(MasterTool.java:91) I have also attempted to run ccm load-bundle --interactive aplaws-plus-standard The result is: ccm load --interactive aplaws-plus-standard unable to locate package: aplaws-plus-standard despite the fact that ccm-bundle-aplaws-plus-standard is installed. Any insight into this failure would be greatly appreciated. From berrange at redhat.com Mon Apr 5 16:01:26 2004 From: berrange at redhat.com (Daniel P. Berrange) Date: Mon, 5 Apr 2004 17:01:26 +0100 Subject: [redhat-ccm-list] Error loading APLAWS+ applications (ccm load-bundle step) In-Reply-To: <79D0BDD9-8718-11D8-92CA-000D934FF4B2@runtime-collective.com>; from chris@runtime-collective.com on Mon, Apr 05, 2004 at 04:47:00PM +0100 References: <79D0BDD9-8718-11D8-92CA-000D934FF4B2@runtime-collective.com> Message-ID: <20040405170126.I17740@redhat.com> On Mon, Apr 05, 2004 at 04:47:00PM +0100, Chris Burdess wrote: > I'm investigating the porting of APLAWS+ (from > aplaws-plus-1.0.0-1-src.zip) to various systems, and am in the process > of building from scratch and installing from the zipfiles without > recourse to the RPMs. Why not just use the binary ZIP files that we already provide along with the RPMs ? These are pre-tested ZIPs for Windows and any other platform without RPM. [snip long error] Was that error from the original binaries we distributed, or from your own re-built ZIPs. I can't reproduce the error with the formal release, so I asume the latter. > I have also attempted to run > > ccm load-bundle --interactive aplaws-plus-standard > > The result is: > > ccm load --interactive aplaws-plus-standard > unable to locate package: aplaws-plus-standard > > despite the fact that ccm-bundle-aplaws-plus-standard is installed. The 'ccm load' command is for loading applications. Since 'ccm-bundle-aplaws-plus-standard' isn't an application, using the 'ccm load' command in this way isn't appropriate. The ccm-bundle-* packages are intended for use with the '-bundle' variants of load and hostinit. Bundles are a mere - they allow you to simply specify a single bundle name to 'load-bundle' instead of listed 40 or so individual applications. A bundle also provides a set of config properties for integrating the applications in a certain way specific to APLAWS requirements. Dan. -- |=- Daniel P. Berrange - berrange at redhat.com -=| |=- Red Hat, 338 Euston Road, London, NW1 3BT. +44 (0)7977 267 243 -=| |=- -=| |=- GnuPG: 7D3B9505 F3C9 553F A1DA 4AC2 5648 23C1 B3DF F742 7D3B 9505 -=| -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available URL: From chris at runtime-collective.com Mon Apr 5 16:25:48 2004 From: chris at runtime-collective.com (Chris Burdess) Date: Mon, 5 Apr 2004 17:25:48 +0100 Subject: [Aplaws-devel] Re: [redhat-ccm-list] Error loading APLAWS+ applications (ccm load-bundle step) In-Reply-To: <20040405170126.I17740@redhat.com> References: <79D0BDD9-8718-11D8-92CA-000D934FF4B2@runtime-collective.com> <20040405170126.I17740@redhat.com> Message-ID: Daniel P. Berrange wrote: >> I'm investigating the porting of APLAWS+ (from >> aplaws-plus-1.0.0-1-src.zip) to various systems, and am in the process >> of building from scratch and installing from the zipfiles without >> recourse to the RPMs. > > Why not just use the binary ZIP files that we already provide > along with the RPMs ? These are pre-tested ZIPs for Windows and > any other platform without RPM. Because 1. I will almost inevitably have to modify the code at some point 2. I have no guarantee that the binaries can be regenerated from the sources > Was that error from the original binaries we distributed, > or from your own re-built ZIPs. I can't reproduce the error > with the formal release, so I asume the latter. The latter. I attach an sh script by which the installation was accomplished; perhaps this could be incorporated into a standard autotools makefile that would facilitate building of the entire application? >> I have also attempted to run >> >> ccm load-bundle --interactive aplaws-plus-standard >> >> The result is: >> >> ccm load --interactive aplaws-plus-standard >> unable to locate package: aplaws-plus-standard >> >> despite the fact that ccm-bundle-aplaws-plus-standard is installed. > > The 'ccm load' command is for loading applications. > > Since 'ccm-bundle-aplaws-plus-standard' isn't an application, using > the 'ccm load' command in this way isn't appropriate. The ccm-bundle-* > packages are intended for use with the '-bundle' variants of load > and hostinit. > > Bundles are a mere - they allow you to simply specify a single > bundle name to 'load-bundle' instead of listed 40 or so individual > applications. A bundle also provides a set of config properties for > integrating the applications in a certain way specific to APLAWS > requirements. I know. The "ccm load ..." is the /output/ of the "ccm load-bundle ..." command. -------------- next part -------------- A non-text attachment was scrubbed... Name: install-aplaws Type: application/octet-stream Size: 3285 bytes Desc: not available URL: From dgregor at redhat.com Tue Apr 6 04:44:03 2004 From: dgregor at redhat.com (Dennis Gregorovic) Date: Tue, 06 Apr 2004 00:44:03 -0400 Subject: [redhat-ccm-list] how to deploy my project In-Reply-To: <200404051244.SAA21573@WS0005.indiatimes.com> References: <200404051244.SAA21573@WS0005.indiatimes.com> Message-ID: <1081226642.15383.8.camel@toad.boston.redhat.com> There is a ccm-scripts package available with the nightly builds which contains scripts that can be used to create RPMs/ZIPs for deployment. -- Dennis On Mon, 2004-04-05 at 09:13, mukeshprasad_ddn wrote: > hi, > we are working on a WAF project. The project is completed and we have to deploy on to the client machine. This machine does not have the development environment set up. How do we deploy on a machine which does not have the development environment? I do not want to create a development environment there. Is ther e a way out? > Get Your Private, Free E-mail from Indiatimes at http://email.indiatimes.com > > Buy The Best In BOOKS at http://www.bestsellers.indiatimes.com > > Bid for for Air Tickets @ Re.1 on Air Sahara Flights. Just log on to http://airsahara.indiatimes.com and Bid Now! > From chris at runtime-collective.com Tue Apr 6 08:19:30 2004 From: chris at runtime-collective.com (Chris Burdess) Date: Tue, 6 Apr 2004 09:19:30 +0100 Subject: [Aplaws-devel] Re: [redhat-ccm-list] Error loading APLAWS+ applications (ccm load-bundle step) In-Reply-To: <003301c41b30$b4fe95a0$0100a8c0@Bess> References: <79D0BDD9-8718-11D8-92CA-000D934FF4B2@runtime-collective.com> <20040405170126.I17740@redhat.com> <003301c41b30$b4fe95a0$0100a8c0@Bess> Message-ID: <20E32CA0-87A3-11D8-A07E-000D934FF4B2@runtime-collective.com> Oli Sharpe wrote: > I too am interested in building a 'round trip' script that makes it > easy to > pull apart the APLAWS+ source and then rebuild it. Attached is an > experimental > script that I hacked together the other day to play with building all > of the > javadoc for all of the packages. > > You may find some of it useful - in particular the script contains > some regular > expressions for ripping out the package name of a component from its > file name > (other than that it's pretty dull ;-) ) Thanks, although this: cd aplaws-plus-src-1.$1.$2/zip suggests that you're working from a different distribution - not the aplaws-plus-1.0.0-1-src.zip from sourceforge, which doesn't contain a zip subdirectory... ? From mukeshprasad_ddn at indiatimes.com Tue Apr 6 10:32:24 2004 From: mukeshprasad_ddn at indiatimes.com (mukeshprasad_ddn) Date: Tue, 06 Apr 2004 16:02:24 +0530 Subject: [redhat-ccm-list] query about ccm-script Message-ID: <200404061003.PAA06548@WS0005.indiatimes.com> hi Iam working on WAF project poject is allmost complete i want to know how to use ccm-script what is the command for run this and how to make rpm packages mukesh Get Your Private, Free E-mail from Indiatimes at http://email.indiatimes.com Buy The Best In BOOKS at http://www.bestsellers.indiatimes.com Bid for for Air Tickets @ Re.1 on Air Sahara Flights. Just log on to http://airsahara.indiatimes.com and Bid Now! From dgregor at redhat.com Tue Apr 6 11:01:01 2004 From: dgregor at redhat.com (Dennis Gregorovic) Date: Tue, 06 Apr 2004 07:01:01 -0400 Subject: [redhat-ccm-list] query about ccm-script In-Reply-To: <200404061003.PAA06548@WS0005.indiatimes.com> References: <200404061003.PAA06548@WS0005.indiatimes.com> Message-ID: <1081249260.15383.25.camel@toad.boston.redhat.com> * install ccm-scripts * open new shell (or run . /etc/profile) * ccm-profile * cddev * if [ -x ./rollingbuild.sh ]; then ./rollingbuild.sh; else $CCM_SCRIPTS_HOME/bin/build.sh fi Also, you may need to add %_topdir /var/ccm-devel/rpm/ to ~/.rpmmacros -- Dennis On Tue, 2004-04-06 at 06:32, mukeshprasad_ddn wrote: > hi > Iam working on WAF project poject is allmost complete > i want to know how to use ccm-script what is the command for run this and how to make rpm packages > mukesh > Get Your Private, Free E-mail from Indiatimes at http://email.indiatimes.com > > Buy The Best In BOOKS at http://www.bestsellers.indiatimes.com > > Bid for for Air Tickets @ Re.1 on Air Sahara Flights. Just log on to http://airsahara.indiatimes.com and Bid Now! > From docngeek at yahoo.ca Wed Apr 7 03:01:31 2004 From: docngeek at yahoo.ca (Howard Thompson) Date: Tue, 6 Apr 2004 23:01:31 -0400 Subject: [redhat-ccm-list] CONFLICTING PACKAGES on CCM LOAD Message-ID: Greetings, I think I have a mess. I had a working 6.1Beta ccm-core, ccm-cms & ccm-portal. Then I figured I should checkout additional modules/packages. I tried adding ccm-forum & ccm-glossary. The main servlet then no longer worked (ie. http://localhost:8080/ccm). I tried dropping my database and redoing my ccm loads. Then I tried erasing all my rpms and starting over with just what I had working before. After re-installing the RPMs and trying to do the ccm loads I got/get: " com.arsdigita.packaging.MasterTool load --interactive ccm-core ccm-cms ccm-portalserver conflicting packages: [ccm-core, ccm-portalserver, ccm-cms]" I've done some wondering around whether my RPM database is corrupted or whether there is something left over in some CCM config file. At this point my belief is that its the config files. Is there a kind soul who could point me to some entries/files I need to remove? Sincerely, Howard Thompson ---------------------------------------------------------------- Detail Steps to disaster: A) ADDING CCM-FORUM a1) rpm -i ccm-forum* - error: Failed dependencies: ccm-core = 6.1.0 is needed by ccm-forum-1.4.1.AUTO.03.09.2004-6 (Having already installed what appeared to be a perfectly good ccm-core 6.1.0 ..) - [root at HT-Linux sub]# rpm -ivh --nodeps ccm-forum* Preparing... ########################################### [100%] 1:ccm-forum-doc ########################################### [ 50%] 2:ccm-forum ########################################### [100%] [root at HT-Linux sub]# a2) ccm load --interactive ccm-forum .... all seemed fine give or take ... com/arsdigita/content-section/ContentSection.pdl: line 115, column 37 [warning]: table already has primary key: com/arsdigita/content-section/ContentSection.pdl: line 41, column 38 com/arsdigita/notification/Notification.pdl: line 34, column 10 [warning]: table already has primary key: com/arsdigita/notification/Notification.pdl: line 32, column 4 com/arsdigita/notification/Notification.pdl: line 35, column 10 [warning]: table already has primary key: com/arsdigita/notification/Notification.pdl: line 32, column 4 C) ADDING CCM-GLOSSARY c1) [root at HT-Linux sub]# rpm -ivh --nodeps ccm-glossary* Preparing... ########################################### [100%] 1:ccm-glossary-doc ########################################### 50%] 2:ccm-glossary ########################################### [100%] [root at HT-Linux sub]# c2) ccm load --interactive ccm-glossary ... Same set of warnings ... D) SERVLET NO LONGER WORKS If my memory is correct I ended up with the following when I went to http://localhost:8080/ccm. http://localhost:8080/ccm/pvt/;jsessionid=0619104F4F75F01869ECC74880A3F95A Notice An unexpected error has occurred An unexpected error has occurred. If this continues to be a problem for you please contact the administrators of the site quoting the following: CCM issue report code: 127.0.0.1:12abadc:fba42ac6b1 E) DROPPED MY DATABASE AND TRIED TO RE-DO THE "CCM LOADs." .. didn't work. F) RPM -e'd all my RPMs including core and cms. D) Reinstalled what I had that worked previously. [root at HT-Linux howard]# rpm -qa > rpm-list.txt [root at HT-Linux howard]# grep ccm rpm-list.txt ccm-tools-servlet-tomcat-0.9.0.AUTO.03.09.2004-5 ccm-core-6.1.0.AUTO.03.09.2004-6 ccm-cms-6.1.0.AUTO.03.09.2004-6 ccm-bookmarks-doc-1.0.0.AUTO.03.09.2004-1 ccm-portalserver-1.0.0.AUTO.03.09.2004-1 ccm-faq-doc-1.0.0.AUTO.03.09.2004-1 ccm-core-doc-6.1.0.AUTO.03.09.2004-6 ccm-config-libs-1.2.1-1 ccm-portalserver-doc-1.0.0.AUTO.03.09.2004-1 ccm-cms-doc-6.1.0.AUTO.03.09.2004-6 ccm-bookmarks-1.0.0.AUTO.03.09.2004-1 ccm-tools-0.9.0.AUTO.03.09.2004-5 ccm-faq-1.0.0.AUTO.03.09.2004-1 [root at HT-Linux howard]# E) CONFLICTING PACKAGES on CCM LOAD. "com.arsdigita.packaging.MasterTool load --interactive ccm-core ccm-cms ccm-portalserver conflicting packages: [ccm-core, ccm-portalserver, ccm-cms]" ------------------------------------------------------------------------ [root at HT-Linux howard]# ccm load --interactive ccm-core ccm-cms ccm-portalserverCCM_HOME: /usr/share/ccm CCM_TOOLS_HOME: /usr/share/ccm-tools CCM_TOOLS_COMMANDS_DIR: /usr/share/ccm-tools/commands looking up /usr/share/ccm-tools/commands/load ccm-run --verbose --verbose com.arsdigita.packaging.MasterTool load --interactive ccm-core ccm-cms ccm-portalserver reading /etc/ccm/ccm.classpath /usr/share/java/servletapi4.jar /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004.jar /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/ /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/Tidy.jar /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/activation.jar /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/aspectjrt-1.0.5.jar /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/cactus-1.4.1.jar /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/commons-beanutils.jar /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/commons-cli-1.0-beta-2-dev.ja r /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/commons-codec-1.2.jar /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/commons-httpclient-2.0alpha1- 20020606.jar /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/commons-logging-1.0.jar /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/i18n.jar /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/jakarta-oro-2.0.7.jar /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/jaxp.jar /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/jdom.jar /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/jdxslt.jar /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/log4j.jar /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/lucene-1.2.jar /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/mail.jar /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/postgresql.jar /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/saxon.jar /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/xalan.jar /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/xerces.jar /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/xsltc.jar /usr/share/java/ccm-bookmarks-1.0.0.AUTO.03.09.2004.jar /usr/share/java/ccm-bookmarks-1.0.0.AUTO.03.09.2004/ /usr/share/java/ccm-cms-6.1.0.AUTO.03.09.2004.jar /usr/share/java/ccm-cms-6.1.0.AUTO.03.09.2004/ /usr/share/java/ccm-cms-6.1.0.AUTO.03.09.2004/jakarta-oro-2.0.4.jar /usr/share/java/ccm-faq-1.0.0.AUTO.03.09.2004.jar /usr/share/java/ccm-faq-1.0.0.AUTO.03.09.2004/ /usr/share/java/ccm-portalserver-1.0.0.AUTO.03.09.2004.jar /usr/share/java/ccm-portalserver-1.0.0.AUTO.03.09.2004/ /usr/java/j2sdk1.4.2_03/bin/java -cp /usr/share/java/servletapi4.jar:/usr/share/java/ccm-core-6.1.0.AUTO.03.09.20 04.jar:/usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/:/usr/share/java/ccm-c ore-6.1.0.AUTO.03.09.2004/Tidy.jar:/usr/share/java/ccm-core-6.1.0.AUTO.03.09 .2004/activation.jar:/usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/aspectjr t-1.0.5.jar:/usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/cactus-1.4.1.jar: /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/commons-beanutils.jar:/usr/sh are/java/ccm-core-6.1.0.AUTO.03.09.2004/commons-cli-1.0-beta-2-dev.jar:/usr/ share/java/ccm-core-6.1.0.AUTO.03.09.2004/commons-codec-1.2.jar:/usr/share/j ava/ccm-core-6.1.0.AUTO.03.09.2004/commons-httpclient-2.0alpha1-20020606.jar :/usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/commons-logging-1.0.jar:/usr /share/java/ccm-core-6.1.0.AUTO.03.09.2004/i18n.jar:/usr/share/java/ccm-core -6.1.0.AUTO.03.09.2004/jakarta-oro-2.0.7.jar:/usr/share/java/ccm-core-6.1.0. AUTO.03.09.2004/jaxp.jar:/usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/jdom .jar:/usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/jdxslt.jar:/usr/share/ja va/ccm-core-6.1.0.AUTO.03.09.2004/log4j.jar:/usr/share/java/ccm-core-6.1.0.A UTO.03.09.2004/lucene-1.2.jar:/usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004 /mail.jar:/usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/postgresql.jar:/usr /share/java/ccm-core-6.1.0.AUTO.03.09.2004/saxon.jar:/usr/share/java/ccm-cor e-6.1.0.AUTO.03.09.2004/xalan.jar:/usr/share/java/ccm-core-6.1.0.AUTO.03.09. 2004/xerces.jar:/usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/xsltc.jar:/us r/share/java/ccm-bookmarks-1.0.0.AUTO.03.09.2004.jar:/usr/share/java/ccm-boo kmarks-1.0.0.AUTO.03.09.2004/:/usr/share/java/ccm-cms-6.1.0.AUTO.03.09.2004. jar:/usr/share/java/ccm-cms-6.1.0.AUTO.03.09.2004/:/usr/share/java/ccm-cms-6 .1.0.AUTO.03.09.2004/jakarta-oro-2.0.4.jar:/usr/share/java/ccm-faq-1.0.0.AUT O.03.09.2004.jar:/usr/share/java/ccm-faq-1.0.0.AUTO.03.09.2004/:/usr/share/j ava/ccm-portalserver-1.0.0.AUTO.03.09.2004.jar:/usr/share/java/ccm-portalser ver-1.0.0.AUTO.03.09.2004/ -Dccm.home=/usr/share/ccm -Dccm.conf=/usr/share/ ccm/conf/registry -Dcom.arsdigita.util.Assert.enabled=true -Djavax.xml.parse rs.DocumentBuilderFactory=org.apache.xerces.jaxp.DocumentBuilderFactoryImpl -Djavax.xml.parsers.SAXParserFactory=org.apache.xerces.jaxp.SAXParserFactory Impl -Djavax.xml.transform.TransformerFactory=com.icl.saxon.TransformerFacto ryImpl -Djava.ext.dirs=/usr/java/j2sdk1.4.2_03/jre/lib/ext:/usr/java/j2sdk1.4.2_03/ lib/ext:/usr/share/ccm/webapps/WEB-INF/system:/usr/share/ccm-tools/lib/secur ity -Dlog4j.configuration=file:///usr/share/ccm/conf/log4j.properties com.arsdigita.packaging.MasterTool load --interactive ccm-core ccm-cms ccm-portalserver conflicting packages: [ccm-core, ccm-portalserver, ccm-cms] [root at HT-Linux howard]# --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.548 / Virus Database: 341 - Release Date: 05/12/2003 -------------- next part -------------- An HTML attachment was scrubbed... URL: From dgregor at redhat.com Wed Apr 7 03:07:56 2004 From: dgregor at redhat.com (Dennis Gregorovic) Date: Tue, 06 Apr 2004 23:07:56 -0400 Subject: [redhat-ccm-list] CONFLICTING PACKAGES on CCM LOAD In-Reply-To: References: Message-ID: <1081307275.6056.3.camel@toad.boston.redhat.com> On Tue, 2004-04-06 at 23:01, Howard Thompson wrote: > Greetings, > > I think I have a mess. I had a working 6.1Beta ccm-core, ccm-cms & > ccm-portal. > Then I figured I should checkout additional modules/packages. I tried > adding ccm-forum & ccm-glossary. The main servlet then no longer > worked (ie. http://localhost:8080/ccm). I tried dropping my database > and redoing my ccm loads. Then I tried erasing all my rpms and > starting over with just what I had working before. After re-installing > the RPMs and trying to do the ccm loads I got/get: > " com.arsdigita.packaging.MasterTool load --interactive ccm-core > ccm-cms ccm-portalserver > conflicting packages: [ccm-core, ccm-portalserver, ccm-cms]" That error message indicates that those packages have already been configured. You can either a) keep the old configuration and just reload data/schema: ccm load --init --data --schema ccm-core ccm-cms ccm-portalserver b) "unconfigure" the old apps by editing $CCM_HOME/conf/registry/registry.properties and clearing the waf.config.packages property > > I've done some wondering around whether my RPM database is corrupted > or whether there is something left over in some CCM config file. At > this point my belief is that its the config files. > > Is there a kind soul who could point me to some entries/files I need > to remove? > > Sincerely, > > Howard Thompson > > ---------------------------------------------------------------- > Detail Steps to disaster: > > A) ADDING CCM-FORUM > a1) rpm -i ccm-forum* > - error: Failed dependencies: > ccm-core = 6.1.0 is needed by > ccm-forum-1.4.1.AUTO.03.09.2004-6 > (Having already installed what appeared to be a perfectly good > ccm-core 6.1.0 ..) > - [root at HT-Linux sub]# rpm -ivh --nodeps ccm-forum* > Preparing... > ########################################### [100%] > 1:ccm-forum-doc > ########################################### [ 50%] > 2:ccm-forum > ########################################### [100%] > [root at HT-Linux sub]# > a2) ccm load --interactive ccm-forum > .... all seemed fine give or take ... > com/arsdigita/content-section/ContentSection.pdl: line 115, column 37 > [warning]: table already has primary key: > com/arsdigita/content-section/ContentSection.pdl: line 41, column 38 > com/arsdigita/notification/Notification.pdl: line 34, column 10 > [warning]: > table already has primary key: > com/arsdigita/notification/Notification.pdl: > line 32, > column 4 > com/arsdigita/notification/Notification.pdl: line 35, column 10 > [warning]: > table already has primary key: > com/arsdigita/notification/Notification.pdl: > line 32, > column 4 > > C) ADDING CCM-GLOSSARY > c1) > [root at HT-Linux sub]# rpm -ivh --nodeps ccm-glossary* > Preparing... > ########################################### [100%] > 1:ccm-glossary-doc > ########################################### [ 50%] > 2:ccm-glossary > ########################################### [100%] > [root at HT-Linux sub]# > > c2) > ccm load --interactive ccm-glossary > ... Same set of warnings ... > > D) SERVLET NO LONGER WORKS > > If my memory is correct I ended up with the following when I went to > http://localhost:8080/ccm. > > http://localhost:8080/ccm/pvt/;jsessionid=0619104F4F75F01869ECC74880A3F95A > > Notice > An unexpected error has occurred > > An unexpected error has occurred. If this continues to be a problem > for you please contact the administrators of the site quoting the > following: > > CCM issue report code: 127.0.0.1:12abadc:fba42ac6b1 > > E) DROPPED MY DATABASE AND TRIED TO RE-DO THE "CCM LOADs." > .. didn't work. > F) RPM -e'd all my RPMs including core and cms. > D) Reinstalled what I had that worked previously. > [root at HT-Linux howard]# rpm -qa > rpm-list.txt > [root at HT-Linux howard]# grep ccm rpm-list.txt > ccm-tools-servlet-tomcat-0.9.0.AUTO.03.09.2004-5 > ccm-core-6.1.0.AUTO.03.09.2004-6 > ccm-cms-6.1.0.AUTO.03.09.2004-6 > ccm-bookmarks-doc-1.0.0.AUTO.03.09.2004-1 > ccm-portalserver-1.0.0.AUTO.03.09.2004-1 > ccm-faq-doc-1.0.0.AUTO.03.09.2004-1 > ccm-core-doc-6.1.0.AUTO.03.09.2004-6 > ccm-config-libs-1.2.1-1 > ccm-portalserver-doc-1.0.0.AUTO.03.09.2004-1 > ccm-cms-doc-6.1.0.AUTO.03.09.2004-6 > ccm-bookmarks-1.0.0.AUTO.03.09.2004-1 > ccm-tools-0.9.0.AUTO.03.09.2004-5 > ccm-faq-1.0.0.AUTO.03.09.2004-1 > [root at HT-Linux howard]# > E) CONFLICTING PACKAGES on CCM LOAD. > > "com.arsdigita.packaging.MasterTool load --interactive ccm-core > ccm-cms ccm-portalserver > conflicting packages: [ccm-core, ccm-portalserver, ccm-cms]" > ------------------------------------------------------------------------ > [root at HT-Linux howard]# ccm load --interactive ccm-core ccm-cms > ccm-portalserverCCM_HOME: /usr/share/ccm > CCM_TOOLS_HOME: /usr/share/ccm-tools > CCM_TOOLS_COMMANDS_DIR: /usr/share/ccm-tools/commands > looking up /usr/share/ccm-tools/commands/load > ccm-run --verbose --verbose com.arsdigita.packaging.MasterTool load > --interactive ccm-core ccm-cms ccm-portalserver > reading /etc/ccm/ccm.classpath > /usr/share/java/servletapi4.jar > /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004.jar > /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/ > /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/Tidy.jar > /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/activation.jar > /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/aspectjrt-1.0.5.jar > /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/cactus-1.4.1.jar > /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/commons-beanutils.jar > /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/commons-cli-1.0-beta-2-dev.jar > /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/commons-codec-1.2.jar > /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/commons-httpclient-2.0alpha1-20020606.jar > /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/commons-logging-1.0.jar > /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/i18n.jar > /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/jakarta-oro-2.0.7.jar > /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/jaxp.jar > /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/jdom.jar > /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/jdxslt.jar > /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/log4j.jar > /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/lucene-1.2.jar > /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/mail.jar > /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/postgresql.jar > /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/saxon.jar > /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/xalan.jar > /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/xerces.jar > /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/xsltc.jar > /usr/share/java/ccm-bookmarks-1.0.0.AUTO.03.09.2004.jar > /usr/share/java/ccm-bookmarks-1.0.0.AUTO.03.09.2004/ > /usr/share/java/ccm-cms-6.1.0.AUTO.03.09.2004.jar > /usr/share/java/ccm-cms-6.1.0.AUTO.03.09.2004/ > /usr/share/java/ccm-cms-6.1.0.AUTO.03.09.2004/jakarta-oro-2.0.4.jar > /usr/share/java/ccm-faq-1.0.0.AUTO.03.09.2004.jar > /usr/share/java/ccm-faq-1.0.0.AUTO.03.09.2004/ > /usr/share/java/ccm-portalserver-1.0.0.AUTO.03.09.2004.jar > /usr/share/java/ccm-portalserver-1.0.0.AUTO.03.09.2004/ > /usr/java/j2sdk1.4.2_03/bin/java -cp > /usr/share/java/servletapi4.jar:/usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004.jar:/usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/:/usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/Tidy.jar:/usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/activation.jar:/usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/aspectjrt-1.0.5.jar:/usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/cactus-1.4.1.jar:/usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/commons-beanutils.jar:/usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/commons-cli-1.0-beta-2-dev.jar:/usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/commons-codec-1.2.jar:/usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/commons-httpclient-2.0alpha1-20020606.jar:/usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/commons-logging-1.0.jar:/usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/i18n.jar:/usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/jakarta-oro-2.0.7.jar:/usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/jaxp.jar:/usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/jdo! m.jar:/usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/jdxslt.jar:/usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/log4j.jar:/usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/lucene-1.2.jar:/usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/mail.jar:/usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/postgresql.jar:/usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/saxon.jar:/usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/xalan.jar:/usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/xerces.jar:/usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/xsltc.jar:/usr/share/java/ccm-bookmarks-1.0.0.AUTO.03.09.2004.jar:/usr/share/java/ccm-bookmarks-1.0.0.AUTO.03.09.2004/:/usr/share/java/ccm-cms-6.1.0.AUTO.03.09.2004.jar:/usr/share/java/ccm-cms-6.1.0.AUTO.03.09.2004/:/usr/share/java/ccm-cms-6.1.0.AUTO.03.09.2004/jakarta-oro-2.0.4.jar:/usr/share/java/ccm-faq-1.0.0.AUTO.03.09.2004.jar:/usr/share/java/ccm-faq-1.0.0.AUTO.03.09.2004/:/usr/share/java/ccm-portalserver-1.0.0.AUTO.03.09.2004.jar:/usr/share/java/ccm-portalser! ver-1.0.0.AUTO.03.09.2004/ -Dccm.home=/usr/share/ccm -Dccm.conf=/usr/ ert.enabled=true -Djavax.xml.parsers.DocumentBuilderFactory=org.apache.xerces.jaxp.DocumentBuilderFactoryImpl -Djavax.xml.parsers.SAXParserFactory=org.apache.xerces.jaxp.SAXParserFactoryImpl -Djavax.xml.transform.TransformerFactory=com.icl.saxon.TransformerFactoryImpl > -Djava.ext.dirs=/usr/java/j2sdk1.4.2_03/jre/lib/ext:/usr/java/j2sdk1.4.2_03/lib/ext:/usr/share/ccm/webapps/WEB-INF/system:/usr/share/ccm-tools/lib/security -Dlog4j.configuration=file:///usr/share/ccm/conf/log4j.properties com.arsdigita.packaging.MasterTool load --interactive ccm-core ccm-cms ccm-portalserver > conflicting packages: [ccm-core, ccm-portalserver, ccm-cms] > [root at HT-Linux howard]# > > > > > > ______________________________________________________________________ > -- > Redhat-ccm-list mailing list > Redhat-ccm-list at redhat.com > https://www.redhat.com/mailman/listinfo/redhat-ccm-list > Archives: https://www.redhat.com/pipermail/redhat-ccm-list/ From chris at runtime-collective.com Wed Apr 7 08:11:03 2004 From: chris at runtime-collective.com (Chris Burdess) Date: Wed, 7 Apr 2004 09:11:03 +0100 Subject: [Aplaws-devel] Re: [redhat-ccm-list] Error loading APLAWS+ applications (ccm load-bundle step) In-Reply-To: <20040405170126.I17740@redhat.com> References: <79D0BDD9-8718-11D8-92CA-000D934FF4B2@runtime-collective.com> <20040405170126.I17740@redhat.com> Message-ID: <1CCC99C2-886B-11D8-B67A-000D934FF4B2@runtime-collective.com> Daniel P. Berrange wrote: >> I have also attempted to run >> >> ccm load-bundle --interactive aplaws-plus-standard >> >> The result is: >> >> ccm load --interactive aplaws-plus-standard >> unable to locate package: aplaws-plus-standard >> >> despite the fact that ccm-bundle-aplaws-plus-standard is installed. > > The 'ccm load' command is for loading applications. > > Since 'ccm-bundle-aplaws-plus-standard' isn't an application, using > the 'ccm load' command in this way isn't appropriate. The ccm-bundle-* > packages are intended for use with the '-bundle' variants of load > and hostinit. > > Bundles are a mere - they allow you to simply specify a single > bundle name to 'load-bundle' instead of listed 40 or so individual > applications. A bundle also provides a set of config properties for > integrating the applications in a certain way specific to APLAWS > requirements. I've discovered my error - the line should be ccm load-bundle --interactive --name aplaws-plus-standard This produces the same error as previously detailed. Is anyone interested in running my script on their system (obviously changing the values for ORACLE_JDBC and SERVLET? From berrange at redhat.com Wed Apr 7 10:05:44 2004 From: berrange at redhat.com (Daniel P. Berrange) Date: Wed, 7 Apr 2004 11:05:44 +0100 Subject: [Aplaws-devel] Re: [redhat-ccm-list] Error loading APLAWS+ applications (ccm load-bundle step) In-Reply-To: <1CCC99C2-886B-11D8-B67A-000D934FF4B2@runtime-collective.com>; from chris@runtime-collective.com on Wed, Apr 07, 2004 at 09:11:03AM +0100 References: <79D0BDD9-8718-11D8-92CA-000D934FF4B2@runtime-collective.com> <20040405170126.I17740@redhat.com> <1CCC99C2-886B-11D8-B67A-000D934FF4B2@runtime-collective.com> Message-ID: <20040407110544.D19208@redhat.com> On Wed, Apr 07, 2004 at 09:11:03AM +0100, Chris Burdess wrote: > This produces the same error as previously detailed. Is anyone > interested in running my script on their system (obviously changing the > values for ORACLE_JDBC and SERVLET? Your best bet is to install a machine using the official binary ZIP files we produced for the final APLAWS+ release & verify that this loads & operates correctly. If this suceeds, then compare the files produced from your custom builds & installs with those from the official build/install. Dan. -- |=- Daniel P. Berrange - berrange at redhat.com -=| |=- Red Hat, 338 Euston Road, London, NW1 3BT. +44 (0)7977 267 243 -=| |=- -=| |=- GnuPG: 7D3B9505 F3C9 553F A1DA 4AC2 5648 23C1 B3DF F742 7D3B 9505 -=| -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available URL: From chris at runtime-collective.com Wed Apr 7 11:52:59 2004 From: chris at runtime-collective.com (Chris Burdess) Date: Wed, 7 Apr 2004 12:52:59 +0100 Subject: [Aplaws-devel] Re: [redhat-ccm-list] Error loading APLAWS+ applications (ccm load-bundle step) In-Reply-To: <20040407110544.D19208@redhat.com> References: <79D0BDD9-8718-11D8-92CA-000D934FF4B2@runtime-collective.com> <20040405170126.I17740@redhat.com> <1CCC99C2-886B-11D8-B67A-000D934FF4B2@runtime-collective.com> <20040407110544.D19208@redhat.com> Message-ID: <1DC145E2-888A-11D8-B67A-000D934FF4B2@runtime-collective.com> Daniel P. Berrange wrote: > Your best bet is to install a machine using the official binary ZIP > files we produced for the final APLAWS+ release & verify that this > loads & operates correctly. If this suceeds, then compare the files > produced from your custom builds & installs with those from the > official build/install. I followed the instructions in section 6.1.1.2 of http://prdownloads.sourceforge.net/aplaws/rhea-ig-waf-en-6.1-1.pdf The "ccm load-bundle" step fails with /home/london/dan/rollingbuild/share/ccm-tools/lib was not found This is due to the fact that $CCM_ZIP_ROOT/etc/profile.d/ccm-tools.sh has "prefix=/home/london/dan/rollingbuild" hardcoded into it. I set this to $CCM_ZIP_ROOT/usr and tried the "ccm load-bundle" step again. This fails with no such command: load-bundle If I try this with my home-made load-bundle, i.e.: ccm load --interactive ccm-core ccm-cms ccm-cms-assets-relatedlink ccm-ldn-dublin ccm-cms-types-contact ccm-cms-types-esdservice ccm-cms-types-article ccm-cms-types-filestorageitem ccm-cms-types-mparticle ccm-cms-types-newsitem ccm-cms-types-pressrelease ccm-cms-types-formitem ccm-cms-types-formsectionitem ccm-cms-types-inlinesite ccm-ldn-xmlfeed ccm-ldn-util ccm-ldn-atoz ccm-ldn-rss ccm-ldn-portal ccm-ldn-navigation ccm-ldn-search ccm-ldn-shortcuts ccm-ldn-subsite ccm-ldn-terms ccm-ldn-aplaws ccm-forum ccm-ldn-importer ccm-ldn-theme --parameter-file $CCM_ZIP_ROOT/usr/share/ccm-tools/bundles/aplaws-plus-standard/ integration.properties then it completes. This suggests that the build scripts generate different zip files on different platforms, a speculation confirmed by the following: binary: jar tvf $CCM_ZIP_ROOT/usr/share/java/ccm-ldn-rss-1.4.1-pdl.jar 0 Mon Mar 29 16:41:28 BST 2004 META-INF/ 53 Mon Mar 29 16:41:28 BST 2004 META-INF/MANIFEST.MF 0 Mon Mar 29 16:40:50 BST 2004 com/ 0 Mon Mar 29 16:40:50 BST 2004 com/arsdigita/ 0 Mon Mar 29 16:40:50 BST 2004 com/arsdigita/london/ 0 Mon Mar 29 16:40:50 BST 2004 com/arsdigita/london/rss/ 712 Wed Oct 29 18:42:20 GMT 2003 com/arsdigita/london/rss/RSS.pdl 983 Mon Sep 01 12:28:20 BST 2003 com/arsdigita/london/rss/Feed.pdl 1220 Mon Sep 01 12:28:22 BST 2003 com/arsdigita/london/rss/rss.pdl source: jar tvf $APLAWS_PREFIX/share/java/ccm-ldn-rss-1.4.1-pdl.jar 0 Tue Apr 06 11:44:12 BST 2004 META-INF/ 103 Tue Apr 06 11:44:10 BST 2004 META-INF/MANIFEST.MF 0 Tue Apr 06 11:43:38 BST 2004 com/ 0 Tue Apr 06 11:43:38 BST 2004 com/arsdigita/ 0 Tue Apr 06 11:43:38 BST 2004 com/arsdigita/london/ 0 Tue Apr 06 11:43:38 BST 2004 com/arsdigita/london/rss/ 983 Mon Sep 01 12:28:22 BST 2003 com/arsdigita/london/rss/Feed.pdl 1220 Mon Sep 01 12:28:22 BST 2003 com/arsdigita/london/rss/rss.pdl Looks like I'm missing the 712-byte RSS.pdl file when I build from the sources. Any idea why that might be? From berrange at redhat.com Wed Apr 7 13:10:44 2004 From: berrange at redhat.com (Daniel P. Berrange) Date: Wed, 7 Apr 2004 14:10:44 +0100 Subject: [Aplaws-devel] Re: [redhat-ccm-list] Error loading APLAWS+ applications (ccm load-bundle step) In-Reply-To: <1DC145E2-888A-11D8-B67A-000D934FF4B2@runtime-collective.com>; from chris@runtime-collective.com on Wed, Apr 07, 2004 at 12:52:59PM +0100 References: <79D0BDD9-8718-11D8-92CA-000D934FF4B2@runtime-collective.com> <20040405170126.I17740@redhat.com> <1CCC99C2-886B-11D8-B67A-000D934FF4B2@runtime-collective.com> <20040407110544.D19208@redhat.com> <1DC145E2-888A-11D8-B67A-000D934FF4B2@runtime-collective.com> Message-ID: <20040407141044.I19208@redhat.com> On Wed, Apr 07, 2004 at 12:52:59PM +0100, Chris Burdess wrote: > Daniel P. Berrange wrote: > > Your best bet is to install a machine using the official binary ZIP > > files we produced for the final APLAWS+ release & verify that this > > loads & operates correctly. If this suceeds, then compare the files > > produced from your custom builds & installs with those from the > > official build/install. > > I followed the instructions in section 6.1.1.2 of > http://prdownloads.sourceforge.net/aplaws/rhea-ig-waf-en-6.1-1.pdf > > The "ccm load-bundle" step fails with > > /home/london/dan/rollingbuild/share/ccm-tools/lib was not found > > This is due to the fact that $CCM_ZIP_ROOT/etc/profile.d/ccm-tools.sh > has "prefix=/home/london/dan/rollingbuild" hardcoded into it. I set > this to $CCM_ZIP_ROOT/usr and tried the "ccm load-bundle" step again. This is a bug in the generation of ZIP files, that we missed since for UNIX we always install ccm-tools from RPM & on Windows this particular file isn't used. > then it completes. > > This suggests that the build scripts generate different zip files on > different platforms, a speculation confirmed by the following: Did you build this second ZIP file on Windows ? Since Windows is case insensitive, it would be incapable of distinguishing between rss.pdl and RSS.pdl, hence loosing one during the build (or even when you unzipped the source code). Don't ask why we have two files which differ only in their case, but renaming one will do the trick. Dan. > > binary: jar tvf $CCM_ZIP_ROOT/usr/share/java/ccm-ldn-rss-1.4.1-pdl.jar > 0 Mon Mar 29 16:41:28 BST 2004 META-INF/ > 53 Mon Mar 29 16:41:28 BST 2004 META-INF/MANIFEST.MF > 0 Mon Mar 29 16:40:50 BST 2004 com/ > 0 Mon Mar 29 16:40:50 BST 2004 com/arsdigita/ > 0 Mon Mar 29 16:40:50 BST 2004 com/arsdigita/london/ > 0 Mon Mar 29 16:40:50 BST 2004 com/arsdigita/london/rss/ > 712 Wed Oct 29 18:42:20 GMT 2003 com/arsdigita/london/rss/RSS.pdl > 983 Mon Sep 01 12:28:20 BST 2003 com/arsdigita/london/rss/Feed.pdl > 1220 Mon Sep 01 12:28:22 BST 2003 com/arsdigita/london/rss/rss.pdl > > source: jar tvf $APLAWS_PREFIX/share/java/ccm-ldn-rss-1.4.1-pdl.jar > 0 Tue Apr 06 11:44:12 BST 2004 META-INF/ > 103 Tue Apr 06 11:44:10 BST 2004 META-INF/MANIFEST.MF > 0 Tue Apr 06 11:43:38 BST 2004 com/ > 0 Tue Apr 06 11:43:38 BST 2004 com/arsdigita/ > 0 Tue Apr 06 11:43:38 BST 2004 com/arsdigita/london/ > 0 Tue Apr 06 11:43:38 BST 2004 com/arsdigita/london/rss/ > 983 Mon Sep 01 12:28:22 BST 2003 com/arsdigita/london/rss/Feed.pdl > 1220 Mon Sep 01 12:28:22 BST 2003 com/arsdigita/london/rss/rss.pdl > > Looks like I'm missing the 712-byte RSS.pdl file when I build from the > sources. Any idea why that might be? > -- |=- Daniel P. Berrange - berrange at redhat.com -=| |=- Red Hat, 338 Euston Road, London, NW1 3BT. +44 (0)7977 267 243 -=| |=- -=| |=- GnuPG: 7D3B9505 F3C9 553F A1DA 4AC2 5648 23C1 B3DF F742 7D3B 9505 -=| -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available URL: From chris at runtime-collective.com Wed Apr 7 14:11:52 2004 From: chris at runtime-collective.com (Chris Burdess) Date: Wed, 7 Apr 2004 15:11:52 +0100 Subject: [Aplaws-devel] Re: [redhat-ccm-list] Error loading APLAWS+ applications (ccm load-bundle step) In-Reply-To: <20040407141044.I19208@redhat.com> References: <79D0BDD9-8718-11D8-92CA-000D934FF4B2@runtime-collective.com> <20040405170126.I17740@redhat.com> <1CCC99C2-886B-11D8-B67A-000D934FF4B2@runtime-collective.com> <20040407110544.D19208@redhat.com> <1DC145E2-888A-11D8-B67A-000D934FF4B2@runtime-collective.com> <20040407141044.I19208@redhat.com> Message-ID: <84E95AE0-889D-11D8-B67A-000D934FF4B2@runtime-collective.com> Daniel P. Berrange wrote: > Did you build this second ZIP file on Windows ? Since Windows is case > insensitive, it would be incapable of distinguishing between rss.pdl > and RSS.pdl, hence loosing one during the build (or even when you > unzipped the source code). No, however I built it on a case-insensitive filesystem, which will be the lowest common denominator for any build. > Don't ask why we have two files which differ > only in their case, but renaming one will do the trick. Let's do that then. From goldfish at i-manila.com.ph Mon Apr 12 15:31:31 2004 From: goldfish at i-manila.com.ph (Jun Yamog) Date: 12 Apr 2004 23:31:31 +0800 Subject: [redhat-ccm-list] array parameter bug? Message-ID: <1081783850.2087.43.camel@draco.vnet> Hi, I would like to ask if there is a bug in ArrayParamter. Using a MultipleSelect or an ArrayParameter as a Global state param makes the values grow larger and larger. I have a test code that I have written below to show this. I really need this in a real world scenario. In the real world I have a form that serves as a filter of the paginated results. What happens is after a couple of filters the query string gets too long. I have tried several work-arounds, like using hidden var and repopulating the multiple select. I think it boils that if the var is a global and array parameter. I need it as global since external stuff uses the form and also so the paginator can pickup the current state of the filter form. Try the code below, you can comment out "addGlobalStateParam" and see that it does not happen anymore. Is this a bug or am I not using MultipleSelect properly? Thanks very much. Jun public class TestPage extends Page { private Form m_form = new Form("testform"); private MultipleSelect m_sel = new MultipleSelect("testselect"); public TestPage() { super(); buildForm(); buildTestLabel(); addGlobalStateParam(m_sel.getParameterModel()); lock(); } private void buildForm() { m_form.setMethod("GET"); m_sel.addOption(new Option("1", "test1")); m_sel.addOption(new Option("2", "test2")); m_sel.addOption(new Option("3", "test3")); m_sel.addOption(new Option("4", "test4")); m_sel.addOption(new Option("5", "test5")); m_sel.addOption(new Option("6", "test6")); m_form.add(m_sel); Submit submit = new Submit("Test!"); m_form.add(submit); add(m_form); } private void buildTestLabel() { final Label tlabel = new Label("Test Label"); tlabel.addPrintListener(new PrintListener() { public void prepare(PrintEvent event) { PageState state = event.getPageState(); tlabel.setLabel(state.toURL().getQueryString(),state); } }); add(tlabel); } } From docngeek at yahoo.ca Mon Apr 12 18:18:05 2004 From: docngeek at yahoo.ca (Howard Thompson) Date: Mon, 12 Apr 2004 14:18:05 -0400 Subject: [redhat-ccm-list] Are ccm-bookmarks and the collaboration applications functional under 6.1Beta? In-Reply-To: Message-ID: Hi, With a working ccm-core, ccm-cms & ccm-portalserver 6.1Beta, I tried to do a ccm load --interactive ccm-bookmarks. After doing a ccm start and trying to go to http://localhost:8080/ccm, I got a result of 503 - "Servlet ccm-dispatcher is currently unavailable". Looking at the log file, it shows ... ah .. something is missing. "2004-04-12 12:28:56 StandardWrapper[:ccm-dispatcher]: Marking servlet ccm-dispatcher as unavailable 2004-04-12 12:28:56 StandardContext[]: Servlet threw load() exception javax.servlet.ServletException: Error instantiating servlet class com.arsdigita.web.DispatcherServlet ... ----- Root Cause ----- java.lang.ExceptionInInitializerError at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ..." So: I've read some archive responses that lead me to believe that core/cms/portalserver is Beta'ish but the portal applications are more Alpha'ish. Is this the collective understanding? Or, does someone have some insight into what is going wrong with my attempts at loading ccm-bookmarks. Previously I had tried to load the other portal applications with similar results give or take some additional dependency problems where they indicated that I didn't have a 6.0 ccm-core ... which I did have by all appearances. Thanks, Howard Thompson ----------------------- HTTP ERROR ------------------------------------ HTTP Status 503 - Servlet ccm-dispatcher is currently unavailable type Status report message Servlet ccm-dispatcher is currently unavailable description The requested service (Servlet ccm-dispatcher is currently unavailable) is not currently available. Apache Tomcat/4.1 ______________________________________________________________________ ------------------------ LOG FILE ------------------------------------------------------------------ 2004-04-12 12:28:47 HttpConnector Opening server socket on all host IP addresses 2004-04-12 12:28:47 HostConfig[localhost]: Deploying web application directory ROOT 2004-04-12 12:28:47 StandardHost[localhost]: Installing web application at context path from URL file:/var/lib/ccm/webapps/ROOT 2004-04-12 12:28:48 WebappLoader[]: Deploying class repositories to work directory /usr/share/ccm/tmp/_ 2004-04-12 12:28:49 StandardManager[]: Seeding random number generator class java.security.SecureRandom 2004-04-12 12:28:50 StandardManager[]: Seeding of random number generator has been completed 2004-04-12 12:28:50 StandardWrapper[:default]: Loading container servlet default 2004-04-12 12:28:50 default: init 2004-04-12 12:28:51 StandardWrapper[:invoker]: Loading container servlet invoker 2004-04-12 12:28:51 invoker: init 2004-04-12 12:28:56 StandardWrapper[:ccm-dispatcher]: Marking servlet ccm-dispatcher as unavailable 2004-04-12 12:28:56 StandardContext[]: Servlet threw load() exception javax.servlet.ServletException: Error instantiating servlet class com.arsdigita.web.DispatcherServlet at org.apache.catalina.core.StandardWrapper.loadServlet(Unknown Source) at org.apache.catalina.core.StandardWrapper.load(Unknown Source) at org.apache.catalina.core.StandardContext.loadOnStartup(Unknown Source) at org.apache.catalina.core.StandardContext.start(Unknown Source) at org.apache.catalina.core.ContainerBase.addChildInternal(Unknown Source) at org.apache.catalina.core.ContainerBase.addChild(Unknown Source) at org.apache.catalina.core.StandardHost.addChild(Unknown Source) at org.apache.catalina.core.StandardHostDeployer.install(Unknown Source) at org.apache.catalina.core.StandardHost.install(Unknown Source) at org.apache.catalina.startup.HostConfig.deployDirectories(Unknown Source) at org.apache.catalina.startup.HostConfig.deployApps(Unknown Source) at org.apache.catalina.startup.HostConfig.start(Unknown Source) at org.apache.catalina.startup.HostConfig.lifecycleEvent(Unknown Source) at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(Unknown Source) at org.apache.catalina.core.ContainerBase.start(Unknown Source) at org.apache.catalina.core.StandardHost.start(Unknown Source) at org.apache.catalina.core.ContainerBase.start(Unknown Source) at org.apache.catalina.core.StandardEngine.start(Unknown Source) at org.apache.catalina.core.StandardService.start(Unknown Source) at org.apache.catalina.core.StandardServer.start(Unknown Source) at org.apache.catalina.core.StandardService.start(Unknown Source) at org.apache.catalina.core.StandardServer.start(Unknown Source) at org.apache.catalina.startup.Catalina.start(Unknown Source) at org.apache.catalina.startup.Catalina.execute(Unknown Source) at org.apache.catalina.startup.Catalina.process(Unknown Source) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39 ) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl .java:25) at java.lang.reflect.Method.invoke(Method.java:324) at com.arsdigita.tools.catalina.startup.Bootstrap.main(Unknown Source) ----- Root Cause ----- java.lang.ExceptionInInitializerError at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAcces sorImpl.java:39) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstruc torAccessorImpl.java:27) at java.lang.reflect.Constructor.newInstance(Constructor.java:274) at java.lang.Class.newInstance0(Class.java:308) at java.lang.Class.newInstance(Class.java:261) at org.apache.catalina.core.StandardWrapper.loadServlet(Unknown Source) at org.apache.catalina.core.StandardWrapper.load(Unknown Source) at org.apache.catalina.core.StandardContext.loadOnStartup(Unknown Source) at org.apache.catalina.core.StandardContext.start(Unknown Source) at org.apache.catalina.core.ContainerBase.addChildInternal(Unknown Source) at org.apache.catalina.core.ContainerBase.addChild(Unknown Source) at org.apache.catalina.core.StandardHost.addChild(Unknown Source) at org.apache.catalina.core.StandardHostDeployer.install(Unknown Source) at org.apache.catalina.core.StandardHost.install(Unknown Source) at org.apache.catalina.startup.HostConfig.deployDirectories(Unknown Source) at org.apache.catalina.startup.HostConfig.deployApps(Unknown Source) at org.apache.catalina.startup.HostConfig.start(Unknown Source) at org.apache.catalina.startup.HostConfig.lifecycleEvent(Unknown Source) at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(Unknown Source) at org.apache.catalina.core.ContainerBase.start(Unknown Source) at org.apache.catalina.core.StandardHost.start(Unknown Source) --------------------------------------------- Collaboration Applications --------------------------- Document Manager The document manager allows users to upload and share documents of any type. Documents are versioned, permissioned, and searchable. The document manager utilizes the new versioning system introduced in WAF 6.0. In addition, this release of document manager includes optimizations to the data model to maximize scalability. Forums The forums application is a threaded bulletin board system that supports email alerts, permissions, and categorizing posts. Bookmarks The bookmarks application enables users to collaboratively share links to other web sites. Chat The Chat application enables users to interact with each other in real-time chat rooms. Frequently Asked Questions (FAQ) The FAQ application is a system that enables users to dynamically create and update frequently asked questions. Glossary The Glossary application enables users to enter and update glossary terms for general reference. --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.548 / Virus Database: 341 - Release Date: 05/12/2003 -------------- next part -------------- An HTML attachment was scrubbed... URL: From tom415 at yahoo.com Wed Apr 14 17:30:15 2004 From: tom415 at yahoo.com (Tom) Date: Wed, 14 Apr 2004 10:30:15 -0700 (PDT) Subject: [redhat-ccm-list] New install question regarding Tomcat Message-ID: <20040414173015.41479.qmail@web41006.mail.yahoo.com> I have a system running Redhat Linux, Apache, mod_jk and Tomcat. I want to install the Redhat CCM WAF and CMS to evaluate and possibly use in production. I am looking to understand what I am getting into for it is not documented very well. >From trolling the mailing list archives it seems that the best way forward is to delete my existing installation of Tomcat and go with the Tomcat installation that comes with the WAF RPM's. ***Can someone at Redhat definitively provide some direction as to the best way forward and possibly include some kind of instruction in the install docs.*** An excellent response would be to provide some direction for users who want to keep their current installation of Tomcat by providing information as to exactly what changes need to be made in order for CCM WAF and CMS to work with existing Tomcat installations. Thank you. Tom Baik __________________________________ Do you Yahoo!? Yahoo! Tax Center - File online by April 15th http://taxes.yahoo.com/filing.html From dgregor at redhat.com Wed Apr 14 20:39:05 2004 From: dgregor at redhat.com (Dennis Gregorovic) Date: Wed, 14 Apr 2004 16:39:05 -0400 Subject: [redhat-ccm-list] New install question regarding Tomcat In-Reply-To: <20040414173015.41479.qmail@web41006.mail.yahoo.com> References: <20040414173015.41479.qmail@web41006.mail.yahoo.com> Message-ID: <1081975144.6682.96.camel@toad.boston.redhat.com> For just evaluating WAF and CMS, using a separate Tomcat instance would be the easiest way to go. You don't need to delete your existing installation though. "ccm hostinit" will write out a server.xml file in /usr/share/ccm/conf. Then, when you run "ccm start --conatiner=tomcat", it will use that server.xml file instead of the default one. -- Dennis On Wed, 2004-04-14 at 13:30, Tom wrote: > I have a system running Redhat Linux, Apache, mod_jk and Tomcat. I > want to install the Redhat CCM WAF and CMS to evaluate and possibly use > in production. I am looking to understand what I am getting into for > it is not documented very well. > > >From trolling the mailing list archives it seems that the best way > forward is to delete my existing installation of Tomcat and go with the > Tomcat installation that comes with the WAF RPM's. > > ***Can someone at Redhat definitively provide some direction as to the > best way forward and possibly include some kind of instruction in the > install docs.*** > > An excellent response would be to provide some direction for users who > want to keep their current installation of Tomcat by providing > information as to exactly what changes need to be made in order for CCM > WAF and CMS to work with existing Tomcat installations. > > Thank you. > > Tom Baik > > > > > > > > > __________________________________ > Do you Yahoo!? > Yahoo! Tax Center - File online by April 15th > http://taxes.yahoo.com/filing.html > From Stefan.Mueller-Wilken at resco.de Fri Apr 16 09:06:54 2004 From: Stefan.Mueller-Wilken at resco.de (Stefan.Mueller-Wilken at resco.de) Date: Fri, 16 Apr 2004 11:06:54 +0200 Subject: [redhat-ccm-list] Installing nightly build from scratch - possible? Message-ID: Hi there! I'm new to the CCM / Enterprise Portal system and would like to install the CCM nightly build from scratch. Is this possible? I haven't been too successful yet. According to the WAF Installation Guide there should be configuration files in etc called ccm-core.cfg, ccm-core.cfg-servlet-container- and ccm-core.config.vars none of which actually is part of the nightly build zips. So, what's the trick to get the portal up and flying? Cheers, Stevie From docngeek at yahoo.ca Fri Apr 16 17:23:46 2004 From: docngeek at yahoo.ca (Howard Thompson) Date: Fri, 16 Apr 2004 13:23:46 -0400 Subject: [redhat-ccm-list] Problems loading collaboration applications. (RPM Dependencies & ccm load) In-Reply-To: Message-ID: Hi, Two Problems: a) Should I be overriding dependencies with a NODEP on RPM for ccm_forum or is there something more serious going on. See "Problem A" details below. b) Running "ccm load --interactive ccm-bookmarks" causes ccm-dispatcher servlet to no longer load. See "Problem B" details below. Build: 6.1.0.AUTO.03.09.2004 / 1.0.0.AUTO.03.09.2004 Thanks, Howard Thompson PROBLEM A ------- CCM-FORUM DETAILS -------------------------------- rpm -Uvh ccm-forum* yields "ccm-core = 6.1.0 is needed by ccm-forum-1.4.1.AUTO.03.09.2004-6". You can see from the listing below, ccm-core-6.1.0 is already loaded. [howard at HT-Linux sub]$ ls ccm-forum-1.4.1.AUTO.03.09.2004-6.noarch.rpm ccm-forum-doc-1.4.1.AUTO.03.09.2004-6.noarch.rpm ccm-glossary-1.0.0.AUTO.03.09.2004-1.noarch.rpm ccm-glossary-doc-1.0.0.AUTO.03.09.2004-1.noarch.rpm [howard at HT-Linux sub]$ rpm -Uvh ccm-forum* error: Failed dependencies: ccm-core = 6.1.0 is needed by ccm-forum-1.4.1.AUTO.03.09.2004-6 [howard at HT-Linux sub]$ rpm -qa > ~/rpm-list.txt [howard at HT-Linux sub]$ grep ccm ~/rpm-list.txt ccm-tools-servlet-tomcat-0.9.0.AUTO.03.09.2004-5 ccm-core-6.1.0.AUTO.03.09.2004-6 ccm-cms-6.1.0.AUTO.03.09.2004-6 ccm-bookmarks-doc-1.0.0.AUTO.03.09.2004-1 ccm-portalserver-1.0.0.AUTO.03.09.2004-1 ccm-faq-doc-1.0.0.AUTO.03.09.2004-1 ccm-core-doc-6.1.0.AUTO.03.09.2004-6 ccm-config-libs-1.2.1-1 ccm-portalserver-doc-1.0.0.AUTO.03.09.2004-1 ccm-cms-doc-6.1.0.AUTO.03.09.2004-6 ccm-bookmarks-1.0.0.AUTO.03.09.2004-1 ccm-tools-0.9.0.AUTO.03.09.2004-5 ccm-faq-1.0.0.AUTO.03.09.2004-1 [howard at HT-Linux sub]$ PROBLEM B ------- CCM LOAD --INTERACTIVE CCM-BOOKMARKS DETAILS-------------------- bookmarks With a working ccm-core, ccm-cms & ccm-portalserver 6.1Beta, I tried to do a ccm load --interactive ccm-bookmarks. After doing a ccm start and trying to go to http://localhost:8080/ccm, I got a result of 503 - "Servlet ccm-dispatcher is currently unavailable". Looking at the log file, it shows ... ah .. something is missing. "2004-04-12 12:28:56 StandardWrapper[:ccm-dispatcher]: Marking servlet ccm-dispatcher as unavailable 2004-04-12 12:28:56 StandardContext[]: Servlet threw load() exception javax.servlet.ServletException: Error instantiating servlet class com.arsdigita.web.DispatcherServlet ... ----- Root Cause ----- java.lang.ExceptionInInitializerError at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ..." ----------------------- HTTP ERROR ------------------------------------ HTTP Status 503 - Servlet ccm-dispatcher is currently unavailable type Status report message Servlet ccm-dispatcher is currently unavailable description The requested service (Servlet ccm-dispatcher is currently unavailable) is not currently available. Apache Tomcat/4.1 ______________________________________________________________________ ------------------------ LOG FILE ------------------------------------------------------------------ 2004-04-12 12:28:47 HttpConnector Opening server socket on all host IP addresses 2004-04-12 12:28:47 HostConfig[localhost]: Deploying web application directory ROOT 2004-04-12 12:28:47 StandardHost[localhost]: Installing web application at context path from URL file:/var/lib/ccm/webapps/ROOT 2004-04-12 12:28:48 WebappLoader[]: Deploying class repositories to work directory /usr/share/ccm/tmp/_ 2004-04-12 12:28:49 StandardManager[]: Seeding random number generator class java.security.SecureRandom 2004-04-12 12:28:50 StandardManager[]: Seeding of random number generator has been completed 2004-04-12 12:28:50 StandardWrapper[:default]: Loading container servlet default 2004-04-12 12:28:50 default: init 2004-04-12 12:28:51 StandardWrapper[:invoker]: Loading container servlet invoker 2004-04-12 12:28:51 invoker: init 2004-04-12 12:28:56 StandardWrapper[:ccm-dispatcher]: Marking servlet ccm-dispatcher as unavailable 2004-04-12 12:28:56 StandardContext[]: Servlet threw load() exception javax.servlet.ServletException: Error instantiating servlet class com.arsdigita.web.DispatcherServlet at org.apache.catalina.core.StandardWrapper.loadServlet(Unknown Source) at org.apache.catalina.core.StandardWrapper.load(Unknown Source) at org.apache.catalina.core.StandardContext.loadOnStartup(Unknown Source) at org.apache.catalina.core.StandardContext.start(Unknown Source) at org.apache.catalina.core.ContainerBase.addChildInternal(Unknown Source) at org.apache.catalina.core.ContainerBase.addChild(Unknown Source) at org.apache.catalina.core.StandardHost.addChild(Unknown Source) at org.apache.catalina.core.StandardHostDeployer.install(Unknown Source) at org.apache.catalina.core.StandardHost.install(Unknown Source) at org.apache.catalina.startup.HostConfig.deployDirectories(Unknown Source) at org.apache.catalina.startup.HostConfig.deployApps(Unknown Source) at org.apache.catalina.startup.HostConfig.start(Unknown Source) at org.apache.catalina.startup.HostConfig.lifecycleEvent(Unknown Source) at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(Unknown Source) at org.apache.catalina.core.ContainerBase.start(Unknown Source) at org.apache.catalina.core.StandardHost.start(Unknown Source) at org.apache.catalina.core.ContainerBase.start(Unknown Source) at org.apache.catalina.core.StandardEngine.start(Unknown Source) at org.apache.catalina.core.StandardService.start(Unknown Source) at org.apache.catalina.core.StandardServer.start(Unknown Source) at org.apache.catalina.core.StandardService.start(Unknown Source) at org.apache.catalina.core.StandardServer.start(Unknown Source) at org.apache.catalina.startup.Catalina.start(Unknown Source) at org.apache.catalina.startup.Catalina.execute(Unknown Source) at org.apache.catalina.startup.Catalina.process(Unknown Source) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39 ) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl .java:25) at java.lang.reflect.Method.invoke(Method.java:324) at com.arsdigita.tools.catalina.startup.Bootstrap.main(Unknown Source) ----- Root Cause ----- java.lang.ExceptionInInitializerError at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAcces sorImpl.java:39) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstruc torAccessorImpl.java:27) at java.lang.reflect.Constructor.newInstance(Constructor.java:274) at java.lang.Class.newInstance0(Class.java:308) at java.lang.Class.newInstance(Class.java:261) at org.apache.catalina.core.StandardWrapper.loadServlet(Unknown Source) at org.apache.catalina.core.StandardWrapper.load(Unknown Source) at org.apache.catalina.core.StandardContext.loadOnStartup(Unknown Source) at org.apache.catalina.core.StandardContext.start(Unknown Source) at org.apache.catalina.core.ContainerBase.addChildInternal(Unknown Source) at org.apache.catalina.core.ContainerBase.addChild(Unknown Source) at org.apache.catalina.core.StandardHost.addChild(Unknown Source) at org.apache.catalina.core.StandardHostDeployer.install(Unknown Source) at org.apache.catalina.core.StandardHost.install(Unknown Source) at org.apache.catalina.startup.HostConfig.deployDirectories(Unknown Source) at org.apache.catalina.startup.HostConfig.deployApps(Unknown Source) at org.apache.catalina.startup.HostConfig.start(Unknown Source) at org.apache.catalina.startup.HostConfig.lifecycleEvent(Unknown Source) at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(Unknown Source) at org.apache.catalina.core.ContainerBase.start(Unknown Source) at org.apache.catalina.core.StandardHost.start(Unknown Source) --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.548 / Virus Database: 341 - Release Date: 05/12/2003 -------------- next part -------------- An HTML attachment was scrubbed... URL: From tom415 at yahoo.com Sat Apr 17 00:01:49 2004 From: tom415 at yahoo.com (Tom) Date: Fri, 16 Apr 2004 17:01:49 -0700 (PDT) Subject: [redhat-ccm-list] Error when loading application instance. Please help. Message-ID: <20040417000149.36958.qmail@web41006.mail.yahoo.com> Please help. I am trying to install ccm 6.1 beta. I've downloaded all the rpm's and installed them. I am now trying to load the application instance using the command 'ccm load --interactive ' and I have been unsuccessful. The error I get is "ERROR: null (root cause: The user property is missing. It is mandatory.)", however, I do have the database user set. When I run the command 'ccm get waf.runtime.jdbc_url' the resulting JDBC URL is the one I entered minus the back-slashes. When I check the status of postgres using 'pg_ctl status' I get back that the postmaster is running. Can anyone provide some direction? Thanks. Tom Baik __________________________________ Do you Yahoo!? Yahoo! Tax Center - File online by April 15th http://taxes.yahoo.com/filing.html From tom415 at yahoo.com Sat Apr 17 14:04:58 2004 From: tom415 at yahoo.com (Tom) Date: Sat, 17 Apr 2004 07:04:58 -0700 (PDT) Subject: [redhat-ccm-list] ccm hostinit execution returns error Message-ID: <20040417140458.16285.qmail@web41007.mail.yahoo.com> I've loaded the applications successfully but when I run the "ccm hostinit" command I get the following error: Can't exec "/usr/share/ccm-tools/server/tomcat/bin/tomcat-conf-gen": No such file or directory at /usr/share/ccm-tools/lib/CCM/CommandsUtil.pm line 82. Would someone please advise. Thanks. Regards, Tom Baik __________________________________ Do you Yahoo!? Yahoo! Tax Center - File online by April 15th http://taxes.yahoo.com/filing.html From dgregor at redhat.com Sat Apr 17 22:56:02 2004 From: dgregor at redhat.com (Dennis Gregorovic) Date: Sat, 17 Apr 2004 18:56:02 -0400 Subject: [redhat-ccm-list] ccm hostinit execution returns error In-Reply-To: <20040417140458.16285.qmail@web41007.mail.yahoo.com> References: <20040417140458.16285.qmail@web41007.mail.yahoo.com> Message-ID: <1082242561.14835.18.camel@toad.boston.redhat.com> Does /usr/share/ccm-tools/server/tomcat/bin/tomcat-conf-gen exist? And does it have the executable bit set? Also, what is the output of "rpm -qi ccm-tools-servet-tomcat" -- Dennis On Sat, 2004-04-17 at 10:04, Tom wrote: > I've loaded the applications successfully but when I run the "ccm > hostinit" command I get the following error: > > Can't exec "/usr/share/ccm-tools/server/tomcat/bin/tomcat-conf-gen": No > such file or directory at /usr/share/ccm-tools/lib/CCM/CommandsUtil.pm > line 82. > > Would someone please advise. Thanks. > > Regards, > Tom Baik > > > > > > __________________________________ > Do you Yahoo!? > Yahoo! Tax Center - File online by April 15th > http://taxes.yahoo.com/filing.html > From tom415 at yahoo.com Sun Apr 18 01:14:34 2004 From: tom415 at yahoo.com (Tom) Date: Sat, 17 Apr 2004 18:14:34 -0700 (PDT) Subject: [redhat-ccm-list] ccm hostinit execution returns error In-Reply-To: <1082242561.14835.18.camel@toad.boston.redhat.com> Message-ID: <20040418011434.92891.qmail@web41004.mail.yahoo.com> Dennis, thanks for replying. No, /usr/share/ccm-tools/server/tomcat/bin/tomcat-conf-gen does not exist. When I run "rpm -qi ccm-tools-servet-tomcat" the output is "package ccm-tools-servet-tomcat is not installed". However, when I try installing the app by running "rpm -ivh ccm-tools-servlet-tomcat-2.1.0.AUTO.04.14.2004-1.noarch.rpm", it says that the package is already installed. How can that be? Thanks for your help. Tom --- Dennis Gregorovic wrote: > Does /usr/share/ccm-tools/server/tomcat/bin/tomcat-conf-gen exist? > And > does it have the executable bit set? Also, what is the output of > "rpm > -qi ccm-tools-servet-tomcat" > > -- Dennis > > On Sat, 2004-04-17 at 10:04, Tom wrote: > > I've loaded the applications successfully but when I run the "ccm > > hostinit" command I get the following error: > > > > Can't exec > "/usr/share/ccm-tools/server/tomcat/bin/tomcat-conf-gen": No > > such file or directory at > /usr/share/ccm-tools/lib/CCM/CommandsUtil.pm > > line 82. > > > > Would someone please advise. Thanks. > > > > Regards, > > Tom Baik > > > > > > > > > > > > __________________________________ > > Do you Yahoo!? > > Yahoo! Tax Center - File online by April 15th > > http://taxes.yahoo.com/filing.html > > > > > -- > Redhat-ccm-list mailing list > Redhat-ccm-list at redhat.com > https://www.redhat.com/mailman/listinfo/redhat-ccm-list > Archives: https://www.redhat.com/pipermail/redhat-ccm-list/ __________________________________ Do you Yahoo!? Yahoo! Photos: High-quality 4x6 digital prints for 25? http://photos.yahoo.com/ph/print_splash From docngeek at yahoo.ca Sun Apr 18 18:24:36 2004 From: docngeek at yahoo.ca (Howard Thompson) Date: Sun, 18 Apr 2004 14:24:36 -0400 Subject: [redhat-ccm-list] CONFLICTING PACKAGES on CCM LOAD In-Reply-To: <1081307275.6056.3.camel@toad.boston.redhat.com> Message-ID: Dennis, Thanks. Reloading didn't seem to work (I couldn't find the -init parm, all that seemed to be there was -config) but the "Unconfigure" option changing the registry.properties file worked great. Thanks, Howard -----Original Message----- From: Dennis Gregorovic [mailto:dgregor at redhat.com] Sent: April 6, 2004 11:08 PM To: Howard Thompson Cc: redhat-ccm-list at redhat.com Subject: Re: [redhat-ccm-list] CONFLICTING PACKAGES on CCM LOAD On Tue, 2004-04-06 at 23:01, Howard Thompson wrote: > Greetings, > > I think I have a mess. I had a working 6.1Beta ccm-core, ccm-cms & > ccm-portal. > Then I figured I should checkout additional modules/packages. I tried > adding ccm-forum & ccm-glossary. The main servlet then no longer > worked (ie. http://localhost:8080/ccm). I tried dropping my database > and redoing my ccm loads. Then I tried erasing all my rpms and > starting over with just what I had working before. After re-installing > the RPMs and trying to do the ccm loads I got/get: > " com.arsdigita.packaging.MasterTool load --interactive ccm-core > ccm-cms ccm-portalserver > conflicting packages: [ccm-core, ccm-portalserver, ccm-cms]" That error message indicates that those packages have already been configured. You can either a) keep the old configuration and just reload data/schema: ccm load --init --data --schema ccm-core ccm-cms ccm-portalserver b) "unconfigure" the old apps by editing $CCM_HOME/conf/registry/registry.properties and clearing the waf.config.packages property > > I've done some wondering around whether my RPM database is corrupted > or whether there is something left over in some CCM config file. At > this point my belief is that its the config files. > > Is there a kind soul who could point me to some entries/files I need > to remove? > > Sincerely, > > Howard Thompson > > ---------------------------------------------------------------- > Detail Steps to disaster: > > A) ADDING CCM-FORUM > a1) rpm -i ccm-forum* > - error: Failed dependencies: > ccm-core = 6.1.0 is needed by > ccm-forum-1.4.1.AUTO.03.09.2004-6 > (Having already installed what appeared to be a perfectly good > ccm-core 6.1.0 ..) > - [root at HT-Linux sub]# rpm -ivh --nodeps ccm-forum* > Preparing... > ########################################### [100%] > 1:ccm-forum-doc > ########################################### [ 50%] > 2:ccm-forum > ########################################### [100%] > [root at HT-Linux sub]# > a2) ccm load --interactive ccm-forum > .... all seemed fine give or take ... > com/arsdigita/content-section/ContentSection.pdl: line 115, column 37 > [warning]: table already has primary key: > com/arsdigita/content-section/ContentSection.pdl: line 41, column 38 > com/arsdigita/notification/Notification.pdl: line 34, column 10 > [warning]: > table already has primary key: > com/arsdigita/notification/Notification.pdl: > line 32, > column 4 > com/arsdigita/notification/Notification.pdl: line 35, column 10 > [warning]: > table already has primary key: > com/arsdigita/notification/Notification.pdl: > line 32, > column 4 > > C) ADDING CCM-GLOSSARY > c1) > [root at HT-Linux sub]# rpm -ivh --nodeps ccm-glossary* > Preparing... > ########################################### [100%] > 1:ccm-glossary-doc > ########################################### [ 50%] > 2:ccm-glossary > ########################################### [100%] > [root at HT-Linux sub]# > > c2) > ccm load --interactive ccm-glossary > ... Same set of warnings ... > > D) SERVLET NO LONGER WORKS > > If my memory is correct I ended up with the following when I went to > http://localhost:8080/ccm. > > http://localhost:8080/ccm/pvt/;jsessionid=0619104F4F75F01869ECC74880A3F95A > > Notice > An unexpected error has occurred > > An unexpected error has occurred. If this continues to be a problem > for you please contact the administrators of the site quoting the > following: > > CCM issue report code: 127.0.0.1:12abadc:fba42ac6b1 > > E) DROPPED MY DATABASE AND TRIED TO RE-DO THE "CCM LOADs." > .. didn't work. > F) RPM -e'd all my RPMs including core and cms. > D) Reinstalled what I had that worked previously. > [root at HT-Linux howard]# rpm -qa > rpm-list.txt > [root at HT-Linux howard]# grep ccm rpm-list.txt > ccm-tools-servlet-tomcat-0.9.0.AUTO.03.09.2004-5 > ccm-core-6.1.0.AUTO.03.09.2004-6 > ccm-cms-6.1.0.AUTO.03.09.2004-6 > ccm-bookmarks-doc-1.0.0.AUTO.03.09.2004-1 > ccm-portalserver-1.0.0.AUTO.03.09.2004-1 > ccm-faq-doc-1.0.0.AUTO.03.09.2004-1 > ccm-core-doc-6.1.0.AUTO.03.09.2004-6 > ccm-config-libs-1.2.1-1 > ccm-portalserver-doc-1.0.0.AUTO.03.09.2004-1 > ccm-cms-doc-6.1.0.AUTO.03.09.2004-6 > ccm-bookmarks-1.0.0.AUTO.03.09.2004-1 > ccm-tools-0.9.0.AUTO.03.09.2004-5 > ccm-faq-1.0.0.AUTO.03.09.2004-1 > [root at HT-Linux howard]# > E) CONFLICTING PACKAGES on CCM LOAD. > > "com.arsdigita.packaging.MasterTool load --interactive ccm-core > ccm-cms ccm-portalserver > conflicting packages: [ccm-core, ccm-portalserver, ccm-cms]" > ------------------------------------------------------------------------ > [root at HT-Linux howard]# ccm load --interactive ccm-core ccm-cms > ccm-portalserverCCM_HOME: /usr/share/ccm > CCM_TOOLS_HOME: /usr/share/ccm-tools > CCM_TOOLS_COMMANDS_DIR: /usr/share/ccm-tools/commands > looking up /usr/share/ccm-tools/commands/load > ccm-run --verbose --verbose com.arsdigita.packaging.MasterTool load > --interactive ccm-core ccm-cms ccm-portalserver > reading /etc/ccm/ccm.classpath > /usr/share/java/servletapi4.jar > /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004.jar > /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/ > /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/Tidy.jar > /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/activation.jar > /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/aspectjrt-1.0.5.jar > /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/cactus-1.4.1.jar > /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/commons-beanutils.jar > /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/commons-cli-1.0-beta-2-dev.ja r > /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/commons-codec-1.2.jar > /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/commons-httpclient-2.0alpha1- 20020606.jar > /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/commons-logging-1.0.jar > /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/i18n.jar > /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/jakarta-oro-2.0.7.jar > /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/jaxp.jar > /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/jdom.jar > /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/jdxslt.jar > /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/log4j.jar > /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/lucene-1.2.jar > /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/mail.jar > /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/postgresql.jar > /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/saxon.jar > /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/xalan.jar > /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/xerces.jar > /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/xsltc.jar > /usr/share/java/ccm-bookmarks-1.0.0.AUTO.03.09.2004.jar > /usr/share/java/ccm-bookmarks-1.0.0.AUTO.03.09.2004/ > /usr/share/java/ccm-cms-6.1.0.AUTO.03.09.2004.jar > /usr/share/java/ccm-cms-6.1.0.AUTO.03.09.2004/ > /usr/share/java/ccm-cms-6.1.0.AUTO.03.09.2004/jakarta-oro-2.0.4.jar > /usr/share/java/ccm-faq-1.0.0.AUTO.03.09.2004.jar > /usr/share/java/ccm-faq-1.0.0.AUTO.03.09.2004/ > /usr/share/java/ccm-portalserver-1.0.0.AUTO.03.09.2004.jar > /usr/share/java/ccm-portalserver-1.0.0.AUTO.03.09.2004/ > /usr/java/j2sdk1.4.2_03/bin/java -cp > /usr/share/java/servletapi4.jar:/usr/share/java/ccm-core-6.1.0.AUTO.03.09.20 04.jar:/usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/:/usr/share/java/ccm-c ore-6.1.0.AUTO.03.09.2004/Tidy.jar:/usr/share/java/ccm-core-6.1.0.AUTO.03.09 .2004/activation.jar:/usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/aspectjr t-1.0.5.jar:/usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/cactus-1.4.1.jar: /usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/commons-beanutils.jar:/usr/sh are/java/ccm-core-6.1.0.AUTO.03.09.2004/commons-cli-1.0-beta-2-dev.jar:/usr/ share/java/ccm-core-6.1.0.AUTO.03.09.2004/commons-codec-1.2.jar:/usr/share/j ava/ccm-core-6.1.0.AUTO.03.09.2004/commons-httpclient-2.0alpha1-20020606.jar :/usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/commons-logging-1.0.jar:/usr /share/java/ccm-core-6.1.0.AUTO.03.09.2004/i18n.jar:/usr/share/java/ccm-core -6.1.0.AUTO.03.09.2004/jakarta-oro-2.0.7.jar:/usr/share/java/ccm-core-6.1.0. AUTO.03.09.2004/jaxp.jar:/usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/jdom .jar:/usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/jdxslt.jar:/usr/share/ja va/ccm-core-6.1.0.AUTO.03.09.2004/log4j.jar:/usr/share/java/ccm-core-6.1.0.A UTO.03.09.2004/lucene-1.2.jar:/usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004 /mail.jar:/usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/postgresql.jar:/usr /share/java/ccm-core-6.1.0.AUTO.03.09.2004/saxon.jar:/usr/share/java/ccm-cor e-6.1.0.AUTO.03.09.2004/xalan.jar:/usr/share/java/ccm-core-6.1.0.AUTO.03.09. 2004/xerces.jar:/usr/share/java/ccm-core-6.1.0.AUTO.03.09.2004/xsltc.jar:/us r/share/java/ccm-bookmarks-1.0.0.AUTO.03.09.2004.jar:/usr/share/java/ccm-boo kmarks-1.0.0.AUTO.03.09.2004/:/usr/share/java/ccm-cms-6.1.0.AUTO.03.09.2004. jar:/usr/share/java/ccm-cms-6.1.0.AUTO.03.09.2004/:/usr/share/java/ccm-cms-6 .1.0.AUTO.03.09.2004/jakarta-oro-2.0.4.jar:/usr/share/java/ccm-faq-1.0.0.AUT O.03.09.2004.jar:/usr/share/java/ccm-faq-1.0.0.AUTO.03.09.2004/:/usr/share/j ava/ccm-portalserver-1.0.0.AUTO.03.09.2004.jar:/usr/share/java/ccm-portalser ver-1.0.0.AUTO.03.09.2004/ -Dccm.home=/usr/share/ccm -Dccm.conf=/usr/share/ ccm/conf/registry -Dcom.arsdigita.util.Assert.enabled=true -Djavax.xml.parse rs.DocumentBuilderFactory=org.apache.xerces.jaxp.DocumentBuilderFactoryImpl -Djavax.xml.parsers.SAXParserFactory=org.apache.xerces.jaxp.SAXParserFactory Impl -Djavax.xml.transform.TransformerFactory=com.icl.saxon.TransformerFacto ryImpl > -Djava.ext.dirs=/usr/java/j2sdk1.4.2_03/jre/lib/ext:/usr/java/j2sdk1.4.2_0 3/lib/ext:/usr/share/ccm/webapps/WEB-INF/system:/usr/share/ccm-tools/lib/sec urity -Dlog4j.configuration=file:///usr/share/ccm/conf/log4j.properties com.arsdigita.packaging.MasterTool load --interactive ccm-core ccm-cms ccm-portalserver > conflicting packages: [ccm-core, ccm-portalserver, ccm-cms] > [root at HT-Linux howard]# > > > > > > ______________________________________________________________________ > -- > Redhat-ccm-list mailing list > Redhat-ccm-list at redhat.com > https://www.redhat.com/mailman/listinfo/redhat-ccm-list > Archives: https://www.redhat.com/pipermail/redhat-ccm-list/ --- Incoming mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.548 / Virus Database: 341 - Release Date: 05/12/2003 --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.548 / Virus Database: 341 - Release Date: 05/12/2003 From docngeek at yahoo.ca Sun Apr 18 18:42:39 2004 From: docngeek at yahoo.ca (Howard Thompson) Date: Sun, 18 Apr 2004 14:42:39 -0400 Subject: [redhat-ccm-list] Probably a hostinit/config. problem; installing 6.1beta In-Reply-To: <40682004.20609@redhat.com> Message-ID: Richard & Dennis, Thanks. Dropping the database did resolve the last issue on this topic. Dennis' previous email clued me into how files were being copied and Tomcat was being started. (A vital point) After dropping the database and redoing the loads & hostinit, everything worked fine. As to why it didn't work the first time, who knows. It certainly was odd that we got sort of half a data fill. Thanks again, Howard -----Original Message----- From: Richard Li [mailto:richardl at redhat.com] Sent: March 29, 2004 8:09 AM To: Howard Thompson Cc: Dennis Gregorovic; redhat-ccm-list at redhat.com Subject: Re: [redhat-ccm-list] Probably a hostinit/config. problem; installing 6.1beta Howard Thompson wrote: >Hi Dennis & others: > >At the end of "ccm load --interactive ccm-core ccm-cms ccm-portalserver" I >got the following "WARNINGS", are they my problem as to why HOSTINIT is not >copying the files? If so, what do I need to fix? > >The "conflicting tables: [inits, acs_objects]" is most troubling in my mind. > > You've already loaded the data model, so you can't load it again. Drop your database and start over, or you can use the specific options of ccm load to initialize the rest of your system (see ccm load --help). Richard --- Incoming mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.548 / Virus Database: 341 - Release Date: 05/12/2003 --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.548 / Virus Database: 341 - Release Date: 05/12/2003 From tom415 at yahoo.com Sun Apr 18 20:04:13 2004 From: tom415 at yahoo.com (Tom) Date: Sun, 18 Apr 2004 13:04:13 -0700 (PDT) Subject: [redhat-ccm-list] Where is $TOMCAT_HOME Message-ID: <20040418200413.93817.qmail@web41001.mail.yahoo.com> Okay, I have a simple question. What do I set $tomcat_home as? I think I have all the apps installed properly and I ran "ccm hostinit" with container tomcat, but when I run "ccm start" I get this message: "TOMCAT_HOME not set and no Tomcat installation found". Would someone please reply with where the tomcat instance is installed? Thanks. Regards, Tom Baik __________________________________ Do you Yahoo!? Yahoo! Photos: High-quality 4x6 digital prints for 25? http://photos.yahoo.com/ph/print_splash From tom415 at yahoo.com Mon Apr 19 17:06:09 2004 From: tom415 at yahoo.com (Tom) Date: Mon, 19 Apr 2004 10:06:09 -0700 (PDT) Subject: [redhat-ccm-list] Cannot seem to get ccm installed. Please help. Message-ID: <20040419170609.90938.qmail@web41015.mail.yahoo.com> I just cannot seem to get ccm installed and running. I've done a few complete uninstalls and re-installs with no success. Would someone please help. I've downloaded the nightly builds and installed them. When I then try to load the applications using "ccm load --interactive " I get the following error: [root at www noarch]# ccm load --interactive ccm-core ccm-cms ccm-portalserver com.arsdigita.util.UncheckedWrapperException: class = class com.arsdigita.web.WebConfig, params = [], values = [] (root cause: java.lang.reflect.InvocationTargetException) at com.arsdigita.util.Classes.newInstance(Classes.java:85) at com.arsdigita.util.Classes.newInstance(Classes.java:133) at com.arsdigita.packaging.Config.(Config.java:44) at com.arsdigita.packaging.Load.run(Load.java:232) at com.arsdigita.packaging.MasterTool.main(MasterTool.java:90) Root cause: java.lang.reflect.InvocationTargetException at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27) at java.lang.reflect.Constructor.newInstance(Constructor.java:274) at com.arsdigita.util.Classes.newInstance(Classes.java:77) at com.arsdigita.util.Classes.newInstance(Classes.java:133) at com.arsdigita.packaging.Config.(Config.java:44) at com.arsdigita.packaging.Load.run(Load.java:232) at com.arsdigita.packaging.MasterTool.main(MasterTool.java:90) Caused by: java.lang.NoClassDefFoundError: javax/servlet/ServletResponse at com.arsdigita.web.WebConfig$CachePolicyParameter.(WebConfig.java:188) at com.arsdigita.web.WebConfig.(WebConfig.java:90) ... 9 more Please help. Thanks. Regards, Tom Baik __________________________________ Do you Yahoo!? Yahoo! Photos: High-quality 4x6 digital prints for 25? http://photos.yahoo.com/ph/print_splash From Martin.Denham at edfenergy.com Mon Apr 19 17:29:31 2004 From: Martin.Denham at edfenergy.com (Denham, Martin) Date: Mon, 19 Apr 2004 18:29:31 +0100 Subject: [redhat-ccm-list] weblogic, other questions, and a bugette Message-ID: <4C04D804C114CB46A20FE832EA339411013E895C@hdqe2k01.customer.edfenergy.net> Hi, Does anybody know if ccm-cms will run on weblogic, and any pointers to make it run? I have managed to run ccm-cms-5.2.1 on windows using tomcat and the only bug I found in the installation was that I had to add &generate_tomcat_env(); in configure.pl } elsif ($container eq 'tomcat4') { &generate_modjk(); &generate_workers(); &generate_tomcat_env(); < References: Message-ID: <1082396465.5223.22.camel@toad.boston.redhat.com> It sounds like you're using the 6.0 install guide. Try http://rhea.redhat.com/documentation/rhea-ig-waf-en-6.1/index.html -- Dennis On Fri, 2004-04-16 at 05:06, Stefan.Mueller-Wilken at resco.de wrote: > Hi there! > > I'm new to the CCM / Enterprise Portal system and would like to install > the CCM nightly build from scratch. Is this possible? > > I haven't been too successful yet. According to the WAF Installation Guide > there should be configuration files in etc called ccm-core.cfg, > ccm-core.cfg-servlet-container- and ccm-core.config.vars none of > which actually is part of the nightly build zips. So, what's the trick to > get the portal up and flying? > > Cheers, > Stevie > From dgregor at redhat.com Mon Apr 19 17:48:41 2004 From: dgregor at redhat.com (Dennis Gregorovic) Date: Mon, 19 Apr 2004 13:48:41 -0400 Subject: [redhat-ccm-list] Where is $TOMCAT_HOME In-Reply-To: <20040418200413.93817.qmail@web41001.mail.yahoo.com> References: <20040418200413.93817.qmail@web41001.mail.yahoo.com> Message-ID: <1082396921.5223.31.camel@toad.boston.redhat.com> The value of TOMCAT_HOME will depend on where you have Tomcat installed. It should be the root directory of your installation (i.e. right above bin, conf, etc). There are a number of ways to set TOMCAT_HOME. One is to just set it in your shell: export TOMCAT_HOME=/usr/share/tomcat. Another is to add this line to $CCM_HOME/conf/envvars: TOMCAT_HOME=/usr/share/tomcat -- Dennis On Sun, 2004-04-18 at 16:04, Tom wrote: > Okay, I have a simple question. What do I set $tomcat_home as? I > think I have all the apps installed properly and I ran "ccm hostinit" > with container tomcat, but when I run "ccm start" I get this message: > "TOMCAT_HOME not set and no Tomcat installation found". > > Would someone please reply with where the tomcat instance is installed? > Thanks. > > Regards, > Tom Baik > > > > > > __________________________________ > Do you Yahoo!? > Yahoo! Photos: High-quality 4x6 digital prints for 25 > http://photos.yahoo.com/ph/print_splash > From dgregor at redhat.com Mon Apr 19 17:51:12 2004 From: dgregor at redhat.com (Dennis Gregorovic) Date: Mon, 19 Apr 2004 13:51:12 -0400 Subject: [redhat-ccm-list] Cannot seem to get ccm installed. Please help. In-Reply-To: <20040419170609.90938.qmail@web41015.mail.yahoo.com> References: <20040419170609.90938.qmail@web41015.mail.yahoo.com> Message-ID: <1082397071.5223.34.camel@toad.boston.redhat.com> That error indicates that the Servlet jar is not in your classpath. Installing servlet-2.3-1ccm.noarch.rpm from the nightly builds should solve the problem. If not, try manually adding the servlet jar to your classpath (e.g. CLASSPATH=$CLASSPATH:/usr/share/java/servlet-2.3.jar) -- Dennis On Mon, 2004-04-19 at 13:06, Tom wrote: > I just cannot seem to get ccm installed and running. I've done a few > complete uninstalls and re-installs with no success. Would someone > please help. > > I've downloaded the nightly builds and installed them. When I then try > to load the applications using "ccm load --interactive " I get > the following error: > > [root at www noarch]# ccm load --interactive ccm-core ccm-cms > ccm-portalserver > com.arsdigita.util.UncheckedWrapperException: class = class > com.arsdigita.web.WebConfig, params = [], values = [] (root cause: > java.lang.reflect.InvocationTargetException) > at com.arsdigita.util.Classes.newInstance(Classes.java:85) > at com.arsdigita.util.Classes.newInstance(Classes.java:133) > at com.arsdigita.packaging.Config.(Config.java:44) > at com.arsdigita.packaging.Load.run(Load.java:232) > at com.arsdigita.packaging.MasterTool.main(MasterTool.java:90) > Root cause: > java.lang.reflect.InvocationTargetException > at > sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) > at > sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39) > at > sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27) > at > java.lang.reflect.Constructor.newInstance(Constructor.java:274) > at com.arsdigita.util.Classes.newInstance(Classes.java:77) > at com.arsdigita.util.Classes.newInstance(Classes.java:133) > at com.arsdigita.packaging.Config.(Config.java:44) > at com.arsdigita.packaging.Load.run(Load.java:232) > at com.arsdigita.packaging.MasterTool.main(MasterTool.java:90) > Caused by: java.lang.NoClassDefFoundError: > javax/servlet/ServletResponse > at > com.arsdigita.web.WebConfig$CachePolicyParameter.(WebConfig.java:188) > at com.arsdigita.web.WebConfig.(WebConfig.java:90) > ... 9 more > > > Please help. Thanks. > > Regards, > Tom Baik > > > > > > > > __________________________________ > Do you Yahoo!? > Yahoo! Photos: High-quality 4x6 digital prints for 25 > http://photos.yahoo.com/ph/print_splash > From tom415 at yahoo.com Mon Apr 19 18:30:22 2004 From: tom415 at yahoo.com (Tom) Date: Mon, 19 Apr 2004 11:30:22 -0700 (PDT) Subject: [redhat-ccm-list] Cannot seem to get ccm installed. Please help. In-Reply-To: <1082397071.5223.34.camel@toad.boston.redhat.com> Message-ID: <20040419183022.24707.qmail@web41011.mail.yahoo.com> Thanks again for your help. I followed your directions and I got past the previous error. Now, it seems to continue installing and stops after this output: CHECK: The database type is recognized CHECK: The ccm-core package is configured. CHECK: The JDBC URL parameter is set. CHECK: The database is accepting connections CHECK: JAAS is available WARNING: Multiple implementations of the same API found The CCM runtime classpath contains two or more implementations of the same API. Only one, from the first location listed below, will be used. /usr/local/java/j2sdk1.4.2_04/jre/lib/rt.jar /usr/share/ccm-tools/lib/security/jaas.jar CHECK: JCE is available WARNING: Multiple implementations of the same API found The CCM runtime classpath contains two or more implementations of the same API. Only one, from the first location listed below, will be used. /usr/local/java/j2sdk1.4.2_04/jre/lib/jce.jar /usr/share/ccm-tools/lib/security/jce.jar 2004-04-19 13:24:27,838 [ main] INFO packaging.Loader - Loading schema for ccm-core 2004-04-19 13:24:48,156 [ main] INFO packaging.Loader - Loading schema for ccm-portalserver 2004-04-19 13:24:49,464 [ main] INFO packaging.Loader - Loading schema for ccm-cms 2004-04-19 13:24:57,475 [ main] INFO runtime.Startup - Initializing WAF runtime 2004-04-19 13:24:59,067 [ main] INFO runtime.Startup - Initialization complete 2004-04-19 13:24:59,068 [ main] INFO packaging.Loader - Running initializer com.arsdigita.core.Initializer com/arsdigita/notification/Notification.pdl: line 33, column 10 [warning]: table already has primary key: com/arsdigita/notification/Notification.pdl: line 31, column 4 com/arsdigita/notification/Notification.pdl: line 34, column 10 [warning]: table already has primary key: com/arsdigita/notification/Notification.pdl: line 31, column 4 2004-04-19 13:25:03,140 [ main] WARN mimetypes.MimeTypeInitializer - Had INSOFilterEnabled set to true when using a non Oracle database. This is not allowed. Setting to false. Database=PostgreSQL 2004-04-19 13:25:03,496 [ main] INFO packaging.Loader - Running data loader com.arsdigita.core.Loader 2004-04-19 13:25:08,487 [ main] INFO packaging.Loader - Running initializer com.arsdigita.portalserver.Initializer 2004-04-19 13:25:21,485 [ main] WARN admin.Initializer - There is no Portal Site Map application instance on /portal-admin/. Installing now. 2004-04-19 13:25:21,609 [ main] WARN admin.Initializer - Done installing Portal Site Map on /portal-admin/portal-sitemap/. 2004-04-19 13:25:21,912 [ main] INFO packaging.Loader - Running data loader com.arsdigita.portalserver.Loader 2004-04-19 13:25:21,940 [ main] WARN portalserver.Loader - Adding stylesheet: /packages/login/xsl/login_ps_en.xsl 2004-04-19 13:25:21,949 [ main] WARN portalserver.Loader - Done 2004-04-19 13:25:21,958 [ main] INFO packaging.Loader - Running initializer com.arsdigita.cms.Initializer com/arsdigita/content-section/ContentSection.pdl: line 113, column 37 [warning]: table already has primary key: com/arsdigita/content-section/ContentSection.pdl: line 39, column 38 2004-04-19 13:25:38,181 [ main] INFO packaging.Loader - Running data loader com.arsdigita.cms.Loader Has the "load" process concluded or did it stop prematurely? Regards, Tom Baik --- Dennis Gregorovic wrote: > That error indicates that the Servlet jar is not in your classpath. > Installing servlet-2.3-1ccm.noarch.rpm from the nightly builds should > solve the problem. If not, try manually adding the servlet jar to > your > classpath (e.g. CLASSPATH=$CLASSPATH:/usr/share/java/servlet-2.3.jar) > > -- Dennis > > > On Mon, 2004-04-19 at 13:06, Tom wrote: > > I just cannot seem to get ccm installed and running. I've done a > few > > complete uninstalls and re-installs with no success. Would someone > > please help. > > > > I've downloaded the nightly builds and installed them. When I then > try > > to load the applications using "ccm load --interactive " I > get > > the following error: > > > > [root at www noarch]# ccm load --interactive ccm-core ccm-cms > > ccm-portalserver > > com.arsdigita.util.UncheckedWrapperException: class = class > > com.arsdigita.web.WebConfig, params = [], values = [] (root cause: > > java.lang.reflect.InvocationTargetException) > > at com.arsdigita.util.Classes.newInstance(Classes.java:85) > > at com.arsdigita.util.Classes.newInstance(Classes.java:133) > > at com.arsdigita.packaging.Config.(Config.java:44) > > at com.arsdigita.packaging.Load.run(Load.java:232) > > at > com.arsdigita.packaging.MasterTool.main(MasterTool.java:90) > > Root cause: > > java.lang.reflect.InvocationTargetException > > at > > sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native > Method) > > at > > > sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39) > > at > > > sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27) > > at > > java.lang.reflect.Constructor.newInstance(Constructor.java:274) > > at com.arsdigita.util.Classes.newInstance(Classes.java:77) > > at com.arsdigita.util.Classes.newInstance(Classes.java:133) > > at com.arsdigita.packaging.Config.(Config.java:44) > > at com.arsdigita.packaging.Load.run(Load.java:232) > > at > com.arsdigita.packaging.MasterTool.main(MasterTool.java:90) > > Caused by: java.lang.NoClassDefFoundError: > > javax/servlet/ServletResponse > > at > > > com.arsdigita.web.WebConfig$CachePolicyParameter.(WebConfig.java:188) > > at com.arsdigita.web.WebConfig.(WebConfig.java:90) > > ... 9 more > > > > > > Please help. Thanks. > > > > Regards, > > Tom Baik > > > > > > > > > > > > > > > > __________________________________ > > Do you Yahoo!? > > Yahoo! Photos: High-quality 4x6 digital prints for 25 > > http://photos.yahoo.com/ph/print_splash > > > > > -- > Redhat-ccm-list mailing list > Redhat-ccm-list at redhat.com > https://www.redhat.com/mailman/listinfo/redhat-ccm-list > Archives: https://www.redhat.com/pipermail/redhat-ccm-list/ __________________________________ Do you Yahoo!? Yahoo! Photos: High-quality 4x6 digital prints for 25? http://photos.yahoo.com/ph/print_splash From dgregor at redhat.com Mon Apr 19 19:23:52 2004 From: dgregor at redhat.com (Dennis Gregorovic) Date: Mon, 19 Apr 2004 15:23:52 -0400 Subject: [redhat-ccm-list] Cannot seem to get ccm installed. Please help. In-Reply-To: <20040419183022.24707.qmail@web41011.mail.yahoo.com> References: <20040419183022.24707.qmail@web41011.mail.yahoo.com> Message-ID: <1082402631.5223.98.camel@toad.boston.redhat.com> That output looks fine. It appears to have finished successfully. On Mon, 2004-04-19 at 14:30, Tom wrote: > Thanks again for your help. > > I followed your directions and I got past the previous error. > > Now, it seems to continue installing and stops after this output: > > CHECK: The database type is recognized > CHECK: The ccm-core package is configured. > CHECK: The JDBC URL parameter is set. > CHECK: The database is accepting connections > CHECK: JAAS is available > WARNING: Multiple implementations of the same API found > > The CCM runtime classpath contains two or more implementations of the > same API. Only one, from the first location listed below, will be > used. > > /usr/local/java/j2sdk1.4.2_04/jre/lib/rt.jar > /usr/share/ccm-tools/lib/security/jaas.jar > CHECK: JCE is available > WARNING: Multiple implementations of the same API found > > The CCM runtime classpath contains two or more implementations of the > same API. Only one, from the first location listed below, will be > used. > > /usr/local/java/j2sdk1.4.2_04/jre/lib/jce.jar > /usr/share/ccm-tools/lib/security/jce.jar > 2004-04-19 13:24:27,838 [ main] INFO packaging.Loader - Loading schema > for ccm-core > 2004-04-19 13:24:48,156 [ main] INFO packaging.Loader - Loading schema > for ccm-portalserver > 2004-04-19 13:24:49,464 [ main] INFO packaging.Loader - Loading schema > for ccm-cms > 2004-04-19 13:24:57,475 [ main] INFO runtime.Startup - Initializing > WAF runtime > 2004-04-19 13:24:59,067 [ main] INFO runtime.Startup - Initialization > complete > 2004-04-19 13:24:59,068 [ main] INFO packaging.Loader - Running > initializer com.arsdigita.core.Initializer > com/arsdigita/notification/Notification.pdl: line 33, column 10 > [warning]: table already has primary key: > com/arsdigita/notification/Notification.pdl: line 31, column 4 > com/arsdigita/notification/Notification.pdl: line 34, column 10 > [warning]: table already has primary key: > com/arsdigita/notification/Notification.pdl: line 31, column 4 > > 2004-04-19 13:25:03,140 [ main] WARN mimetypes.MimeTypeInitializer - > Had INSOFilterEnabled set to true when using a non Oracle database. > This is not allowed. Setting to false. Database=PostgreSQL > 2004-04-19 13:25:03,496 [ main] INFO packaging.Loader - Running data > loader com.arsdigita.core.Loader > 2004-04-19 13:25:08,487 [ main] INFO packaging.Loader - Running > initializer com.arsdigita.portalserver.Initializer > 2004-04-19 13:25:21,485 [ main] WARN admin.Initializer - There is no > Portal Site Map application instance on /portal-admin/. Installing > now. > 2004-04-19 13:25:21,609 [ main] WARN admin.Initializer - Done > installing Portal Site Map on /portal-admin/portal-sitemap/. > 2004-04-19 13:25:21,912 [ main] INFO packaging.Loader - Running data > loader com.arsdigita.portalserver.Loader > 2004-04-19 13:25:21,940 [ main] WARN portalserver.Loader - Adding > stylesheet: /packages/login/xsl/login_ps_en.xsl > 2004-04-19 13:25:21,949 [ main] WARN portalserver.Loader - Done > 2004-04-19 13:25:21,958 [ main] INFO packaging.Loader - Running > initializer com.arsdigita.cms.Initializer > com/arsdigita/content-section/ContentSection.pdl: line 113, column 37 > [warning]: table already has primary key: > com/arsdigita/content-section/ContentSection.pdl: line 39, column 38 > > 2004-04-19 13:25:38,181 [ main] INFO packaging.Loader - Running data > loader com.arsdigita.cms.Loader > > > Has the "load" process concluded or did it stop prematurely? > > Regards, > Tom Baik > > > > > > --- Dennis Gregorovic wrote: > > That error indicates that the Servlet jar is not in your classpath. > > Installing servlet-2.3-1ccm.noarch.rpm from the nightly builds should > > solve the problem. If not, try manually adding the servlet jar to > > your > > classpath (e.g. CLASSPATH=$CLASSPATH:/usr/share/java/servlet-2.3.jar) > > > > -- Dennis > > > > > > On Mon, 2004-04-19 at 13:06, Tom wrote: > > > I just cannot seem to get ccm installed and running. I've done a > > few > > > complete uninstalls and re-installs with no success. Would someone > > > please help. > > > > > > I've downloaded the nightly builds and installed them. When I then > > try > > > to load the applications using "ccm load --interactive " I > > get > > > the following error: > > > > > > [root at www noarch]# ccm load --interactive ccm-core ccm-cms > > > ccm-portalserver > > > com.arsdigita.util.UncheckedWrapperException: class = class > > > com.arsdigita.web.WebConfig, params = [], values = [] (root cause: > > > java.lang.reflect.InvocationTargetException) > > > at com.arsdigita.util.Classes.newInstance(Classes.java:85) > > > at com.arsdigita.util.Classes.newInstance(Classes.java:133) > > > at com.arsdigita.packaging.Config.(Config.java:44) > > > at com.arsdigita.packaging.Load.run(Load.java:232) > > > at > > com.arsdigita.packaging.MasterTool.main(MasterTool.java:90) > > > Root cause: > > > java.lang.reflect.InvocationTargetException > > > at > > > sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native > > Method) > > > at > > > > > > sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39) > > > at > > > > > > sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27) > > > at > > > java.lang.reflect.Constructor.newInstance(Constructor.java:274) > > > at com.arsdigita.util.Classes.newInstance(Classes.java:77) > > > at com.arsdigita.util.Classes.newInstance(Classes.java:133) > > > at com.arsdigita.packaging.Config.(Config.java:44) > > > at com.arsdigita.packaging.Load.run(Load.java:232) > > > at > > com.arsdigita.packaging.MasterTool.main(MasterTool.java:90) > > > Caused by: java.lang.NoClassDefFoundError: > > > javax/servlet/ServletResponse > > > at > > > > > > com.arsdigita.web.WebConfig$CachePolicyParameter.(WebConfig.java:188) > > > at com.arsdigita.web.WebConfig.(WebConfig.java:90) > > > ... 9 more > > > > > > > > > Please help. Thanks. > > > > > > Regards, > > > Tom Baik > > > > > > > > > > > > > > > > > > > > > > > > __________________________________ > > > Do you Yahoo!? > > > Yahoo! Photos: High-quality 4x6 digital prints for 25 > > > http://photos.yahoo.com/ph/print_splash > > > > > > > > > -- > > Redhat-ccm-list mailing list > > Redhat-ccm-list at redhat.com > > https://www.redhat.com/mailman/listinfo/redhat-ccm-list > > Archives: https://www.redhat.com/pipermail/redhat-ccm-list/ > > > > > > __________________________________ > Do you Yahoo!? > Yahoo! Photos: High-quality 4x6 digital prints for 25 > http://photos.yahoo.com/ph/print_splash From dgregor at redhat.com Mon Apr 19 19:41:25 2004 From: dgregor at redhat.com (Dennis Gregorovic) Date: Mon, 19 Apr 2004 15:41:25 -0400 Subject: [redhat-ccm-list] Problems loading collaboration applications. (RPM Dependencies & ccm load) In-Reply-To: References: Message-ID: <1082403684.5223.105.camel@toad.boston.redhat.com> If you try to install a more recent nightly build of the forums RPM, the dependency problem should be resolved. I don't know offhand what might be causing problem B. -- Dennis On Fri, 2004-04-16 at 13:23, Howard Thompson wrote: > Hi, > > Two Problems: > a) Should I be overriding dependencies with a NODEP on RPM for > ccm_forum or is there something more serious going on. See "Problem A" > details below. > b) Running "ccm load --interactive ccm-bookmarks" causes > ccm-dispatcher servlet to no longer load. See "Problem B" details > below. > > Build: 6.1.0.AUTO.03.09.2004 / 1.0.0.AUTO.03.09.2004 > > Thanks, > > Howard Thompson > > > PROBLEM A ------- CCM-FORUM DETAILS -------------------------------- > rpm -Uvh ccm-forum* yields "ccm-core = 6.1.0 is needed by > ccm-forum-1.4.1.AUTO.03.09.2004-6". You can see from the listing > below, ccm-core-6.1.0 is already loaded. > > [howard at HT-Linux sub]$ ls > ccm-forum-1.4.1.AUTO.03.09.2004-6.noarch.rpm > ccm-forum-doc-1.4.1.AUTO.03.09.2004-6.noarch.rpm > ccm-glossary-1.0.0.AUTO.03.09.2004-1.noarch.rpm > ccm-glossary-doc-1.0.0.AUTO.03.09.2004-1.noarch.rpm > [howard at HT-Linux sub]$ rpm -Uvh ccm-forum* > error: Failed dependencies: > ccm-core = 6.1.0 is needed by > ccm-forum-1.4.1.AUTO.03.09.2004-6 > [howard at HT-Linux sub]$ rpm -qa > ~/rpm-list.txt > [howard at HT-Linux sub]$ grep ccm ~/rpm-list.txt > ccm-tools-servlet-tomcat-0.9.0.AUTO.03.09.2004-5 > ccm-core-6.1.0.AUTO.03.09.2004-6 > ccm-cms-6.1.0.AUTO.03.09.2004-6 > ccm-bookmarks-doc-1.0.0.AUTO.03.09.2004-1 > ccm-portalserver-1.0.0.AUTO.03.09.2004-1 > ccm-faq-doc-1.0.0.AUTO.03.09.2004-1 > ccm-core-doc-6.1.0.AUTO.03.09.2004-6 > ccm-config-libs-1.2.1-1 > ccm-portalserver-doc-1.0.0.AUTO.03.09.2004-1 > ccm-cms-doc-6.1.0.AUTO.03.09.2004-6 > ccm-bookmarks-1.0.0.AUTO.03.09.2004-1 > ccm-tools-0.9.0.AUTO.03.09.2004-5 > ccm-faq-1.0.0.AUTO.03.09.2004-1 > [howard at HT-Linux sub]$ > > PROBLEM B ------- CCM LOAD --INTERACTIVE CCM-BOOKMARKS > DETAILS-------------------- > bookmarks > With a working ccm-core, ccm-cms & ccm-portalserver 6.1Beta, I tried > to do a ccm load --interactive ccm-bookmarks. > After doing a ccm start and trying to go to http://localhost:8080/ccm, > I got a result of 503 - "Servlet ccm-dispatcher is currently > unavailable". Looking at the log file, it shows ... ah .. something is > missing. > > "2004-04-12 12:28:56 StandardWrapper[:ccm-dispatcher]: Marking servlet > ccm-dispatcher as unavailable > 2004-04-12 12:28:56 StandardContext[]: Servlet threw load() exception > javax.servlet.ServletException: Error instantiating servlet class > com.arsdigita.web.DispatcherServlet > ... > ----- Root Cause ----- > java.lang.ExceptionInInitializerError > at > sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) > ..." > > ----------------------- HTTP ERROR > ------------------------------------ > > > HTTP Status 503 - Servlet ccm-dispatcher is currently > > unavailable > > type Status report > > message Servlet ccm-dispatcher is currently > > unavailable > > description The requested service (Servlet > > ccm-dispatcher is currently unavailable) is not > > currently available. > > Apache Tomcat/4.1 > > ______________________________________________________________________ > > > ------------------------ LOG FILE > ------------------------------------------------------------------ > > > 2004-04-12 12:28:47 HttpConnector Opening server socket on all host IP > addresses > 2004-04-12 12:28:47 HostConfig[localhost]: Deploying web application > directory ROOT > 2004-04-12 12:28:47 StandardHost[localhost]: Installing web > application at context path from URL file:/var/lib/ccm/webapps/ROOT > 2004-04-12 12:28:48 WebappLoader[]: Deploying class repositories to > work directory /usr/share/ccm/tmp/_ > 2004-04-12 12:28:49 StandardManager[]: Seeding random number generator > class java.security.SecureRandom > 2004-04-12 12:28:50 StandardManager[]: Seeding of random number > generator has been completed > 2004-04-12 12:28:50 StandardWrapper[:default]: Loading container > servlet default > 2004-04-12 12:28:50 default: init > 2004-04-12 12:28:51 StandardWrapper[:invoker]: Loading container > servlet invoker > 2004-04-12 12:28:51 invoker: init > 2004-04-12 12:28:56 StandardWrapper[:ccm-dispatcher]: Marking servlet > ccm-dispatcher as unavailable > 2004-04-12 12:28:56 StandardContext[]: Servlet threw load() exception > javax.servlet.ServletException: Error instantiating servlet class > com.arsdigita.web.DispatcherServlet > at > org.apache.catalina.core.StandardWrapper.loadServlet(Unknown Source) > at org.apache.catalina.core.StandardWrapper.load(Unknown > Source) > at > org.apache.catalina.core.StandardContext.loadOnStartup(Unknown Source) > at org.apache.catalina.core.StandardContext.start(Unknown > Source) > at > org.apache.catalina.core.ContainerBase.addChildInternal(Unknown > Source) > at org.apache.catalina.core.ContainerBase.addChild(Unknown > Source) > at org.apache.catalina.core.StandardHost.addChild(Unknown > Source) > at > org.apache.catalina.core.StandardHostDeployer.install(Unknown Source) > at org.apache.catalina.core.StandardHost.install(Unknown > Source) > at > org.apache.catalina.startup.HostConfig.deployDirectories(Unknown > Source) > at org.apache.catalina.startup.HostConfig.deployApps(Unknown > Source) > at org.apache.catalina.startup.HostConfig.start(Unknown > Source) > at > org.apache.catalina.startup.HostConfig.lifecycleEvent(Unknown Source) > at > org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(Unknown > Source) > at org.apache.catalina.core.ContainerBase.start(Unknown > Source) > at org.apache.catalina.core.StandardHost.start(Unknown Source) > at org.apache.catalina.core.ContainerBase.start(Unknown > Source) > at org.apache.catalina.core.StandardEngine.start(Unknown > Source) > at org.apache.catalina.core.StandardService.start(Unknown > Source) > at org.apache.catalina.core.StandardServer.start(Unknown > Source) > at org.apache.catalina.core.StandardService.start(Unknown > Source) > at org.apache.catalina.core.StandardServer.start(Unknown > Source) > at org.apache.catalina.startup.Catalina.start(Unknown Source) > at org.apache.catalina.startup.Catalina.execute(Unknown > Source) > at org.apache.catalina.startup.Catalina.process(Unknown > Source) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at > sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) > at > sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:324) > at com.arsdigita.tools.catalina.startup.Bootstrap.main(Unknown > Source) > ----- Root Cause ----- > java.lang.ExceptionInInitializerError > at > sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) > at > sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39) > at > sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27) > at > java.lang.reflect.Constructor.newInstance(Constructor.java:274) > at java.lang.Class.newInstance0(Class.java:308) > at java.lang.Class.newInstance(Class.java:261) > at > org.apache.catalina.core.StandardWrapper.loadServlet(Unknown Source) > at org.apache.catalina.core.StandardWrapper.load(Unknown > Source) > at > org.apache.catalina.core.StandardContext.loadOnStartup(Unknown Source) > at org.apache.catalina.core.StandardContext.start(Unknown > Source) > at > org.apache.catalina.core.ContainerBase.addChildInternal(Unknown > Source) > at org.apache.catalina.core.ContainerBase.addChild(Unknown > Source) > at org.apache.catalina.core.StandardHost.addChild(Unknown > Source) > at > org.apache.catalina.core.StandardHostDeployer.install(Unknown Source) > at org.apache.catalina.core.StandardHost.install(Unknown > Source) > at > org.apache.catalina.startup.HostConfig.deployDirectories(Unknown > Source) > at org.apache.catalina.startup.HostConfig.deployApps(Unknown > Source) > at org.apache.catalina.startup.HostConfig.start(Unknown > Source) > at > org.apache.catalina.startup.HostConfig.lifecycleEvent(Unknown Source) > at > org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(Unknown > Source) > at org.apache.catalina.core.ContainerBase.start(Unknown > Source) > at org.apache.catalina.core.StandardHost.start(Unknown Source) > > > > > ______________________________________________________________________ > -- > Redhat-ccm-list mailing list > Redhat-ccm-list at redhat.com > https://www.redhat.com/mailman/listinfo/redhat-ccm-list > Archives: https://www.redhat.com/pipermail/redhat-ccm-list/ From tom415 at yahoo.com Mon Apr 19 20:21:30 2004 From: tom415 at yahoo.com (Tom) Date: Mon, 19 Apr 2004 13:21:30 -0700 (PDT) Subject: [redhat-ccm-list] Cannot seem to get ccm installed. Please help. In-Reply-To: <1082402631.5223.98.camel@toad.boston.redhat.com> Message-ID: <20040419202130.84190.qmail@web41012.mail.yahoo.com> Dennis, Great. I continued with the installation procedure by running "ccm hostinit --container=tomcat --parameter http-port= --parameter shutdown-port=". When I execute "ccm start --container=tomcat", ccm does not seem to start up. There is no process listening on the http-port and I get the following error in the log file catalina-stdout.log: Bootstrap: Class loader creation threw exception java.lang.NoClassDefFoundError: org/apache/catalina/startup/ClassLoaderFactory at com.arsdigita.tools.catalina.startup.Bootstrap.main(Unknown Source) Please help again. Thanks. Tom --- Dennis Gregorovic wrote: > That output looks fine. It appears to have finished successfully. > > On Mon, 2004-04-19 at 14:30, Tom wrote: > > Thanks again for your help. > > > > I followed your directions and I got past the previous error. > > > > Now, it seems to continue installing and stops after this output: > > > > CHECK: The database type is recognized > > CHECK: The ccm-core package is configured. > > CHECK: The JDBC URL parameter is set. > > CHECK: The database is accepting connections > > CHECK: JAAS is available > > WARNING: Multiple implementations of the same API found > > > > The CCM runtime classpath contains two or more implementations of > the > > same API. Only one, from the first location listed below, will be > > used. > > > > /usr/local/java/j2sdk1.4.2_04/jre/lib/rt.jar > > /usr/share/ccm-tools/lib/security/jaas.jar > > CHECK: JCE is available > > WARNING: Multiple implementations of the same API found > > > > The CCM runtime classpath contains two or more implementations of > the > > same API. Only one, from the first location listed below, will be > > used. > > > > /usr/local/java/j2sdk1.4.2_04/jre/lib/jce.jar > > /usr/share/ccm-tools/lib/security/jce.jar > > 2004-04-19 13:24:27,838 [ main] INFO packaging.Loader - Loading > schema > > for ccm-core > > 2004-04-19 13:24:48,156 [ main] INFO packaging.Loader - Loading > schema > > for ccm-portalserver > > 2004-04-19 13:24:49,464 [ main] INFO packaging.Loader - Loading > schema > > for ccm-cms > > 2004-04-19 13:24:57,475 [ main] INFO runtime.Startup - > Initializing > > WAF runtime > > 2004-04-19 13:24:59,067 [ main] INFO runtime.Startup - > Initialization > > complete > > 2004-04-19 13:24:59,068 [ main] INFO packaging.Loader - Running > > initializer com.arsdigita.core.Initializer > > com/arsdigita/notification/Notification.pdl: line 33, column 10 > > [warning]: table already has primary key: > > com/arsdigita/notification/Notification.pdl: line 31, column 4 > > com/arsdigita/notification/Notification.pdl: line 34, column 10 > > [warning]: table already has primary key: > > com/arsdigita/notification/Notification.pdl: line 31, column 4 > > > > 2004-04-19 13:25:03,140 [ main] WARN mimetypes.MimeTypeInitializer > - > > Had INSOFilterEnabled set to true when using a non Oracle database. > > This is not allowed. Setting to false. Database=PostgreSQL > > 2004-04-19 13:25:03,496 [ main] INFO packaging.Loader - Running > data > > loader com.arsdigita.core.Loader > > 2004-04-19 13:25:08,487 [ main] INFO packaging.Loader - Running > > initializer com.arsdigita.portalserver.Initializer > > 2004-04-19 13:25:21,485 [ main] WARN admin.Initializer - There is > no > > Portal Site Map application instance on /portal-admin/. Installing > > now. > > 2004-04-19 13:25:21,609 [ main] WARN admin.Initializer - Done > > installing Portal Site Map on /portal-admin/portal-sitemap/. > > 2004-04-19 13:25:21,912 [ main] INFO packaging.Loader - Running > data > > loader com.arsdigita.portalserver.Loader > > 2004-04-19 13:25:21,940 [ main] WARN portalserver.Loader - Adding > > stylesheet: /packages/login/xsl/login_ps_en.xsl > > 2004-04-19 13:25:21,949 [ main] WARN portalserver.Loader - Done > > 2004-04-19 13:25:21,958 [ main] INFO packaging.Loader - Running > > initializer com.arsdigita.cms.Initializer > > com/arsdigita/content-section/ContentSection.pdl: line 113, column > 37 > > [warning]: table already has primary key: > > com/arsdigita/content-section/ContentSection.pdl: line 39, column > 38 > > > > 2004-04-19 13:25:38,181 [ main] INFO packaging.Loader - Running > data > > loader com.arsdigita.cms.Loader > > > > > > Has the "load" process concluded or did it stop prematurely? > > > > Regards, > > Tom Baik > > > > > > > > > > > > --- Dennis Gregorovic wrote: > > > That error indicates that the Servlet jar is not in your > classpath. > > > Installing servlet-2.3-1ccm.noarch.rpm from the nightly builds > should > > > solve the problem. If not, try manually adding the servlet jar > to > > > your > > > classpath (e.g. > CLASSPATH=$CLASSPATH:/usr/share/java/servlet-2.3.jar) > > > > > > -- Dennis > > > > > > > > > On Mon, 2004-04-19 at 13:06, Tom wrote: > > > > I just cannot seem to get ccm installed and running. I've done > a > > > few > > > > complete uninstalls and re-installs with no success. Would > someone > > > > please help. > > > > > > > > I've downloaded the nightly builds and installed them. When I > then > > > try > > > > to load the applications using "ccm load --interactive > " I > > > get > > > > the following error: > > > > > > > > [root at www noarch]# ccm load --interactive ccm-core ccm-cms > > > > ccm-portalserver > > > > com.arsdigita.util.UncheckedWrapperException: class = class > > > > com.arsdigita.web.WebConfig, params = [], values = [] (root > cause: > > > > java.lang.reflect.InvocationTargetException) > > > > at > com.arsdigita.util.Classes.newInstance(Classes.java:85) > > > > at > com.arsdigita.util.Classes.newInstance(Classes.java:133) > > > > at > com.arsdigita.packaging.Config.(Config.java:44) > > > > at com.arsdigita.packaging.Load.run(Load.java:232) > > > > at > > > com.arsdigita.packaging.MasterTool.main(MasterTool.java:90) > > > > Root cause: > > > > java.lang.reflect.InvocationTargetException > > > > at > > > > sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native > > > Method) > > > > at > > > > > > > > > > sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39) > > > > at > > > > > > > > > > sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27) > > > > at > > > > java.lang.reflect.Constructor.newInstance(Constructor.java:274) > > > > at > com.arsdigita.util.Classes.newInstance(Classes.java:77) > > > > at > com.arsdigita.util.Classes.newInstance(Classes.java:133) > > > > at > com.arsdigita.packaging.Config.(Config.java:44) > > > > at com.arsdigita.packaging.Load.run(Load.java:232) > > > > at > > > com.arsdigita.packaging.MasterTool.main(MasterTool.java:90) > > > > Caused by: java.lang.NoClassDefFoundError: > > > > javax/servlet/ServletResponse > > > > at > > > > > > > > > > com.arsdigita.web.WebConfig$CachePolicyParameter.(WebConfig.java:188) > > > > at > com.arsdigita.web.WebConfig.(WebConfig.java:90) > > > > ... 9 more > > > > > > > > > > > > Please help. Thanks. > > > > > > > > Regards, > > > > Tom Baik > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > __________________________________ > > > > Do you Yahoo!? > > > > Yahoo! Photos: High-quality 4x6 digital prints for 25 > > > > http://photos.yahoo.com/ph/print_splash > > > > > > > > > > > > > -- > > > Redhat-ccm-list mailing list > > > Redhat-ccm-list at redhat.com > > > https://www.redhat.com/mailman/listinfo/redhat-ccm-list > > > Archives: https://www.redhat.com/pipermail/redhat-ccm-list/ > > > > > > > > > > > > __________________________________ > > Do you Yahoo!? > > Yahoo! Photos: High-quality 4x6 digital prints for 25 > > http://photos.yahoo.com/ph/print_splash > > > -- > Redhat-ccm-list mailing list > Redhat-ccm-list at redhat.com > https://www.redhat.com/mailman/listinfo/redhat-ccm-list > Archives: https://www.redhat.com/pipermail/redhat-ccm-list/ __________________________________ Do you Yahoo!? Yahoo! Photos: High-quality 4x6 digital prints for 25? http://photos.yahoo.com/ph/print_splash From dgregor at redhat.com Mon Apr 19 23:44:13 2004 From: dgregor at redhat.com (Dennis Gregorovic) Date: Mon, 19 Apr 2004 19:44:13 -0400 Subject: [redhat-ccm-list] Cannot seem to get ccm installed. Please help. In-Reply-To: <20040419202130.84190.qmail@web41012.mail.yahoo.com> References: <20040419202130.84190.qmail@web41012.mail.yahoo.com> Message-ID: <1082418253.5223.128.camel@toad.boston.redhat.com> Sounds like Tomcat's bootstrap.jar is not in the classpath. If you add the --verbose flag when running ccm start, it will print out the classpath that it is using. My guess is that TOMCAT_HOME is not set correctly. -- Dennis On Mon, 2004-04-19 at 16:21, Tom wrote: > Dennis, > > Great. I continued with the installation procedure by running "ccm > hostinit --container=tomcat --parameter http-port= > --parameter shutdown-port=". > > When I execute "ccm start --container=tomcat", ccm does not seem to > start up. There is no process listening on the http-port and I get the > following error in the log file catalina-stdout.log: > > Bootstrap: Class loader creation threw exception > java.lang.NoClassDefFoundError: > org/apache/catalina/startup/ClassLoaderFactory > at com.arsdigita.tools.catalina.startup.Bootstrap.main(Unknown > Source) > > > Please help again. Thanks. > > > Tom > > > > > > --- Dennis Gregorovic wrote: > > That output looks fine. It appears to have finished successfully. > > > > On Mon, 2004-04-19 at 14:30, Tom wrote: > > > Thanks again for your help. > > > > > > I followed your directions and I got past the previous error. > > > > > > Now, it seems to continue installing and stops after this output: > > > > > > CHECK: The database type is recognized > > > CHECK: The ccm-core package is configured. > > > CHECK: The JDBC URL parameter is set. > > > CHECK: The database is accepting connections > > > CHECK: JAAS is available > > > WARNING: Multiple implementations of the same API found > > > > > > The CCM runtime classpath contains two or more implementations of > > the > > > same API. Only one, from the first location listed below, will be > > > used. > > > > > > /usr/local/java/j2sdk1.4.2_04/jre/lib/rt.jar > > > /usr/share/ccm-tools/lib/security/jaas.jar > > > CHECK: JCE is available > > > WARNING: Multiple implementations of the same API found > > > > > > The CCM runtime classpath contains two or more implementations of > > the > > > same API. Only one, from the first location listed below, will be > > > used. > > > > > > /usr/local/java/j2sdk1.4.2_04/jre/lib/jce.jar > > > /usr/share/ccm-tools/lib/security/jce.jar > > > 2004-04-19 13:24:27,838 [ main] INFO packaging.Loader - Loading > > schema > > > for ccm-core > > > 2004-04-19 13:24:48,156 [ main] INFO packaging.Loader - Loading > > schema > > > for ccm-portalserver > > > 2004-04-19 13:24:49,464 [ main] INFO packaging.Loader - Loading > > schema > > > for ccm-cms > > > 2004-04-19 13:24:57,475 [ main] INFO runtime.Startup - > > Initializing > > > WAF runtime > > > 2004-04-19 13:24:59,067 [ main] INFO runtime.Startup - > > Initialization > > > complete > > > 2004-04-19 13:24:59,068 [ main] INFO packaging.Loader - Running > > > initializer com.arsdigita.core.Initializer > > > com/arsdigita/notification/Notification.pdl: line 33, column 10 > > > [warning]: table already has primary key: > > > com/arsdigita/notification/Notification.pdl: line 31, column 4 > > > com/arsdigita/notification/Notification.pdl: line 34, column 10 > > > [warning]: table already has primary key: > > > com/arsdigita/notification/Notification.pdl: line 31, column 4 > > > > > > 2004-04-19 13:25:03,140 [ main] WARN mimetypes.MimeTypeInitializer > > - > > > Had INSOFilterEnabled set to true when using a non Oracle database. > > > This is not allowed. Setting to false. Database=PostgreSQL > > > 2004-04-19 13:25:03,496 [ main] INFO packaging.Loader - Running > > data > > > loader com.arsdigita.core.Loader > > > 2004-04-19 13:25:08,487 [ main] INFO packaging.Loader - Running > > > initializer com.arsdigita.portalserver.Initializer > > > 2004-04-19 13:25:21,485 [ main] WARN admin.Initializer - There is > > no > > > Portal Site Map application instance on /portal-admin/. Installing > > > now. > > > 2004-04-19 13:25:21,609 [ main] WARN admin.Initializer - Done > > > installing Portal Site Map on /portal-admin/portal-sitemap/. > > > 2004-04-19 13:25:21,912 [ main] INFO packaging.Loader - Running > > data > > > loader com.arsdigita.portalserver.Loader > > > 2004-04-19 13:25:21,940 [ main] WARN portalserver.Loader - Adding > > > stylesheet: /packages/login/xsl/login_ps_en.xsl > > > 2004-04-19 13:25:21,949 [ main] WARN portalserver.Loader - Done > > > 2004-04-19 13:25:21,958 [ main] INFO packaging.Loader - Running > > > initializer com.arsdigita.cms.Initializer > > > com/arsdigita/content-section/ContentSection.pdl: line 113, column > > 37 > > > [warning]: table already has primary key: > > > com/arsdigita/content-section/ContentSection.pdl: line 39, column > > 38 > > > > > > 2004-04-19 13:25:38,181 [ main] INFO packaging.Loader - Running > > data > > > loader com.arsdigita.cms.Loader > > > > > > > > > Has the "load" process concluded or did it stop prematurely? > > > > > > Regards, > > > Tom Baik > > > > > > > > > > > > > > > > > > --- Dennis Gregorovic wrote: > > > > That error indicates that the Servlet jar is not in your > > classpath. > > > > Installing servlet-2.3-1ccm.noarch.rpm from the nightly builds > > should > > > > solve the problem. If not, try manually adding the servlet jar > > to > > > > your > > > > classpath (e.g. > > CLASSPATH=$CLASSPATH:/usr/share/java/servlet-2.3.jar) > > > > > > > > -- Dennis > > > > > > > > > > > > On Mon, 2004-04-19 at 13:06, Tom wrote: > > > > > I just cannot seem to get ccm installed and running. I've done > > a > > > > few > > > > > complete uninstalls and re-installs with no success. Would > > someone > > > > > please help. > > > > > > > > > > I've downloaded the nightly builds and installed them. When I > > then > > > > try > > > > > to load the applications using "ccm load --interactive > > " I > > > > get > > > > > the following error: > > > > > > > > > > [root at www noarch]# ccm load --interactive ccm-core ccm-cms > > > > > ccm-portalserver > > > > > com.arsdigita.util.UncheckedWrapperException: class = class > > > > > com.arsdigita.web.WebConfig, params = [], values = [] (root > > cause: > > > > > java.lang.reflect.InvocationTargetException) > > > > > at > > com.arsdigita.util.Classes.newInstance(Classes.java:85) > > > > > at > > com.arsdigita.util.Classes.newInstance(Classes.java:133) > > > > > at > > com.arsdigita.packaging.Config.(Config.java:44) > > > > > at com.arsdigita.packaging.Load.run(Load.java:232) > > > > > at > > > > com.arsdigita.packaging.MasterTool.main(MasterTool.java:90) > > > > > Root cause: > > > > > java.lang.reflect.InvocationTargetException > > > > > at > > > > > sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native > > > > Method) > > > > > at > > > > > > > > > > > > > > > sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39) > > > > > at > > > > > > > > > > > > > > > sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27) > > > > > at > > > > > java.lang.reflect.Constructor.newInstance(Constructor.java:274) > > > > > at > > com.arsdigita.util.Classes.newInstance(Classes.java:77) > > > > > at > > com.arsdigita.util.Classes.newInstance(Classes.java:133) > > > > > at > > com.arsdigita.packaging.Config.(Config.java:44) > > > > > at com.arsdigita.packaging.Load.run(Load.java:232) > > > > > at > > > > com.arsdigita.packaging.MasterTool.main(MasterTool.java:90) > > > > > Caused by: java.lang.NoClassDefFoundError: > > > > > javax/servlet/ServletResponse > > > > > at > > > > > > > > > > > > > > > com.arsdigita.web.WebConfig$CachePolicyParameter.(WebConfig.java:188) > > > > > at > > com.arsdigita.web.WebConfig.(WebConfig.java:90) > > > > > ... 9 more > > > > > > > > > > > > > > > Please help. Thanks. > > > > > > > > > > Regards, > > > > > Tom Baik > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > __________________________________ > > > > > Do you Yahoo!? > > > > > Yahoo! Photos: High-quality 4x6 digital prints for 25 > > > > > http://photos.yahoo.com/ph/print_splash > > > > > > > > > > > > > > > > > -- > > > > Redhat-ccm-list mailing list > > > > Redhat-ccm-list at redhat.com > > > > https://www.redhat.com/mailman/listinfo/redhat-ccm-list > > > > Archives: https://www.redhat.com/pipermail/redhat-ccm-list/ > > > > > > > > > > > > > > > > > > __________________________________ > > > Do you Yahoo!? > > > Yahoo! Photos: High-quality 4x6 digital prints for 25 > > > http://photos.yahoo.com/ph/print_splash > > > > > > -- > > Redhat-ccm-list mailing list > > Redhat-ccm-list at redhat.com > > https://www.redhat.com/mailman/listinfo/redhat-ccm-list > > Archives: https://www.redhat.com/pipermail/redhat-ccm-list/ > > > > > > __________________________________ > Do you Yahoo!? > Yahoo! Photos: High-quality 4x6 digital prints for 25 > http://photos.yahoo.com/ph/print_splash From tom415 at yahoo.com Mon Apr 19 23:54:59 2004 From: tom415 at yahoo.com (Tom) Date: Mon, 19 Apr 2004 16:54:59 -0700 (PDT) Subject: [redhat-ccm-list] Cannot seem to get ccm installed. Please help. In-Reply-To: <1082418253.5223.128.camel@toad.boston.redhat.com> Message-ID: <20040419235459.3646.qmail@web41004.mail.yahoo.com> Dennis, Echoing TOMCAT_HOME returns /usr/share/tomcat but the directory is empty. Running ccm start with the --verbose flag returned the following: [root at www tomcat]# ccm start --verbose --container=tomcat /usr/local/java/current/bin/java -classpath /usr/local/java/current/lib/tools.jar:/usr/share/tomcat/bin/bootstrap.jar:/usr/share/ccm-tools/server/tomcat/classes -Dccm.home=/usr/share/ccm -Dccm.conf=/usr/share/ccm/conf/registry -Dcom.arsdigita.util.Assert.enabled=true -Djavax.xml.parsers.DocumentBuilderFactory=org.apache.xerces.jaxp.DocumentBuilderFactoryImpl -Djavax.xml.parsers.SAXParserFactory=org.apache.xerces.jaxp.SAXParserFactoryImpl -Djavax.xml.transform.TransformerFactory=com.icl.saxon.TransformerFactoryImpl -Djava.ext.dirs=/usr/local/java/current/jre/lib/ext:/usr/local/java/current/lib/ext:/usr/share/ccm/webapps/WEB-INF/system:/usr/share/ccm-tools/lib/security -Djava.endorsed.dirs=/usr/share/tomcat/common/endorsed -Dcatalina.base=/usr/share/tomcat -Dcatalina.home=/usr/share/tomcat com.arsdigita.tools.catalina.startup.Bootstrap -config /usr/share/ccm/conf/server.xml start > /usr/share/ccm/logs/catalina-stdout.log 2> /usr/share/ccm/logs/catalina-stderr.log & It looks like bootstrap.jar is in the classpath. What can you tell from this output? Thanks, Tom --- Dennis Gregorovic wrote: > Sounds like Tomcat's bootstrap.jar is not in the classpath. If you > add > the --verbose flag when running ccm start, it will print out the > classpath that it is using. My guess is that TOMCAT_HOME is not set > correctly. > > -- Dennis > > On Mon, 2004-04-19 at 16:21, Tom wrote: > > Dennis, > > > > Great. I continued with the installation procedure by running "ccm > > hostinit --container=tomcat --parameter > http-port= > > --parameter shutdown-port=". > > > > When I execute "ccm start --container=tomcat", ccm does not seem to > > start up. There is no process listening on the http-port and I get > the > > following error in the log file catalina-stdout.log: > > > > Bootstrap: Class loader creation threw exception > > java.lang.NoClassDefFoundError: > > org/apache/catalina/startup/ClassLoaderFactory > > at > com.arsdigita.tools.catalina.startup.Bootstrap.main(Unknown > > Source) > > > > > > Please help again. Thanks. > > > > > > Tom > > > > > > > > > > > > --- Dennis Gregorovic wrote: > > > That output looks fine. It appears to have finished > successfully. > > > > > > On Mon, 2004-04-19 at 14:30, Tom wrote: > > > > Thanks again for your help. > > > > > > > > I followed your directions and I got past the previous error. > > > > > > > > Now, it seems to continue installing and stops after this > output: > > > > > > > > CHECK: The database type is recognized > > > > CHECK: The ccm-core package is configured. > > > > CHECK: The JDBC URL parameter is set. > > > > CHECK: The database is accepting connections > > > > CHECK: JAAS is available > > > > WARNING: Multiple implementations of the same API found > > > > > > > > The CCM runtime classpath contains two or more implementations > of > > > the > > > > same API. Only one, from the first location listed below, will > be > > > > used. > > > > > > > > /usr/local/java/j2sdk1.4.2_04/jre/lib/rt.jar > > > > /usr/share/ccm-tools/lib/security/jaas.jar > > > > CHECK: JCE is available > > > > WARNING: Multiple implementations of the same API found > > > > > > > > The CCM runtime classpath contains two or more implementations > of > > > the > > > > same API. Only one, from the first location listed below, will > be > > > > used. > > > > > > > > /usr/local/java/j2sdk1.4.2_04/jre/lib/jce.jar > > > > /usr/share/ccm-tools/lib/security/jce.jar > > > > 2004-04-19 13:24:27,838 [ main] INFO packaging.Loader - > Loading > > > schema > > > > for ccm-core > > > > 2004-04-19 13:24:48,156 [ main] INFO packaging.Loader - > Loading > > > schema > > > > for ccm-portalserver > > > > 2004-04-19 13:24:49,464 [ main] INFO packaging.Loader - > Loading > > > schema > > > > for ccm-cms > > > > 2004-04-19 13:24:57,475 [ main] INFO runtime.Startup - > > > Initializing > > > > WAF runtime > > > > 2004-04-19 13:24:59,067 [ main] INFO runtime.Startup - > > > Initialization > > > > complete > > > > 2004-04-19 13:24:59,068 [ main] INFO packaging.Loader - > Running > > > > initializer com.arsdigita.core.Initializer > > > > com/arsdigita/notification/Notification.pdl: line 33, column 10 > > > > [warning]: table already has primary key: > > > > com/arsdigita/notification/Notification.pdl: line 31, column 4 > > > > com/arsdigita/notification/Notification.pdl: line 34, column 10 > > > > [warning]: table already has primary key: > > > > com/arsdigita/notification/Notification.pdl: line 31, column 4 > > > > > > > > 2004-04-19 13:25:03,140 [ main] WARN > mimetypes.MimeTypeInitializer > > > - > > > > Had INSOFilterEnabled set to true when using a non Oracle > database. > > > > This is not allowed. Setting to false. Database=PostgreSQL > > > > 2004-04-19 13:25:03,496 [ main] INFO packaging.Loader - > Running > > > data > > > > loader com.arsdigita.core.Loader > > > > 2004-04-19 13:25:08,487 [ main] INFO packaging.Loader - > Running > > > > initializer com.arsdigita.portalserver.Initializer > > > > 2004-04-19 13:25:21,485 [ main] WARN admin.Initializer - There > is > > > no > > > > Portal Site Map application instance on /portal-admin/. > Installing > > > > now. > > > > 2004-04-19 13:25:21,609 [ main] WARN admin.Initializer - Done > > > > installing Portal Site Map on /portal-admin/portal-sitemap/. > > > > 2004-04-19 13:25:21,912 [ main] INFO packaging.Loader - > Running > > > data > > > > loader com.arsdigita.portalserver.Loader > > > > 2004-04-19 13:25:21,940 [ main] WARN portalserver.Loader - > Adding > > > > stylesheet: /packages/login/xsl/login_ps_en.xsl > > > > 2004-04-19 13:25:21,949 [ main] WARN portalserver.Loader - > Done > > > > 2004-04-19 13:25:21,958 [ main] INFO packaging.Loader - > Running > > > > initializer com.arsdigita.cms.Initializer > > > > com/arsdigita/content-section/ContentSection.pdl: line 113, > column > > > 37 > > > > [warning]: table already has primary key: > > > > com/arsdigita/content-section/ContentSection.pdl: line 39, > column > > > 38 > > > > > > > > 2004-04-19 13:25:38,181 [ main] INFO packaging.Loader - > Running > > > data > > > > loader com.arsdigita.cms.Loader > > > > > > > > > > > > Has the "load" process concluded or did it stop prematurely? > > > > > > > > Regards, > > > > Tom Baik > > > > > > > > > > > > > > > > > > > > > > > > --- Dennis Gregorovic wrote: > > > > > That error indicates that the Servlet jar is not in your > > > classpath. > > > > > Installing servlet-2.3-1ccm.noarch.rpm from the nightly > builds > > > should > > > > > solve the problem. If not, try manually adding the servlet > jar > > > to > > > > > your > > > > > classpath (e.g. > > > CLASSPATH=$CLASSPATH:/usr/share/java/servlet-2.3.jar) > > > > > > > > > > -- Dennis > > > > > > > > > > > > > > > On Mon, 2004-04-19 at 13:06, Tom wrote: > > > > > > I just cannot seem to get ccm installed and running. I've > done > > > a > > > > > few > > > > > > complete uninstalls and re-installs with no success. Would > > > someone > > > > > > please help. > > > > > > > > > > > > I've downloaded the nightly builds and installed them. > When I > > > then > > > > > try > > > > > > to load the applications using "ccm load --interactive > > > " I > > > > > get > > > > > > the following error: > > > > > > > > > > > > [root at www noarch]# ccm load --interactive ccm-core ccm-cms > > > > > > ccm-portalserver > > > > > > com.arsdigita.util.UncheckedWrapperException: class = class > > > > > > com.arsdigita.web.WebConfig, params = [], values = [] (root > > > cause: > > > > > > java.lang.reflect.InvocationTargetException) > > > > > > at > > > com.arsdigita.util.Classes.newInstance(Classes.java:85) > > > > > > at > > > com.arsdigita.util.Classes.newInstance(Classes.java:133) > > > > > > at > > > com.arsdigita.packaging.Config.(Config.java:44) > > > > > > at com.arsdigita.packaging.Load.run(Load.java:232) > > > > > > at > > > > > com.arsdigita.packaging.MasterTool.main(MasterTool.java:90) > > > > > > Root cause: > > > > > > java.lang.reflect.InvocationTargetException > > > > > > at > > > > > > > sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native > > > > > Method) > > > > > > at > > > > > > > > > > > > > > > > > > > > > sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39) > > > > > > at > > > > > > > > > > > > > > > > > > > > > sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27) > > > > > > at > > > > > > > java.lang.reflect.Constructor.newInstance(Constructor.java:274) > > > > > > at > > > com.arsdigita.util.Classes.newInstance(Classes.java:77) > > > > > > at > > > com.arsdigita.util.Classes.newInstance(Classes.java:133) > > > > > > at > > > com.arsdigita.packaging.Config.(Config.java:44) > > > > > > at com.arsdigita.packaging.Load.run(Load.java:232) > > > > > > at > > > > > com.arsdigita.packaging.MasterTool.main(MasterTool.java:90) > > > > > > Caused by: java.lang.NoClassDefFoundError: > > > > > > javax/servlet/ServletResponse > > > > > > at > > > > > > > > > > > > > > > > > > > > > com.arsdigita.web.WebConfig$CachePolicyParameter.(WebConfig.java:188) > > > > > > at > > > com.arsdigita.web.WebConfig.(WebConfig.java:90) > > > > > > ... 9 more > > > > > > > > > > > > > > > > > > Please help. Thanks. > > > > > > > > > > > > Regards, > > > > > > Tom Baik > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > __________________________________ > > > > > > Do you Yahoo!? > > > > > > Yahoo! Photos: High-quality 4x6 digital prints for 25 > > > > > > http://photos.yahoo.com/ph/print_splash > > > > > > > > > > > > > > > > > > > > > -- > > > > > Redhat-ccm-list mailing list > > > > > Redhat-ccm-list at redhat.com > > > > > https://www.redhat.com/mailman/listinfo/redhat-ccm-list > > > > > Archives: https://www.redhat.com/pipermail/redhat-ccm-list/ > > > > > > > > > > > > > > > > > > > > > > > > __________________________________ > > > > Do you Yahoo!? > > > > Yahoo! Photos: High-quality 4x6 digital prints for 25 > > > > http://photos.yahoo.com/ph/print_splash > > > > > > > > > -- > > > Redhat-ccm-list mailing list > > > Redhat-ccm-list at redhat.com > > > https://www.redhat.com/mailman/listinfo/redhat-ccm-list > > > Archives: https://www.redhat.com/pipermail/redhat-ccm-list/ > > > > > > > > > > > > __________________________________ > > Do you Yahoo!? > > Yahoo! Photos: High-quality 4x6 digital prints for 25 > > http://photos.yahoo.com/ph/print_splash > > > -- > Redhat-ccm-list mailing list > Redhat-ccm-list at redhat.com > https://www.redhat.com/mailman/listinfo/redhat-ccm-list > Archives: https://www.redhat.com/pipermail/redhat-ccm-list/ __________________________________ Do you Yahoo!? Yahoo! Photos: High-quality 4x6 digital prints for 25? http://photos.yahoo.com/ph/print_splash From dgregor at redhat.com Tue Apr 20 00:02:19 2004 From: dgregor at redhat.com (Dennis Gregorovic) Date: Mon, 19 Apr 2004 20:02:19 -0400 Subject: [redhat-ccm-list] Cannot seem to get ccm installed. Please help. In-Reply-To: <20040419235459.3646.qmail@web41004.mail.yahoo.com> References: <20040419235459.3646.qmail@web41004.mail.yahoo.com> Message-ID: <1082419338.5223.132.camel@toad.boston.redhat.com> Before, when I wrote /usr/share/tomcat, that was just a sample value. You'll have to use whatever corresponds to the installation of Tomcat that you have. If CATALINA_BASE is set, you can use that value for TOMCAT_HOME. http://jakarta.apache.org/tomcat/tomcat-4.1-doc/RUNNING.txt -- Dennis On Mon, 2004-04-19 at 19:54, Tom wrote: > Dennis, > > Echoing TOMCAT_HOME returns /usr/share/tomcat but the directory is > empty. Running ccm start with the --verbose flag returned the > following: > > [root at www tomcat]# ccm start --verbose --container=tomcat > /usr/local/java/current/bin/java -classpath > /usr/local/java/current/lib/tools.jar:/usr/share/tomcat/bin/bootstrap.jar:/usr/share/ccm-tools/server/tomcat/classes > -Dccm.home=/usr/share/ccm -Dccm.conf=/usr/share/ccm/conf/registry > -Dcom.arsdigita.util.Assert.enabled=true > -Djavax.xml.parsers.DocumentBuilderFactory=org.apache.xerces.jaxp.DocumentBuilderFactoryImpl > -Djavax.xml.parsers.SAXParserFactory=org.apache.xerces.jaxp.SAXParserFactoryImpl > -Djavax.xml.transform.TransformerFactory=com.icl.saxon.TransformerFactoryImpl > -Djava.ext.dirs=/usr/local/java/current/jre/lib/ext:/usr/local/java/current/lib/ext:/usr/share/ccm/webapps/WEB-INF/system:/usr/share/ccm-tools/lib/security > -Djava.endorsed.dirs=/usr/share/tomcat/common/endorsed > -Dcatalina.base=/usr/share/tomcat -Dcatalina.home=/usr/share/tomcat > com.arsdigita.tools.catalina.startup.Bootstrap -config > /usr/share/ccm/conf/server.xml start > > /usr/share/ccm/logs/catalina-stdout.log 2> > /usr/share/ccm/logs/catalina-stderr.log & > > > It looks like bootstrap.jar is in the classpath. What can you tell > from this output? > > Thanks, > Tom > > > > > > --- Dennis Gregorovic wrote: > > Sounds like Tomcat's bootstrap.jar is not in the classpath. If you > > add > > the --verbose flag when running ccm start, it will print out the > > classpath that it is using. My guess is that TOMCAT_HOME is not set > > correctly. > > > > -- Dennis > > > > On Mon, 2004-04-19 at 16:21, Tom wrote: > > > Dennis, > > > > > > Great. I continued with the installation procedure by running "ccm > > > hostinit --container=tomcat --parameter > > http-port= > > > --parameter shutdown-port=". > > > > > > When I execute "ccm start --container=tomcat", ccm does not seem to > > > start up. There is no process listening on the http-port and I get > > the > > > following error in the log file catalina-stdout.log: > > > > > > Bootstrap: Class loader creation threw exception > > > java.lang.NoClassDefFoundError: > > > org/apache/catalina/startup/ClassLoaderFactory > > > at > > com.arsdigita.tools.catalina.startup.Bootstrap.main(Unknown > > > Source) > > > > > > > > > Please help again. Thanks. > > > > > > > > > Tom > > > > > > > > > > > > > > > > > > --- Dennis Gregorovic wrote: > > > > That output looks fine. It appears to have finished > > successfully. > > > > > > > > On Mon, 2004-04-19 at 14:30, Tom wrote: > > > > > Thanks again for your help. > > > > > > > > > > I followed your directions and I got past the previous error. > > > > > > > > > > Now, it seems to continue installing and stops after this > > output: > > > > > > > > > > CHECK: The database type is recognized > > > > > CHECK: The ccm-core package is configured. > > > > > CHECK: The JDBC URL parameter is set. > > > > > CHECK: The database is accepting connections > > > > > CHECK: JAAS is available > > > > > WARNING: Multiple implementations of the same API found > > > > > > > > > > The CCM runtime classpath contains two or more implementations > > of > > > > the > > > > > same API. Only one, from the first location listed below, will > > be > > > > > used. > > > > > > > > > > /usr/local/java/j2sdk1.4.2_04/jre/lib/rt.jar > > > > > /usr/share/ccm-tools/lib/security/jaas.jar > > > > > CHECK: JCE is available > > > > > WARNING: Multiple implementations of the same API found > > > > > > > > > > The CCM runtime classpath contains two or more implementations > > of > > > > the > > > > > same API. Only one, from the first location listed below, will > > be > > > > > used. > > > > > > > > > > /usr/local/java/j2sdk1.4.2_04/jre/lib/jce.jar > > > > > /usr/share/ccm-tools/lib/security/jce.jar > > > > > 2004-04-19 13:24:27,838 [ main] INFO packaging.Loader - > > Loading > > > > schema > > > > > for ccm-core > > > > > 2004-04-19 13:24:48,156 [ main] INFO packaging.Loader - > > Loading > > > > schema > > > > > for ccm-portalserver > > > > > 2004-04-19 13:24:49,464 [ main] INFO packaging.Loader - > > Loading > > > > schema > > > > > for ccm-cms > > > > > 2004-04-19 13:24:57,475 [ main] INFO runtime.Startup - > > > > Initializing > > > > > WAF runtime > > > > > 2004-04-19 13:24:59,067 [ main] INFO runtime.Startup - > > > > Initialization > > > > > complete > > > > > 2004-04-19 13:24:59,068 [ main] INFO packaging.Loader - > > Running > > > > > initializer com.arsdigita.core.Initializer > > > > > com/arsdigita/notification/Notification.pdl: line 33, column 10 > > > > > [warning]: table already has primary key: > > > > > com/arsdigita/notification/Notification.pdl: line 31, column 4 > > > > > com/arsdigita/notification/Notification.pdl: line 34, column 10 > > > > > [warning]: table already has primary key: > > > > > com/arsdigita/notification/Notification.pdl: line 31, column 4 > > > > > > > > > > 2004-04-19 13:25:03,140 [ main] WARN > > mimetypes.MimeTypeInitializer > > > > - > > > > > Had INSOFilterEnabled set to true when using a non Oracle > > database. > > > > > This is not allowed. Setting to false. Database=PostgreSQL > > > > > 2004-04-19 13:25:03,496 [ main] INFO packaging.Loader - > > Running > > > > data > > > > > loader com.arsdigita.core.Loader > > > > > 2004-04-19 13:25:08,487 [ main] INFO packaging.Loader - > > Running > > > > > initializer com.arsdigita.portalserver.Initializer > > > > > 2004-04-19 13:25:21,485 [ main] WARN admin.Initializer - There > > is > > > > no > > > > > Portal Site Map application instance on /portal-admin/. > > Installing > > > > > now. > > > > > 2004-04-19 13:25:21,609 [ main] WARN admin.Initializer - Done > > > > > installing Portal Site Map on /portal-admin/portal-sitemap/. > > > > > 2004-04-19 13:25:21,912 [ main] INFO packaging.Loader - > > Running > > > > data > > > > > loader com.arsdigita.portalserver.Loader > > > > > 2004-04-19 13:25:21,940 [ main] WARN portalserver.Loader - > > Adding > > > > > stylesheet: /packages/login/xsl/login_ps_en.xsl > > > > > 2004-04-19 13:25:21,949 [ main] WARN portalserver.Loader - > > Done > > > > > 2004-04-19 13:25:21,958 [ main] INFO packaging.Loader - > > Running > > > > > initializer com.arsdigita.cms.Initializer > > > > > com/arsdigita/content-section/ContentSection.pdl: line 113, > > column > > > > 37 > > > > > [warning]: table already has primary key: > > > > > com/arsdigita/content-section/ContentSection.pdl: line 39, > > column > > > > 38 > > > > > > > > > > 2004-04-19 13:25:38,181 [ main] INFO packaging.Loader - > > Running > > > > data > > > > > loader com.arsdigita.cms.Loader > > > > > > > > > > > > > > > Has the "load" process concluded or did it stop prematurely? > > > > > > > > > > Regards, > > > > > Tom Baik > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > --- Dennis Gregorovic wrote: > > > > > > That error indicates that the Servlet jar is not in your > > > > classpath. > > > > > > Installing servlet-2.3-1ccm.noarch.rpm from the nightly > > builds > > > > should > > > > > > solve the problem. If not, try manually adding the servlet > > jar > > > > to > > > > > > your > > > > > > classpath (e.g. > > > > CLASSPATH=$CLASSPATH:/usr/share/java/servlet-2.3.jar) > > > > > > > > > > > > -- Dennis > > > > > > > > > > > > > > > > > > On Mon, 2004-04-19 at 13:06, Tom wrote: > > > > > > > I just cannot seem to get ccm installed and running. I've > > done > > > > a > > > > > > few > > > > > > > complete uninstalls and re-installs with no success. Would > > > > someone > > > > > > > please help. > > > > > > > > > > > > > > I've downloaded the nightly builds and installed them. > > When I > > > > then > > > > > > try > > > > > > > to load the applications using "ccm load --interactive > > > > " I > > > > > > get > > > > > > > the following error: > > > > > > > > > > > > > > [root at www noarch]# ccm load --interactive ccm-core ccm-cms > > > > > > > ccm-portalserver > > > > > > > com.arsdigita.util.UncheckedWrapperException: class = class > > > > > > > com.arsdigita.web.WebConfig, params = [], values = [] (root > > > > cause: > > > > > > > java.lang.reflect.InvocationTargetException) > > > > > > > at > > > > com.arsdigita.util.Classes.newInstance(Classes.java:85) > > > > > > > at > > > > com.arsdigita.util.Classes.newInstance(Classes.java:133) > > > > > > > at > > > > com.arsdigita.packaging.Config.(Config.java:44) > > > > > > > at com.arsdigita.packaging.Load.run(Load.java:232) > > > > > > > at > > > > > > com.arsdigita.packaging.MasterTool.main(MasterTool.java:90) > > > > > > > Root cause: > > > > > > > java.lang.reflect.InvocationTargetException > > > > > > > at > > > > > > > > > sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native > > > > > > Method) > > > > > > > at > > > > > > > > > > > > > > > > > > > > > > > > > > > > sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39) > > > > > > > at > > > > > > > > > > > > > > > > > > > > > > > > > > > > sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27) > > > > > > > at > > > > > > > > > java.lang.reflect.Constructor.newInstance(Constructor.java:274) > > > > > > > at > > > > com.arsdigita.util.Classes.newInstance(Classes.java:77) > > > > > > > at > > > > com.arsdigita.util.Classes.newInstance(Classes.java:133) > > > > > > > at > > > > com.arsdigita.packaging.Config.(Config.java:44) > > > > > > > at com.arsdigita.packaging.Load.run(Load.java:232) > > > > > > > at > > > > > > com.arsdigita.packaging.MasterTool.main(MasterTool.java:90) > > > > > > > Caused by: java.lang.NoClassDefFoundError: > > > > > > > javax/servlet/ServletResponse > > > > > > > at > > > > > > > > > > > > > > > > > > > > > > > > > > > > com.arsdigita.web.WebConfig$CachePolicyParameter.(WebConfig.java:188) > > > > > > > at > > > > com.arsdigita.web.WebConfig.(WebConfig.java:90) > > > > > > > ... 9 more > > > > > > > > > > > > > > > > > > > > > Please help. Thanks. > > > > > > > > > > > > > > Regards, > > > > > > > Tom Baik > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > __________________________________ > > > > > > > Do you Yahoo!? > > > > > > > Yahoo! Photos: High-quality 4x6 digital prints for 25 > > > > > > > http://photos.yahoo.com/ph/print_splash > > > > > > > > > > > > > > > > > > > > > > > > > -- > > > > > > Redhat-ccm-list mailing list > > > > > > Redhat-ccm-list at redhat.com > > > > > > https://www.redhat.com/mailman/listinfo/redhat-ccm-list > > > > > > Archives: https://www.redhat.com/pipermail/redhat-ccm-list/ > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > __________________________________ > > > > > Do you Yahoo!? > > > > > Yahoo! Photos: High-quality 4x6 digital prints for 25 > > > > > http://photos.yahoo.com/ph/print_splash > > > > > > > > > > > > -- > > > > Redhat-ccm-list mailing list > > > > Redhat-ccm-list at redhat.com > > > > https://www.redhat.com/mailman/listinfo/redhat-ccm-list > > > > Archives: https://www.redhat.com/pipermail/redhat-ccm-list/ > > > > > > > > > > > > > > > > > > __________________________________ > > > Do you Yahoo!? > > > Yahoo! Photos: High-quality 4x6 digital prints for 25 > > > http://photos.yahoo.com/ph/print_splash > > > > > > -- > > Redhat-ccm-list mailing list > > Redhat-ccm-list at redhat.com > > https://www.redhat.com/mailman/listinfo/redhat-ccm-list > > Archives: https://www.redhat.com/pipermail/redhat-ccm-list/ > > > > > > __________________________________ > Do you Yahoo!? > Yahoo! Photos: High-quality 4x6 digital prints for 25 > http://photos.yahoo.com/ph/print_splash From tom415 at yahoo.com Tue Apr 20 00:25:47 2004 From: tom415 at yahoo.com (Tom) Date: Mon, 19 Apr 2004 17:25:47 -0700 (PDT) Subject: [redhat-ccm-list] Cannot seem to get ccm installed. Please help. In-Reply-To: <1082419338.5223.132.camel@toad.boston.redhat.com> Message-ID: <20040420002547.5260.qmail@web41006.mail.yahoo.com> Dennis, Success! THANK YOU very much for your help. Regards, Tom Baik --- Dennis Gregorovic wrote: > Before, when I wrote /usr/share/tomcat, that was just a sample value. > > You'll have to use whatever corresponds to the installation of Tomcat > that you have. > > If CATALINA_BASE is set, you can use that value for TOMCAT_HOME. > http://jakarta.apache.org/tomcat/tomcat-4.1-doc/RUNNING.txt > > -- Dennis > > > On Mon, 2004-04-19 at 19:54, Tom wrote: > > Dennis, > > > > Echoing TOMCAT_HOME returns /usr/share/tomcat but the directory is > > empty. Running ccm start with the --verbose flag returned the > > following: > > > > [root at www tomcat]# ccm start --verbose --container=tomcat > > /usr/local/java/current/bin/java -classpath > > > /usr/local/java/current/lib/tools.jar:/usr/share/tomcat/bin/bootstrap.jar:/usr/share/ccm-tools/server/tomcat/classes > > -Dccm.home=/usr/share/ccm -Dccm.conf=/usr/share/ccm/conf/registry > > -Dcom.arsdigita.util.Assert.enabled=true > > > -Djavax.xml.parsers.DocumentBuilderFactory=org.apache.xerces.jaxp.DocumentBuilderFactoryImpl > > > -Djavax.xml.parsers.SAXParserFactory=org.apache.xerces.jaxp.SAXParserFactoryImpl > > > -Djavax.xml.transform.TransformerFactory=com.icl.saxon.TransformerFactoryImpl > > > -Djava.ext.dirs=/usr/local/java/current/jre/lib/ext:/usr/local/java/current/lib/ext:/usr/share/ccm/webapps/WEB-INF/system:/usr/share/ccm-tools/lib/security > > -Djava.endorsed.dirs=/usr/share/tomcat/common/endorsed > > -Dcatalina.base=/usr/share/tomcat -Dcatalina.home=/usr/share/tomcat > > com.arsdigita.tools.catalina.startup.Bootstrap -config > > /usr/share/ccm/conf/server.xml start > > > /usr/share/ccm/logs/catalina-stdout.log 2> > > /usr/share/ccm/logs/catalina-stderr.log & > > > > > > It looks like bootstrap.jar is in the classpath. What can you tell > > from this output? > > > > Thanks, > > Tom > > > > > > > > > > > > --- Dennis Gregorovic wrote: > > > Sounds like Tomcat's bootstrap.jar is not in the classpath. If > you > > > add > > > the --verbose flag when running ccm start, it will print out the > > > classpath that it is using. My guess is that TOMCAT_HOME is not > set > > > correctly. > > > > > > -- Dennis > > > > > > On Mon, 2004-04-19 at 16:21, Tom wrote: > > > > Dennis, > > > > > > > > Great. I continued with the installation procedure by running > "ccm > > > > hostinit --container=tomcat --parameter > > > http-port= > > > > --parameter shutdown-port=". > > > > > > > > When I execute "ccm start --container=tomcat", ccm does not > seem to > > > > start up. There is no process listening on the http-port and I > get > > > the > > > > following error in the log file catalina-stdout.log: > > > > > > > > Bootstrap: Class loader creation threw exception > > > > java.lang.NoClassDefFoundError: > > > > org/apache/catalina/startup/ClassLoaderFactory > > > > at > > > com.arsdigita.tools.catalina.startup.Bootstrap.main(Unknown > > > > Source) > > > > > > > > > > > > Please help again. Thanks. > > > > > > > > > > > > Tom > > > > > > > > > > > > > > > > > > > > > > > > --- Dennis Gregorovic wrote: > > > > > That output looks fine. It appears to have finished > > > successfully. > > > > > > > > > > On Mon, 2004-04-19 at 14:30, Tom wrote: > > > > > > Thanks again for your help. > > > > > > > > > > > > I followed your directions and I got past the previous > error. > > > > > > > > > > > > Now, it seems to continue installing and stops after this > > > output: > > > > > > > > > > > > CHECK: The database type is recognized > > > > > > CHECK: The ccm-core package is configured. > > > > > > CHECK: The JDBC URL parameter is set. > > > > > > CHECK: The database is accepting connections > > > > > > CHECK: JAAS is available > > > > > > WARNING: Multiple implementations of the same API found > > > > > > > > > > > > The CCM runtime classpath contains two or more > implementations > > > of > > > > > the > > > > > > same API. Only one, from the first location listed below, > will > > > be > > > > > > used. > > > > > > > > > > > > /usr/local/java/j2sdk1.4.2_04/jre/lib/rt.jar > > > > > > /usr/share/ccm-tools/lib/security/jaas.jar > > > > > > CHECK: JCE is available > > > > > > WARNING: Multiple implementations of the same API found > > > > > > > > > > > > The CCM runtime classpath contains two or more > implementations > > > of > > > > > the > > > > > > same API. Only one, from the first location listed below, > will > > > be > > > > > > used. > > > > > > > > > > > > /usr/local/java/j2sdk1.4.2_04/jre/lib/jce.jar > > > > > > /usr/share/ccm-tools/lib/security/jce.jar > > > > > > 2004-04-19 13:24:27,838 [ main] INFO packaging.Loader - > > > Loading > > > > > schema > > > > > > for ccm-core > > > > > > 2004-04-19 13:24:48,156 [ main] INFO packaging.Loader - > > > Loading > > > > > schema > > > > > > for ccm-portalserver > > > > > > 2004-04-19 13:24:49,464 [ main] INFO packaging.Loader - > > > Loading > > > > > schema > > > > > > for ccm-cms > > > > > > 2004-04-19 13:24:57,475 [ main] INFO runtime.Startup - > > > > > Initializing > > > > > > WAF runtime > > > > > > 2004-04-19 13:24:59,067 [ main] INFO runtime.Startup - > > > > > Initialization > > > > > > complete > > > > > > 2004-04-19 13:24:59,068 [ main] INFO packaging.Loader - > > > Running > > > > > > initializer com.arsdigita.core.Initializer > > > > > > com/arsdigita/notification/Notification.pdl: line 33, > column 10 > > > > > > [warning]: table already has primary key: > > > > > > com/arsdigita/notification/Notification.pdl: line 31, > column 4 > > > > > > com/arsdigita/notification/Notification.pdl: line 34, > column 10 > > > > > > [warning]: table already has primary key: > > > > > > com/arsdigita/notification/Notification.pdl: line 31, > column 4 > > > > > > > > > > > > 2004-04-19 13:25:03,140 [ main] WARN > > > mimetypes.MimeTypeInitializer > > > > > - > > > > > > Had INSOFilterEnabled set to true when using a non Oracle > > > database. > > > > > > This is not allowed. Setting to false. Database=PostgreSQL > > > > > > 2004-04-19 13:25:03,496 [ main] INFO packaging.Loader - > > > Running > > > > > data > > > > > > loader com.arsdigita.core.Loader > > > > > > 2004-04-19 13:25:08,487 [ main] INFO packaging.Loader - > > > Running > > > > > > initializer com.arsdigita.portalserver.Initializer > > > > > > 2004-04-19 13:25:21,485 [ main] WARN admin.Initializer - > There > > > is > > > > > no > > > > > > Portal Site Map application instance on /portal-admin/. > > > Installing > > > > > > now. > > > > > > 2004-04-19 13:25:21,609 [ main] WARN admin.Initializer - > Done > > > > > > installing Portal Site Map on > /portal-admin/portal-sitemap/. > > > > > > 2004-04-19 13:25:21,912 [ main] INFO packaging.Loader - > > > Running > > > > > data > > > > > > loader com.arsdigita.portalserver.Loader > > > > > > 2004-04-19 13:25:21,940 [ main] WARN portalserver.Loader - > > > Adding > > > > > > stylesheet: /packages/login/xsl/login_ps_en.xsl > > > > > > 2004-04-19 13:25:21,949 [ main] WARN portalserver.Loader - > > > Done > > > > > > 2004-04-19 13:25:21,958 [ main] INFO packaging.Loader - > > > Running > > > > > > initializer com.arsdigita.cms.Initializer > > > > > > com/arsdigita/content-section/ContentSection.pdl: line 113, > > > column > > > > > 37 > > > > > > [warning]: table already has primary key: > > > > > > com/arsdigita/content-section/ContentSection.pdl: line 39, > > > column > > > > > 38 > > > > > > > > > > > > 2004-04-19 13:25:38,181 [ main] INFO packaging.Loader - > > > Running > > > > > data > > > > > > loader com.arsdigita.cms.Loader > > > > > > > > > > > > > > > > > > Has the "load" process concluded or did it stop > prematurely? > > > > > > > > > > > > Regards, > > > > > > Tom Baik > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > --- Dennis Gregorovic wrote: > > > > > > > That error indicates that the Servlet jar is not in your > > > > > classpath. > > > > > > > Installing servlet-2.3-1ccm.noarch.rpm from the nightly > > > builds > > > > > should > > > > > > > solve the problem. If not, try manually adding the > servlet > > > jar > > > > > to > > > > > > > your > > > > > > > classpath (e.g. > > > > > CLASSPATH=$CLASSPATH:/usr/share/java/servlet-2.3.jar) > > > > > > > > > > > > > > -- Dennis > > > > > > > > > > > > > > > > > > > > > On Mon, 2004-04-19 at 13:06, Tom wrote: > > > > > > > > I just cannot seem to get ccm installed and running. > I've > > > done > > > > > a > > > > > > > few > > > > > > > > complete uninstalls and re-installs with no success. > Would > > > > > someone > > > > > > > > please help. > > > > > > > > > > > > > > > > I've downloaded the nightly builds and installed them. > > > When I > > > > > then > > > > > > > try > > > > > > > > to load the applications using "ccm load --interactive > > > > > " I > > > > > > > get > > > > > > > > the following error: > > > > > > > > > > > > > > > > [root at www noarch]# ccm load --interactive ccm-core > ccm-cms > > > > > > > > ccm-portalserver > > > > > > > > com.arsdigita.util.UncheckedWrapperException: class = > class > > > > > > > > com.arsdigita.web.WebConfig, params = [], values = [] > (root > > > > > cause: > > > > > > > > java.lang.reflect.InvocationTargetException) > > > > > > > > at > > > > > com.arsdigita.util.Classes.newInstance(Classes.java:85) > > > > > > > > at > > > > > com.arsdigita.util.Classes.newInstance(Classes.java:133) > > > > > > > > at > > > > > com.arsdigita.packaging.Config.(Config.java:44) > > > > > > > > at > com.arsdigita.packaging.Load.run(Load.java:232) > > > > > > > > at > > > > > > > > com.arsdigita.packaging.MasterTool.main(MasterTool.java:90) > > > > > > > > Root cause: > > > > > > > > java.lang.reflect.InvocationTargetException > > > > > > > > at > > > > > > > > > > > sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native > > > > > > > Method) > > > > > > > > at > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39) > > > > > > > > at > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27) > > > > > > > > at > > > > > > > > > > > java.lang.reflect.Constructor.newInstance(Constructor.java:274) > > > > > > > > at > > > > > com.arsdigita.util.Classes.newInstance(Classes.java:77) > > > > > > > > at > > > > > com.arsdigita.util.Classes.newInstance(Classes.java:133) > > > > > > > > at > > > > > com.arsdigita.packaging.Config.(Config.java:44) > > > > > > > > at > com.arsdigita.packaging.Load.run(Load.java:232) > > > > > > > > at > > > > > > > > com.arsdigita.packaging.MasterTool.main(MasterTool.java:90) > > > > > > > > Caused by: java.lang.NoClassDefFoundError: > > > > > > > > javax/servlet/ServletResponse > > > > > > > > at > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > com.arsdigita.web.WebConfig$CachePolicyParameter.(WebConfig.java:188) > > > > > > > > at > > > > > com.arsdigita.web.WebConfig.(WebConfig.java:90) > > > > > > > > ... 9 more > > > > > > > > > > > > > > > > > > > > > > > > Please help. Thanks. > > > > > > > > > > > > > > > > Regards, > > > > > > > > Tom Baik > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > __________________________________ > > > > > > > > Do you Yahoo!? > > > > > > > > Yahoo! Photos: High-quality 4x6 digital prints for 25 > > > > > > > > http://photos.yahoo.com/ph/print_splash > > > > > > > > > > > > > > > > > > > > > > > > > > > > > -- > > > > > > > Redhat-ccm-list mailing list > > > > > > > Redhat-ccm-list at redhat.com > > > > > > > https://www.redhat.com/mailman/listinfo/redhat-ccm-list > > > > > > > Archives: > https://www.redhat.com/pipermail/redhat-ccm-list/ > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > __________________________________ > > > > > > Do you Yahoo!? > > > > > > Yahoo! Photos: High-quality 4x6 digital prints for 25 > > > > > > http://photos.yahoo.com/ph/print_splash > > > > > > > > > > > > > > > -- > > > > > Redhat-ccm-list mailing list > > > > > Redhat-ccm-list at redhat.com > > > > > https://www.redhat.com/mailman/listinfo/redhat-ccm-list > > > > > Archives: https://www.redhat.com/pipermail/redhat-ccm-list/ > > > > > > > > > > > > > > > > > > > > > > > > __________________________________ > > > > Do you Yahoo!? > > > > Yahoo! Photos: High-quality 4x6 digital prints for 25 > > > > http://photos.yahoo.com/ph/print_splash > > > > > > > > > -- > > > Redhat-ccm-list mailing list > > > Redhat-ccm-list at redhat.com > > > https://www.redhat.com/mailman/listinfo/redhat-ccm-list > > > Archives: https://www.redhat.com/pipermail/redhat-ccm-list/ > > > > > > > > > > > > __________________________________ > > Do you Yahoo!? > > Yahoo! Photos: High-quality 4x6 digital prints for 25 > > http://photos.yahoo.com/ph/print_splash > __________________________________ Do you Yahoo!? Yahoo! Photos: High-quality 4x6 digital prints for 25? http://photos.yahoo.com/ph/print_splash From tom415 at yahoo.com Tue Apr 20 02:13:17 2004 From: tom415 at yahoo.com (Tom) Date: Mon, 19 Apr 2004 19:13:17 -0700 (PDT) Subject: [redhat-ccm-list] Getting a "user does not have admin privileges" error Message-ID: <20040420021317.79984.qmail@web41008.mail.yahoo.com> I had ccm installed and working until I decided to install and load some additional modules/apps. I had to drop the db and restart the entire install all over again. I get the following error when attempting to load the apps: 2004-04-19 21:09:24,492 [ main] WARN SECURITY - 2004-04-19 21:09:24.103 no-IP-available User -200 does not have the admin privilege on Object [com.arsdigita.kernel.ACSObject:{id=49}] with context null com.arsdigita.kernel.permissions.PermissionException: User -200 does not have the admin privilege on Object [com.arsdigita.kernel.ACSObject:{id=49}] with context null at com.arsdigita.kernel.permissions.PermissionService.assertPermission(PermissionService.java:121) at com.arsdigita.kernel.permissions.Permission.beforeSave(Permission.java:263) at com.arsdigita.domain.DomainObject$SaveObserver.beforeSave(DomainObject.java:600) at com.arsdigita.persistence.BeforeSaveEvent.doInvoke(DataEvent.java:186) at com.arsdigita.persistence.DataEvent.invoke(DataEvent.java:38) at com.arsdigita.persistence.DataObjectImpl.fireObserver(DataObjectImpl.java:513) at com.arsdigita.persistence.DataEvent.fire(DataEvent.java:47) at com.arsdigita.persistence.Session$FlushEventProcessor.fireNow(Session.java:690) at com.arsdigita.persistence.DataObjectImpl.save(DataObjectImpl.java:424) at com.arsdigita.domain.DomainObject.save(DomainObject.java:314) at com.arsdigita.kernel.permissions.PermissionManager.grantPermission(PermissionManager.java:172) at com.arsdigita.kernel.permissions.PermissionService.grantPermission(PermissionService.java:165) at com.arsdigita.kernel.User.afterSave(User.java:381) at com.arsdigita.domain.DomainObject$SaveObserver.afterSave(DomainObject.java:604) at com.arsdigita.persistence.AfterSaveEvent.doInvoke(DataEvent.java:205) at com.arsdigita.persistence.DataEvent.invoke(DataEvent.java:38) at com.arsdigita.persistence.DataObjectImpl.fireObserver(DataObjectImpl.java:513) at com.arsdigita.persistence.DataObjectImpl.fireObserver(DataObjectImpl.java:516) at com.arsdigita.persistence.DataEvent.fire(DataEvent.java:47) at com.arsdigita.persistence.Session$FlushEventProcessor.flush(Session.java:683) at com.redhat.persistence.Session.flushInternal(Session.java:682) at com.redhat.persistence.Session.flush(Session.java:647) at com.arsdigita.persistence.TransactionContext.commitTxn(TransactionContext.java:87) at com.arsdigita.packaging.Loader.loadData(Loader.java:143) at com.arsdigita.packaging.Load.run(Load.java:362) at com.arsdigita.packaging.MasterTool.main(MasterTool.java:90) I would appreciate some help. Thanks. Regards, Tom Baik __________________________________ Do you Yahoo!? Yahoo! Photos: High-quality 4x6 digital prints for 25? http://photos.yahoo.com/ph/print_splash From dgregor at redhat.com Tue Apr 20 02:32:17 2004 From: dgregor at redhat.com (Dennis Gregorovic) Date: Mon, 19 Apr 2004 22:32:17 -0400 Subject: [redhat-ccm-list] Getting a "user does not have admin privileges" error In-Reply-To: <20040420021317.79984.qmail@web41008.mail.yahoo.com> References: <20040420021317.79984.qmail@web41008.mail.yahoo.com> Message-ID: <1082428336.5223.181.camel@toad.boston.redhat.com> Which apps were you loading? On Mon, 2004-04-19 at 22:13, Tom wrote: > I had ccm installed and working until I decided to install and load > some additional modules/apps. I had to drop the db and restart the > entire install all over again. I get the following error when > attempting to load the apps: > > 2004-04-19 21:09:24,492 [ main] WARN SECURITY - 2004-04-19 > 21:09:24.103 no-IP-available User -200 does not have the admin > privilege on Object [com.arsdigita.kernel.ACSObject:{id=49}] with > context null > com.arsdigita.kernel.permissions.PermissionException: User -200 does > not have the admin privilege on Object > [com.arsdigita.kernel.ACSObject:{id=49}] with context null > at > com.arsdigita.kernel.permissions.PermissionService.assertPermission(PermissionService.java:121) > at > com.arsdigita.kernel.permissions.Permission.beforeSave(Permission.java:263) > at > com.arsdigita.domain.DomainObject$SaveObserver.beforeSave(DomainObject.java:600) > at > com.arsdigita.persistence.BeforeSaveEvent.doInvoke(DataEvent.java:186) > at > com.arsdigita.persistence.DataEvent.invoke(DataEvent.java:38) > at > com.arsdigita.persistence.DataObjectImpl.fireObserver(DataObjectImpl.java:513) > at com.arsdigita.persistence.DataEvent.fire(DataEvent.java:47) > at > com.arsdigita.persistence.Session$FlushEventProcessor.fireNow(Session.java:690) > at > com.arsdigita.persistence.DataObjectImpl.save(DataObjectImpl.java:424) > at > com.arsdigita.domain.DomainObject.save(DomainObject.java:314) > at > com.arsdigita.kernel.permissions.PermissionManager.grantPermission(PermissionManager.java:172) > at > com.arsdigita.kernel.permissions.PermissionService.grantPermission(PermissionService.java:165) > at com.arsdigita.kernel.User.afterSave(User.java:381) > at > com.arsdigita.domain.DomainObject$SaveObserver.afterSave(DomainObject.java:604) > at > com.arsdigita.persistence.AfterSaveEvent.doInvoke(DataEvent.java:205) > at > com.arsdigita.persistence.DataEvent.invoke(DataEvent.java:38) > at > com.arsdigita.persistence.DataObjectImpl.fireObserver(DataObjectImpl.java:513) > at > com.arsdigita.persistence.DataObjectImpl.fireObserver(DataObjectImpl.java:516) > at com.arsdigita.persistence.DataEvent.fire(DataEvent.java:47) > at > com.arsdigita.persistence.Session$FlushEventProcessor.flush(Session.java:683) > at > com.redhat.persistence.Session.flushInternal(Session.java:682) > at com.redhat.persistence.Session.flush(Session.java:647) > at > com.arsdigita.persistence.TransactionContext.commitTxn(TransactionContext.java:87) > at com.arsdigita.packaging.Loader.loadData(Loader.java:143) > at com.arsdigita.packaging.Load.run(Load.java:362) > at com.arsdigita.packaging.MasterTool.main(MasterTool.java:90) > > > I would appreciate some help. Thanks. > > Regards, > Tom Baik > > > > > > > __________________________________ > Do you Yahoo!? > Yahoo! Photos: High-quality 4x6 digital prints for 25 > http://photos.yahoo.com/ph/print_splash > From tom415 at yahoo.com Tue Apr 20 16:34:51 2004 From: tom415 at yahoo.com (Tom) Date: Tue, 20 Apr 2004 09:34:51 -0700 (PDT) Subject: [redhat-ccm-list] Getting a "user does not have admin privileges" error In-Reply-To: <1082428336.5223.181.camel@toad.boston.redhat.com> Message-ID: <20040420163451.10237.qmail@web41006.mail.yahoo.com> Hi Dennis, I got a Returned Mail message on my last reply so I'm resending it. To answer your question, I was loading most all of them in the nightly builds directory: cms-core, cms-cms, cms-portalserver, all of the cms-types and cms-forums. Quite a few in total. Tom --- Dennis Gregorovic wrote: > Which apps were you loading? > > On Mon, 2004-04-19 at 22:13, Tom wrote: > > I had ccm installed and working until I decided to install and load > > some additional modules/apps. I had to drop the db and restart the > > entire install all over again. I get the following error when > > attempting to load the apps: > > > > 2004-04-19 21:09:24,492 [ main] WARN SECURITY - 2004-04-19 > > 21:09:24.103 no-IP-available User -200 does not have the admin > > privilege on Object [com.arsdigita.kernel.ACSObject:{id=49}] with > > context null > > com.arsdigita.kernel.permissions.PermissionException: User -200 > does > > not have the admin privilege on Object > > [com.arsdigita.kernel.ACSObject:{id=49}] with context null > > at > > > com.arsdigita.kernel.permissions.PermissionService.assertPermission(PermissionService.java:121) > > at > > > com.arsdigita.kernel.permissions.Permission.beforeSave(Permission.java:263) > > at > > > com.arsdigita.domain.DomainObject$SaveObserver.beforeSave(DomainObject.java:600) > > at > > > com.arsdigita.persistence.BeforeSaveEvent.doInvoke(DataEvent.java:186) > > at > > com.arsdigita.persistence.DataEvent.invoke(DataEvent.java:38) > > at > > > com.arsdigita.persistence.DataObjectImpl.fireObserver(DataObjectImpl.java:513) > > at > com.arsdigita.persistence.DataEvent.fire(DataEvent.java:47) > > at > > > com.arsdigita.persistence.Session$FlushEventProcessor.fireNow(Session.java:690) > > at > > > com.arsdigita.persistence.DataObjectImpl.save(DataObjectImpl.java:424) > > at > > com.arsdigita.domain.DomainObject.save(DomainObject.java:314) > > at > > > com.arsdigita.kernel.permissions.PermissionManager.grantPermission(PermissionManager.java:172) > > at > > > com.arsdigita.kernel.permissions.PermissionService.grantPermission(PermissionService.java:165) > > at com.arsdigita.kernel.User.afterSave(User.java:381) > > at > > > com.arsdigita.domain.DomainObject$SaveObserver.afterSave(DomainObject.java:604) > > at > > > com.arsdigita.persistence.AfterSaveEvent.doInvoke(DataEvent.java:205) > > at > > com.arsdigita.persistence.DataEvent.invoke(DataEvent.java:38) > > at > > > com.arsdigita.persistence.DataObjectImpl.fireObserver(DataObjectImpl.java:513) > > at > > > com.arsdigita.persistence.DataObjectImpl.fireObserver(DataObjectImpl.java:516) > > at > com.arsdigita.persistence.DataEvent.fire(DataEvent.java:47) > > at > > > com.arsdigita.persistence.Session$FlushEventProcessor.flush(Session.java:683) > > at > > com.redhat.persistence.Session.flushInternal(Session.java:682) > > at com.redhat.persistence.Session.flush(Session.java:647) > > at > > > com.arsdigita.persistence.TransactionContext.commitTxn(TransactionContext.java:87) > > at com.arsdigita.packaging.Loader.loadData(Loader.java:143) > > at com.arsdigita.packaging.Load.run(Load.java:362) > > at > com.arsdigita.packaging.MasterTool.main(MasterTool.java:90) > > > > > > I would appreciate some help. Thanks. > > > > Regards, > > Tom Baik > > > > > > > > > > > > > > __________________________________ > > Do you Yahoo!? > > Yahoo! Photos: High-quality 4x6 digital prints for 25 > > http://photos.yahoo.com/ph/print_splash > > > > > -- > Redhat-ccm-list mailing list > Redhat-ccm-list at redhat.com > https://www.redhat.com/mailman/listinfo/redhat-ccm-list > Archives: https://www.redhat.com/pipermail/redhat-ccm-list/ __________________________________ Do you Yahoo!? Yahoo! Photos: High-quality 4x6 digital prints for 25? http://photos.yahoo.com/ph/print_splash From dgregor at redhat.com Tue Apr 20 17:16:00 2004 From: dgregor at redhat.com (Dennis Gregorovic) Date: Tue, 20 Apr 2004 13:16:00 -0400 Subject: [redhat-ccm-list] Getting a "user does not have admin privileges" error In-Reply-To: <20040420163451.10237.qmail@web41006.mail.yahoo.com> References: <20040420163451.10237.qmail@web41006.mail.yahoo.com> Message-ID: <1082481359.14552.43.camel@toad.boston.redhat.com> In the previous email you cc'd redhat-cms-list instead of redhat-ccm-list. Can you isolate which of the applications is causing the problem? By the way, new documentation is now up at http://www.redhat.com/docs/manuals/rhea/ -- Dennis On Tue, 2004-04-20 at 12:34, Tom wrote: > Hi Dennis, > > I got a Returned Mail message on my last reply so I'm resending it. > > To answer your question, I was loading most all of them in the nightly > builds directory: cms-core, cms-cms, cms-portalserver, all of the > cms-types and cms-forums. Quite a few in total. > > Tom > > > --- Dennis Gregorovic wrote: > > Which apps were you loading? > > > > On Mon, 2004-04-19 at 22:13, Tom wrote: > > > I had ccm installed and working until I decided to install and load > > > some additional modules/apps. I had to drop the db and restart the > > > entire install all over again. I get the following error when > > > attempting to load the apps: > > > > > > 2004-04-19 21:09:24,492 [ main] WARN SECURITY - 2004-04-19 > > > 21:09:24.103 no-IP-available User -200 does not have the admin > > > privilege on Object [com.arsdigita.kernel.ACSObject:{id=49}] with > > > context null > > > com.arsdigita.kernel.permissions.PermissionException: User -200 > > does > > > not have the admin privilege on Object > > > [com.arsdigita.kernel.ACSObject:{id=49}] with context null > > > at > > > > > > com.arsdigita.kernel.permissions.PermissionService.assertPermission(PermissionService.java:121) > > > at > > > > > > com.arsdigita.kernel.permissions.Permission.beforeSave(Permission.java:263) > > > at > > > > > > com.arsdigita.domain.DomainObject$SaveObserver.beforeSave(DomainObject.java:600) > > > at > > > > > > com.arsdigita.persistence.BeforeSaveEvent.doInvoke(DataEvent.java:186) > > > at > > > com.arsdigita.persistence.DataEvent.invoke(DataEvent.java:38) > > > at > > > > > > com.arsdigita.persistence.DataObjectImpl.fireObserver(DataObjectImpl.java:513) > > > at > > com.arsdigita.persistence.DataEvent.fire(DataEvent.java:47) > > > at > > > > > > com.arsdigita.persistence.Session$FlushEventProcessor.fireNow(Session.java:690) > > > at > > > > > > com.arsdigita.persistence.DataObjectImpl.save(DataObjectImpl.java:424) > > > at > > > com.arsdigita.domain.DomainObject.save(DomainObject.java:314) > > > at > > > > > > com.arsdigita.kernel.permissions.PermissionManager.grantPermission(PermissionManager.java:172) > > > at > > > > > > com.arsdigita.kernel.permissions.PermissionService.grantPermission(PermissionService.java:165) > > > at com.arsdigita.kernel.User.afterSave(User.java:381) > > > at > > > > > > com.arsdigita.domain.DomainObject$SaveObserver.afterSave(DomainObject.java:604) > > > at > > > > > com.arsdigita.persistence.AfterSaveEvent.doInvoke(DataEvent.java:205) > > > at > > > com.arsdigita.persistence.DataEvent.invoke(DataEvent.java:38) > > > at > > > > > > com.arsdigita.persistence.DataObjectImpl.fireObserver(DataObjectImpl.java:513) > > > at > > > > > > com.arsdigita.persistence.DataObjectImpl.fireObserver(DataObjectImpl.java:516) > > > at > > com.arsdigita.persistence.DataEvent.fire(DataEvent.java:47) > > > at > > > > > > com.arsdigita.persistence.Session$FlushEventProcessor.flush(Session.java:683) > > > at > > > com.redhat.persistence.Session.flushInternal(Session.java:682) > > > at com.redhat.persistence.Session.flush(Session.java:647) > > > at > > > > > > com.arsdigita.persistence.TransactionContext.commitTxn(TransactionContext.java:87) > > > at com.arsdigita.packaging.Loader.loadData(Loader.java:143) > > > at com.arsdigita.packaging.Load.run(Load.java:362) > > > at > > com.arsdigita.packaging.MasterTool.main(MasterTool.java:90) > > > > > > > > > I would appreciate some help. Thanks. > > > > > > Regards, > > > Tom Baik > > > > > > > > > > > > > > > > > > > > > __________________________________ > > > Do you Yahoo!? > > > Yahoo! Photos: High-quality 4x6 digital prints for 25 > > > http://photos.yahoo.com/ph/print_splash > > > > > > > > > -- > > Redhat-ccm-list mailing list > > Redhat-ccm-list at redhat.com > > https://www.redhat.com/mailman/listinfo/redhat-ccm-list > > Archives: https://www.redhat.com/pipermail/redhat-ccm-list/ > > > > > > __________________________________ > Do you Yahoo!? > Yahoo! Photos: High-quality 4x6 digital prints for 25 > http://photos.yahoo.com/ph/print_splash From tom415 at yahoo.com Tue Apr 20 17:26:49 2004 From: tom415 at yahoo.com (Tom) Date: Tue, 20 Apr 2004 10:26:49 -0700 (PDT) Subject: [redhat-ccm-list] Getting a "user does not have admin privileges" error In-Reply-To: <1082481359.14552.43.camel@toad.boston.redhat.com> Message-ID: <20040420172649.30156.qmail@web41009.mail.yahoo.com> Hi Dennis, Yes, I found a submission in the mailing list that indicated it was the ccm-forum module that was causing the admin privilege issue. I ended up dropping the db and starting over again, this time without loading the forum app. I was able to complete the install. On another note, I'm getting some notices that state "An unexpected error has occurred" and it gives a CCM issue report code that looks like this: CCM issue report code: 66.216.124.12:1f58d74:fc08f33fe6. What is this and is there a way for me to find out what the CCM issue report means? Thanks again for all your help. Tom --- Dennis Gregorovic wrote: > In the previous email you cc'd redhat-cms-list instead of > redhat-ccm-list. > > Can you isolate which of the applications is causing the problem? By > the way, new documentation is now up at > http://www.redhat.com/docs/manuals/rhea/ > > -- Dennis > > > On Tue, 2004-04-20 at 12:34, Tom wrote: > > Hi Dennis, > > > > I got a Returned Mail message on my last reply so I'm resending it. > > > > To answer your question, I was loading most all of them in the > nightly > > builds directory: cms-core, cms-cms, cms-portalserver, all of the > > cms-types and cms-forums. Quite a few in total. > > > > Tom > > > > > > --- Dennis Gregorovic wrote: > > > Which apps were you loading? > > > > > > On Mon, 2004-04-19 at 22:13, Tom wrote: > > > > I had ccm installed and working until I decided to install and > load > > > > some additional modules/apps. I had to drop the db and restart > the > > > > entire install all over again. I get the following error when > > > > attempting to load the apps: > > > > > > > > 2004-04-19 21:09:24,492 [ main] WARN SECURITY - 2004-04-19 > > > > 21:09:24.103 no-IP-available User -200 does not have the admin > > > > privilege on Object [com.arsdigita.kernel.ACSObject:{id=49}] > with > > > > context null > > > > com.arsdigita.kernel.permissions.PermissionException: User -200 > > > does > > > > not have the admin privilege on Object > > > > [com.arsdigita.kernel.ACSObject:{id=49}] with context null > > > > at > > > > > > > > > > com.arsdigita.kernel.permissions.PermissionService.assertPermission(PermissionService.java:121) > > > > at > > > > > > > > > > com.arsdigita.kernel.permissions.Permission.beforeSave(Permission.java:263) > > > > at > > > > > > > > > > com.arsdigita.domain.DomainObject$SaveObserver.beforeSave(DomainObject.java:600) > > > > at > > > > > > > > > > com.arsdigita.persistence.BeforeSaveEvent.doInvoke(DataEvent.java:186) > > > > at > > > > com.arsdigita.persistence.DataEvent.invoke(DataEvent.java:38) > > > > at > > > > > > > > > > com.arsdigita.persistence.DataObjectImpl.fireObserver(DataObjectImpl.java:513) > > > > at > > > com.arsdigita.persistence.DataEvent.fire(DataEvent.java:47) > > > > at > > > > > > > > > > com.arsdigita.persistence.Session$FlushEventProcessor.fireNow(Session.java:690) > > > > at > > > > > > > > > > com.arsdigita.persistence.DataObjectImpl.save(DataObjectImpl.java:424) > > > > at > > > > com.arsdigita.domain.DomainObject.save(DomainObject.java:314) > > > > at > > > > > > > > > > com.arsdigita.kernel.permissions.PermissionManager.grantPermission(PermissionManager.java:172) > > > > at > > > > > > > > > > com.arsdigita.kernel.permissions.PermissionService.grantPermission(PermissionService.java:165) > > > > at com.arsdigita.kernel.User.afterSave(User.java:381) > > > > at > > > > > > > > > > com.arsdigita.domain.DomainObject$SaveObserver.afterSave(DomainObject.java:604) > > > > at > > > > > > > > com.arsdigita.persistence.AfterSaveEvent.doInvoke(DataEvent.java:205) > > > > at > > > > com.arsdigita.persistence.DataEvent.invoke(DataEvent.java:38) > > > > at > > > > > > > > > > com.arsdigita.persistence.DataObjectImpl.fireObserver(DataObjectImpl.java:513) > > > > at > > > > > > > > > > com.arsdigita.persistence.DataObjectImpl.fireObserver(DataObjectImpl.java:516) > > > > at > > > com.arsdigita.persistence.DataEvent.fire(DataEvent.java:47) > > > > at > > > > > > > > > > com.arsdigita.persistence.Session$FlushEventProcessor.flush(Session.java:683) > > > > at > > > > com.redhat.persistence.Session.flushInternal(Session.java:682) > > > > at > com.redhat.persistence.Session.flush(Session.java:647) > > > > at > > > > > > > > > > com.arsdigita.persistence.TransactionContext.commitTxn(TransactionContext.java:87) > > > > at > com.arsdigita.packaging.Loader.loadData(Loader.java:143) > > > > at com.arsdigita.packaging.Load.run(Load.java:362) > > > > at > > > com.arsdigita.packaging.MasterTool.main(MasterTool.java:90) > > > > > > > > > > > > I would appreciate some help. Thanks. > > > > > > > > Regards, > > > > Tom Baik > > > > > > > > > > > > > > > > > > > > > > > > > > > > __________________________________ > > > > Do you Yahoo!? > > > > Yahoo! Photos: High-quality 4x6 digital prints for 25 > > > > http://photos.yahoo.com/ph/print_splash > > > > > > > > > > > > > -- > > > Redhat-ccm-list mailing list > > > Redhat-ccm-list at redhat.com > > > https://www.redhat.com/mailman/listinfo/redhat-ccm-list > > > Archives: https://www.redhat.com/pipermail/redhat-ccm-list/ > > > > > > > > > > > > __________________________________ > > Do you Yahoo!? > > Yahoo! Photos: High-quality 4x6 digital prints for 25 > > http://photos.yahoo.com/ph/print_splash > > > -- > Redhat-ccm-list mailing list > Redhat-ccm-list at redhat.com > https://www.redhat.com/mailman/listinfo/redhat-ccm-list > Archives: https://www.redhat.com/pipermail/redhat-ccm-list/ __________________________________ Do you Yahoo!? Yahoo! Photos: High-quality 4x6 digital prints for 25? http://photos.yahoo.com/ph/print_splash From kwade at redhat.com Tue Apr 20 19:10:48 2004 From: kwade at redhat.com (Karsten Wade) Date: 20 Apr 2004 12:10:48 -0700 Subject: [redhat-ccm-list] New WAF & CMS 6.1 documentation Message-ID: <1082488247.23409.1177.camel@erato.phig.org> Hot off the digital presses, chasing on the heels of 6.1 release of WAF and CMS, may we humbly present the complete documentation set: WAF Guides Includes release notes, Installation Guide, and Developer Guide. http://www.redhat.com/docs/manuals/waf/ CMS Guides Includes release notes, Administrator Guide, Deployment Guide, and Developer Guide. http://www.redhat.com/docs/manuals/cms/ You have your choice of HTML, PDF, and RPM versions. As usual, errors, omissions, and suggestions are taken through bugzilla. http://bugzilla.redhat.com/ File against the appropriate product (WAF or CMS) and the Documentation component, referring to the unique guide ID included on the Copyright page. For example, from this URL: http://www.redhat.com/docs/manuals/waf/rhea-ig-waf-en-6.1/legalnotice.html rhea-ig-waf-en(EN)-6.1-HTML-RHI (2004-03-29-T16:20-0800) Thanks, and happy reading. - Karsten -- Karsten Wade, Sr. Tech Writer this is not the .signature you are looking for http://people.redhat.com/kwade/ gpg fingerprint: 2680 DBFD D968 3141 0115 5F1B D992 0E06 AD0E 0C41 From egarza at logictrends.com Tue Apr 20 20:36:01 2004 From: egarza at logictrends.com (Eric Garza) Date: Tue, 20 Apr 2004 16:36:01 -0400 Subject: [redhat-ccm-list] Please provide stable 6.1 Release Message-ID: <000001c42717$1b772260$6401a8c0@garzaxp> I know that the only public distribution of version WAF/CCM/Portal 6.1 is via nightly builds, but 6.1 appears to have been released officially, is there any chance we can download that stable release, similar to the 5.x release? I mean is this open source software or what? Do I have to buy Enterprise to get this open source package? The cmdev sourceforge project only has 5.x code. I finally downloaded Aplaws+ to get a stable 6.1 release and all is well, alas portal is not integrated. Just wondering. -- Eric Garza -------------- next part -------------- An HTML attachment was scrubbed... URL: From richardl at redhat.com Tue Apr 20 20:43:16 2004 From: richardl at redhat.com (Richard Li) Date: Tue, 20 Apr 2004 16:43:16 -0400 Subject: [redhat-ccm-list] Please provide stable 6.1 Release In-Reply-To: <000001c42717$1b772260$6401a8c0@garzaxp> References: <000001c42717$1b772260$6401a8c0@garzaxp> Message-ID: <40858B64.1070703@redhat.com> http://rhea.redhat.com/faq.html#release-policy Eric Garza wrote: > I know that the only public distribution of version WAF/CCM/Portal 6.1 > is via nightly builds, but 6.1 appears to have been released > officially, is there any chance we can download that stable release, > similar to the 5.x release? I mean is this open source software or > what? Do I have to buy Enterprise to get this open source package? The > cmdev sourceforge project only has 5.x code. > > > > I finally downloaded Aplaws+ to get a stable 6.1 release and all is > well, alas portal is not integrated. Just wondering. > > > > -- > > Eric Garza > From john-mason.shackelford at pearson.com Tue Apr 20 21:13:42 2004 From: john-mason.shackelford at pearson.com (Shackelford, John-Mason) Date: Tue, 20 Apr 2004 16:13:42 -0500 Subject: [redhat-ccm-list] Please provide stable 6.1 Release Message-ID: <6F3CF8F7047E374CAF4DCED3ED14576E041B8431@iowacexch4.ic.ncs.com> When RedHat failed to release 6.0 to the public as had been promised it demonstrated that it was not really serious about its commitment to keeping redhat-ccm a viable open source solution. Source licensed--sure, open source--not in any practical sense. **************************************************************************** This email may contain confidential material. If you were not an intended recipient, Please notify the sender and delete all copies. We may monitor email to and from our network. **************************************************************************** From richardl at redhat.com Tue Apr 20 22:25:24 2004 From: richardl at redhat.com (Richard Li) Date: Tue, 20 Apr 2004 18:25:24 -0400 Subject: [redhat-ccm-list] Please provide stable 6.1 Release In-Reply-To: <6F3CF8F7047E374CAF4DCED3ED14576E041B8431@iowacexch4.ic.ncs.com> References: <6F3CF8F7047E374CAF4DCED3ED14576E041B8431@iowacexch4.ic.ncs.com> Message-ID: <4085A354.1080109@redhat.com> Obviously, I am biased, but I disagree with the conclusion. I suppose it all depends on your definition of "viable open source solution". My interpretation is: 1. Viable: Can run a production system on the code. 2. Open source: The source is available under a reasonable open source license. 3. Solution: Actually does something useful. I believe that 5.2.1 meets all those criteria. In fact, we still have production systems running on 5.2.1. All of the source code is available in nightly builds. We don't hide anything. Sometimes, it breaks -- but when it breaks for you, it breaks for us. We've even made the repositories yum-able for easy upgrading. We've also released *all* of our documentation to the community. I think that shows a pretty huge commitment. The documentation was a huge effort for many of us, and making it free is a big deal, maybe not for you, but it is for us. I understand there's disappointment that we haven't released 6.0 publically. I'm disappointed too. But I don't think that lessens Red Hat's commitment to open source. I hope we will continue to put out "Official, Public Releases". I don't have a schedule (after the amount of time it took to get 5.2.1 out, I don't think I could be trusted anyway ;-) ). We'll see. Richard Shackelford, John-Mason wrote: >When RedHat failed to release 6.0 to the public as had been promised it >demonstrated that it was not really serious about its commitment to keeping >redhat-ccm a viable open source solution. Source licensed--sure, open >source--not in any practical sense. > > From egarza at logictrends.com Wed Apr 21 14:31:11 2004 From: egarza at logictrends.com (Eric Garza) Date: Wed, 21 Apr 2004 10:31:11 -0400 Subject: [redhat-ccm-list] Please provide stable 6.1 Release In-Reply-To: <40858B64.1070703@redhat.com> Message-ID: <000001c427ad$4ea52dd0$6401a8c0@garzaxp> Last word on this issue. Richard, I hear what you're saying. I certainly appreciate the work that has been done to date. But the fact is, there are stable releases of 6.x CCM software not publicly available, and what Redhat is doing demonstrates a frustrating trend, forcing companies and individuals to purchase licenses for companion products to stay up to date with open source software. I am not begrudging anyone their right to make a living, but that is not in keeping with the spirit of open source software. At a minimum, point releases could be made available via the ftp site, with some accompanying release notes, which is stated in the FAQ. Redhat is saying, please beta test our software, but you don't get to reap the benefits of stable releases unless you cough up some green. Quid pro quo Clarice!! -- Eric Garza -----Original Message----- From: Richard Li [mailto:richardl at redhat.com] Sent: Tuesday, April 20, 2004 4:43 PM To: Eric Garza Cc: redhat-ccm-list at redhat.com Subject: Re: [redhat-ccm-list] Please provide stable 6.1 Release http://rhea.redhat.com/faq.html#release-policy Eric Garza wrote: > I know that the only public distribution of version WAF/CCM/Portal 6.1 > is via nightly builds, but 6.1 appears to have been released > officially, is there any chance we can download that stable release, > similar to the 5.x release? I mean is this open source software or > what? Do I have to buy Enterprise to get this open source package? The > cmdev sourceforge project only has 5.x code. > > > > I finally downloaded Aplaws+ to get a stable 6.1 release and all is > well, alas portal is not integrated. Just wondering. > > > > -- > > Eric Garza > From egarza at logictrends.com Wed Apr 21 15:17:08 2004 From: egarza at logictrends.com (Eric Garza) Date: Wed, 21 Apr 2004 11:17:08 -0400 Subject: [redhat-ccm-list] Please provide stable 6.1 Release In-Reply-To: <40868669.2040603@redhat.com> Message-ID: <000001c427b3$b9a1bb70$6401a8c0@garzaxp> Are you kidding or what? Seriously, if the price was reasonable, I might pay a subscription, but it would curl my toes considering it's open source and I am paying for access to current releases. I am not lazy, I just am looking for a solid well documented stable open source CMS/Portal solution. Is that too much to ask? I did skip 5.x though, but I just love using current releases, don't you? I would contribute my enhancements and fixes gladly to such a project. I would also challenge Redhat to allow contributing developers access to stable releases, which maybe they do already, look at APLAWS+, which I am damn impressed with. I haven't contributed any new features or fixes yet, but I am going to be adding content types, and I sure as hell am not going to make them available to Redhat without access to stables releases. I also would love it if Redhat CCM/Portal was JSR 168 compliant and more standards based. I would certainly contribute to that effort if I was actively using CCM/Portal in my company, which is difficult without easy access to stable releases, which slows adoption. With those options, one could go either way dependent on their skill and need. Jahia has some funky open source license like this that is geared more towards major contributors, than casual bug fixers. So forget them, but wow, what a great Portal/CMS solution. It's the best I have evaluated. I have looked at every open source portal and CMS solution out there, and documentation wise, Redhat CCM clobbers them. Install wise, CCM was better than most. I would opt for a Maven based build process though. It's damn painful implementing an open source CMS with little how-to documentation. There needs to be more tutorials in the CCM documentation. uPortal is probably the best open source portal out there doc and feature wise, their HyperContent CMS isn't that great though. I am implementing a solution now built on APLAWS+, and I am going to make my notes available to the mailing list for what they're worth. Just some ideas. -- Eric Garza -----Original Message----- From: Richard Li [mailto:richardl at redhat.com] Sent: Wednesday, April 21, 2004 10:34 AM To: Eric Garza Subject: Re: [redhat-ccm-list] Please provide stable 6.1 Release >At a minimum, point releases could be made available via the ftp site, >with some accompanying release notes, which is stated in the FAQ. Redhat >is saying, please beta test our software, but you don't get to reap the >benefits of stable releases unless you cough up some green. Quid pro quo >Clarice!! > > If we did this, would you pay for a subscription? From john-mason.shackelford at pearson.com Wed Apr 21 15:46:16 2004 From: john-mason.shackelford at pearson.com (Shackelford, John-Mason) Date: Wed, 21 Apr 2004 10:46:16 -0500 Subject: [redhat-ccm-list] Please provide stable 6.1 Release Message-ID: <6F3CF8F7047E374CAF4DCED3ED14576E041B843D@iowacexch4.ic.ncs.com> At Pearson Educational Measurement the cost of a scubscription is not an issue. With over a billion in annual revenues the 16k licesnse fee is a drop in the bucket. But interest in CCM here wouldn't get off the ground here given that its development model does not promote a lively multi-vendor development community. One has only to compare the development communities around Java open source projects under managed by the Apache Foundation or the Eclipse Foundation to see how RedHat's stewardship of CCM is fundamentally flawed. Their strategy is to retain the revenue from existing clients rather than launching a project which creates a whole industry and becoming leaders of the new industry. John-Mason Shackelford Software Developer Pearson Educational Measurement - eMeasurement Group 2510 North Dodge St. Iowa City, IA 52245 ph. 319-354-9200x6214 john-mason.shackelford at pearson.com http://etest.ncspearson.com **************************************************************************** This email may contain confidential material. If you were not an intended recipient, Please notify the sender and delete all copies. We may monitor email to and from our network. **************************************************************************** From egarza at logictrends.com Wed Apr 21 16:21:43 2004 From: egarza at logictrends.com (Eric Garza) Date: Wed, 21 Apr 2004 12:21:43 -0400 Subject: [redhat-ccm-list] Please provide stable 6.1 Release In-Reply-To: <408692DE.4080904@redhat.com> Message-ID: <000001c427bc$bf5dd8b0$6401a8c0@garzaxp> John's point about fostering an active development community gets to the heart of my issue and the apparent disconnect between Redhat and open sources developers out there. We don't have 1 billion in revenues and open source software provides us with cost effective options. I am going to evaluate the software through Redhat trials and will ultimately pay up if the features justify the investment. I think there is an excellent opportunity for Redhat to take some market share by making CCM/Portal more openly available given the some of the lame open source Portal solutions out there. -- Eric Garza From mukeshprasad_ddn at indiatimes.com Wed Apr 21 17:42:24 2004 From: mukeshprasad_ddn at indiatimes.com (mukeshprasad_ddn) Date: Wed, 21 Apr 2004 23:12:24 +0530 Subject: [redhat-ccm-list] help required on cms Message-ID: <200404211710.WAA03812@WS0005.indiatimes.com> Hi I have installed cms 5.2.1 on my machine. I'm new to cms and would appreciate if some one could give me the step by step instruction on how to go about in creating, working and deploying a project on cms. I am not able to find documents on 5.2.1 anywhere. Kindly help me out Thanks Mukesh Get Your Private, Free E-mail from Indiatimes at http://email.indiatimes.com Buy The Best In BOOKS at http://www.bestsellers.indiatimes.com Bid for for Air Tickets @ Re.1 on Air Sahara Flights. Just log on to http://airsahara.indiatimes.com and Bid Now! From dgregor at redhat.com Wed Apr 21 17:55:27 2004 From: dgregor at redhat.com (Dennis Gregorovic) Date: Wed, 21 Apr 2004 13:55:27 -0400 Subject: [redhat-ccm-list] help required on cms In-Reply-To: <200404211710.WAA03812@WS0005.indiatimes.com> References: <200404211710.WAA03812@WS0005.indiatimes.com> Message-ID: <1082570127.21077.38.camel@toad.boston.redhat.com> The WAF 5.2.1 install guide is what you are looking for. http://www.redhat.com/docs/manuals/waf/ On Wed, 2004-04-21 at 13:42, mukeshprasad_ddn wrote: > Hi > I have installed cms 5.2.1 on my machine. I'm new to cms and would appreciate if some one could give me the step by step instruction on how to go about in creating, working and deploying a project on cms. I am not able to find documents on 5.2.1 anywhere. > Kindly help me out > Thanks > Mukesh > Get Your Private, Free E-mail from Indiatimes at http://email.indiatimes.com > > Buy The Best In BOOKS at http://www.bestsellers.indiatimes.com > > Bid for for Air Tickets @ Re.1 on Air Sahara Flights. Just log on to http://airsahara.indiatimes.com and Bid Now! > From egarza at logictrends.com Thu Apr 22 14:30:29 2004 From: egarza at logictrends.com (Eric Garza) Date: Thu, 22 Apr 2004 10:30:29 -0400 Subject: [redhat-ccm-list] help required on cms Message-ID: <000601c42876$5f8525f0$9801a8c0@garzaxp> The install is covered fine, and Mukesh has it installed. There is no tutorial on how to create and customize the CMS after install. There is an admin guide that talks about high level concepts, but nothing tying it all together. -- Eric Garza -------------- next part -------------- An HTML attachment was scrubbed... URL: From tom415 at yahoo.com Thu Apr 22 18:41:27 2004 From: tom415 at yahoo.com (Tom) Date: Thu, 22 Apr 2004 11:41:27 -0700 (PDT) Subject: [redhat-ccm-list] Getting "Failed to load stylesheets" error Message-ID: <20040422184127.35763.qmail@web41003.mail.yahoo.com> I'm getting the following error: 2004-04-22 12:37:37 ApplicationDispatcher[] Servlet.service() for servlet jsp threw exception org.apache.jasper.JasperException: null (root cause: Failed to compile stylesheet. 2 errors detected.); com.arsdigita.templating.WrappedTransformerException (root cause: javax.xml.transform.TransformerConfigurationException: Failed to compile stylesheet. 2 errors detected.) at com.arsdigita.templating.XSLTemplate.(XSLTemplate.java:102) at com.arsdigita.templating.XSLTemplate.(XSLTemplate.java:119) at com.arsdigita.templating.Templating.getTemplate(Templating.java:190) at com.arsdigita.templating.Templating.getTemplate(Templating.java:254) Has anyone seen this? Could someone please advise me on what is going on? Thanks. Regards, Tom Baik __________________________________ Do you Yahoo!? Yahoo! Photos: High-quality 4x6 digital prints for 25? http://photos.yahoo.com/ph/print_splash From dgregor at redhat.com Thu Apr 22 18:52:03 2004 From: dgregor at redhat.com (Dennis Gregorovic) Date: Thu, 22 Apr 2004 14:52:03 -0400 Subject: [redhat-ccm-list] Getting "Failed to load stylesheets" error In-Reply-To: <20040422184127.35763.qmail@web41003.mail.yahoo.com> References: <20040422184127.35763.qmail@web41003.mail.yahoo.com> Message-ID: <1082659923.26660.2.camel@toad.boston.redhat.com> What were the steps that you took to produce this error? On Thu, 2004-04-22 at 14:41, Tom wrote: > I'm getting the following error: > > 2004-04-22 12:37:37 ApplicationDispatcher[] Servlet.service() for > servlet jsp threw exception > org.apache.jasper.JasperException: null (root cause: Failed to compile > stylesheet. 2 errors detected.); > > com.arsdigita.templating.WrappedTransformerException (root cause: > javax.xml.transform.TransformerConfigurationException: Failed to > compile stylesheet. 2 errors detected.) > at > com.arsdigita.templating.XSLTemplate.(XSLTemplate.java:102) > at > com.arsdigita.templating.XSLTemplate.(XSLTemplate.java:119) > at > com.arsdigita.templating.Templating.getTemplate(Templating.java:190) > at > com.arsdigita.templating.Templating.getTemplate(Templating.java:254) > > > Has anyone seen this? Could someone please advise me on what is going > on? Thanks. > > Regards, > Tom Baik > > > > > > > > __________________________________ > Do you Yahoo!? > Yahoo! Photos: High-quality 4x6 digital prints for 25 > http://photos.yahoo.com/ph/print_splash > From tom415 at yahoo.com Thu Apr 22 18:58:38 2004 From: tom415 at yahoo.com (Tom) Date: Thu, 22 Apr 2004 11:58:38 -0700 (PDT) Subject: [redhat-ccm-list] Getting "Failed to load stylesheets" error In-Reply-To: <1082659923.26660.2.camel@toad.boston.redhat.com> Message-ID: <20040422185838.98836.qmail@web41001.mail.yahoo.com> Hi Dennis, I installed all the apps and started ccm. When I used my browser to access localhost:9090/ccm/, I got an "unexpected error has occurred" screen. I changed the "debug" values from "0" to "4" in the server.xml file and the logs indicated the "failed to load stylesheets. 2 errors detected" error. Tom --- Dennis Gregorovic wrote: > What were the steps that you took to produce this error? > > > On Thu, 2004-04-22 at 14:41, Tom wrote: > > I'm getting the following error: > > > > 2004-04-22 12:37:37 ApplicationDispatcher[] Servlet.service() for > > servlet jsp threw exception > > org.apache.jasper.JasperException: null (root cause: Failed to > compile > > stylesheet. 2 errors detected.); > > > > com.arsdigita.templating.WrappedTransformerException (root cause: > > javax.xml.transform.TransformerConfigurationException: Failed to > > compile stylesheet. 2 errors detected.) > > at > > com.arsdigita.templating.XSLTemplate.(XSLTemplate.java:102) > > at > > com.arsdigita.templating.XSLTemplate.(XSLTemplate.java:119) > > at > > > com.arsdigita.templating.Templating.getTemplate(Templating.java:190) > > at > > > com.arsdigita.templating.Templating.getTemplate(Templating.java:254) > > > > > > Has anyone seen this? Could someone please advise me on what is > going > > on? Thanks. > > > > Regards, > > Tom Baik > > > > > > > > > > > > > > > > __________________________________ > > Do you Yahoo!? > > Yahoo! Photos: High-quality 4x6 digital prints for 25 > > http://photos.yahoo.com/ph/print_splash > > > __________________________________ Do you Yahoo!? Yahoo! Photos: High-quality 4x6 digital prints for 25? http://photos.yahoo.com/ph/print_splash From goldfish at i-manila.com.ph Fri Apr 23 02:35:03 2004 From: goldfish at i-manila.com.ph (Jun Yamog) Date: 23 Apr 2004 10:35:03 +0800 Subject: [redhat-ccm-list] Please provide stable 6.1 Release In-Reply-To: <000001c427bc$bf5dd8b0$6401a8c0@garzaxp> References: <000001c427bc$bf5dd8b0$6401a8c0@garzaxp> Message-ID: <1082687564.1613.20.camel@draco.vnet> Hi, It seems that this discussion has been done several times in the past. There has been some positive changes, but none are dramatic changes. I think it can be seen that the initial interest level is there, but the continued interest level is not there. You can just see the list or the wiki in sf.net. If you look at it there are a lot of installation inquiries, etc. Not much about non installation stuff, people have stayed here are most often are those that did pay for RH support. There are only a few real volunteers around. So I think the place is not yet conductive enough for open source development. The code is open source, but not much can be said with the community. Maybe RH can look again at its strategy since after more than year I don't think we have grown the community that much. Welcome Eric Garza, we hope that your new blood can put some fire again on the community. Jun On Thu, 2004-04-22 at 00:21, Eric Garza wrote: > John's point about fostering an active development community gets to the > heart of my issue and the apparent disconnect between Redhat and open > sources developers out there. We don't have 1 billion in revenues and > open source software provides us with cost effective options. I am going > to evaluate the software through Redhat trials and will ultimately pay > up if the features justify the investment. > > I think there is an excellent opportunity for Redhat to take some market > share by making CCM/Portal more openly available given the some of the > lame open source Portal solutions out there. > > -- > Eric Garza > > > From goldfish at i-manila.com.ph Fri Apr 23 02:37:47 2004 From: goldfish at i-manila.com.ph (Jun Yamog) Date: 23 Apr 2004 10:37:47 +0800 Subject: [redhat-ccm-list] help required on cms In-Reply-To: <000601c42876$5f8525f0$9801a8c0@garzaxp> References: <000601c42876$5f8525f0$9801a8c0@garzaxp> Message-ID: <1082687867.1613.24.camel@draco.vnet> Hi Eric, There was a guide although it was very old, not sure where it is now. Maybe someone can give the link. Its very old so I am not sure how applicable it is with 6.1 nightly. Maybe you can ask something more specific about customizing CMS. I don't have working knowledge on 6.x, just 5.x, we can try. Jun On Thu, 2004-04-22 at 22:30, Eric Garza wrote: > The install is covered fine, and Mukesh has it installed. There is no > tutorial on how to create and customize the CMS after install. There > is an admin guide that talks about high level concepts, but nothing > tying it all together. > > > > -- > > Eric Garza > > > > ______________________________________________________________________ > > -- > Redhat-ccm-list mailing list > Redhat-ccm-list at redhat.com > https://www.redhat.com/mailman/listinfo/redhat-ccm-list > Archives: https://www.redhat.com/pipermail/redhat-ccm-list/ From tom415 at yahoo.com Fri Apr 23 03:00:11 2004 From: tom415 at yahoo.com (Tom) Date: Thu, 22 Apr 2004 20:00:11 -0700 (PDT) Subject: [redhat-ccm-list] help required on cms In-Reply-To: <1082687867.1613.24.camel@draco.vnet> Message-ID: <20040423030011.24458.qmail@web41002.mail.yahoo.com> Hi Jun, I also recently installed 6.1 for the first time and I've been playing with it for the last couple of days and I have the same questions as Eric. I've trolled the mailing lists and I haven't been able to get anywhere. For example, when I go to http://localhost:8080/ccm/content-center/, I get a page with two tabs, 'tasks/sections' and 'search'. Then clicking on the "content" link (/ccm/content/admin/index.jsp) or the "forms" link under the "Section" column gives an error. Is this the correct starting place? Why the error? I get redirected to a page that says "An unexpected error has occurred." Also, I've been reading the 6.1 CMS Administrator Guide and I'd like to know how to get to the "Content Section" section as shown in Figure 5.1 here: http://www.redhat.com/docs/manuals/cms/rhea-ag-cms-en-6.1/ch-permissions.html. I would like to be able to create a simple website for others to visit and I can't seem to figure out how to set one up. Some help and direction would be much appreciated. Thanks. Regards, Tom Baik --- Jun Yamog wrote: > Hi Eric, > > There was a guide although it was very old, not sure where it is now. > > Maybe someone can give the link. Its very old so I am not sure how > applicable it is with 6.1 nightly. > > Maybe you can ask something more specific about customizing CMS. I > don't > have working knowledge on 6.x, just 5.x, we can try. > > > Jun > > > On Thu, 2004-04-22 at 22:30, Eric Garza wrote: > > The install is covered fine, and Mukesh has it installed. There is > no > > tutorial on how to create and customize the CMS after install. > There > > is an admin guide that talks about high level concepts, but nothing > > tying it all together. > > > > > > > > -- > > > > Eric Garza > > > > > > > > > ______________________________________________________________________ > > > > -- > > Redhat-ccm-list mailing list > > Redhat-ccm-list at redhat.com > > https://www.redhat.com/mailman/listinfo/redhat-ccm-list > > Archives: https://www.redhat.com/pipermail/redhat-ccm-list/ > > > -- > Redhat-ccm-list mailing list > Redhat-ccm-list at redhat.com > https://www.redhat.com/mailman/listinfo/redhat-ccm-list > Archives: https://www.redhat.com/pipermail/redhat-ccm-list/ __________________________________ Do you Yahoo!? Yahoo! Photos: High-quality 4x6 digital prints for 25? http://photos.yahoo.com/ph/print_splash From goldfish at i-manila.com.ph Fri Apr 23 06:15:53 2004 From: goldfish at i-manila.com.ph (Jun Yamog) Date: 23 Apr 2004 14:15:53 +0800 Subject: [redhat-ccm-list] help required on cms In-Reply-To: <20040423030011.24458.qmail@web41002.mail.yahoo.com> References: <20040423030011.24458.qmail@web41002.mail.yahoo.com> Message-ID: <1082700953.2732.5.camel@draco.vnet> Hi Tom, What you are doing is likely correct, but since you are using nightly builds its expected to have problems. You can either try other days, use a stable release 5.2.1, or debug the problem. You should see more useful information on the log files. Jun On Fri, 2004-04-23 at 11:00, Tom wrote: > Hi Jun, > > I also recently installed 6.1 for the first time and I've been playing > with it for the last couple of days and I have the same questions as > Eric. I've trolled the mailing lists and I haven't been able to get > anywhere. > > For example, when I go to http://localhost:8080/ccm/content-center/, I > get a page with two tabs, 'tasks/sections' and 'search'. Then clicking > on the "content" link (/ccm/content/admin/index.jsp) or the "forms" > link under the "Section" column gives an error. Is this the correct > starting place? Why the error? I get redirected to a page that says > "An unexpected error has occurred." > > Also, I've been reading the 6.1 CMS Administrator Guide and I'd like to > know how to get to the "Content Section" section as shown in Figure 5.1 > here: > http://www.redhat.com/docs/manuals/cms/rhea-ag-cms-en-6.1/ch-permissions.html. > > I would like to be able to create a simple website for others to visit > and I can't seem to figure out how to set one up. > > Some help and direction would be much appreciated. Thanks. > > Regards, > Tom Baik > > > > > --- Jun Yamog wrote: > > Hi Eric, > > > > There was a guide although it was very old, not sure where it is now. > > > > Maybe someone can give the link. Its very old so I am not sure how > > applicable it is with 6.1 nightly. > > > > Maybe you can ask something more specific about customizing CMS. I > > don't > > have working knowledge on 6.x, just 5.x, we can try. > > > > > > Jun > > > > > > On Thu, 2004-04-22 at 22:30, Eric Garza wrote: > > > The install is covered fine, and Mukesh has it installed. There is > > no > > > tutorial on how to create and customize the CMS after install. > > There > > > is an admin guide that talks about high level concepts, but nothing > > > tying it all together. > > > > > > > > > > > > -- > > > > > > Eric Garza > > > > > > > > > > > > > > > ______________________________________________________________________ > > > > > > -- > > > Redhat-ccm-list mailing list > > > Redhat-ccm-list at redhat.com > > > https://www.redhat.com/mailman/listinfo/redhat-ccm-list > > > Archives: https://www.redhat.com/pipermail/redhat-ccm-list/ > > > > > > -- > > Redhat-ccm-list mailing list > > Redhat-ccm-list at redhat.com > > https://www.redhat.com/mailman/listinfo/redhat-ccm-list > > Archives: https://www.redhat.com/pipermail/redhat-ccm-list/ > > > > > > __________________________________ > Do you Yahoo!? > Yahoo! Photos: High-quality 4x6 digital prints for 25? > http://photos.yahoo.com/ph/print_splash From ya_wei_guo at yahoo.com Fri Apr 23 11:13:18 2004 From: ya_wei_guo at yahoo.com (Yawei Guo) Date: Fri, 23 Apr 2004 04:13:18 -0700 (PDT) Subject: [redhat-ccm-list] xsession-errors Message-ID: <20040423111318.91882.qmail@web21407.mail.yahoo.com> Hi, I installed Redhat 8.0 Server on Dell Power Edge 2600. Somtimes I come on a problem that all users except root can not log on. And the system report .xsession-errors. The error information in .xsession-errors is shown below. mkdtemp: private socket dir: No space left on device I had supected that the hard disk was full. But it is obviously not. The information is shown in the following if I type command df. Filesystem 1K-blocks Used Available Use% Mounted on /dev/sda6 381139 361497 0 100% / /dev/sda1 46636 20626 23602 47% /boot /dev/sda5 22675188 3366592 18156740 16% /home none 2065448 0 2065448 0% /dev/shm /dev/sda2 45177244 20705520 22176840 49% /usr /dev/sda7 256667 140567 102848 58% /var The information is shown in the following if I type command fdisk -l Disk /dev/sda: 255 heads, 63 sectors, 8924 cylinders Units = cylinders of 16065 * 512 bytes Device Boot Start End Blocks Id System /dev/sda1 * 1 6 48163+ 83 Linux /dev/sda2 7 5720 45897705 83 Linux /dev/sda3 5721 5974 2040255 82 Linux swap /dev/sda4 5975 8924 23695875 f Win95 Ext'd (LBA) /dev/sda5 5975 8842 23037178+ 83 Linux /dev/sda6 8843 8891 393561 83 Linux /dev/sda7 8892 8924 265041 83 Linux Actually, the problem always when I run any application which needs much resources. When I stop the application, everything is OK. All users can log on without any errors. Could anybody tell me how to relove the problem? Thanks very much. Yawei Guo --------------------------------- Do you Yahoo!? Yahoo! Photos: High-quality 4x6 digital prints for 25? -------------- next part -------------- An HTML attachment was scrubbed... URL: From steve at runtime-collective.com Fri Apr 23 12:37:06 2004 From: steve at runtime-collective.com (Steve Crossan) Date: Fri, 23 Apr 2004 13:37:06 +0100 (BST) Subject: [redhat-ccm-list] SQL Server Port Message-ID: Hi What would be involved in porting APLAWS Plus to a new database - specifically SQL Server? Would it be a question of writing a lot of new SQL? Or is it more a question of writing Java code to generate code for that database (or generically, data store) from PDL? Is PDL completely database neutral? And has anyone done any work in this area? Thanks in advance Steve http://www.runtime-collective.com t: 01273 234290 f: 01273 234291 m: 0789 984 1684 From sergiusz.jarczyk at qresc.com Fri Apr 23 12:44:55 2004 From: sergiusz.jarczyk at qresc.com (Sergiusz Jarczyk) Date: Fri, 23 Apr 2004 14:44:55 +0200 Subject: [redhat-ccm-list] xsession-errors References: <20040423111318.91882.qmail@web21407.mail.yahoo.com> Message-ID: <016901c42930$d2f272d0$0ed311d5@vaio> Hi The df output you provided shows 100% root partition usage. As you didn't create separate partition for /tmp, it's created on the root fs. Generally, it's good practice to create separate partition for /tmp or even, for larger production systems, provide one disk for it (just like with /var, for example). Sergiusz From tuan at yorku.ca Fri Apr 23 13:18:36 2004 From: tuan at yorku.ca (Tuan Nguyen) Date: Fri, 23 Apr 2004 09:18:36 -0400 Subject: [redhat-ccm-list] Please provide stable 6.1 Release In-Reply-To: <1082687564.1613.20.camel@draco.vnet> References: <000001c427bc$bf5dd8b0$6401a8c0@garzaxp> <1082687564.1613.20.camel@draco.vnet> Message-ID: <408917AC.9040900@yorku.ca> While we're discussing this issue, I'm just wondering what happened to the nightly builds? They have disappeared for the past 4-5 nights? Is there something wrong? Tuan. Jun Yamog wrote: > Hi, > > It seems that this discussion has been done several times in the past. > There has been some positive changes, but none are dramatic changes. I > think it can be seen that the initial interest level is there, but the > continued interest level is not there. You can just see the list or the > wiki in sf.net. If you look at it there are a lot of installation > inquiries, etc. Not much about non installation stuff, people have > stayed here are most often are those that did pay for RH support. There > are only a few real volunteers around. So I think the place is not yet > conductive enough for open source development. The code is open source, > but not much can be said with the community. Maybe RH can look again at > its strategy since after more than year I don't think we have grown the > community that much. > > Welcome Eric Garza, we hope that your new blood can put some fire again > on the community. > > > Jun > > On Thu, 2004-04-22 at 00:21, Eric Garza wrote: > >>John's point about fostering an active development community gets to the >>heart of my issue and the apparent disconnect between Redhat and open >>sources developers out there. We don't have 1 billion in revenues and >>open source software provides us with cost effective options. I am going >>to evaluate the software through Redhat trials and will ultimately pay >>up if the features justify the investment. >> >>I think there is an excellent opportunity for Redhat to take some market >>share by making CCM/Portal more openly available given the some of the >>lame open source Portal solutions out there. >> >>-- >>Eric Garza >> >> >> > > > From richardl at redhat.com Fri Apr 23 13:34:29 2004 From: richardl at redhat.com (Richard Li) Date: Fri, 23 Apr 2004 09:34:29 -0400 Subject: [redhat-ccm-list] Please provide stable 6.1 Release In-Reply-To: <408917AC.9040900@yorku.ca> References: <000001c427bc$bf5dd8b0$6401a8c0@garzaxp> <1082687564.1613.20.camel@draco.vnet> <408917AC.9040900@yorku.ca> Message-ID: <40891B65.6020405@redhat.com> Hm, strange. Apparently there is something wrong. We'll check. Thanks for the heads up. Tuan Nguyen wrote: > While we're discussing this issue, I'm just wondering what happened to > the nightly builds? They have disappeared for the past 4-5 nights? Is > there something wrong? > > Tuan. > > > Jun Yamog wrote: > >> Hi, >> >> It seems that this discussion has been done several times in the >> past. There has been some positive changes, but none are dramatic >> changes. I >> think it can be seen that the initial interest level is there, but the >> continued interest level is not there. You can just see the list or the >> wiki in sf.net. If you look at it there are a lot of installation >> inquiries, etc. Not much about non installation stuff, people have >> stayed here are most often are those that did pay for RH support. There >> are only a few real volunteers around. So I think the place is not yet >> conductive enough for open source development. The code is open source, >> but not much can be said with the community. Maybe RH can look again at >> its strategy since after more than year I don't think we have grown the >> community that much. >> >> Welcome Eric Garza, we hope that your new blood can put some fire again >> on the community. >> >> >> Jun >> >> On Thu, 2004-04-22 at 00:21, Eric Garza wrote: >> >>> John's point about fostering an active development community gets to >>> the >>> heart of my issue and the apparent disconnect between Redhat and open >>> sources developers out there. We don't have 1 billion in revenues and >>> open source software provides us with cost effective options. I am >>> going >>> to evaluate the software through Redhat trials and will ultimately pay >>> up if the features justify the investment. >>> I think there is an excellent opportunity for Redhat to take some >>> market >>> share by making CCM/Portal more openly available given the some of the >>> lame open source Portal solutions out there. >>> -- >>> Eric Garza >>> >>> >>> >> >> >> > > From tom415 at yahoo.com Fri Apr 23 13:56:13 2004 From: tom415 at yahoo.com (Tom) Date: Fri, 23 Apr 2004 06:56:13 -0700 (PDT) Subject: [redhat-ccm-list] help required on cms In-Reply-To: <1082700953.2732.5.camel@draco.vnet> Message-ID: <20040423135613.60639.qmail@web41010.mail.yahoo.com> Hi Jun, thanks for your reply. Okay, I will keep trying. I've tried 6.1.0 nightly builds from two different days and I've also tried the APLAWS release and I've had the same issues with all of them. I'll keep trying. By the way, when checking the logs regarding the errors I get, it's says that it "Failed to compile stylesheets. 2 errors detected". Are there any general possibilities why this may be happening? Thanks. Tom --- Jun Yamog wrote: > Hi Tom, > > What you are doing is likely correct, but since you are using nightly > builds its expected to have problems. You can either try other days, > use a stable release 5.2.1, or debug the problem. You should see > more > useful information on the log files. > > > Jun > > > On Fri, 2004-04-23 at 11:00, Tom wrote: > > Hi Jun, > > > > I also recently installed 6.1 for the first time and I've been > playing > > with it for the last couple of days and I have the same questions > as > > Eric. I've trolled the mailing lists and I haven't been able to > get > > anywhere. > > > > For example, when I go to > http://localhost:8080/ccm/content-center/, I > > get a page with two tabs, 'tasks/sections' and 'search'. Then > clicking > > on the "content" link (/ccm/content/admin/index.jsp) or the "forms" > > link under the "Section" column gives an error. Is this the > correct > > starting place? Why the error? I get redirected to a page that > says > > "An unexpected error has occurred." > > > > Also, I've been reading the 6.1 CMS Administrator Guide and I'd > like to > > know how to get to the "Content Section" section as shown in Figure > 5.1 > > here: > > > http://www.redhat.com/docs/manuals/cms/rhea-ag-cms-en-6.1/ch-permissions.html. > > > > I would like to be able to create a simple website for others to > visit > > and I can't seem to figure out how to set one up. > > > > Some help and direction would be much appreciated. Thanks. > > > > Regards, > > Tom Baik > > > > > > > > > > --- Jun Yamog wrote: > > > Hi Eric, > > > > > > There was a guide although it was very old, not sure where it is > now. > > > > > > Maybe someone can give the link. Its very old so I am not sure > how > > > applicable it is with 6.1 nightly. > > > > > > Maybe you can ask something more specific about customizing CMS. > I > > > don't > > > have working knowledge on 6.x, just 5.x, we can try. > > > > > > > > > Jun > > > > > > > > > On Thu, 2004-04-22 at 22:30, Eric Garza wrote: > > > > The install is covered fine, and Mukesh has it installed. There > is > > > no > > > > tutorial on how to create and customize the CMS after install. > > > There > > > > is an admin guide that talks about high level concepts, but > nothing > > > > tying it all together. > > > > > > > > > > > > > > > > -- > > > > > > > > Eric Garza > > > > > > > > > > > > > > > > > > > > > > ______________________________________________________________________ > > > > > > > > -- > > > > Redhat-ccm-list mailing list > > > > Redhat-ccm-list at redhat.com > > > > https://www.redhat.com/mailman/listinfo/redhat-ccm-list > > > > Archives: https://www.redhat.com/pipermail/redhat-ccm-list/ > > > > > > > > > -- > > > Redhat-ccm-list mailing list > > > Redhat-ccm-list at redhat.com > > > https://www.redhat.com/mailman/listinfo/redhat-ccm-list > > > Archives: https://www.redhat.com/pipermail/redhat-ccm-list/ > > > > > > > > > > > > __________________________________ > > Do you Yahoo!? > > Yahoo! Photos: High-quality 4x6 digital prints for 25?? > > http://photos.yahoo.com/ph/print_splash > > > -- > Redhat-ccm-list mailing list > Redhat-ccm-list at redhat.com > https://www.redhat.com/mailman/listinfo/redhat-ccm-list > Archives: https://www.redhat.com/pipermail/redhat-ccm-list/ __________________________________ Do you Yahoo!? Yahoo! Photos: High-quality 4x6 digital prints for 25? http://photos.yahoo.com/ph/print_splash From vadimn at redhat.com Fri Apr 23 14:50:44 2004 From: vadimn at redhat.com (Vadim Nasardinov) Date: Fri, 23 Apr 2004 10:50:44 -0400 Subject: [redhat-ccm-list] XSLT compilation errors (was: Re: required on cms) In-Reply-To: <20040423135613.60639.qmail@web41010.mail.yahoo.com> References: <20040423135613.60639.qmail@web41010.mail.yahoo.com> Message-ID: <200404231050.44659@vadim.nasardinov> On Friday 23 April 2004 09:56, Tom wrote: > Okay, I will keep trying. I've tried 6.1.0 nightly builds from two > different days and I've also tried the APLAWS release and I've had the > same issues with all of them. I'll keep trying. > > By the way, when checking the logs regarding the errors I get, it's > says that it "Failed to compile stylesheets. 2 errors detected". Are > there any general possibilities why this may be happening? Any number of things. First and foremost, there is a possibility of a syntactic error in the stylesheets we ship. Something like this: misspelled "template" Second, some stylesheets are generated programmatically on the fly. See PatternStylesheetResolver. This may produce broken stylesheets, if certain customizable parameters are not set correctly. You can try changing the XSLT processor to get a better error message. Some of them give more informative messages than others. The way you select an XSLT processor has changed a couple of times in recent memory. I don't remember offhand which is the most current way of doing this. Could be a parameter you set via "ccm set". Could be an environment variable. From dgregor at redhat.com Fri Apr 23 15:05:34 2004 From: dgregor at redhat.com (Dennis Gregorovic) Date: Fri, 23 Apr 2004 11:05:34 -0400 Subject: [redhat-ccm-list] XSLT compilation errors (was: Re: required on cms) In-Reply-To: <200404231050.44659@vadim.nasardinov> References: <20040423135613.60639.qmail@web41010.mail.yahoo.com> <200404231050.44659@vadim.nasardinov> Message-ID: <1082732734.11421.8.camel@toad.boston.redhat.com> You should use environment variables to changes the XSLT processor. http://www.redhat.com/docs/manuals/waf/rhea-ig-waf-en-6.1/ch-prod-install-prep.html#S1-PROD-INSTALL-APPLAYERS These can be set in /usr/share/ccm/conf/envvars in a deployment setup. -- Dennis On Fri, 2004-04-23 at 10:50, Vadim Nasardinov wrote: > On Friday 23 April 2004 09:56, Tom wrote: > > Okay, I will keep trying. I've tried 6.1.0 nightly builds from two > > different days and I've also tried the APLAWS release and I've had the > > same issues with all of them. I'll keep trying. > > > > By the way, when checking the logs regarding the errors I get, it's > > says that it "Failed to compile stylesheets. 2 errors detected". Are > > there any general possibilities why this may be happening? > > Any number of things. > > First and foremost, there is a possibility of a syntactic error in the > stylesheets we ship. Something like this: > > > misspelled "template" > > > Second, some stylesheets are generated programmatically on the fly. > See PatternStylesheetResolver. This may produce broken stylesheets, > if certain customizable parameters are not set correctly. > > You can try changing the XSLT processor to get a better error message. > Some of them give more informative messages than others. The way you > select an XSLT processor has changed a couple of times in recent > memory. I don't remember offhand which is the most current way of > doing this. Could be a parameter you set via "ccm set". Could be an > environment variable. > From dgregor at redhat.com Fri Apr 23 15:10:44 2004 From: dgregor at redhat.com (Dennis Gregorovic) Date: Fri, 23 Apr 2004 11:10:44 -0400 Subject: [redhat-ccm-list] Please provide stable 6.1 Release In-Reply-To: <408917AC.9040900@yorku.ca> References: <000001c427bc$bf5dd8b0$6401a8c0@garzaxp> <1082687564.1613.20.camel@draco.vnet> <408917AC.9040900@yorku.ca> Message-ID: <1082733044.11421.12.camel@toad.boston.redhat.com> Thanks for pointing this out. I didn't realize they were down. I'll get this fixed now. -- Dennis On Fri, 2004-04-23 at 09:18, Tuan Nguyen wrote: > While we're discussing this issue, I'm just wondering what happened to > the nightly builds? They have disappeared for the past 4-5 nights? Is > there something wrong? > > Tuan. > > > Jun Yamog wrote: > > Hi, > > > > It seems that this discussion has been done several times in the past. > > There has been some positive changes, but none are dramatic changes. I > > think it can be seen that the initial interest level is there, but the > > continued interest level is not there. You can just see the list or the > > wiki in sf.net. If you look at it there are a lot of installation > > inquiries, etc. Not much about non installation stuff, people have > > stayed here are most often are those that did pay for RH support. There > > are only a few real volunteers around. So I think the place is not yet > > conductive enough for open source development. The code is open source, > > but not much can be said with the community. Maybe RH can look again at > > its strategy since after more than year I don't think we have grown the > > community that much. > > > > Welcome Eric Garza, we hope that your new blood can put some fire again > > on the community. > > > > > > Jun > > > > On Thu, 2004-04-22 at 00:21, Eric Garza wrote: > > > >>John's point about fostering an active development community gets to the > >>heart of my issue and the apparent disconnect between Redhat and open > >>sources developers out there. We don't have 1 billion in revenues and > >>open source software provides us with cost effective options. I am going > >>to evaluate the software through Redhat trials and will ultimately pay > >>up if the features justify the investment. > >> > >>I think there is an excellent opportunity for Redhat to take some market > >>share by making CCM/Portal more openly available given the some of the > >>lame open source Portal solutions out there. > >> > >>-- > >>Eric Garza > >> > >> > >> > > > > > > > From egarza at logictrends.com Fri Apr 23 16:17:47 2004 From: egarza at logictrends.com (Eric Garza) Date: Fri, 23 Apr 2004 12:17:47 -0400 Subject: [redhat-ccm-list] help required on cms Message-ID: <000001c4294e$87901090$9801a8c0@garzaxp> Tom, I had a similar issue setting up the current release of APLAWS+. My XSL issue was related to missing packages in the ccm.classpath or ccm.webapp files that I created and placed into the /etc/ccm. The xsl files were missing in the /usr/share/ccm/webapps directory. Check your tomcat aplaws log to see what the exact xsl error is then check in the webapps directory to make sure the xsl that failed is actually installed. These files are attached. I did a production install using the quickstart guide found on the APLAWS sourceforge site. Check out the Redhat install guide too: http://sourceforge.net/project/showfiles.php?group_id=71505&package_id=1 13522 Here's my basic install and some gotchas, hope this helps: My environment: - Postgres 7.3.4 on Fedora 1.91 - I had to downgrade Postgres 7.4. It appears they have changed the way autocommit works. The driver and database don't support it, they expect the applications to control commits, so I was getting a transaction error when using the APLAWS+ Postgres driver - Tomcat 4.1.27 on Windows 2000 will move this to RHEN 3 shortly for dev end staging. There are few gotchas on Windows 2000. Forum is not working for us yet using the "/ccm/portal/forum" relative uri, need to submit a bug. There were some small xsl edits needed, as paths are case sensitive, nothing major yet. Basic install steps follow: 1) Setup the database and db user using doc. 2) I setup my local environment using the attached setenv script. I did a complete load from command line using: ccm load-bundle --interactive --name aplaws-plus-complete 3) Then I initialized Tomcat: ccm hostinit-bundle --name aplaws-plus-complete --container=tomcat http-port=8080 shutdown-port=8081 There is another gotcha here. The current service install script does not pass JVM memory arguments to the tomcat.exe. This is easy to fix in the script, but to fix after installing the Tomcat service follow these directions: a) You can change the parameters in the Windows registry. Path: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\tomcat-localhost808 0\Parameters b) Change the JVM Option Count value to the new value with the number of parameters it will now have. In my case, I added two parameters -Xms512m and -Xmx512m and it was 11 before so I bumped it to 13. c) Then I created two more String values. I called the first one I added 'JVM Option Number 12' and the second 'JVM Option Number 13. Then I set the value inside each. The first one I set to '-Xms512m' and the second I set to '-Xmx512m'. Then I restarted Tomcat service and observed when I did big processing the memory limit was now 512 MB, so it worked. There's more. I am compiling a step by step journal I will make available after I finish changing the theme and creating my new ccm site. Still figuring that out. Good luck. -- Eric Garza -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: ccmenv.zip Type: application/x-zip-compressed Size: 1361 bytes Desc: not available URL: From egarza at logictrends.com Fri Apr 23 16:58:04 2004 From: egarza at logictrends.com (Eric Garza) Date: Fri, 23 Apr 2004 12:58:04 -0400 Subject: [redhat-ccm-list] APLAWS+ Forum Error & Portal Question Message-ID: <000501c42954$24dfb990$9801a8c0@garzaxp> I couldn't find any documentation on how to access the ccm forum app in the stable APLAWS+ 6.1 release. I wanted to say, excellent error and debug tracing found via "/ccm/ds". I am running on Tomcat 4 under Windows 2000. I know Windows support is spotty, and I am going to move my prod CMS env over to Fedora 1.91 shortly. Here are some questions about the default portal application, which does not seem to use the ccm-portal app, but some custom APLAWS portal: Portal Questions ---------------- 1) How can I add additional content areas on the portal home page? 2) I created a new content folder in the content admin: /ccm/content/admin/. I created some new content items and added them to the folder I created. I can access the new content items via /ccm/portal/navigation/. How can I update the default navigation bar on the top? Is the top nav bar static? New categories? 5) How do I integrate the subsites I create? I get to the /ccm/subsite admin page. Create the subsite, but what then? How do I access subsite from the cms content admin? 6) How do I link forms into the portal after creating in the content center? Forum Exception --------------- I accidentally found the following uri for the forum: /ccm/portal/forum. All other apps in CCM seem to work. I gave my admin user forum admin permissions. I get the following exception in the log when accessing the forum, any thoughts. Environment vars follow: -*-*-*- Section: Stack trace -*-*-*- java.lang.ClassCastException at com.arsdigita.forum.ForumConfig.canAdminEditPosts(ForumConfig.java:101) at com.arsdigita.forum.Forum.canEdit(Forum.java:451) at com.arsdigita.forum.ForumContext.(ForumContext.java:67) at com.arsdigita.forum.ForumContext$1.initialValue(ForumContext.java:48) at com.arsdigita.bebop.RequestLocal.get(RequestLocal.java:110) at com.arsdigita.forum.ForumContext.getContext(ForumContext.java:73) at com.arsdigita.forum.BboardDispatcher$ForumPageRequestListener.pageReques ted(BboardDispatcher.java:116) at com.arsdigita.bebop.Page.fireRequestEvent(Page.java:922) at com.arsdigita.bebop.Page.process(Page.java:702) at com.arsdigita.bebop.Page.process(Page.java:686) at com.arsdigita.bebop.Page.buildDocument(Page.java:758) at com.arsdigita.bebop.page.BebopApplicationServlet.doService(BebopApplicat ionServlet.java:82) at com.arsdigita.web.BaseApplicationServlet$1.excurse(BaseApplicationServle t.java:111) at com.arsdigita.kernel.KernelExcursion.run(KernelExcursion.java:57) at com.arsdigita.web.BaseApplicationServlet.doService(BaseApplicationServle t.java:105) at com.arsdigita.web.BaseServlet$1.excurse(BaseServlet.java:176) at com.arsdigita.kernel.KernelExcursion.run(KernelExcursion.java:57) at com.arsdigita.web.BaseServlet.internalService(BaseServlet.java:147) at com.arsdigita.web.BaseServlet.doGet(BaseServlet.java:272) at javax.servlet.http.HttpServlet.service(HttpServlet.java:740) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatc her.java:684) at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDisp atcher.java:432) at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispat cher.java:356) at com.arsdigita.web.BaseDispatcher.forward(BaseDispatcher.java:206) at com.arsdigita.web.BaseDispatcher.forward(BaseDispatcher.java:190) at com.arsdigita.web.BaseDispatcher.dispatch(BaseDispatcher.java:130) at com.arsdigita.web.DispatcherServlet.doService(DispatcherServlet.java:123 ) at com.arsdigita.web.BaseServlet$1.excurse(BaseServlet.java:176) at com.arsdigita.kernel.KernelExcursion.run(KernelExcursion.java:57) at com.arsdigita.web.BaseServlet.internalService(BaseServlet.java:147) at com.arsdigita.web.BaseServlet.doGet(BaseServlet.java:272) at javax.servlet.http.HttpServlet.service(HttpServlet.java:740) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applica tionFilterChain.java:247) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilt erChain.java:193) at com.arsdigita.london.shortcuts.ShortcutFilter.doService(ShortcutFilter.j ava:79) at com.arsdigita.web.BaseFilter.doFilter(BaseFilter.java:96) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applica tionFilterChain.java:213) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilt erChain.java:193) at com.arsdigita.london.subsite.SubsiteFilter.doService(SubsiteFilter.java: 69) at com.arsdigita.web.BaseFilter.doFilter(BaseFilter.java:96) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applica tionFilterChain.java:213) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilt erChain.java:193) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValv e.java:256) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i nvokeNext(StandardPipeline.java:643) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:4 80) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValv e.java:191) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i nvokeNext(StandardPipeline.java:643) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:4 80) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:242 2) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java :180) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i nvokeNext(StandardPipeline.java:643) at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherVa lve.java:171) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i nvokeNext(StandardPipeline.java:641) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java :163) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i nvokeNext(StandardPipeline.java:641) at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:577 ) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i nvokeNext(StandardPipeline.java:641) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:4 80) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve. java:174) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i nvokeNext(StandardPipeline.java:643) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:4 80) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at org.apache.catalina.connector.http.HttpProcessor.process(HttpProcessor.j ava:1040) at org.apache.catalina.connector.http.HttpProcessor.run(HttpProcessor.java: 1151) at java.lang.Thread.run(Thread.java:536) -*-*-*- Section: HTTP headers -*-*-*- accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/vnd.ms-excel, application/vnd.ms-powerpoint, application/msword, application/x-shockwave-flash, */* accept-encoding: gzip, deflate accept-language: en-us connection: Keep-Alive cookie: JSESSIONID=EBF6995806299870963887245315CC4D; ad_user_login=1017!1177212579125!spl0w9kezw/sCHlZbBeovg== host: www.logictrends.com:8080 user-agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1) -*-*-*- Section: Servlet attributes -*-*-*- com.arsdigita.bebop.PageState: com.arsdigita.bebop.PageState at 9209e8 = { m_page = com.arsdigita.aplaws.ui.SimplePage at 1c89e3c, m_request = org.apache.catalina.core.ApplicationHttpRequest at ca22a, m_response = org.apache.catalina.connector.HttpResponseFacade at 16a8e18, m_pageState = com.arsdigita.bebop.FormData at 96dee6 = { m_parameterDataValues = {bbp.23.sel={null, []}, g11n.enc={UTF-8, []}, restrict={null, []}, bbp.87.sel={null, []}, bbp.70.state={null, []}, topic={null, []}, bbp.i={null, []}, mode={null, []}, bbp.e={null, []}, bbp.v={null, []}, bbp.19.sel={null, []}, bbp.57.state={null, []}, bbp.s={null, []}, bbp.24.ps={10, []}, bbp.36.sel={null, []}, page={null, []}, name={null, []}}, m_formErrors = null, m_model = com.arsdigita.bebop.FormModel at 103d792, m_locale = en_US, m_isTransformed = true, m_isValid = true, m_isSubmission = true }, m_attributes = null, , m_grabbingComponent = null, m_invisible = {5, 6, 7, 23, 24, 33, 54, 67, 73, 74, 77} } com.arsdigita.bebop.RequestLocal: {} com.arsdigita.dispatcher.RequestContext: com.arsdigita.sitenode.SiteNodeRequestContext at 17c0a73 com.arsdigita.dispatcher.RequestValue: {com.arsdigita.dispatcher.RequestValue at 502d56=null} com.arsdigita.web.BaseApplicationServlet.application_id: 19010 com.arsdigita.web.BaseDispatcher.dispatched: true com.arsdigita.web.BaseServlet.request_url: /ccm/portal/forum/ -*-*-*- Section: Request summary -*-*-*- Context path: Request URI: /ccm/portal/forum/ Query string: null Method: GET Remote user: null -*-*-*- Section: Cookies -*-*-*- JSESSIONID: EBF6995806299870963887245315CC4D (expires: -1) ad_user_login: 1017!1177212579125!spl0w9kezw/sCHlZbBeovg== (expires: -1) -*-*-*-*-*- End Error Report -*-*-*-*-*- 2004-04-21 23:32:55,578 [0][8]] FATAL logging.ErrorReport - -*-*-*-*-*- Begin Error Report -*-*-*-*-*- -*-*-*- ACS Error Report Code: 192.168.1.182:a64d4c:fc1045e89a -*-*-*- -*-*-*- Message 1: java.lang.ClassCastException: null -*-*-*- -*-*-*- Section: CCM User -*-*-*- Party ID: 1017 Email address: egarza at logictrends.com Family name: Garza Given name: Eric Screen name: egarza -*-*-*- Section: System properties -*-*-*- awt.toolkit: sun.awt.windows.WToolkit catalina.base: C:\ccm\jakarta-tomcat-4.1.30 catalina.home: C:\ccm\jakarta-tomcat-4.1.30 catalina.useNaming: true ccm.conf: C:\ccm\usr\share\ccm\conf\registry ccm.home: C:\ccm\usr\share\ccm com.arsdigita.london.navigation.DefaultContentSection: /content/ com.arsdigita.util.Assert.enabled: true file.encoding: Cp1252 file.encoding.pkg: sun.io file.separator: \ java.awt.graphicsenv: sun.awt.Win32GraphicsEnvironment java.awt.printerjob: sun.awt.windows.WPrinterJob java.class.path: C:\ccm\jakarta-tomcat-4.1.30\bin\bootstrap.jar;C:\j2sdk1.4.1_02\lib\tool s.jar;C:\ccm\usr\share\ccm-tools\server\tomcat\classes java.class.version: 48.0 java.endorsed.dirs: C:\ccm\jakarta-tomcat-4.1.30\common\endorsed java.ext.dirs: C:\j2sdk1.4.1_02\jre\lib\ext;C:\j2sdk1.4.1_02\lib\ext;C:\ccm\usr\share\c cm\webapps\WEB-INF\system;C:\ccm\usr\share\ccm-tools\lib\security java.home: C:\j2sdk1.4.1_02\jre java.io.tmpdir: C:\WINNT\TEMP\ java.library.path: C:\ccm\jakarta-tomcat-4.1.30\bin;.;C:\WINNT\system32;C:\WINNT;C:\WINNT\s ystem32;C:\WINNT;C:\WINNT\System32\Wbem;D:\cvs\cvsnt;D:\php-4.3.2-Win32; D:\php-4.3.2\dlls;;C:\Program Files\OpenSSH\bin java.naming.factory.initial: org.apache.naming.java.javaURLContextFactory java.naming.factory.url.pkgs: org.apache.naming java.protocol.handler.pkgs: org.apache.axis.transport| java.runtime.name: Java(TM) 2 Runtime Environment, Standard Edition java.runtime.version: 1.4.1_02-b06 java.specification.name: Java Platform API Specification java.specification.vendor: Sun Microsystems Inc. java.specification.version: 1.4 java.util.prefs.PreferencesFactory: java.util.prefs.WindowsPreferencesFactory java.vendor: Sun Microsystems Inc. java.vendor.url: http://java.sun.com/ java.vendor.url.bug: http://java.sun.com/cgi-bin/bugreport.cgi java.version: 1.4.1_02 java.vm.info: mixed mode java.vm.name: Java HotSpot(TM) Server VM java.vm.specification.name: Java Virtual Machine Specification java.vm.specification.vendor: Sun Microsystems Inc. java.vm.specification.version: 1.0 java.vm.vendor: Sun Microsystems Inc. java.vm.version: 1.4.1_02-b06 javax.xml.parsers.DocumentBuilderFactory: org.apache.xerces.jaxp.DocumentBuilderFactoryImpl javax.xml.parsers.SAXParserFactory: org.apache.xerces.jaxp.SAXParserFactoryImpl javax.xml.transform.TransformerFactory: com.icl.saxon.TransformerFactoryImpl line.separator: log4j.configuration: file:///C:\ccm\usr\share\ccm\conf\log4j.properties os.arch: x86 os.name: Windows 2000 os.version: 5.0 path.separator: ; sun.arch.data.model: 32 sun.boot.class.path: C:\ccm\jakarta-tomcat-4.1.30\common\endorsed\xercesImpl.jar;C:\ccm\jakar ta-tomcat-4.1.30\common\endorsed\xmlParserAPIs.jar;C:\j2sdk1.4.1_02\jre\ lib\rt.jar;C:\j2sdk1.4.1_02\jre\lib\i18n.jar;C:\j2sdk1.4.1_02\jre\lib\su nrsasign.jar;C:\j2sdk1.4.1_02\jre\lib\jsse.jar;C:\j2sdk1.4.1_02\jre\lib\ jce.jar;C:\j2sdk1.4.1_02\jre\lib\charsets.jar;C:\j2sdk1.4.1_02\jre\class es sun.boot.library.path: C:\j2sdk1.4.1_02\jre\bin sun.cpu.endian: little sun.cpu.isalist: pentium i486 i386 sun.io.unicode.encoding: UnicodeLittle sun.java2d.fontpath: sun.os.patch.level: Service Pack 4 user.country: US user.dir: C:\WINNT\system32 user.home: C:\Documents and Settings\Default User user.language: en user.name: SYSTEM user.timezone: America/New_York user.variant: waf.workflow.simple.alerts_enabled: true -- Eric J. Garza Java/J2EE Architect Logic Trends egarza at logictrends.com Logic Trends - www.logictrends.com From jeff.hoffman at pgdc.com Fri Apr 23 17:03:45 2004 From: jeff.hoffman at pgdc.com (Jeff K. Hoffman) Date: Fri, 23 Apr 2004 13:03:45 -0400 Subject: [redhat-ccm-list] An example of what can be done with CCM and Red Hat Message-ID: <40894C71.6040607@pgdc.com> Hello, everyone. I would like to take a moment to publicly announce our site's official launch. Planned Giving Design Center, LLC operates a network of over 110 websites, representing over 150 nonprofit organizations. The requirements for our project were fairly unique, with a strong need for content management and a framework that could deliver the content with the right branding to the right end-user. We contracted with Red Hat to provide the development services and chose CCM as our platform. We chose Oracle as our database, and host our production network at SAVVIS (formerly known as Exodus). We have not looked back. While there are issues that we would like to see improved (Bebop productivity, for instance), the site is running wonderfully and our users love it. To the project team at Red Hat (Nuno Santos, Vadim Nasardinov, Richard Su, Tzu-Mainn Chen, Paul Giordano, and anyone else I forgot): THANK YOU. To the platform team, thanks for all of your hard work on CCM. Before I provide the URL, I ask that anyone from this list who visits the site be careful of crufting up our database. In other words, please dont post a bunch of "Testing, 1, 2, 3" comments on the bottom of our articles, etc. Anyone who would like to see our site may visit: http://www.pgdc.com/demo Regards, Jeff K. Hoffman Chief Technology Officer Planned Giving Design Center, LLC PS. We are running on 5.2. While we have access to 6.1, we haven't taken the time to upgrade, yet. Soon! From Mary.Thomas at starwoodhotels.com Fri Apr 23 17:27:10 2004 From: Mary.Thomas at starwoodhotels.com (Thomas, Mary) Date: Fri, 23 Apr 2004 13:27:10 -0400 Subject: [redhat-ccm-list] lifecycle exceptions Message-ID: <6C6B73040F8CD411AA5600508B6D5F120D767F26@strnynt2.strny.starwoodhotels.com> Hi Noticed that lifecycle in redhat cms breaks when an assertion throws the exception and it is not caught. And then one has to restart the server . This is not acceptable in production environment. Could you offer recommendations/modifications wherein errors are caught and does not break the lifecycle during publishing of an item. Thanks Mary public class AssertionError extends Error { public AssertionError(String msg) { super(msg); } } This electronic message transmission contains information from the Company that may be proprietary, confidential and/or privileged. The information is intended only for the use of the individual(s) or entity named above. If you are not the intended recipient, be aware that any disclosure, copying or distribution or use of the contents of this information is prohibited. If you have received this electronic transmission in error, please notify the sender immediately by replying to the address listed in the "From:" field. From tom415 at yahoo.com Fri Apr 23 17:42:48 2004 From: tom415 at yahoo.com (Tom) Date: Fri, 23 Apr 2004 10:42:48 -0700 (PDT) Subject: [redhat-ccm-list] help required on cms In-Reply-To: <000001c4294e$87901090$9801a8c0@garzaxp> Message-ID: <20040423174248.13775.qmail@web41007.mail.yahoo.com> Hi Eric, Thanks for your follow-up. I am running on RH Linux 7.3, Tomcat 4.1.30, and Postgres 7.3.4. My issue had to do with a couple of files trying to import a non-existent file (/__ccm__/servlet/content-type/index.xsl). I commented them out and I am able to proceed for now. I haven't figured out what, if anything, this non-existent file does. Also, I saw your other post regarding using APLAWS+ about navigation and access to pages and to the forum. I have those exact same questions, though I'm still learning and finding my way around the CMS and the portal. Take care, Tom Baik --- Eric Garza wrote: > Tom, I had a similar issue setting up the current release of APLAWS+. > My > XSL issue was related to missing packages in the ccm.classpath or > ccm.webapp files that I created and placed into the /etc/ccm. The xsl > files were missing in the /usr/share/ccm/webapps directory. Check > your > tomcat aplaws log to see what the exact xsl error is then check in > the > webapps directory to make sure the xsl that failed is actually > installed. These files are attached. I did a production install using > the quickstart guide found on the APLAWS sourceforge site. Check out > the > Redhat install guide too: > > http://sourceforge.net/project/showfiles.php?group_id=71505&package_id=1 > 13522 > > Here's my basic install and some gotchas, hope this helps: > > My environment: > > - Postgres 7.3.4 on Fedora 1.91 - I had to downgrade Postgres 7.4. It > appears they have changed the way autocommit works. The driver and > database don't support it, they expect the applications to control > commits, so I was getting a transaction error when using the APLAWS+ > Postgres driver > > - Tomcat 4.1.27 on Windows 2000 will move this to RHEN 3 shortly for > dev > end staging. There are few gotchas on Windows 2000. Forum is not > working > for us yet using the "/ccm/portal/forum" relative uri, need to submit > a > bug. There were some small xsl edits needed, as paths are case > sensitive, nothing major yet. Basic install steps follow: > > 1) Setup the database and db user using doc. > 2) I setup my local environment using the attached setenv > script. > I did a complete load from command line using: > > ccm load-bundle --interactive --name aplaws-plus-complete > > 3) Then I initialized Tomcat: > > ccm hostinit-bundle --name aplaws-plus-complete --container=tomcat > http-port=8080 shutdown-port=8081 > > There is another gotcha here. The current service install script does > not pass JVM memory arguments to the tomcat.exe. This is easy to fix > in > the script, but to fix after installing the Tomcat service follow > these > directions: > > a) You can change the parameters in the Windows registry. Path: > > HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\tomcat-localhost808 > 0\Parameters > > b) Change the JVM Option Count value to the new value with the number > of > parameters it will now have. In my case, I added two parameters > -Xms512m > and -Xmx512m and it was 11 before so I bumped it to 13. > > c) Then I created two more String values. I called the first one I > added > 'JVM Option Number 12' and the second 'JVM Option Number 13. Then I > set > the value inside each. The first one I set to '-Xms512m' and the > second > I set to '-Xmx512m'. Then I restarted Tomcat service and observed > when I > did big processing the memory limit was now 512 MB, so it worked. > > There's more. I am compiling a step by step journal I will make > available after I finish changing the theme and creating my new ccm > site. Still figuring that out. Good luck. > > -- > Eric Garza > > > > > ATTACHMENT part 2 application/x-zip-compressed name=ccmenv.zip > -- > Redhat-ccm-list mailing list > Redhat-ccm-list at redhat.com > https://www.redhat.com/mailman/listinfo/redhat-ccm-list > Archives: https://www.redhat.com/pipermail/redhat-ccm-list/ > __________________________________ Do you Yahoo!? Yahoo! Photos: High-quality 4x6 digital prints for 25? http://photos.yahoo.com/ph/print_splash From dgregor at redhat.com Fri Apr 23 17:58:34 2004 From: dgregor at redhat.com (Dennis Gregorovic) Date: Fri, 23 Apr 2004 13:58:34 -0400 Subject: [redhat-ccm-list] Please provide stable 6.1 Release In-Reply-To: <1082733044.11421.12.camel@toad.boston.redhat.com> References: <000001c427bc$bf5dd8b0$6401a8c0@garzaxp> <1082687564.1613.20.camel@draco.vnet> <408917AC.9040900@yorku.ca> <1082733044.11421.12.camel@toad.boston.redhat.com> Message-ID: <1082743114.11421.38.camel@toad.boston.redhat.com> The nightly build script wasn't running because of a lock file that had not been deleted. I have removed it and verified that the script is working. So, expect to see new packages up after tonight's cron job. Cheers -- Dennis On Fri, 2004-04-23 at 11:10, Dennis Gregorovic wrote: > Thanks for pointing this out. I didn't realize they were down. I'll > get this fixed now. > > -- Dennis > > On Fri, 2004-04-23 at 09:18, Tuan Nguyen wrote: > > While we're discussing this issue, I'm just wondering what happened to > > the nightly builds? They have disappeared for the past 4-5 nights? Is > > there something wrong? > > > > Tuan. > > > > > > Jun Yamog wrote: > > > Hi, > > > > > > It seems that this discussion has been done several times in the past. > > > There has been some positive changes, but none are dramatic changes. I > > > think it can be seen that the initial interest level is there, but the > > > continued interest level is not there. You can just see the list or the > > > wiki in sf.net. If you look at it there are a lot of installation > > > inquiries, etc. Not much about non installation stuff, people have > > > stayed here are most often are those that did pay for RH support. There > > > are only a few real volunteers around. So I think the place is not yet > > > conductive enough for open source development. The code is open source, > > > but not much can be said with the community. Maybe RH can look again at > > > its strategy since after more than year I don't think we have grown the > > > community that much. > > > > > > Welcome Eric Garza, we hope that your new blood can put some fire again > > > on the community. > > > > > > > > > Jun > > > > > > On Thu, 2004-04-22 at 00:21, Eric Garza wrote: > > > > > >>John's point about fostering an active development community gets to the > > >>heart of my issue and the apparent disconnect between Redhat and open > > >>sources developers out there. We don't have 1 billion in revenues and > > >>open source software provides us with cost effective options. I am going > > >>to evaluate the software through Redhat trials and will ultimately pay > > >>up if the features justify the investment. > > >> > > >>I think there is an excellent opportunity for Redhat to take some market > > >>share by making CCM/Portal more openly available given the some of the > > >>lame open source Portal solutions out there. > > >> > > >>-- > > >>Eric Garza > > >> > > >> > > >> > > > > > > > > > > > > From egarza at logictrends.com Fri Apr 23 18:36:08 2004 From: egarza at logictrends.com (Eric Garza) Date: Fri, 23 Apr 2004 14:36:08 -0400 Subject: [redhat-ccm-list] help required on cms In-Reply-To: <20040423174248.13775.qmail@web41007.mail.yahoo.com> Message-ID: <000801c42961$db4d0180$9801a8c0@garzaxp> Tom did you load the APLAWS package and get the index.xsl error with that version? If so, what bundle did you load? The missing index.xsl is likely an application you didn't load in your ccm.webapps file. What was the path for the references you commented out? Do you have the full path to the index.xsl it can't compile? -- Eric Garza -----Original Message----- From: Tom [mailto:tom415 at yahoo.com] Sent: Friday, April 23, 2004 1:43 PM To: Eric Garza; redhat-ccm-list at redhat.com Subject: Re: [redhat-ccm-list] help required on cms Hi Eric, Thanks for your follow-up. I am running on RH Linux 7.3, Tomcat 4.1.30, and Postgres 7.3.4. My issue had to do with a couple of files trying to import a non-existent file (/__ccm__/servlet/content-type/index.xsl). I commented them out and I am able to proceed for now. I haven't figured out what, if anything, this non-existent file does. Also, I saw your other post regarding using APLAWS+ about navigation and access to pages and to the forum. I have those exact same questions, though I'm still learning and finding my way around the CMS and the portal. Take care, Tom Baik --- Eric Garza wrote: > Tom, I had a similar issue setting up the current release of APLAWS+. > My > XSL issue was related to missing packages in the ccm.classpath or > ccm.webapp files that I created and placed into the /etc/ccm. The xsl > files were missing in the /usr/share/ccm/webapps directory. Check > your > tomcat aplaws log to see what the exact xsl error is then check in > the > webapps directory to make sure the xsl that failed is actually > installed. These files are attached. I did a production install using > the quickstart guide found on the APLAWS sourceforge site. Check out > the > Redhat install guide too: > > http://sourceforge.net/project/showfiles.php?group_id=71505&package_id=1 > 13522 > > Here's my basic install and some gotchas, hope this helps: > > My environment: > > - Postgres 7.3.4 on Fedora 1.91 - I had to downgrade Postgres 7.4. It > appears they have changed the way autocommit works. The driver and > database don't support it, they expect the applications to control > commits, so I was getting a transaction error when using the APLAWS+ > Postgres driver > > - Tomcat 4.1.27 on Windows 2000 will move this to RHEN 3 shortly for > dev > end staging. There are few gotchas on Windows 2000. Forum is not > working > for us yet using the "/ccm/portal/forum" relative uri, need to submit > a > bug. There were some small xsl edits needed, as paths are case > sensitive, nothing major yet. Basic install steps follow: > > 1) Setup the database and db user using doc. > 2) I setup my local environment using the attached setenv > script. > I did a complete load from command line using: > > ccm load-bundle --interactive --name aplaws-plus-complete > > 3) Then I initialized Tomcat: > > ccm hostinit-bundle --name aplaws-plus-complete --container=tomcat > http-port=8080 shutdown-port=8081 > > There is another gotcha here. The current service install script does > not pass JVM memory arguments to the tomcat.exe. This is easy to fix > in > the script, but to fix after installing the Tomcat service follow > these > directions: > > a) You can change the parameters in the Windows registry. Path: > > HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\tomcat-localhost808 > 0\Parameters > > b) Change the JVM Option Count value to the new value with the number > of > parameters it will now have. In my case, I added two parameters > -Xms512m > and -Xmx512m and it was 11 before so I bumped it to 13. > > c) Then I created two more String values. I called the first one I > added > 'JVM Option Number 12' and the second 'JVM Option Number 13. Then I > set > the value inside each. The first one I set to '-Xms512m' and the > second > I set to '-Xmx512m'. Then I restarted Tomcat service and observed > when I > did big processing the memory limit was now 512 MB, so it worked. > > There's more. I am compiling a step by step journal I will make > available after I finish changing the theme and creating my new ccm > site. Still figuring that out. Good luck. > > -- > Eric Garza > > > > > ATTACHMENT part 2 application/x-zip-compressed name=ccmenv.zip > -- > Redhat-ccm-list mailing list > Redhat-ccm-list at redhat.com > https://www.redhat.com/mailman/listinfo/redhat-ccm-list > Archives: https://www.redhat.com/pipermail/redhat-ccm-list/ > __________________________________ Do you Yahoo!? Yahoo! Photos: High-quality 4x6 digital prints for 25? http://photos.yahoo.com/ph/print_splash From help at prosperoassociates.com Sat Apr 24 17:50:15 2004 From: help at prosperoassociates.com (Prospero Associates Limited) Date: Sat, 24 Apr 2004 18:50:15 +0100 Subject: [redhat-ccm-list] Postgresql 7.2 available on Enterprise ES ?? Message-ID: <408AB6E7.7337.78C778C@localhost> Had Postgresql 7.2 running well on Redhat 8.0. Including JDBC driver from postgres site. Now trialling upgrade to Redhat Enterprise ES. See that version of PGSQL there is only 7.1 e.g. postgresql-7.1.3-5.rhel2.1AS Dont really want to downgrade Postgres. 7.2 is a good release with significant enhancements over 7.1. Only way I can see to get 7.2 is from old 8.0 channel on RHN (its not available on ES channel) of from old rpms we still have. If we were to apply these RPMs, we would first remove completely 7.1 on ES. Any reasons why this might be a bad idea ?. Is the version of Postgresql for ES not the same as delivered by postgresql.org (e.g. why does the package name have '.rhel2.1AS' on the end) ? If we install 7.2, will RHN pick it up under the ES channel (presumably not) ?. In general terms, we were really quite surprised that ES was behind in almost *every* package compared to 8.0.. Why is this ?. Lots of questions :->. Any answers genuinely appreciated. Frank Prospero Associates Limited Isle of Man United Kingdom http://www.prosperoassociates.com From tom415 at yahoo.com Sat Apr 24 17:50:26 2004 From: tom415 at yahoo.com (Tom Baik) Date: Sat, 24 Apr 2004 10:50:26 -0700 (PDT) Subject: [redhat-ccm-list] help required on cms In-Reply-To: <000801c42961$db4d0180$9801a8c0@garzaxp> Message-ID: <20040424175026.74362.qmail@web41004.mail.yahoo.com> Hi Eric, I installed the APLAWS complete bundle. The line I commented out is this: . It was in the file /__ccm__/themes/aplaws/types/ContentTypes.xsl. Which apps could I be missing? Thanks for your help. Regards, Tom Baik --- Eric Garza wrote: > Tom did you load the APLAWS package and get the index.xsl error with > that version? If so, what bundle did you load? The missing index.xsl > is > likely an application you didn't load in your ccm.webapps file. What > was > the path for the references you commented out? Do you have the full > path > to the index.xsl it can't compile? > > -- > Eric Garza > > -----Original Message----- > From: Tom [mailto:tom415 at yahoo.com] > Sent: Friday, April 23, 2004 1:43 PM > To: Eric Garza; redhat-ccm-list at redhat.com > Subject: Re: [redhat-ccm-list] help required on cms > > > Hi Eric, > > Thanks for your follow-up. I am running on RH Linux 7.3, Tomcat > 4.1.30, and Postgres 7.3.4. > > My issue had to do with a couple of files trying to import a > non-existent file (/__ccm__/servlet/content-type/index.xsl). I > commented them out and I am able to proceed for now. I haven't > figured > out what, if anything, this non-existent file does. > > Also, I saw your other post regarding using APLAWS+ about navigation > and access to pages and to the forum. I have those exact same > questions, though I'm still learning and finding my way around the > CMS > and the portal. > > Take care, > Tom Baik > > > > > > > > --- Eric Garza wrote: > > Tom, I had a similar issue setting up the current release of > APLAWS+. > > My > > XSL issue was related to missing packages in the ccm.classpath or > > ccm.webapp files that I created and placed into the /etc/ccm. The > xsl > > files were missing in the /usr/share/ccm/webapps directory. Check > > your > > tomcat aplaws log to see what the exact xsl error is then check in > > the > > webapps directory to make sure the xsl that failed is actually > > installed. These files are attached. I did a production install > using > > the quickstart guide found on the APLAWS sourceforge site. Check > out > > the > > Redhat install guide too: > > > > > http://sourceforge.net/project/showfiles.php?group_id=71505&package_id=1 > > 13522 > > > > Here's my basic install and some gotchas, hope this helps: > > > > My environment: > > > > - Postgres 7.3.4 on Fedora 1.91 - I had to downgrade Postgres 7.4. > It > > appears they have changed the way autocommit works. The driver and > > database don't support it, they expect the applications to control > > commits, so I was getting a transaction error when using the > APLAWS+ > > Postgres driver > > > > - Tomcat 4.1.27 on Windows 2000 will move this to RHEN 3 shortly > for > > dev > > end staging. There are few gotchas on Windows 2000. Forum is not > > working > > for us yet using the "/ccm/portal/forum" relative uri, need to > submit > > a > > bug. There were some small xsl edits needed, as paths are case > > sensitive, nothing major yet. Basic install steps follow: > > > > 1) Setup the database and db user using doc. > > 2) I setup my local environment using the attached setenv > > script. > > I did a complete load from command line using: > > > > ccm load-bundle --interactive --name aplaws-plus-complete > > > > 3) Then I initialized Tomcat: > > > > ccm hostinit-bundle --name aplaws-plus-complete --container=tomcat > > http-port=8080 shutdown-port=8081 > > > > There is another gotcha here. The current service install script > does > > not pass JVM memory arguments to the tomcat.exe. This is easy to > fix > > in > > the script, but to fix after installing the Tomcat service follow > > these > > directions: > > > > a) You can change the parameters in the Windows registry. > Path: > > > > > HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\tomcat-localhost808 > > 0\Parameters > > > > b) Change the JVM Option Count value to the new value with the > number > > of > > parameters it will now have. In my case, I added two parameters > > -Xms512m > > and -Xmx512m and it was 11 before so I bumped it to 13. > > > > c) Then I created two more String values. I called the first one I > > added > > 'JVM Option Number 12' and the second 'JVM Option Number 13. Then I > > set > > the value inside each. The first one I set to '-Xms512m' and the > > second > > I set to '-Xmx512m'. Then I restarted Tomcat service and observed > > when I > > did big processing the memory limit was now 512 MB, so it worked. > > > > There's more. I am compiling a step by step journal I will make > > available after I finish changing the theme and creating my new ccm > > site. Still figuring that out. Good luck. > > > > -- > > Eric Garza > > > > > > > > > > > ATTACHMENT part 2 application/x-zip-compressed name=ccmenv.zip > > -- > > Redhat-ccm-list mailing list > > Redhat-ccm-list at redhat.com > > https://www.redhat.com/mailman/listinfo/redhat-ccm-list > > Archives: https://www.redhat.com/pipermail/redhat-ccm-list/ > > > > > > > > __________________________________ > Do you Yahoo!? > Yahoo! Photos: High-quality 4x6 digital prints for 25? > http://photos.yahoo.com/ph/print_splash > > > > > -- > Redhat-ccm-list mailing list > Redhat-ccm-list at redhat.com > https://www.redhat.com/mailman/listinfo/redhat-ccm-list > Archives: https://www.redhat.com/pipermail/redhat-ccm-list/ __________________________________ Do you Yahoo!? Yahoo! Photos: High-quality 4x6 digital prints for 25? http://photos.yahoo.com/ph/print_splash From tom415 at yahoo.com Sat Apr 24 21:03:46 2004 From: tom415 at yahoo.com (Tom Baik) Date: Sat, 24 Apr 2004 14:03:46 -0700 (PDT) Subject: [redhat-ccm-list] Getting a stylesheet compilation error. Please help. Message-ID: <20040424210346.69904.qmail@web41015.mail.yahoo.com> I'm getting a stylesheet compilation error. The logs say that a call is being made to this file but that file does not exist. Did I not load an application that I needed to? Thanks, Tom Baik __________________________________ Do you Yahoo!? Yahoo! Photos: High-quality 4x6 digital prints for 25? http://photos.yahoo.com/ph/print_splash From tom415 at yahoo.com Sat Apr 24 22:36:19 2004 From: tom415 at yahoo.com (Tom Baik) Date: Sat, 24 Apr 2004 15:36:19 -0700 (PDT) Subject: [redhat-ccm-list] Missing "content-center-map.xml" file? Message-ID: <20040424223619.7107.qmail@web41007.mail.yahoo.com> In Chapter 6.1 of the CMS Developers Guide (here http://www.redhat.com/docs/manuals/cms/rhea-dg-cms-en-6.1/ch-config-tutorial.html), it states that the CMS Initializer (com.arsdigita.cms.installer.Initializer) expects the following configuration parameters: workspace and ContentCenterMap. When I check for /WEB-INF/resources/content-center-map.xml in my installation, that file does not exist. Instead there is a file core-dmi.xml. I'm trying to diagnose some errors and I'm wondering if this is contributing to my errors. Thanks, Tom Baik __________________________________ Do you Yahoo!? Yahoo! Photos: High-quality 4x6 digital prints for 25? http://photos.yahoo.com/ph/print_splash From tom415 at yahoo.com Sat Apr 24 22:39:07 2004 From: tom415 at yahoo.com (Tom Baik) Date: Sat, 24 Apr 2004 15:39:07 -0700 (PDT) Subject: [redhat-ccm-list] Missing enterprise.init file Message-ID: <20040424223907.96746.qmail@web41011.mail.yahoo.com> In my new installation of ccm WAF and CMS 6.1.0, I am missing the "enterprise.init" file that the documentation indicates I should have. Would someone please provide some direction. Thanks. Regards, Tom Baik __________________________________ Do you Yahoo!? Yahoo! Photos: High-quality 4x6 digital prints for 25? http://photos.yahoo.com/ph/print_splash From ya_wei_guo at yahoo.com Sun Apr 25 03:07:42 2004 From: ya_wei_guo at yahoo.com (Yawei Guo) Date: Sat, 24 Apr 2004 20:07:42 -0700 (PDT) Subject: [redhat-ccm-list] xsession-errors In-Reply-To: <016901c42930$d2f272d0$0ed311d5@vaio> Message-ID: <20040425030742.33422.qmail@web21404.mail.yahoo.com> Dear Sergiusz, Thanks for your help. Could you tell me how much disk space is reasonable for /tmp if I allocate a separate partition for /tmp? I have a 73GB SCSI disk on my LINUX Server. And 5~6 users often work on the linux server at the same time. Sometimes there are 3~4 large engineering applications running on the linux server. Thanks Yawei Guo --------------------------------- Do you Yahoo!? Yahoo! Photos: High-quality 4x6 digital prints for 25? -------------- next part -------------- An HTML attachment was scrubbed... URL: From sergiusz.jarczyk at qresc.com Sun Apr 25 10:40:52 2004 From: sergiusz.jarczyk at qresc.com (Sergiusz Jarczyk) Date: Sun, 25 Apr 2004 12:40:52 +0200 Subject: [redhat-ccm-list] xsession-errors References: <20040425030742.33422.qmail@web21404.mail.yahoo.com> Message-ID: <00c801c42ab1$c911a010$0ed311d5@vaio> Hi Typically I'm using 500MB for a /tmp partition. It should be enough for your purposes. Larger /tmp is needed in a specific situations, i.e. if you use it as a repository for a large temporary files (personally, I don't know much applications that do that - most of them use user's home directory), or have very large web server with session storage set to file system (i.e. PHP). Sergiusz -------------- next part -------------- An HTML attachment was scrubbed... URL: From apevec at redhat.com Mon Apr 26 08:07:08 2004 From: apevec at redhat.com (Alan Pevec) Date: Mon, 26 Apr 2004 10:07:08 +0200 Subject: [redhat-ccm-list] lifecycle exceptions In-Reply-To: <6C6B73040F8CD411AA5600508B6D5F120D767F26@strnynt2.strny.starwoodhotels.com> References: <6C6B73040F8CD411AA5600508B6D5F120D767F26@strnynt2.strny.starwoodhotels.com> Message-ID: <408CC32C.70100@redhat.com> Hi a quick fix would be to wrap Scheduler.run call in c.a.cms.lifecycle.SchedulerTask with a try-catch(Throwable) block. Log the exception in the catch block, so that it does not fail silently. Hope this helps, Alan Pevec Thomas, Mary wrote: >Hi >Noticed that lifecycle in redhat cms breaks when an assertion throws the >exception and it is not caught. >And then one has to restart the server . This is not acceptable in >production environment. >Could you offer recommendations/modifications wherein errors are caught and >does not break the lifecycle during publishing of an item. > >Thanks >Mary > >public class AssertionError extends Error { > > public AssertionError(String msg) { > super(msg); > } >} > > From miles at runtime-collective.com Mon Apr 26 10:52:40 2004 From: miles at runtime-collective.com (Miles Barr) Date: Mon, 26 Apr 2004 11:52:40 +0100 Subject: [redhat-ccm-list] Re: An example of what can be done with CCM and Red Hat In-Reply-To: <20040424160015.DF45073D69@hormel.redhat.com> References: <20040424160015.DF45073D69@hormel.redhat.com> Message-ID: <1082976759.4381.85.camel@gryffindor.runtime-collective.com> Hi Jeff, Congratulations on the new site, it looks great. One feature I'm particularly interested in is your discussion forums application. I'm currently using APLAWS+ (CCM 6.1) and the forums are very different. The UI you have is very similar to phpBB. Is your version the same app but with a different GUI or set of XSL? Or is it a different application altogether? -- Miles Barr Runtime Collective From goldfish at i-manila.com.ph Mon Apr 26 12:31:22 2004 From: goldfish at i-manila.com.ph (Jun Yamog) Date: 26 Apr 2004 20:31:22 +0800 Subject: [redhat-ccm-list] lifecycle exceptions In-Reply-To: <408CC32C.70100@redhat.com> References: <6C6B73040F8CD411AA5600508B6D5F120D767F26@strnynt2.strny.starwoodhotels.com> <408CC32C.70100@redhat.com> Message-ID: <1082970444.1061.9.camel@draco.vnet> This has happened to use once or twice. We are not sure why some assumptions in the db was not there. Either it was introduced while putting in development or code or something. Anyway looking at the root cause of the exception and fixing some rows or columns on the db where the solutions that we did. Are there cases where the site is under heavy load there seems to be a state during a lifecycle run when a content item is it bad state? We seem to have encountered this but unable to reproduce it. Jun On Mon, 2004-04-26 at 16:07, Alan Pevec wrote: > Hi > > a quick fix would be to wrap Scheduler.run call in > c.a.cms.lifecycle.SchedulerTask > with a try-catch(Throwable) block. Log the exception in the catch block, > so that it does not fail silently. > > Hope this helps, > > Alan Pevec > > > Thomas, Mary wrote: > > >Hi > >Noticed that lifecycle in redhat cms breaks when an assertion throws the > >exception and it is not caught. > >And then one has to restart the server . This is not acceptable in > >production environment. > >Could you offer recommendations/modifications wherein errors are caught and > >does not break the lifecycle during publishing of an item. > > > >Thanks > >Mary > > > >public class AssertionError extends Error { > > > > public AssertionError(String msg) { > > super(msg); > > } > >} > > > > > From Martin.Denham at edfenergy.com Mon Apr 26 14:20:50 2004 From: Martin.Denham at edfenergy.com (Denham, Martin) Date: Mon, 26 Apr 2004 15:20:50 +0100 Subject: [redhat-ccm-list] newbie question - Basic content type Message-ID: <4C04D804C114CB46A20FE832EA3394114223AF@hdqe2k01.customer.edfenergy.net> Hi, I would like to manage simple static cms pages with no special content type features. The News Item and Article content types add headers to the body. Is there a simple content type which displays the body without any extra information. I am currently using 5.2.1 but hope to install 6.1 shortly. thanks Martin *********************************************************************************** EDF Energy plc internet e-mail disclaimer This e-mail and any files transmitted with it are confidential and may be protected by legal privilege. If you are not the intended recipient, please notify the sender and delete the e-mail from your system. This e-mail has been scanned for malicious content but the internet is inherently insecure and EDF Energy plc cannot accept any liability for the integrity of this message or its attachments. No employee or agent of EDF Energy plc or any related company is authorised to conclude any binding agreement on behalf of EDF Energy plc or any related company by e-mail. All e-mails sent and received by EDF Energy plc are monitored to ensure compliance with the company's information security policy. *********************************************************************************** From srini at ncommon.com Mon Apr 26 15:46:05 2004 From: srini at ncommon.com (srini) Date: Mon, 26 Apr 2004 10:46:05 -0500 Subject: [redhat-ccm-list] Usage of ACSObjectSelectionModel Message-ID: <000001c42ba5$9a241270$6b1ea8c0@admin7jz2nzgs0> Hi, Could someone provide me with an example of the usage of ACSObjectSelectionModel class in the com.arsdigita.kernel.ui package? Thanks Srinivas -------------- next part -------------- An HTML attachment was scrubbed... URL: From javierbada at hotmail.com Mon Apr 26 17:07:16 2004 From: javierbada at hotmail.com (Javier Badaracco) Date: Mon, 26 Apr 2004 17:07:16 +0000 Subject: [redhat-ccm-list] CM issue report code: 127.0.0.1:109a8df:fc27c34137 Message-ID: Hi: I'm new from allthis environment, i' ll come fro windows, the problem is tat i install and configure waf 6.1b with fedora-j2sdk1.4.2_04, postgres 7.3 and tomcat , i'll follow the instruction in the page of Red Hat Web Application Framework 6.1: WAF Installation Guide, all goes good but when finished the configuration start ccm,: in the hhtp://localhost:9002 got the next error that have been seen in the catalina-stdout.log file: 2004-04-26 13:14:40,699 [2][9]] ERROR util.Assert - The URL is relative and won't dispatch correctly under some servlet containers; the URL is 'register/' com.arsdigita.util.AssertionError: The URL is relative and won't dispatch correctly under some servlet containers; the URL is 'register/' seeing in the web it's seems that something was not redirected, so with /ccm/register work fine, the question is if a mees something with this access. Thank's Javier Badaracco javierbada at hotmail.com _________________________________________________________________ Charla con tus amigos en l?nea mediante MSN Messenger: http://messenger.latam.msn.com/ From Mary.Thomas at starwoodhotels.com Mon Apr 26 17:22:52 2004 From: Mary.Thomas at starwoodhotels.com (Thomas, Mary) Date: Mon, 26 Apr 2004 13:22:52 -0400 Subject: [redhat-ccm-list] lifecycle exceptions Message-ID: <6C6B73040F8CD411AA5600508B6D5F120D767F2F@strnynt2.strny.starwoodhotels.com> Hi Alan, I modified the schedularTask.java to the following.. class SchedulerTask extends TimerTask { public static final String versionId = "$Id: //cms/6.0/src/com/arsdigita/cms/lifecycle/SchedulerTask.java#1 $ by $Author: dennis $, $DateTime: 2003/08/18 23:54:14 $"; public void run() { try{ System.err.println("the lifecycle thread started at *****"+System.currentTimeMillis()+" **** time"); Scheduler.run(); }catch(Exception e){ e.printStackTrace(); System.err.println("the lifecycle thread broke at *****"+System.currentTimeMillis()+" **** time"); } } } I noticed that a new thread keeps generating on every minute. Is this expected...?? -----Original Message----- From: Alan Pevec [mailto:apevec at redhat.com] Sent: Monday, April 26, 2004 4:07 AM To: Thomas, Mary Cc: 'redhat-ccm-list at redhat.com' Subject: Re: [redhat-ccm-list] lifecycle exceptions Hi a quick fix would be to wrap Scheduler.run call in c.a.cms.lifecycle.SchedulerTask with a try-catch(Throwable) block. Log the exception in the catch block, so that it does not fail silently. Hope this helps, Alan Pevec Thomas, Mary wrote: >Hi >Noticed that lifecycle in redhat cms breaks when an assertion throws the >exception and it is not caught. >And then one has to restart the server . This is not acceptable in >production environment. >Could you offer recommendations/modifications wherein errors are caught and >does not break the lifecycle during publishing of an item. > >Thanks >Mary > >public class AssertionError extends Error { > > public AssertionError(String msg) { > super(msg); > } >} > > This electronic message transmission contains information from the Company that may be proprietary, confidential and/or privileged. The information is intended only for the use of the individual(s) or entity named above. If you are not the intended recipient, be aware that any disclosure, copying or distribution or use of the contents of this information is prohibited. If you have received this electronic transmission in error, please notify the sender immediately by replying to the address listed in the "From:" field. From jeff.hoffman at pgdc.com Tue Apr 27 02:28:54 2004 From: jeff.hoffman at pgdc.com (Jeff Hoffman) Date: Mon, 26 Apr 2004 22:28:54 -0400 Subject: [redhat-ccm-list] Usage of ACSObjectSelectionModel In-Reply-To: <000001c42ba5$9a241270$6b1ea8c0@admin7jz2nzgs0> References: <000001c42ba5$9a241270$6b1ea8c0@admin7jz2nzgs0> Message-ID: <408DC566.6060008@pgdc.com> srini wrote: > Hi, > > Could someone provide me with an example of the usage of > ACSObjectSelectionModel class in the com.arsdigita.kernel.ui package? Srini, Add the following component to a page of your choice. For m_model.isSelected() to return true, the item_id parameter must be specified. Any ID of a CMS article would be appropriate in this example. class MyComponent extends SimpleComponent { ACSObjectSelectionModel m_model; public MyComponent() { super(); m_model = new ACSObjectSelectionModel( "com.arsdigita.cms.Article", "com.arsdigita.cms.Article", "item_id"); } public void register(Page p) { super.register(p); p.addComponentStateParam(this, m_model.getStateParameter()); } public void doSomethingUseful(PageState s) { if (m_model.isSelected(s)) { Article item = (Article)m_model.getSelectedObject(s); // Do something with item.. } } } Hope this helps. Jeff K. Hoffman Chief Technology Officer Planned Giving Design Center From jeff.hoffman at pgdc.com Tue Apr 27 02:38:21 2004 From: jeff.hoffman at pgdc.com (Jeff Hoffman) Date: Mon, 26 Apr 2004 22:38:21 -0400 Subject: [redhat-ccm-list] "Binder" tutorial errata (for 6.1)? Message-ID: <408DC79D.9030708@pgdc.com> Hello, Is the documentation errata available publicly, anywhere? Has any errata been published, so far? If not, I have the following to submit, after having struggled to get the Binder application tutorial up and running on my 6.1 installation: - The documentation specifies than the optional data attribute can be used to specify a custom loader, and even specifies its use in the binder app. It does not, however, provide the loader. Here is the one I used: --- package com.example.binder; import com.arsdigita.kernel.KernelExcursion; import com.arsdigita.loader.PackageLoader; import com.arsdigita.runtime.ScriptContext; import com.arsdigita.kernel.Kernel; import com.arsdigita.web.Application; import com.arsdigita.web.ApplicationType; import org.apache.log4j.Logger; public class BinderLoader extends PackageLoader { private static final Logger s_log = Logger.getLogger(BinderLoader.class); public BinderLoader() { } public void run(final ScriptContext ctx) { new KernelExcursion() { public void excurse() { setEffectiveParty(Kernel.getSystemParty()); loadBinderApp(); } }.run(); } private Application loadBinderApp() { ApplicationType binderType = ApplicationType.createApplicationType( "binder", "Binder", Binder.BASE_DATA_OBJECT_TYPE); binderType.setDescription("Jeff's Binder"); Application binder = Application.createApplication(binderType, "binder", "Binder 1", null); return binder; } } --- - Once the loader has run, the application still bails with a NullPointerException in BaseDispatcher.forward(). Inspecting the code revealed that Web.getServletContext(contextPath) was returning null. Further inspection of ContextRegistrationServlet revealed its existance and purpose. The following web.xml worked for me, where the one in the docs did not. YMMV: --- binder com.example.binder.BinderServlet reg com.arsdigita.web.ContextRegistrationServlet uri /binder/ 1 binder /* reg /__ccm__/null/reg/* --- - The location of web.xml in the docs was shown as: web/binder/WEB-INF/web.xml Perhaps because I created my project, called binder itself, with ccm-devel-create.pl, this location was redundant for me. I used: web/WEB-INF/web.xml and it worked for me. Hope this helps someone. If I did anything naive, or missed an opportunity for completeness, I'd appreciate pointers. Jeff K. Hoffman Chief Technology Officer Planned Giving Design Center Any corrections or additions for completeness would be appreciated. From apevec at redhat.com Tue Apr 27 08:09:11 2004 From: apevec at redhat.com (Alan Pevec) Date: Tue, 27 Apr 2004 10:09:11 +0200 Subject: [redhat-ccm-list] lifecycle exceptions In-Reply-To: <6C6B73040F8CD411AA5600508B6D5F120D767F2F@strnynt2.strny.starwoodhotels.com> References: <6C6B73040F8CD411AA5600508B6D5F120D767F2F@strnynt2.strny.starwoodhotels.com> Message-ID: <408E1527.5060106@redhat.com> Thomas, Mary wrote: >Hi Alan, >I modified the schedularTask.java >to the following.. > >... > > >I noticed that a new thread keeps generating on every minute. >Is this expected...?? > > It is one thread, controlled by java.util.Timer created in Scheduler.startTimer(). Frequency of its TimerTask is set by the "frequency" init parameter in enterprise.init, com.arsdigita.cms.lifecycle.Initializer section. By default its value is 60 (seconds), so behavior you are observing is expected. Alan -- Alan Pevec Red Hat, Inc. From David.Young at southoxon.gov.uk Tue Apr 27 11:39:00 2004 From: David.Young at southoxon.gov.uk (David Young) Date: Tue, 27 Apr 2004 12:39:00 +0100 Subject: [redhat-ccm-list] Aplaws Job Content Type File Attachments Message-ID: Hi, We are hoping to modify the default 'job' content type so that it can display file attachments. The content type seems to support file attachments as the cms backend allows the attachment of files, and checking the database tables show that the association exists. However the attachments do not seem to appear in the rendered xml. At what stage / which source files do I need to look at to enable the display of these attachments. Thanks David ********************************************************************** The information contained in this transmission may be confidential and may also be the subject of legal professional privilege. If you are not the intended recipient, any use, disclosure or copying of any part of this transmission is unauthorised. If you have received this transmission in error, please notify the originator immediately. www.southoxon.gov.uk ********************************************************************** From goldfish at i-manila.com.ph Tue Apr 27 11:46:53 2004 From: goldfish at i-manila.com.ph (Jun Yamog) Date: 27 Apr 2004 19:46:53 +0800 Subject: [redhat-ccm-list] Re: An example of what can be done with CCM and Red Hat In-Reply-To: <1082976759.4381.85.camel@gryffindor.runtime-collective.com> References: <20040424160015.DF45073D69@hormel.redhat.com> <1082976759.4381.85.camel@gryffindor.runtime-collective.com> Message-ID: <1083066413.1070.8.camel@draco.vnet> Hi Miles, The app is likely the same as the one with Aplaws, although its the standalone version. Changes we made is to integrate with the existing Category service in CCM. So now you can have N level deep categories per forum. Although in PGDC a category or subcategory became a forum. We treated leaf categories as a forum. We also added a new admin section since the old admin can not admin tree like categories. We also added delete, edit and hide functions for the admin. I still have to make sure that is can handle a lot of post though :) Jun On Mon, 2004-04-26 at 18:52, Miles Barr wrote: > Hi Jeff, > > Congratulations on the new site, it looks great. > > One feature I'm particularly interested in is your discussion forums > application. I'm currently using APLAWS+ (CCM 6.1) and the forums are > very different. The UI you have is very similar to phpBB. Is your > version the same app but with a different GUI or set of XSL? Or is it a > different application altogether? > > > -- > Miles Barr > Runtime Collective > From goldfish at i-manila.com.ph Tue Apr 27 11:49:28 2004 From: goldfish at i-manila.com.ph (Jun Yamog) Date: 27 Apr 2004 19:49:28 +0800 Subject: [redhat-ccm-list] newbie question - Basic content type In-Reply-To: <4C04D804C114CB46A20FE832EA3394114223AF@hdqe2k01.customer.edfenergy.net> References: <4C04D804C114CB46A20FE832EA3394114223AF@hdqe2k01.customer.edfenergy.net> Message-ID: <1083066568.1070.11.camel@draco.vnet> I think there is although I am not sure if its available on the UI. The base content type is content item, which is pretty much what you want. Maybe you can code a little and inherit from content item and not add anything? Jun On Mon, 2004-04-26 at 22:20, Denham, Martin wrote: > Hi, > > I would like to manage simple static cms pages with no special content type features. > > The News Item and Article content types add headers to the body. Is there a simple content type which displays the body without any extra information. > > I am currently using 5.2.1 but hope to install 6.1 shortly. > > thanks > > Martin > > > *********************************************************************************** > EDF Energy plc internet e-mail disclaimer > This e-mail and any files transmitted with it are confidential and may be protected by legal privilege. > If you are not the intended recipient, please notify the sender and delete the e-mail from your system. > This e-mail has been scanned for malicious content but the internet is inherently insecure and EDF > Energy plc cannot accept any liability for the integrity of this message or its attachments. No employee > or agent of EDF Energy plc or any related company is authorised to conclude any binding agreement on > behalf of EDF Energy plc or any related company by e-mail. All e-mails sent and received by EDF Energy > plc are monitored to ensure compliance with the company's information security policy. > *********************************************************************************** > > From Martin.Denham at edfenergy.com Tue Apr 27 12:04:27 2004 From: Martin.Denham at edfenergy.com (Denham, Martin) Date: Tue, 27 Apr 2004 13:04:27 +0100 Subject: [redhat-ccm-list] Getting started - No Oracle Intermedia Message-ID: <4C04D804C114CB46A20FE832EA339411013E896C@hdqe2k01.customer.edfenergy.net> Hi, I am trying to install cms 6.1 on windows and Oracle 9 but do not have InterMedia installed. I get the "CTX_DDL must be declared" intermedia error when executing: ccm.cmd load --interactive ccm-core ccm-cms ccm-cms-types-article ccm-cms-types-newsitem Previous posts say this error can be ignored but it seems as if the rest of the sql initialisation script is not being run after the error because there is nothing in many tables such as SITE_NODES. Is there a way to stop this error occurring without installing Oracle InterMedia. thanks Martin *********************************************************************************** EDF Energy plc internet e-mail disclaimer This e-mail and any files transmitted with it are confidential and may be protected by legal privilege. If you are not the intended recipient, please notify the sender and delete the e-mail from your system. This e-mail has been scanned for malicious content but the internet is inherently insecure and EDF Energy plc cannot accept any liability for the integrity of this message or its attachments. No employee or agent of EDF Energy plc or any related company is authorised to conclude any binding agreement on behalf of EDF Energy plc or any related company by e-mail. All e-mails sent and received by EDF Energy plc are monitored to ensure compliance with the company's information security policy. *********************************************************************************** From David.Young at southoxon.gov.uk Tue Apr 27 12:08:39 2004 From: David.Young at southoxon.gov.uk (David Young) Date: Tue, 27 Apr 2004 13:08:39 +0100 Subject: [redhat-ccm-list] newbie question - Basic content type Message-ID: If you do not need to use the News Item / Article content types for any other purpose ie you will never need the 'extra information' I would be tempted to just alter the relevant xsl style sheets to hide this information. David >>> Jun Yamog 27/04/2004 12:49:28 >>> I think there is although I am not sure if its available on the UI. The base content type is content item, which is pretty much what you want. Maybe you can code a little and inherit from content item and not add anything? Jun On Mon, 2004-04-26 at 22:20, Denham, Martin wrote: > Hi, > > I would like to manage simple static cms pages with no special content type features. > > The News Item and Article content types add headers to the body. Is there a simple content type which displays the body without any extra information. > > I am currently using 5.2.1 but hope to install 6.1 shortly. > > thanks > > Martin > > > *********************************************************************************** > EDF Energy plc internet e-mail disclaimer > This e-mail and any files transmitted with it are confidential and may be protected by legal privilege. > If you are not the intended recipient, please notify the sender and delete the e-mail from your system. > This e-mail has been scanned for malicious content but the internet is inherently insecure and EDF > Energy plc cannot accept any liability for the integrity of this message or its attachments. No employee > or agent of EDF Energy plc or any related company is authorised to conclude any binding agreement on > behalf of EDF Energy plc or any related company by e-mail. All e-mails sent and received by EDF Energy > plc are monitored to ensure compliance with the company's information security policy. > *********************************************************************************** > > -- Redhat-ccm-list mailing list Redhat-ccm-list at redhat.com https://www.redhat.com/mailman/listinfo/redhat-ccm-list Archives: https://www.redhat.com/pipermail/redhat-ccm-list/ ********************************************************************** The information contained in this transmission may be confidential and may also be the subject of legal professional privilege. If you are not the intended recipient, any use, disclosure or copying of any part of this transmission is unauthorised. If you have received this transmission in error, please notify the originator immediately. www.southoxon.gov.uk ********************************************************************** From Martin.Denham at edfenergy.com Tue Apr 27 15:17:32 2004 From: Martin.Denham at edfenergy.com (Denham, Martin) Date: Tue, 27 Apr 2004 16:17:32 +0100 Subject: [redhat-ccm-list] Getting started - No Oracle Intermedia Message-ID: <4C04D804C114CB46A20FE832EA339411013E896D@hdqe2k01.customer.edfenergy.net> Hi, Solved my own problem. It appears Intermedia was installed and one or all of the following were required: GRANT CTXAPP TO ccmUser GRANT EXECUTE ON ctx_ddl TO ccmUser unlock the ctxsys account regards Martin -----Original Message----- From: redhat-ccm-list-bounces at redhat.com [mailto:redhat-ccm-list-bounces at redhat.com]On Behalf Of Denham, Martin Sent: 27 April 2004 13:04 To: redhat-ccm-list at redhat.com Subject: [redhat-ccm-list] Getting started - No Oracle Intermedia Hi, I am trying to install cms 6.1 on windows and Oracle 9 but do not have InterMedia installed. I get the "CTX_DDL must be declared" intermedia error when executing: ccm.cmd load --interactive ccm-core ccm-cms ccm-cms-types-article ccm-cms-types-newsitem Previous posts say this error can be ignored but it seems as if the rest of the sql initialisation script is not being run after the error because there is nothing in many tables such as SITE_NODES. Is there a way to stop this error occurring without installing Oracle InterMedia. thanks Martin *********************************************************************************** EDF Energy plc internet e-mail disclaimer This e-mail and any files transmitted with it are confidential and may be protected by legal privilege. If you are not the intended recipient, please notify the sender and delete the e-mail from your system. This e-mail has been scanned for malicious content but the internet is inherently insecure and EDF Energy plc cannot accept any liability for the integrity of this message or its attachments. No employee or agent of EDF Energy plc or any related company is authorised to conclude any binding agreement on behalf of EDF Energy plc or any related company by e-mail. All e-mails sent and received by EDF Energy plc are monitored to ensure compliance with the company's information security policy. *********************************************************************************** -- Redhat-ccm-list mailing list Redhat-ccm-list at redhat.com https://www.redhat.com/mailman/listinfo/redhat-ccm-list Archives: https://www.redhat.com/pipermail/redhat-ccm-list/ From narayanan at triconinfotech.com Tue Apr 27 16:36:02 2004 From: narayanan at triconinfotech.com (Narayanan) Date: Tue, 27 Apr 2004 22:06:02 +0530 Subject: [redhat-ccm-list] CMS Demo 6.1 Message-ID: <2C76D5D1FBF74C428757FF609345DF1A0DBB63@jupiter.triconhome.local> Hi, Can anyone please tell me as to where can I find a working source code for download, of CMS demo 6.1? Thanks, Narayanan. K Information contained in this E-MAIL being proprietary to Tricon Infotech Private Limited is 'privileged' and 'confidential' and intended for use only by the individual or entity to which it is addressed. You are notified that any use, copying or dissemination of the information contained in this E-MAIL in any manner whatsoever is strictly prohibited. -------------- next part -------------- An HTML attachment was scrubbed... URL: From tuan at yorku.ca Tue Apr 27 16:48:08 2004 From: tuan at yorku.ca (Tuan Nguyen) Date: Tue, 27 Apr 2004 12:48:08 -0400 Subject: [redhat-ccm-list] ccm/cms 6.1 production release In-Reply-To: <2C76D5D1FBF74C428757FF609345DF1A0DBB63@jupiter.triconhome.local> References: <2C76D5D1FBF74C428757FF609345DF1A0DBB63@jupiter.triconhome.local> Message-ID: <408E8EC8.7010207@yorku.ca> Hi, I understand that the production release of ccm/cms 6.1 is not available publicly, however, the current public release of APLAWS+ (under GPL) seems to be based upon ccm/cms 6.1. Why are there both a "production" quality release for 6.1 and at the same time a "nightly" version? I'm quite confused with the current state of the releases. Please clarify. Thanks. Tuan. From Martin.Denham at edfenergy.com Tue Apr 27 21:13:54 2004 From: Martin.Denham at edfenergy.com (Denham, Martin) Date: Tue, 27 Apr 2004 22:13:54 +0100 Subject: [redhat-ccm-list] newbie question - how to edit a published item Message-ID: <4C04D804C114CB46A20FE832EA339411013E896E@hdqe2k01.customer.edfenergy.net> Hi, I apologise in advance for the stupid question, but how do I edit an item that has been published. I have been through an Author, Approve, Deploy, Publish cycle and now want to jump back to the beginning to edit the item. regards Martin *********************************************************************************** EDF Energy plc internet e-mail disclaimer This e-mail and any files transmitted with it are confidential and may be protected by legal privilege. If you are not the intended recipient, please notify the sender and delete the e-mail from your system. This e-mail has been scanned for malicious content but the internet is inherently insecure and EDF Energy plc cannot accept any liability for the integrity of this message or its attachments. No employee or agent of EDF Energy plc or any related company is authorised to conclude any binding agreement on behalf of EDF Energy plc or any related company by e-mail. All e-mails sent and received by EDF Energy plc are monitored to ensure compliance with the company's information security policy. *********************************************************************************** From jeff.hoffman at pgdc.com Tue Apr 27 22:02:00 2004 From: jeff.hoffman at pgdc.com (Jeff Hoffman) Date: Tue, 27 Apr 2004 18:02:00 -0400 Subject: [redhat-ccm-list] newbie question - how to edit a published item In-Reply-To: <4C04D804C114CB46A20FE832EA339411013E896E@hdqe2k01.customer.edfenergy.net> References: <4C04D804C114CB46A20FE832EA339411013E896E@hdqe2k01.customer.edfenergy.net> Message-ID: <408ED858.4060505@pgdc.com> Denham, Martin wrote: > I apologise in advance for the stupid question, but how do I edit an item that has been published. No such thing as a stupid question. > I have been through an Author, Approve, Deploy, Publish cycle and now want to jump back to the beginning to edit the item. Once a content item is published, you can edit it at any time. You can do this by going into the content section, clicking the item, and editing whatever you like. To make your changes live, you need to publish the new revision. Doing so requires you to unpublish the previous revision, and publish the new one (just click unpublish and then click apply lifecycle). Hope this helps, --Jeff --- Jeff K. Hoffman Chief Technology Officer Planned Giving Design Center From tom415 at yahoo.com Tue Apr 27 23:38:58 2004 From: tom415 at yahoo.com (Tom Baik) Date: Tue, 27 Apr 2004 16:38:58 -0700 (PDT) Subject: [redhat-ccm-list] Stylesheet compilation error. Message-ID: <20040427233858.6725.qmail@web41011.mail.yahoo.com> Please help. I am getting a stylesheet compilation error. The error message is: Caused by: java.io.FileNotFoundException: http://localhost/__ccm__/servlet/content-type/index.xsl at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:789) at java.net.URL.openStream(URL.java:913) at com.arsdigita.templating.SimpleURIResolver.resolve(SimpleURIResolver.java:123) ... 94 more --------- java.io.FileNotFoundException: http://localhost/__ccm__/servlet/content-type/index.xsl at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:789) at java.net.URL.openStream(URL.java:913) The file "index.xsl" does not exist on my system nor does the subdirectories "servlet" and "content-type" under "/__ccm__". What have I done (or not done) to get this error? Has anyone seen this? Thank you. Regards, Tom Baik __________________________________ Do you Yahoo!? Win a $20,000 Career Makeover at Yahoo! HotJobs http://hotjobs.sweepstakes.yahoo.com/careermakeover From berrange at redhat.com Wed Apr 28 16:35:41 2004 From: berrange at redhat.com (Daniel P. Berrange) Date: Wed, 28 Apr 2004 17:35:41 +0100 Subject: [redhat-ccm-list] Postgresql 7.2 available on Enterprise ES ?? In-Reply-To: <408AB6E7.7337.78C778C@localhost>; from help@prosperoassociates.com on Sat, Apr 24, 2004 at 06:50:15PM +0100 References: <408AB6E7.7337.78C778C@localhost> Message-ID: <20040428173541.B21313@redhat.com> On Sat, Apr 24, 2004 at 06:50:15PM +0100, Prospero Associates Limited wrote: > Had Postgresql 7.2 running well on Redhat 8.0. Including JDBC driver from postgres > site. Now trialling upgrade to Redhat Enterprise ES. See that version of PGSQL there is > only 7.1 e.g. postgresql-7.1.3-5.rhel2.1AS > > Dont really want to downgrade Postgres. 7.2 is a good release with significant > enhancements over 7.1. Only way I can see to get 7.2 is from old 8.0 channel on RHN > (its not available on ES channel) of from old rpms we still have. > > If we were to apply these RPMs, we would first remove completely 7.1 on ES. My recommended approach would be to get the PostgreSQL Red Hat Edition version 3 from our FTP site. This is based on the community PostgreSQL 7.2 & is compiled for and compatability tested with RHEL 2.1: ftp://ftp.mirror.ac.uk/sites/ftp.redhat.com/pub/redhat/rhdb/2.1/en/iso/i386 NB, this version of PostgreSQL is only relevant for CCM version 5.2. If you have CCM version 6.0 or 6.1 (ie the nightly builds), then you need to get the community PostgreSQL 7.3, or PostgreSQL Red Hat edition version 3: ftp://ftp.mirror.ac.uk/sites/ftp.redhat.com/pub/redhat/rhdb/3.0/en/iso/i386 > Any reasons why this might be a bad idea ?. > Is the version of Postgresql for ES not the same as delivered by postgresql.org (e.g. > why does the package name have '.rhel2.1AS' on the end) ? > If we install 7.2, will RHN pick it up under the ES channel (presumably not) ?. Nope. > In general terms, we were really quite surprised that ES was behind in almost *every* > package compared to 8.0.. Why is this ?. The Red Hat Enterprise Linux products have a much longer lifecycle than the (now discontinued) Red Hat Linux products, and Fedora. RHEL 2.1 was based on the 7.2 release of Red Hat Linux which is a couple of releases prior to 8.0, hence the packages will obviously be older. If you need some of the more up2date software then the newer RHEL 3 release (which was based on Fedora Core 1) is probably a better choice. Dan. -- |=- Daniel P. Berrange - berrange at redhat.com -=| |=- Red Hat, 338 Euston Road, London, NW1 3BT. +44 (0)7977 267 243 -=| |=- -=| |=- GnuPG: 7D3B9505 F3C9 553F A1DA 4AC2 5648 23C1 B3DF F742 7D3B 9505 -=| -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available URL: From berrange at redhat.com Wed Apr 28 16:38:42 2004 From: berrange at redhat.com (Daniel P. Berrange) Date: Wed, 28 Apr 2004 17:38:42 +0100 Subject: [redhat-ccm-list] Getting a stylesheet compilation error. Please help. In-Reply-To: <20040424210346.69904.qmail@web41015.mail.yahoo.com>; from tom415@yahoo.com on Sat, Apr 24, 2004 at 02:03:46PM -0700 References: <20040424210346.69904.qmail@web41015.mail.yahoo.com> Message-ID: <20040428173842.C21313@redhat.com> On Sat, Apr 24, 2004 at 02:03:46PM -0700, Tom Baik wrote: > I'm getting a stylesheet compilation error. The logs say that a call > is being made to this file href="/__ccm__/servlet/content-type/index.xsl"/> but that file does not > exist. This is not a physical file - its autogenerated based on set of contet types you have installed. There are two possibilities that spring to mind: * The web.xml that is deployed is missing the mapping for this URL '/__ccm__/servlet/content-type/index.xsl'. Or * The value of waf.web.host and waf.web.server are incorrect - eg missing a port number, or a different port number to that in apache / resin configs. Dan. -- |=- Daniel P. Berrange - berrange at redhat.com -=| |=- Red Hat, 338 Euston Road, London, NW1 3BT. +44 (0)7977 267 243 -=| |=- -=| |=- GnuPG: 7D3B9505 F3C9 553F A1DA 4AC2 5648 23C1 B3DF F742 7D3B 9505 -=| -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available URL: From berrange at redhat.com Wed Apr 28 16:43:18 2004 From: berrange at redhat.com (Daniel P. Berrange) Date: Wed, 28 Apr 2004 17:43:18 +0100 Subject: [redhat-ccm-list] Aplaws Job Content Type File Attachments In-Reply-To: ; from David.Young@southoxon.gov.uk on Tue, Apr 27, 2004 at 12:39:00PM +0100 References: Message-ID: <20040428174318.D21313@redhat.com> On Tue, Apr 27, 2004 at 12:39:00PM +0100, David Young wrote: > Hi, > > We are hoping to modify the default 'job' content type so that it can > display file attachments. The content type seems to support file > attachments as the cms backend allows the attachment of files, and > checking the database tables show that the association exists. However > the attachments do not seem to appear in the rendered xml. At what > stage / which source files do I need to look at to enable the display of > these attachments. All content types automatically have asupportt for file attachments without need for any code modifications. If the files are not being listed in the XML, then the 'aplaws-item-adapters.xml' must be missing the rule to include them for Job - compare the Job rules with those for Article identify the missing rules. Dan. -- |=- Daniel P. Berrange - berrange at redhat.com -=| |=- Red Hat, 338 Euston Road, London, NW1 3BT. +44 (0)7977 267 243 -=| |=- -=| |=- GnuPG: 7D3B9505 F3C9 553F A1DA 4AC2 5648 23C1 B3DF F742 7D3B 9505 -=| -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available URL: From berrange at redhat.com Wed Apr 28 16:47:38 2004 From: berrange at redhat.com (Daniel P. Berrange) Date: Wed, 28 Apr 2004 17:47:38 +0100 Subject: [redhat-ccm-list] Getting started - No Oracle Intermedia In-Reply-To: <4C04D804C114CB46A20FE832EA339411013E896D@hdqe2k01.customer.edfenergy.net>; from Martin.Denham@edfenergy.com on Tue, Apr 27, 2004 at 04:17:32PM +0100 References: <4C04D804C114CB46A20FE832EA339411013E896D@hdqe2k01.customer.edfenergy.net> Message-ID: <20040428174738.E21313@redhat.com> On Tue, Apr 27, 2004 at 04:17:32PM +0100, Denham, Martin wrote: > Hi, > > Solved my own problem. It appears Intermedia was installed and one or all of the following were required: > GRANT CTXAPP TO ccmUser > GRANT EXECUTE ON ctx_ddl TO ccmUser > unlock the ctxsys account Yes, this is correct - the APLAWS+ Quick Start Install Guide details this requirement in the section 'Installing an APLAWS+ development server': Create a new user, giving them 200MB of quota on the medium_data tablespace. SQL> create user ccm identified by ccm_xyz default tablespace medium_data temporary tablespace temp profile default quota unlimited on medium_data; SQL> grant connect,resource,query rewrite, ctxapp, javasyspriv to ccm; SQL> revoke unlimited tablespace from ccm; SQL> alter user ccm quota 200m on medium_data; Dan. > > I am trying to install cms 6.1 on windows and Oracle 9 but do not have InterMedia installed. > > I get the "CTX_DDL must be declared" intermedia error when executing: > ccm.cmd load --interactive ccm-core ccm-cms ccm-cms-types-article ccm-cms-types-newsitem > > Previous posts say this error can be ignored but it seems as if the rest of the sql initialisation script is not being run after the error because there is nothing in many tables such as SITE_NODES. > > Is there a way to stop this error occurring without installing Oracle InterMedia. Intermedia is required to be present for loading the data model - although once up & running it is possible to switch to using Lucene for search indexing instead. The 'ccm set waf.search.engine=lucene' or 'ccm set waf.search.engine=intermedia' as appropriate. You can also disable search capabilities entirely by doing 'ccm set waf.search.engine=noop' - then all searchs will just return 0 rows. Dan. -- |=- Daniel P. Berrange - berrange at redhat.com -=| |=- Red Hat, 338 Euston Road, London, NW1 3BT. +44 (0)7977 267 243 -=| |=- -=| |=- GnuPG: 7D3B9505 F3C9 553F A1DA 4AC2 5648 23C1 B3DF F742 7D3B 9505 -=| -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available URL: From berrange at redhat.com Wed Apr 28 16:53:21 2004 From: berrange at redhat.com (Daniel P. Berrange) Date: Wed, 28 Apr 2004 17:53:21 +0100 Subject: [redhat-ccm-list] ccm/cms 6.1 production release In-Reply-To: <408E8EC8.7010207@yorku.ca>; from tuan@yorku.ca on Tue, Apr 27, 2004 at 12:48:08PM -0400 References: <2C76D5D1FBF74C428757FF609345DF1A0DBB63@jupiter.triconhome.local> <408E8EC8.7010207@yorku.ca> Message-ID: <20040428175321.F21313@redhat.com> On Tue, Apr 27, 2004 at 12:48:08PM -0400, Tuan Nguyen wrote: > Hi, > > I understand that the production release of ccm/cms 6.1 is not available > publicly, however, the current public release of APLAWS+ (under GPL) > seems to be based upon ccm/cms 6.1. Why are there both a "production" > quality release for 6.1 and at the same time a "nightly" version? I'm > quite confused with the current state of the releases. Please clarify. The current APLAWS+ release is based on an unofficial[1] release build of CCM 6.1. The nightly builds are practically the same as the official internal 6.1 release - just a few bug fixes have been added since release. So at this point in time there is little difference between these three, but of course it won't neccessarily stay like this for long - nightly builds are the development, not stable, tree after all.... Dan. [1] ie I built the Core & CMS packages a couple of days before the final internal 6.1 release. -- |=- Daniel P. Berrange - berrange at redhat.com -=| |=- Red Hat, 338 Euston Road, London, NW1 3BT. +44 (0)7977 267 243 -=| |=- -=| |=- GnuPG: 7D3B9505 F3C9 553F A1DA 4AC2 5648 23C1 B3DF F742 7D3B 9505 -=| -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available URL: From berrange at redhat.com Wed Apr 28 16:55:16 2004 From: berrange at redhat.com (Daniel P. Berrange) Date: Wed, 28 Apr 2004 17:55:16 +0100 Subject: [redhat-ccm-list] newbie question - how to edit a published item In-Reply-To: <4C04D804C114CB46A20FE832EA339411013E896E@hdqe2k01.customer.edfenergy.net>; from Martin.Denham@edfenergy.com on Tue, Apr 27, 2004 at 10:13:54PM +0100 References: <4C04D804C114CB46A20FE832EA339411013E896E@hdqe2k01.customer.edfenergy.net> Message-ID: <20040428175516.G21313@redhat.com> On Tue, Apr 27, 2004 at 10:13:54PM +0100, Denham, Martin wrote: > Hi, > > I apologise in advance for the stupid question, but how do I edit an item that has been published. > > I have been through an Author, Approve, Deploy, Publish cycle and now want > to jump back to the beginning to edit the item. This is a capability we just added explicit support for in the 6.1 release of CMS. In the item administration page go to the 'summary' tab. If you have sufficient privileges you will be given a 'restart editing' link - this adds an additional set of 'Author, Approve, Deploy' tasks to the existing workflow allowing version two of the item to be created. Dan. -- |=- Daniel P. Berrange - berrange at redhat.com -=| |=- Red Hat, 338 Euston Road, London, NW1 3BT. +44 (0)7977 267 243 -=| |=- -=| |=- GnuPG: 7D3B9505 F3C9 553F A1DA 4AC2 5648 23C1 B3DF F742 7D3B 9505 -=| -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available URL: From tom415 at yahoo.com Wed Apr 28 17:39:13 2004 From: tom415 at yahoo.com (Tom Baik) Date: Wed, 28 Apr 2004 10:39:13 -0700 (PDT) Subject: [redhat-ccm-list] Getting a stylesheet compilation error. Please help. In-Reply-To: <20040428173842.C21313@redhat.com> Message-ID: <20040428173913.27756.qmail@web41001.mail.yahoo.com> Hi Daniel, Thanks for replying. I would like to change the setting for waf.web.server. Do you know where that parameter is set or resides? Thanks. Tom --- "Daniel P. Berrange" wrote: > On Sat, Apr 24, 2004 at 02:03:46PM -0700, Tom Baik wrote: > > I'm getting a stylesheet compilation error. The logs say that a > call > > is being made to this file > href="/__ccm__/servlet/content-type/index.xsl"/> but that file does > not > > exist. > > This is not a physical file - its autogenerated based on set of > contet > types you have installed. There are two possibilities that spring to > mind: > > > * The web.xml that is deployed is missing the mapping for this URL > '/__ccm__/servlet/content-type/index.xsl'. > > Or > > * The value of waf.web.host and waf.web.server are incorrect - eg > missing a port number, or a different port number to that in > apache / resin configs. > > Dan. > -- > |=- Daniel P. Berrange - berrange at redhat.com > -=| > |=- Red Hat, 338 Euston Road, London, NW1 3BT. +44 (0)7977 267 243 > -=| > |=- > -=| > |=- GnuPG: 7D3B9505 F3C9 553F A1DA 4AC2 5648 23C1 B3DF F742 7D3B > 9505 -=| > > ATTACHMENT part 2 application/pgp-signature __________________________________ Do you Yahoo!? Win a $20,000 Career Makeover at Yahoo! HotJobs http://hotjobs.sweepstakes.yahoo.com/careermakeover From richardl at redhat.com Wed Apr 28 17:45:49 2004 From: richardl at redhat.com (Richard Li) Date: Wed, 28 Apr 2004 13:45:49 -0400 Subject: [redhat-ccm-list] Getting a stylesheet compilation error. Please help. In-Reply-To: <20040428173913.27756.qmail@web41001.mail.yahoo.com> References: <20040428173913.27756.qmail@web41001.mail.yahoo.com> Message-ID: <408FEDCD.5050309@redhat.com> Tom, I highly recommend you read the documentation, e.g., the install guide. Many of your questions should be addressed there. We've spent a very large amount of time on the documentation in an attempt to make it as thorough as possible. If not, please let us know what's missing. See the chapter on application configuration for an answer to your question: http://www.redhat.com/docs/manuals/waf/rhea-ig-waf-en-6.1/ch-config-ccm.html Richard Tom Baik wrote: >Hi Daniel, > >Thanks for replying. I would like to change the setting for >waf.web.server. Do you know where that parameter is set or resides? >Thanks. > >Tom > > > > >--- "Daniel P. Berrange" wrote: > > >>On Sat, Apr 24, 2004 at 02:03:46PM -0700, Tom Baik wrote: >> >> >>>I'm getting a stylesheet compilation error. The logs say that a >>> >>> >>call >> >> >>>is being made to this file >>href="/__ccm__/servlet/content-type/index.xsl"/> but that file does >>> >>> >>not >> >> >>>exist. >>> >>> >>This is not a physical file - its autogenerated based on set of >>contet >>types you have installed. There are two possibilities that spring to >>mind: >> >> >> * The web.xml that is deployed is missing the mapping for this URL >> '/__ccm__/servlet/content-type/index.xsl'. >> >>Or >> >> * The value of waf.web.host and waf.web.server are incorrect - eg >> missing a port number, or a different port number to that in >> apache / resin configs. >> >>Dan. >>-- >>|=- Daniel P. Berrange - berrange at redhat.com >> -=| >>|=- Red Hat, 338 Euston Road, London, NW1 3BT. +44 (0)7977 267 243 >> -=| >>|=- >> -=| >>|=- GnuPG: 7D3B9505 F3C9 553F A1DA 4AC2 5648 23C1 B3DF F742 7D3B >>9505 -=| >> >> >> > > > >>ATTACHMENT part 2 application/pgp-signature >> >> > > > > > > >__________________________________ >Do you Yahoo!? >Win a $20,000 Career Makeover at Yahoo! HotJobs >http://hotjobs.sweepstakes.yahoo.com/careermakeover > > > > From berrange at redhat.com Wed Apr 28 17:48:14 2004 From: berrange at redhat.com (Daniel P. Berrange) Date: Wed, 28 Apr 2004 18:48:14 +0100 Subject: [redhat-ccm-list] Getting a stylesheet compilation error. Please help. In-Reply-To: <20040428173913.27756.qmail@web41001.mail.yahoo.com>; from tom415@yahoo.com on Wed, Apr 28, 2004 at 10:39:13AM -0700 References: <20040428173842.C21313@redhat.com> <20040428173913.27756.qmail@web41001.mail.yahoo.com> Message-ID: <20040428184814.I21313@redhat.com> On Wed, Apr 28, 2004 at 10:39:13AM -0700, Tom Baik wrote: > > Hi Daniel, > > Thanks for replying. I would like to change the setting for > waf.web.server. Do you know where that parameter is set or resides? All parameters are viewed/changed with the 'ccm' command line tool: eg, Change a param: ccm set foo.bar.wizz=something View a param: ccm get foo.bar.wizz View all params: ccm get --all Change many params with help! ccm set --interactive You can also browse the configuration database via developer support on your server. Go to: /ccm/ds/config/ Dan. -- |=- Daniel P. Berrange - berrange at redhat.com -=| |=- Red Hat, 338 Euston Road, London, NW1 3BT. +44 (0)7977 267 243 -=| |=- -=| |=- GnuPG: 7D3B9505 F3C9 553F A1DA 4AC2 5648 23C1 B3DF F742 7D3B 9505 -=| -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available URL: From tom415 at yahoo.com Wed Apr 28 17:51:17 2004 From: tom415 at yahoo.com (Tom Baik) Date: Wed, 28 Apr 2004 10:51:17 -0700 (PDT) Subject: [redhat-ccm-list] Getting a stylesheet compilation error. Please help. In-Reply-To: <408FEDCD.5050309@redhat.com> Message-ID: <20040428175117.42006.qmail@web41009.mail.yahoo.com> Thanks Richard, I found it just after I sent the email. I got the parameter set though it still didn't solve the problem. I apologize for all this inconvenience. Regards, Tom Baik --- Richard Li wrote: > Tom, > > I highly recommend you read the documentation, e.g., the install > guide. > Many of your questions should be addressed there. We've spent a very > large amount of time on the documentation in an attempt to make it as > > thorough as possible. If not, please let us know what's missing. See > the > chapter on application configuration for an answer to your question: > > http://www.redhat.com/docs/manuals/waf/rhea-ig-waf-en-6.1/ch-config-ccm.html > > Richard > > Tom Baik wrote: > > >Hi Daniel, > > > >Thanks for replying. I would like to change the setting for > >waf.web.server. Do you know where that parameter is set or resides? > > >Thanks. > > > >Tom > > > > > > > > > >--- "Daniel P. Berrange" wrote: > > > > > >>On Sat, Apr 24, 2004 at 02:03:46PM -0700, Tom Baik wrote: > >> > >> > >>>I'm getting a stylesheet compilation error. The logs say that a > >>> > >>> > >>call > >> > >> > >>>is being made to this file >>>href="/__ccm__/servlet/content-type/index.xsl"/> but that file > does > >>> > >>> > >>not > >> > >> > >>>exist. > >>> > >>> > >>This is not a physical file - its autogenerated based on set of > >>contet > >>types you have installed. There are two possibilities that spring > to > >>mind: > >> > >> > >> * The web.xml that is deployed is missing the mapping for this > URL > >> '/__ccm__/servlet/content-type/index.xsl'. > >> > >>Or > >> > >> * The value of waf.web.host and waf.web.server are incorrect - eg > >> missing a port number, or a different port number to that in > >> apache / resin configs. > >> > >>Dan. > >>-- > >>|=- Daniel P. Berrange - berrange at redhat.com > > >> -=| > >>|=- Red Hat, 338 Euston Road, London, NW1 3BT. +44 (0)7977 267 > 243 > >> -=| > >>|=- > > >> -=| > >>|=- GnuPG: 7D3B9505 F3C9 553F A1DA 4AC2 5648 23C1 B3DF F742 7D3B > >>9505 -=| > >> > >> > >> > > > > > > > >>ATTACHMENT part 2 application/pgp-signature > >> > >> > > > > > > > > > > > > > >__________________________________ > >Do you Yahoo!? > >Win a $20,000 Career Makeover at Yahoo! HotJobs > >http://hotjobs.sweepstakes.yahoo.com/careermakeover > > > > > > > > > > __________________________________ Do you Yahoo!? Win a $20,000 Career Makeover at Yahoo! HotJobs http://hotjobs.sweepstakes.yahoo.com/careermakeover From berrange at redhat.com Wed Apr 28 18:03:46 2004 From: berrange at redhat.com (Daniel P. Berrange) Date: Wed, 28 Apr 2004 19:03:46 +0100 Subject: [redhat-ccm-list] array parameter bug? In-Reply-To: <1081783850.2087.43.camel@draco.vnet>; from goldfish@i-manila.com.ph on Mon, Apr 12, 2004 at 11:31:31PM +0800 References: <1081783850.2087.43.camel@draco.vnet> Message-ID: <20040428190346.J21313@redhat.com> On Mon, Apr 12, 2004 at 11:31:31PM +0800, Jun Yamog wrote: > Hi, > > I would like to ask if there is a bug in ArrayParamter. Using a > MultipleSelect or an ArrayParameter as a Global state param makes the > values grow larger and larger. I have a test code that I have written > below to show this. I really need this in a real world scenario. In > the real world I have a form that serves as a filter of the paginated > results. What happens is after a couple of filters the query string > gets too long. I have tried several work-arounds, like using hidden var > and repopulating the multiple select. I think it boils that if the var > is a global and array parameter. I need it as global since external > stuff uses the form and also so the paginator can pickup the current > state of the filter form. > > Try the code below, you can comment out "addGlobalStateParam" and see > that it does not happen anymore. Is this a bug or am I not using > MultipleSelect properly? Thanks very much. I believe that if you have a parameter as both a global state param /and/ assigned to a form widget, then you need to call m_sel.setPassIn(true) At least I'm pretty sure this I what I used to do for one of our search forms that needed to accept a param passed in. Dan. -- |=- Daniel P. Berrange - berrange at redhat.com -=| |=- Red Hat, 338 Euston Road, London, NW1 3BT. +44 (0)7977 267 243 -=| |=- -=| |=- GnuPG: 7D3B9505 F3C9 553F A1DA 4AC2 5648 23C1 B3DF F742 7D3B 9505 -=| -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available URL: From berrange at redhat.com Wed Apr 28 18:16:19 2004 From: berrange at redhat.com (Daniel P. Berrange) Date: Wed, 28 Apr 2004 19:16:19 +0100 Subject: [redhat-ccm-list] SQL Server Port In-Reply-To: ; from steve@runtime-collective.com on Fri, Apr 23, 2004 at 01:37:06PM +0100 References: Message-ID: <20040428191619.L21313@redhat.com> On Fri, Apr 23, 2004 at 01:37:06PM +0100, Steve Crossan wrote: > Hi > > What would be involved in porting APLAWS Plus to a new database - > specifically SQL Server? > > Would it be a question of writing a lot of new SQL? Or is it more a > question of writing Java code to generate code for that database (or > generically, data store) from PDL? Is PDL completely database neutral? There are a handful of PDL files with named queries which are DB specific. Most of the work would be in the PL/SQL for the permissions and user / groups denormalizations and also making any neccessary changes to the MDSQL generator / optimizer. > And has anyone done any work in this area? Judging from a bunch of BugZilla tickets entered on the subject it sounds like Brett Prucha (pruchaba_bah at scrb.navy.mil) is doing some work in this area, but I've no idea what his plans are... eg, http://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=107917 Dan. -- |=- Daniel P. Berrange - berrange at redhat.com -=| |=- Red Hat, 338 Euston Road, London, NW1 3BT. +44 (0)7977 267 243 -=| |=- -=| |=- GnuPG: 7D3B9505 F3C9 553F A1DA 4AC2 5648 23C1 B3DF F742 7D3B 9505 -=| -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available URL: From berrange at redhat.com Wed Apr 28 18:21:43 2004 From: berrange at redhat.com (Daniel P. Berrange) Date: Wed, 28 Apr 2004 19:21:43 +0100 Subject: [redhat-ccm-list] xsession-errors In-Reply-To: <016901c42930$d2f272d0$0ed311d5@vaio>; from sergiusz.jarczyk@qresc.com on Fri, Apr 23, 2004 at 02:44:55PM +0200 References: <20040423111318.91882.qmail@web21407.mail.yahoo.com> <016901c42930$d2f272d0$0ed311d5@vaio> Message-ID: <20040428192143.M21313@redhat.com> On Fri, Apr 23, 2004 at 02:44:55PM +0200, Sergiusz Jarczyk wrote: > Hi > The df output you provided shows 100% root partition usage. As you didn't > create separate partition for /tmp, it's created on the root fs. Generally, > it's good practice to create separate partition for /tmp or even, for larger > production systems, provide one disk for it (just like with /var, for > example). I can't remember if its in RHL 8.0 or not, but I can heartily recommend using LVM when partitioning the system. Getting initial partition sizes correct is pretty tricky unless you've built alot of servers for a given application in the past. With LVM you don't have to worry, since you setup sizes on the lower side & then allocate extra space later - possibly spanning a single partition across several disks. As a very loose starting point if using LVM I'd go for 5 GB / 10 GB /opt 10 GB /var 1 GB /tmp 10 GB /usr Leaving the reamining 30 odd GB of disk space free to assign to various areas when required For a desktop system, I wouldn't bother partitioning without LVM, except perhaps a dedicated /home so that you can upgrade your distribution without loosing user data. Dan. -- |=- Daniel P. Berrange - berrange at redhat.com -=| |=- Red Hat, 338 Euston Road, London, NW1 3BT. +44 (0)7977 267 243 -=| |=- -=| |=- GnuPG: 7D3B9505 F3C9 553F A1DA 4AC2 5648 23C1 B3DF F742 7D3B 9505 -=| -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available URL: From dgregor at redhat.com Wed Apr 28 18:32:11 2004 From: dgregor at redhat.com (Dennis Gregorovic) Date: Wed, 28 Apr 2004 14:32:11 -0400 Subject: [redhat-ccm-list] Missing enterprise.init file In-Reply-To: <20040424223907.96746.qmail@web41011.mail.yahoo.com> References: <20040424223907.96746.qmail@web41011.mail.yahoo.com> Message-ID: <1083177131.14639.2.camel@toad.boston.redhat.com> In order to make any changes to enterprise.init, you'll need to extract it from the JAR first. See http://www.redhat.com/docs/manuals/waf/rhea-ig-waf-en-6.1/s1-prod-install-waf-config.html -- Dennis On Sat, 2004-04-24 at 18:39, Tom Baik wrote: > In my new installation of ccm WAF and CMS 6.1.0, I am missing the > "enterprise.init" file that the documentation indicates I should have. > > Would someone please provide some direction. Thanks. > > Regards, > Tom Baik > > > > > > > __________________________________ > Do you Yahoo!? > Yahoo! Photos: High-quality 4x6 digital prints for 25 > http://photos.yahoo.com/ph/print_splash > From tom415 at yahoo.com Wed Apr 28 19:10:56 2004 From: tom415 at yahoo.com (Tom Baik) Date: Wed, 28 Apr 2004 12:10:56 -0700 (PDT) Subject: [redhat-ccm-list] Missing enterprise.init file In-Reply-To: <1083177131.14639.2.camel@toad.boston.redhat.com> Message-ID: <20040428191056.26844.qmail@web41015.mail.yahoo.com> Thank you. Tom --- Dennis Gregorovic wrote: > In order to make any changes to enterprise.init, you'll need to > extract > it from the JAR first. See > http://www.redhat.com/docs/manuals/waf/rhea-ig-waf-en-6.1/s1-prod-install-waf-config.html > > -- Dennis > > On Sat, 2004-04-24 at 18:39, Tom Baik wrote: > > In my new installation of ccm WAF and CMS 6.1.0, I am missing the > > "enterprise.init" file that the documentation indicates I should > have. > > > > Would someone please provide some direction. Thanks. > > > > Regards, > > Tom Baik > > > > > > > > > > > > > > __________________________________ > > Do you Yahoo!? > > Yahoo! Photos: High-quality 4x6 digital prints for 25 > > http://photos.yahoo.com/ph/print_splash > > > > > -- > Redhat-ccm-list mailing list > Redhat-ccm-list at redhat.com > https://www.redhat.com/mailman/listinfo/redhat-ccm-list > Archives: https://www.redhat.com/pipermail/redhat-ccm-list/ __________________________________ Do you Yahoo!? Win a $20,000 Career Makeover at Yahoo! HotJobs http://hotjobs.sweepstakes.yahoo.com/careermakeover From tom415 at yahoo.com Wed Apr 28 19:15:59 2004 From: tom415 at yahoo.com (Tom Baik) Date: Wed, 28 Apr 2004 12:15:59 -0700 (PDT) Subject: [redhat-ccm-list] Getting a caching error. Was "Getting a stylesheet compilation error. Please help." In-Reply-To: <20040428173842.C21313@redhat.com> Message-ID: <20040428191559.49263.qmail@web41011.mail.yahoo.com> Thanks for helping with this. I did not have the waf.web.host parameter set and when I set it I finally was able to enter the CMS!!! Now I am getting the following error in the catalina-stdout.log file: ERROR caching.CacheServlet$HTTPRequester - Failure sending cache invalidate: http://localhost/expireCache?id=SiteNodeCache&key=%2Fcontent%2F&hash=381697369 The web.xml file seems to be configured properly. What else could be causing this error? Regards, Tom Baik --- "Daniel P. Berrange" wrote: > On Sat, Apr 24, 2004 at 02:03:46PM -0700, Tom Baik wrote: > > I'm getting a stylesheet compilation error. The logs say that a > call > > is being made to this file > href="/__ccm__/servlet/content-type/index.xsl"/> but that file does > not > > exist. > > This is not a physical file - its autogenerated based on set of > contet > types you have installed. There are two possibilities that spring to > mind: > > > * The web.xml that is deployed is missing the mapping for this URL > '/__ccm__/servlet/content-type/index.xsl'. > > Or > > * The value of waf.web.host and waf.web.server are incorrect - eg > missing a port number, or a different port number to that in > apache / resin configs. > > Dan. > -- > |=- Daniel P. Berrange - berrange at redhat.com > -=| > |=- Red Hat, 338 Euston Road, London, NW1 3BT. +44 (0)7977 267 243 > -=| > |=- > -=| > |=- GnuPG: 7D3B9505 F3C9 553F A1DA 4AC2 5648 23C1 B3DF F742 7D3B > 9505 -=| > > ATTACHMENT part 2 application/pgp-signature __________________________________ Do you Yahoo!? Win a $20,000 Career Makeover at Yahoo! HotJobs http://hotjobs.sweepstakes.yahoo.com/careermakeover From dgregor at redhat.com Wed Apr 28 19:58:27 2004 From: dgregor at redhat.com (Dennis Gregorovic) Date: Wed, 28 Apr 2004 15:58:27 -0400 Subject: [redhat-ccm-list] Getting a caching error. Was "Getting a stylesheet compilation error. Please help." In-Reply-To: <20040428191559.49263.qmail@web41011.mail.yahoo.com> References: <20040428191559.49263.qmail@web41011.mail.yahoo.com> Message-ID: <1083182306.14639.15.camel@toad.boston.redhat.com> It looks like what's going on here is that there is an errant entry in the database for the host [name=localhost, port=80]. You can check this out in psql by running "select * from web_hosts;". You *should* only have one row returned, with 'localhost' as the server name and '8080' as the port number. (This is assuming that your site is running off of http://localhost:8080/, which is what was indicated in previous emails) -- Dennis On Wed, 2004-04-28 at 15:15, Tom Baik wrote: > Thanks for helping with this. I did not have the waf.web.host > parameter set and when I set it I finally was able to enter the CMS!!! > > Now I am getting the following error in the catalina-stdout.log file: > > ERROR caching.CacheServlet$HTTPRequester - Failure sending cache > invalidate: > http://localhost/expireCache?id=SiteNodeCache&key=%2Fcontent%2F&hash=381697369 > > The web.xml file seems to be configured properly. What else could be > causing this error? > > Regards, > Tom Baik > > > > > > --- "Daniel P. Berrange" wrote: > > On Sat, Apr 24, 2004 at 02:03:46PM -0700, Tom Baik wrote: > > > I'm getting a stylesheet compilation error. The logs say that a > > call > > > is being made to this file > > href="/__ccm__/servlet/content-type/index.xsl"/> but that file does > > not > > > exist. > > > > This is not a physical file - its autogenerated based on set of > > contet > > types you have installed. There are two possibilities that spring to > > mind: > > > > > > * The web.xml that is deployed is missing the mapping for this URL > > '/__ccm__/servlet/content-type/index.xsl'. > > > > Or > > > > * The value of waf.web.host and waf.web.server are incorrect - eg > > missing a port number, or a different port number to that in > > apache / resin configs. > > > > Dan. > > -- > > |=- Daniel P. Berrange - berrange at redhat.com > > -=| > > |=- Red Hat, 338 Euston Road, London, NW1 3BT. +44 (0)7977 267 243 > > -=| > > |=- > > -=| > > |=- GnuPG: 7D3B9505 F3C9 553F A1DA 4AC2 5648 23C1 B3DF F742 7D3B > > 9505 -=| > > > > > ATTACHMENT part 2 application/pgp-signature > > > > > > > __________________________________ > Do you Yahoo!? > Win a $20,000 Career Makeover at Yahoo! HotJobs > http://hotjobs.sweepstakes.yahoo.com/careermakeover > From tom415 at yahoo.com Wed Apr 28 20:39:50 2004 From: tom415 at yahoo.com (Tom Baik) Date: Wed, 28 Apr 2004 13:39:50 -0700 (PDT) Subject: [redhat-ccm-list] Getting a caching error. Was "Getting a stylesheet compilation error. Please help." In-Reply-To: <1083182306.14639.15.camel@toad.boston.redhat.com> Message-ID: <20040428203950.63139.qmail@web41002.mail.yahoo.com> Okay, I get three row returned by running "select * from web_hosts;" with different port numbers and hosts that I've tried. Just to make sure I do this properly, what is the command to remove two of the rows? Thanks. Tom --- Dennis Gregorovic wrote: > It looks like what's going on here is that there is an errant entry > in > the database for the host [name=localhost, port=80]. You can check > this > out in psql by running "select * from web_hosts;". You *should* only > have one row returned, with 'localhost' as the server name and '8080' > as > the port number. (This is assuming that your site is running off of > http://localhost:8080/, which is what was indicated in previous > emails) > > -- Dennis > > On Wed, 2004-04-28 at 15:15, Tom Baik wrote: > > Thanks for helping with this. I did not have the waf.web.host > > parameter set and when I set it I finally was able to enter the > CMS!!! > > > > Now I am getting the following error in the catalina-stdout.log > file: > > > > ERROR caching.CacheServlet$HTTPRequester - Failure sending cache > > invalidate: > > > http://localhost/expireCache?id=SiteNodeCache&key=%2Fcontent%2F&hash=381697369 > > > > The web.xml file seems to be configured properly. What else could > be > > causing this error? > > > > Regards, > > Tom Baik > > > > > > > > > > > > --- "Daniel P. Berrange" wrote: > > > On Sat, Apr 24, 2004 at 02:03:46PM -0700, Tom Baik wrote: > > > > I'm getting a stylesheet compilation error. The logs say that > a > > > call > > > > is being made to this file > > > href="/__ccm__/servlet/content-type/index.xsl"/> but that file > does > > > not > > > > exist. > > > > > > This is not a physical file - its autogenerated based on set of > > > contet > > > types you have installed. There are two possibilities that spring > to > > > mind: > > > > > > > > > * The web.xml that is deployed is missing the mapping for this > URL > > > '/__ccm__/servlet/content-type/index.xsl'. > > > > > > Or > > > > > > * The value of waf.web.host and waf.web.server are incorrect - > eg > > > missing a port number, or a different port number to that in > > > apache / resin configs. > > > > > > Dan. > > > -- > > > |=- Daniel P. Berrange - berrange at redhat.com > > > > -=| > > > |=- Red Hat, 338 Euston Road, London, NW1 3BT. +44 (0)7977 267 > 243 > > > -=| > > > |=- > > > > -=| > > > |=- GnuPG: 7D3B9505 F3C9 553F A1DA 4AC2 5648 23C1 B3DF F742 > 7D3B > > > 9505 -=| > > > > > > > > ATTACHMENT part 2 application/pgp-signature > > > > > > > > > > > > > > __________________________________ > > Do you Yahoo!? > > Win a $20,000 Career Makeover at Yahoo! HotJobs > > http://hotjobs.sweepstakes.yahoo.com/careermakeover > > > __________________________________ Do you Yahoo!? Win a $20,000 Career Makeover at Yahoo! HotJobs http://hotjobs.sweepstakes.yahoo.com/careermakeover From dgregor at redhat.com Wed Apr 28 20:59:10 2004 From: dgregor at redhat.com (Dennis Gregorovic) Date: Wed, 28 Apr 2004 16:59:10 -0400 Subject: [redhat-ccm-list] Getting a caching error. Was "Getting a stylesheet compilation error. Please help." In-Reply-To: <20040428203950.63139.qmail@web41002.mail.yahoo.com> References: <20040428203950.63139.qmail@web41002.mail.yahoo.com> Message-ID: <1083185950.14639.25.camel@toad.boston.redhat.com> delete from web_hosts where host_id = ; replace with the host id value of the row that you want to delete. -- Dennis On Wed, 2004-04-28 at 16:39, Tom Baik wrote: > Okay, I get three row returned by running "select * from web_hosts;" > with different port numbers and hosts that I've tried. Just to make > sure I do this properly, what is the command to remove two of the rows? > Thanks. > > Tom > > > > --- Dennis Gregorovic wrote: > > It looks like what's going on here is that there is an errant entry > > in > > the database for the host [name=localhost, port=80]. You can check > > this > > out in psql by running "select * from web_hosts;". You *should* only > > have one row returned, with 'localhost' as the server name and '8080' > > as > > the port number. (This is assuming that your site is running off of > > http://localhost:8080/, which is what was indicated in previous > > emails) > > > > -- Dennis > > > > On Wed, 2004-04-28 at 15:15, Tom Baik wrote: > > > Thanks for helping with this. I did not have the waf.web.host > > > parameter set and when I set it I finally was able to enter the > > CMS!!! > > > > > > Now I am getting the following error in the catalina-stdout.log > > file: > > > > > > ERROR caching.CacheServlet$HTTPRequester - Failure sending cache > > > invalidate: > > > > > > http://localhost/expireCache?id=SiteNodeCache&key=%2Fcontent%2F&hash=381697369 > > > > > > The web.xml file seems to be configured properly. What else could > > be > > > causing this error? > > > > > > Regards, > > > Tom Baik > > > > > > > > > > > > > > > > > > --- "Daniel P. Berrange" wrote: > > > > On Sat, Apr 24, 2004 at 02:03:46PM -0700, Tom Baik wrote: > > > > > I'm getting a stylesheet compilation error. The logs say that > > a > > > > call > > > > > is being made to this file > > > > href="/__ccm__/servlet/content-type/index.xsl"/> but that file > > does > > > > not > > > > > exist. > > > > > > > > This is not a physical file - its autogenerated based on set of > > > > contet > > > > types you have installed. There are two possibilities that spring > > to > > > > mind: > > > > > > > > > > > > * The web.xml that is deployed is missing the mapping for this > > URL > > > > '/__ccm__/servlet/content-type/index.xsl'. > > > > > > > > Or > > > > > > > > * The value of waf.web.host and waf.web.server are incorrect - > > eg > > > > missing a port number, or a different port number to that in > > > > apache / resin configs. > > > > > > > > Dan. > > > > -- > > > > |=- Daniel P. Berrange - berrange at redhat.com > > > > > > -=| > > > > |=- Red Hat, 338 Euston Road, London, NW1 3BT. +44 (0)7977 267 > > 243 > > > > -=| > > > > |=- > > > > > > -=| > > > > |=- GnuPG: 7D3B9505 F3C9 553F A1DA 4AC2 5648 23C1 B3DF F742 > > 7D3B > > > > 9505 -=| > > > > > > > > > > > ATTACHMENT part 2 application/pgp-signature > > > > > > > > > > > > > > > > > > > > > __________________________________ > > > Do you Yahoo!? > > > Win a $20,000 Career Makeover at Yahoo! HotJobs > > > http://hotjobs.sweepstakes.yahoo.com/careermakeover > > > > > > > > > > > __________________________________ > Do you Yahoo!? > Win a $20,000 Career Makeover at Yahoo! HotJobs > http://hotjobs.sweepstakes.yahoo.com/careermakeover From tom415 at yahoo.com Wed Apr 28 21:17:26 2004 From: tom415 at yahoo.com (Tom Baik) Date: Wed, 28 Apr 2004 14:17:26 -0700 (PDT) Subject: [redhat-ccm-list] Getting a caching error. Was "Getting a stylesheet compilation error. Please help." In-Reply-To: <1083185950.14639.25.camel@toad.boston.redhat.com> Message-ID: <20040428211726.16172.qmail@web41005.mail.yahoo.com> Hi Dennis, Thanks for your continued help. I am now getting the following error when I try deleting the row: "lucene_ids_host_id_f_fcxb8 referential integrity violation - key in web_hosts still referenced from lucene_ids" Please help? Tom --- Dennis Gregorovic wrote: > delete from web_hosts where host_id = ; > > replace with the host id value of the row that you want to > delete. > > -- Dennis > > On Wed, 2004-04-28 at 16:39, Tom Baik wrote: > > Okay, I get three row returned by running "select * from > web_hosts;" > > with different port numbers and hosts that I've tried. Just to > make > > sure I do this properly, what is the command to remove two of the > rows? > > Thanks. > > > > Tom > > > > > > > > --- Dennis Gregorovic wrote: > > > It looks like what's going on here is that there is an errant > entry > > > in > > > the database for the host [name=localhost, port=80]. You can > check > > > this > > > out in psql by running "select * from web_hosts;". You *should* > only > > > have one row returned, with 'localhost' as the server name and > '8080' > > > as > > > the port number. (This is assuming that your site is running off > of > > > http://localhost:8080/, which is what was indicated in previous > > > emails) > > > > > > -- Dennis > > > > > > On Wed, 2004-04-28 at 15:15, Tom Baik wrote: > > > > Thanks for helping with this. I did not have the waf.web.host > > > > parameter set and when I set it I finally was able to enter the > > > CMS!!! > > > > > > > > Now I am getting the following error in the catalina-stdout.log > > > file: > > > > > > > > ERROR caching.CacheServlet$HTTPRequester - Failure sending > cache > > > > invalidate: > > > > > > > > > > http://localhost/expireCache?id=SiteNodeCache&key=%2Fcontent%2F&hash=381697369 > > > > > > > > The web.xml file seems to be configured properly. What else > could > > > be > > > > causing this error? > > > > > > > > Regards, > > > > Tom Baik > > > > > > > > > > > > > > > > > > > > > > > > --- "Daniel P. Berrange" wrote: > > > > > On Sat, Apr 24, 2004 at 02:03:46PM -0700, Tom Baik wrote: > > > > > > I'm getting a stylesheet compilation error. The logs say > that > > > a > > > > > call > > > > > > is being made to this file > > > > > href="/__ccm__/servlet/content-type/index.xsl"/> but that > file > > > does > > > > > not > > > > > > exist. > > > > > > > > > > This is not a physical file - its autogenerated based on set > of > > > > > contet > > > > > types you have installed. There are two possibilities that > spring > > > to > > > > > mind: > > > > > > > > > > > > > > > * The web.xml that is deployed is missing the mapping for > this > > > URL > > > > > '/__ccm__/servlet/content-type/index.xsl'. > > > > > > > > > > Or > > > > > > > > > > * The value of waf.web.host and waf.web.server are incorrect > - > > > eg > > > > > missing a port number, or a different port number to that > in > > > > > apache / resin configs. > > > > > > > > > > Dan. > > > > > -- > > > > > |=- Daniel P. Berrange - berrange at redhat.com > > > > > > > > > -=| > > > > > |=- Red Hat, 338 Euston Road, London, NW1 3BT. +44 (0)7977 > 267 > > > 243 > > > > > -=| > > > > > |=- > > > > > > > > > -=| > > > > > |=- GnuPG: 7D3B9505 F3C9 553F A1DA 4AC2 5648 23C1 B3DF F742 > > > 7D3B > > > > > 9505 -=| > > > > > > > > > > > > > > ATTACHMENT part 2 application/pgp-signature > > > > > > > > > > > > > > > > > > > > > > > > > > > > __________________________________ > > > > Do you Yahoo!? > > > > Win a $20,000 Career Makeover at Yahoo! HotJobs > > > > http://hotjobs.sweepstakes.yahoo.com/careermakeover > > > > > > > > > > > > > > > > > > > __________________________________ > > Do you Yahoo!? > > Win a $20,000 Career Makeover at Yahoo! HotJobs > > http://hotjobs.sweepstakes.yahoo.com/careermakeover > __________________________________ Do you Yahoo!? Win a $20,000 Career Makeover at Yahoo! HotJobs http://hotjobs.sweepstakes.yahoo.com/careermakeover From vadimn at redhat.com Wed Apr 28 21:25:54 2004 From: vadimn at redhat.com (Vadim Nasardinov) Date: Wed, 28 Apr 2004 17:25:54 -0400 Subject: [redhat-ccm-list] Getting a caching error. Was "Getting a stylesheet compilation error. Please help." In-Reply-To: <20040428211726.16172.qmail@web41005.mail.yahoo.com> References: <20040428211726.16172.qmail@web41005.mail.yahoo.com> Message-ID: <200404281725.54911@vadim.nasardinov> On Wednesday 28 April 2004 17:17, Tom Baik wrote: > I am now getting the following error when I try deleting the row: > > "lucene_ids_host_id_f_fcxb8 referential integrity violation - key in > web_hosts still referenced from lucene_ids" ... > --- Dennis Gregorovic wrote: > > delete from web_hosts where host_id = ; delete from lucene_ids where host_id = ; delete from web_hosts where host_id = ; From jeff.hoffman at pgdc.com Thu Apr 29 02:53:36 2004 From: jeff.hoffman at pgdc.com (Jeff Hoffman) Date: Wed, 28 Apr 2004 22:53:36 -0400 Subject: [redhat-ccm-list] Getting JSP to work in 6.1 Message-ID: <40906E30.7000606@pgdc.com> Hello, I am trying to get a "Hello, world!"-type JSP application up and running on 6.1. I have done the following: 1. Created a project called 'myjspapp'. 2. Placed a web.xml file in myjspapp/myjspapp/web/WEB-INF. 3. Created a loader to create an instance of my app on /ccm/myjspapp. 4. Tested that it worked with my own servlet, much like the Binder example's servlet (just a simple output.) 5. Changed to the JSPApplicationDispatcher in web.xml: ... myjspapp com.arsdigita.dispatcher.JSPApplicationDispatcher myjspapp /* ... 6. Placed a JSP file in myjspapp/myjspapp/web/index.jsp 7. I get the following error when pulling /ccm/myjspapp/index.jsp: 404 Not Found /myjspapp/__ccm__/servlet/legacy-adapter/ was not found on this server. Any ideas? Thanks. --- Jeff K. Hoffman Chief Technology Officer Planned Giving Design Center From dhanyapunni at rediffmail.com Thu Apr 29 03:40:55 2004 From: dhanyapunni at rediffmail.com (dhanya unni) Date: 29 Apr 2004 03:40:55 -0000 Subject: [redhat-ccm-list] CMS 6.0 Message-ID: <20040429034055.29250.qmail@webmail32.rediffmail.com> An HTML attachment was scrubbed... URL: -------------- next part -------------- ? Hi, I am new to CMS. I went thru the CMS Developer Guide at https://www.redhat.com/docs/manuals/cms/rhea-dg-cms-en-6.1/. I found a lot of example code in it. But I couldnt figure out where some of the code is supposed to be put. Can someone help me out? I want to know how to make those example codes work. Is there any document which will tell me where I am supposed to write the code, and how I am supposed to run it? Thanks and Regards, Dhanya. From David.Young at southoxon.gov.uk Thu Apr 29 09:40:26 2004 From: David.Young at southoxon.gov.uk (David Young) Date: Thu, 29 Apr 2004 10:40:26 +0100 Subject: [redhat-ccm-list] Aplaws Job Content Type File Attachments Message-ID: I added the following to the aplaws-cms-item-adapters.xml file: Which worked, thank you! David >>> "Daniel P. Berrange" 28/04/2004 17:43:18 >>> On Tue, Apr 27, 2004 at 12:39:00PM +0100, David Young wrote: > Hi, > > We are hoping to modify the default 'job' content type so that it can > display file attachments. The content type seems to support file > attachments as the cms backend allows the attachment of files, and > checking the database tables show that the association exists. However > the attachments do not seem to appear in the rendered xml. At what > stage / which source files do I need to look at to enable the display of > these attachments. All content types automatically have asupportt for file attachments without need for any code modifications. If the files are not being listed in the XML, then the 'aplaws-item-adapters.xml' must be missing the rule to include them for Job - compare the Job rules with those for Article identify the missing rules. Dan. -- |=- Daniel P. Berrange - berrange at redhat.com -=| |=- Red Hat, 338 Euston Road, London, NW1 3BT. +44 (0)7977 267 243 -=| |=- -=| |=- GnuPG: 7D3B9505 F3C9 553F A1DA 4AC2 5648 23C1 B3DF F742 7D3B 9505 -=| ********************************************************************** The information contained in this transmission may be confidential and may also be the subject of legal professional privilege. If you are not the intended recipient, any use, disclosure or copying of any part of this transmission is unauthorised. If you have received this transmission in error, please notify the originator immediately. www.southoxon.gov.uk ********************************************************************** From berrange at redhat.com Thu Apr 29 09:53:14 2004 From: berrange at redhat.com (Daniel P. Berrange) Date: Thu, 29 Apr 2004 10:53:14 +0100 Subject: [redhat-ccm-list] Getting a caching error. Was "Getting a stylesheet compilation error. Please help." In-Reply-To: <20040428203950.63139.qmail@web41002.mail.yahoo.com>; from tom415@yahoo.com on Wed, Apr 28, 2004 at 01:39:50PM -0700 References: <1083182306.14639.15.camel@toad.boston.redhat.com> <20040428203950.63139.qmail@web41002.mail.yahoo.com> Message-ID: <20040429105314.A21998@redhat.com> On Wed, Apr 28, 2004 at 01:39:50PM -0700, Tom Baik wrote: > > Okay, I get three row returned by running "select * from web_hosts;" > with different port numbers and hosts that I've tried. Just to make > sure I do this properly, what is the command to remove two of the rows? > Thanks. When you don't get the waf.web.host parmeter right first time around things start getting messy - the most reliable way is to drop your datbase & reload from scratch with the correct parameters to start with. Dan. -- |=- Daniel P. Berrange - berrange at redhat.com -=| |=- Red Hat, 338 Euston Road, London, NW1 3BT. +44 (0)7977 267 243 -=| |=- -=| |=- GnuPG: 7D3B9505 F3C9 553F A1DA 4AC2 5648 23C1 B3DF F742 7D3B 9505 -=| -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available URL: From berrange at redhat.com Thu Apr 29 10:18:53 2004 From: berrange at redhat.com (Daniel P. Berrange) Date: Thu, 29 Apr 2004 11:18:53 +0100 Subject: [redhat-ccm-list] Getting JSP to work in 6.1 In-Reply-To: <40906E30.7000606@pgdc.com>; from jeff.hoffman@pgdc.com on Wed, Apr 28, 2004 at 10:53:36PM -0400 References: <40906E30.7000606@pgdc.com> Message-ID: <20040429111853.B21998@redhat.com> On Wed, Apr 28, 2004 at 10:53:36PM -0400, Jeff Hoffman wrote: > Hello, > > I am trying to get a "Hello, world!"-type JSP application up and running > on 6.1. I have done the following: > > 1. Created a project called 'myjspapp'. > > 2. Placed a web.xml file in myjspapp/myjspapp/web/WEB-INF. > > 3. Created a loader to create an instance of my app on /ccm/myjspapp. > > 4. Tested that it worked with my own servlet, much like the Binder > example's servlet (just a simple output.) > > 5. Changed to the JSPApplicationDispatcher in web.xml: > > ... > > myjspapp > > com.arsdigita.dispatcher.JSPApplicationDispatcher > > > > myjspapp > /* > > ... > > 6. Placed a JSP file in myjspapp/myjspapp/web/index.jsp > > 7. I get the following error when pulling /ccm/myjspapp/index.jsp: > > 404 Not Found > > /myjspapp/__ccm__/servlet/legacy-adapter/ was not found on this server. The base implementation of the c.a.web.Application class is setup for legacy SiteNode / PackageInstance support - so requests will be served from the root webapp with your Dispatcher implementation. This is obviously not what you want for new applications, so in your subclass of Application you need to override the methods: public String getContextPath() { return "/ccm-ldn-terms"; } public String getServletPath() { return "/files"; } The 'getContextPath' should return the name of your private webapp deployment directory (as specified in the name attribute in your application.xml file). The 'getServletPath' should return the path of the main servlet mapping in your web.xml - in your case since you've mapped in to '/' i believe you just need to return '' (ie empty string). One tip I'd recommend is to not use the JSPApplicationDispatcher, but instead use 'c.a.web.ApplicationFileServlet' and map it into '/files/*'. Take a look at any of the APLAWS+ applications[1] for examples of this in practice - in particular the 'ccm-ldn-terms' application is the one I consider to be closest to 'ideal best practice'. Also, don't forget to add in a declaration for the com.arsdigita.web.ContextRegistrationServlet in your web.xml Dan. [1] Download source for these from aplaws.sourceforge.net -- |=- Daniel P. Berrange - berrange at redhat.com -=| |=- Red Hat, 338 Euston Road, London, NW1 3BT. +44 (0)7977 267 243 -=| |=- -=| |=- GnuPG: 7D3B9505 F3C9 553F A1DA 4AC2 5648 23C1 B3DF F742 7D3B 9505 -=| -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available URL: From goldfish at i-manila.com.ph Fri Apr 30 17:02:51 2004 From: goldfish at i-manila.com.ph (Jun Yamog) Date: 01 May 2004 01:02:51 +0800 Subject: [redhat-ccm-list] array parameter bug? In-Reply-To: <20040428190346.J21313@redhat.com> References: <1081783850.2087.43.camel@draco.vnet> <20040428190346.J21313@redhat.com> Message-ID: <1083344571.3615.2.camel@draco.vnet> Hi Daniel, I almost forgot to reply. setPassIn(true) did not help to solve the problem. The problem is not if the value are retained but the problem is continues submission will add more and more to the url until it reaches the server limit. Thanks. Jun On Thu, 2004-04-29 at 02:03, Daniel P. Berrange wrote: > On Mon, Apr 12, 2004 at 11:31:31PM +0800, Jun Yamog wrote: > > Hi, > > > > I would like to ask if there is a bug in ArrayParamter. Using a > > MultipleSelect or an ArrayParameter as a Global state param makes the > > values grow larger and larger. I have a test code that I have written > > below to show this. I really need this in a real world scenario. In > > the real world I have a form that serves as a filter of the paginated > > results. What happens is after a couple of filters the query string > > gets too long. I have tried several work-arounds, like using hidden var > > and repopulating the multiple select. I think it boils that if the var > > is a global and array parameter. I need it as global since external > > stuff uses the form and also so the paginator can pickup the current > > state of the filter form. > > > > Try the code below, you can comment out "addGlobalStateParam" and see > > that it does not happen anymore. Is this a bug or am I not using > > MultipleSelect properly? Thanks very much. > > I believe that if you have a parameter as both a global state > param /and/ assigned to a form widget, then you need to call > > m_sel.setPassIn(true) > > At least I'm pretty sure this I what I used to do for one of our > search forms that needed to accept a param passed in. > > Dan.