Parameters with portal

2004-12-30 Thread javascript
I need help with portal engine. I am creating a form in a coplet but when I try to transfer the parameters from a page to another in the same coplet, these do not come added to the sequence and I have one similar that: edit.do?page=index?copletid=app-wiki-1 instead that:

Re: Parameters with portal

2004-12-30 Thread Carsten Ziegeler
javascript wrote: I need help with portal engine. I am creating a form in a coplet but when I try to transfer the parameters from a page to another in the same coplet, these do not come added to the sequence and I have one similar that: edit.do?page=index?copletid=app-wiki-1 instead that:

Re: Parameters with portal

2004-12-30 Thread javascript
Carsten Ziegeler wrote: javascript wrote: I need help with portal engine. I am creating a form in a coplet but when I try to transfer the parameters from a page to another in the same coplet, these do not come added to the sequence and I have one similar that:

RE: Flowscript does not working on weblogic 8.1

2004-12-30 Thread Josias Thoeny
Hi, On Mar, 21 de Diciembre de 2004, 8:09, Leonid Chumanov dijo: Thanks for help I add rhino lib to C:\bea\jdk142_04\jre\lib\endorsed and prefer-web-inf-classestrue/prefer-web-inf-classes to weblogic.xml Now I do not have ClassCastException But I have new exception

Initialization Problem

2004-12-30 Thread kodjo baah
I am using tomcat 5.0.28. I downloaded the sources for cocoon-2.1.5.1 and cocoon-2.1.6. I am able to run the build.bat file without any problems. But when i deploy it and try to run it, i get the following error: starting and stopping tomcat does not seem to have any effect on the problem..

set variable in jx generator file

2004-12-30 Thread gounis
hi all some hours before the new year i decide to take a look at jx generator my qustion is if it's possible to have something like this jx:set var=path value=${parameters.getParameter('contextPath')}+'myapp/'/ so the ${path} can be used after this set in the xml document? regards --stavros

Initialization Problem

2004-12-30 Thread kodjo baah
I am using tomcat 5.0.28. I downloaded the sources for cocoon-2.1.5.1 and cocoon-2.1.6. I am able to run the build.bat file without any problems. But when i deploy it and try to run it, i get the following error: starting and stopping tomcat does not seem to have any effect on the problem..

RE: Still challenged with building Cocoon in Eclipse

2004-12-30 Thread H . vanderLinden
Sorry I missed this post because it got mixed in the rest of the Cocoon users posts while I expected it to show up in my inbox only. I have looked at external tools and ant build... and noticed what the difference is: If you right click on the the build.xml file in your Cocoon repository and

RE: set variable in jx generator file

2004-12-30 Thread Adam Ratcliffe
Hi Stavros Try this: jx:set var=path value=${cocoon.parameters.contextPath.concat('myapp/')}/ or alternatively you could use the '+' operator which is overloaded by the Jexl expression language to be used for String concatenation. Jexl allows you to access bean properties using dot notation,

RE: Initialization Problem

2004-12-30 Thread Adam Ratcliffe
It looks like you are missing the Cocoon/Avalon jar files, they should be in your application's WEB-INF/lib directory. Can you run the webappin your Cocoon build directory, using the command 'cocoon servlet' on Windows or './cocoon.sh servlet' on *nix? Cheers Adam -Original