Sorry, I was under the impression that you had it running on Windows and now switched to Unix. I'm not an expert either but .war files belong in the Tomcat webapps directory, so I would put it there. It probably contains the everything in the webapp dir. A .war file is just a zipped file that you can check out with e.g. winzip on you windows machine. On Unix you could use gzip, but check for the commandline options. If you're running a graphical desktop on you unix machine, it probably has a winzip equivalent.
Bye, Helma > -----Original Message----- > From: beyaRecords - The home Urban music > [mailto:[EMAIL PROTECTED] > Sent: Saturday, 27 December 2003 00:04 > To: [EMAIL PROTECTED] > Subject: Re: Cocoon build 2.1.3 Question > > > Hi Helma, > thanks for you rely, but you never answered my question. > where do I put > the webapp folder which is part of the cocoon-2.1.3 build? As for the > windows issue, I have never run cocoon on windows either this the > first time!! > > Uzo > On 26 Dec 2003, at 22:58, [EMAIL PROTECTED] wrote: > > > It's on Unix no different than on Windows, so do exactly the same I > > would > > say. > > > > Bye, Helma > > > >> -----Original Message----- > >> From: beyaRecords - The home Urban music > >> [mailto:[EMAIL PROTECTED] > >> Sent: Friday, 26 December 2003 23:24 > >> To: [EMAIL PROTECTED] > >> Subject: Cocoon build 2.1.3 Question > >> > >> > >> hi, > >> I am completely new to the unix environment, having come > the windows > >> arena, so have a little pity on a brother ;-) > >> > >> I have just built cocoon version 2.1.3 successfully and have > >> been left > >> with a build directory containing 2 folders cocoon-2.1.3 and > >> webapp. My > >> question is I presume that cocoon-2.1.3 goes into the root > >> of tomcat > >> along with cocoon.war, but where does webapp or the contents > >> of webapp > >> go? > >> > >> regards > >> > >> Uzo > >> On 26 Dec 2003, at 21:03, [EMAIL PROTECTED] wrote: > >> > >>> Hi, > >>> > >>> I know I've read about this somewhere but I can't find it > >> any more. > >>> When I > >>> run the flowscript below I see the result of the last print() > >>> statement, but > >>> cocoon does not proceed to execute the pipeline, instead I > >> get a blank > >>> page > >>> with a continuation ID as URL. What is wrong? > >>> > >>> cocoon.load("resource://org/apache/cocoon/woody/flow/javascript/ > >>> woody2.js"); > >>> function myFlowScript() { > >>> var form = new Form("content/myWoodyFlowDef.xml"); > >>> var finished = false; > >>> var errMsg = ""; > >>> > >>> while(!finished) { > >>> print ("before form" + new java.util.Date()); > >>> var model = form.getModel(); > >>> > >>> form.showForm("myWoodyFlow.form", { "message" : > >> errMsg }); > >>> > >>> if (model.data = valid) { > >>> print("valid form"); > >>> finished = true; > >>> } > >>> if (!finished) { > >>> errMsg = "error, data is not valid"; > >>> } > >>> else { > >>> errMsg = ""; > >>> } > >>> print ("finished = " + finished + ", " > >> + errMsg + > >>> "-"); > >>> } // end while > >>> > >>> print("after while"); > >>> cocoon.sendPage("login-success-pipeline"); > >>> } > >>> > >>> > >> > --------------------------------------------------------------------- > >>> To unsubscribe, e-mail: [EMAIL PROTECTED] > >>> For additional commands, e-mail: [EMAIL PROTECTED] > >>> > >> > >> > >> > --------------------------------------------------------------------- > >> To unsubscribe, e-mail: [EMAIL PROTECTED] > >> For additional commands, e-mail: [EMAIL PROTECTED] > >> > > > > > --------------------------------------------------------------------- > > To unsubscribe, e-mail: [EMAIL PROTECTED] > > For additional commands, e-mail: [EMAIL PROTECTED] > > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
