RE: Saxon and Cocoon

2002-05-27 Thread Graaf, Edgar de (fin)
So I noticed. In some situation I get a null pointer exception... Thanks I will try that version -Oorspronkelijk bericht- Van: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Verzonden: vrijdag 24 mei 2002 18:49 Aan: [EMAIL PROTECTED] Onderwerp: Re: Saxon and Cocoon Edgar: Be aware that

Re: Xinclude Problem

2002-05-27 Thread Margrit John
In the Browser I get the following error statement: root cause java.lang.OutOfMemoryError Cocoon runs properly, if I remove all the xi:include (in the xml- and xslt- and xsp-files) Are the xi:include really the problem? Do you have a stack trace from the log?

AW: i18n where to do it?

2002-05-27 Thread Andres, Judith
Hi, 1) you could invoke the I18nTransformer after you invoke the TraxTransformer. This implies that you use just keys instead of the real text in the stylesheet. This way there would be no need to have the semi-abstract level. 2) you could provide an action that writes the user locale into a

TreeProcessor performance

2002-05-27 Thread Graaf, Edgar de (fin)
Hi, Recently I installed the TreeProcessor instead of compiling. Everyone says it is faster then compiling the sitemap, so I didn't test it. Then I installed Saxon and tot test Saxon I did a Jmeter test. My application collapsed from 6 seconds average response time to 20 seconds!? So I put xalan

RE: i18n where to do it?

2002-05-27 Thread Hahn Kurt (CHA)
In my transformations, I'm using the first method below. Thus, the i18n transformer is the last (or second-last) transformer you have to invoke, after having applied any other transformation in a language-neutral way. -Message d'origine- De : Andres, Judith [mailto:[EMAIL PROTECTED]]

Design choices for a cocoon application. (long)

2002-05-27 Thread TREGAN Fabien
Hi, note This mail is a little longer than I'd like. My goal here is not to have my job made by other people, but to summarize experience of other people and make a doc that will intereste many cocoon users. BTW if you want to make my job for me, let me know. My question may not be very

Re: TreeProcessor performance

2002-05-27 Thread Sylvain Wallez
Graaf, Edgar de (fin) wrote: Hi, Recently I installed the TreeProcessor instead of compiling. Everyone says it is faster then compiling the sitemap, so I didn't test it. Then I installed Saxon and tot test Saxon I did a Jmeter test. My application collapsed from 6 seconds average response time

Re: TreeProcessor performance

2002-05-27 Thread Olivier Rossel
COuld you please give us your bench with a brand new version of the sitemap.xmap (for example, edit it, change a line, save the file, measure the perf with a given processor, and reprocess all that for each processor). On a slow 128MB machine, sitemap compilation takes ages to complete.

RE: TreeProcessor performance

2002-05-27 Thread Graaf, Edgar de (fin)
I don't know exactly what you mean. However I only have one computer, a 196 MB Pentium 233 MhZ. If that isn't slow... Everyone says the treeprocessor is much faster, that is why this suprised me so much. Of course when I change stuff the treeprocessor will be faster. But it has to be faster when

cannot deploy on JBoss 3

2002-05-27 Thread Charles Wishpot
Hi, I'm trying to drop the cocoon.war file into the deploy directory of JBoss3 RC1, which uses Catalina (TomCat 4.0.3). But I get the following error (see below) - NullPointerException trying to put the default context. I've tried just deploying the .war file which fails. So I've tried the

RE: Tomcat error, BeginnerQuestion

2002-05-27 Thread Graaf, Edgar de (fin)
Okay, great. But what I tried to tell you is that we need more information to help you: * What are you trying to do? Installing a new Xalan? Why as far as I know Cocoon 2.0.2 already uses the newest Xalan. * Why do you change web.xml? (Since that is not needed when you place a new jar in a lib

RE: how do I redirect in an Action?

2002-05-27 Thread Graaf, Edgar de (fin)
It totally depends on what you want to replace with your resource... if you have the pipeline like: == map:pipeline ... ... map:match pattern=page1.html map:generate src=page1.xml/ map:transform

RE: How can I use a different XSLT Processor?

2002-05-27 Thread Graaf, Edgar de (fin)
Thanx, I will try it out -Oorspronkelijk bericht- Van: Stephen Ng [mailto:[EMAIL PROTECTED]] Verzonden: vrijdag 24 mei 2002 14:50 Aan: [EMAIL PROTECTED] Onderwerp: RE: How can I use a different XSLT Processor? Although I was never totally successful with this, AFAIK this is what you

renewed Newbie Question

2002-05-27 Thread Jens Nie
Hi cocooners, i just asked that question a couple of days before, but did not receive any response to it. And i suppose it's simple for you gurus. So i'm about to try again. I have installed the jakarta-tomcat and cocoon packages shipped with the Suse-8.0 LinuX-Distribution. The examples

Cocoon on BEA Weblogic6.1 SP2

2002-05-27 Thread Atul Gulve
Hi, I have deployed cocoon(2.0.1) application on bea WebLogic6.1 SP2. The first cocoon welcome page is shown properly. Now, the problem I am facing is, bea is not loading sub sitemaps. I am getting following error on the browser. Cocoon 2 - Internal server error

RE: How can I use a different XSLT Processor?

2002-05-27 Thread Graaf, Edgar de (fin)
NullPointers and other strange error seemed to be solved. I still have to test it with JMeter. If it stands that, great... Thanks Edgar -Oorspronkelijk bericht- Van: Stephen Ng [mailto:[EMAIL PROTECTED]] Verzonden: vrijdag 24 mei 2002 14:50 Aan: [EMAIL PROTECTED] Onderwerp: RE: How can

RE: renewed Newbie Question

2002-05-27 Thread TREGAN Fabien
But what do i have to do, if i would like to dynamical transform XML to XHTML in a userhompage? Say be trying to access http://myserver/~user/hello-page.xml? All you have to do is tell tomcat (or whatever servlet container you use) send (or redirect), http://myserver/~* to your cocoon app.

AW: Cocoon on BEA Weblogic6.1 SP2

2002-05-27 Thread Peter, Reto
I'he succesfully deployed Cocoon on BEA WebLogic 6.1 SP2 on SUN Solaris 7/8 You have to do different things in the configuration of Cocoon and BEA: (first shutdown BEA WebLogic) 1. The cocoon Libraries consists of '.' in the names. Eliminated them. 2. Mostly cocoon Libraries consists the file

Jtidy and character escaping

2002-05-27 Thread Bert Van Kets
I'm using JTidy to convert a string containing some HTML to XHTML in a DOM tree. I can't get the foreign characters like éèà converted to the XHTML counterpart. What setting do I need to use??? Here's a code snip from my XSP page: String strContent = request.getParameter(content);

Re: AW: Cocoon on BEA Weblogic6.1 SP2

2002-05-27 Thread Atul Gulve
Hi Reto, Thanks for your reply. I want to deploy this application on Windows 2000. So I suppose I dont have to do step 4(PJA X-Window server). Rest of the steps, I have already done. I have added two patches from bea in my classpath. I have the welcome page of cocoon (Cocoon 2.0.1 default

RE: Jtidy and character escaping

2002-05-27 Thread Manos Batsis
Bert, Please use the appropriate mailing list for Jtidy; that's your best bet. You can find related info at [1]. [1] http://lempinen.net/sami/jtidy/ Hth, Manos -Original Message- From: Bert Van Kets [mailto:[EMAIL PROTECTED]] Sent: Monday, May 27, 2002 3:07 PM To: [EMAIL

RE: renewed Newbie Question

2002-05-27 Thread Graaf, Edgar de (fin)
If I understand you correctly you want users to be able to place xml in cocoon that is processed by cocoon. Well: 1. Create a subdirectory in ../cocoon/ 2. Mount that directory (in the sitemap.xmap of /cocoon/) 3. In that subdirectory you place a sitemap.xmap 4. Per user make a directory and give

deploy in JBoss3

2002-05-27 Thread cnsxxx09
Hi, Is there an Install guide for Cocoon2 with JBoss3 (RC1) Catalina out there? I have tried the excellent installation web page on the Cocoon web site (+ the mail archives), but unfortunately neither the Tomcat 4.0.3 nor the Catalina/JBoss2 instructions have worked for me. I have searched

Problem while redirecting useing Redirector

2002-05-27 Thread manish
Hello, I am trying to redirect the user to some url in act function, it execute the related xsp page, but don't display any thing on browser. your help will be highly appriciatable Thanks and regards, Manish Jain The code is like... if

Re: cannot deploy on JBoss 3

2002-05-27 Thread John Austin
On Monday 27 May 2002 06:14 am, you wrote: htmldiv style='background-color:'DIVHi,/DIV ... snip ... Charles, not everyone reads HTML. I use KMail and have HTML turned off - Please check that your question has not already

os x install problem

2002-05-27 Thread Paul Kelly
platform: os x tomcat: 4.0.1 cocoon: 2 java version: 1.3.1 tomcat installs just fine. adding cocoon.war causes tomcat to crash every time I attempt to access /cocoon/. The only thing in the logs that looks informative is in catalina.out: Starting service Tomcat-Standalone Apache Tomcat/4.0.1

Re: cannot deploy on JBoss 3

2002-05-27 Thread cnsxxx09
Sorry, its that mingin' Hotmail...(I can only use KMail from home) - didn't realise it defaulted to HTML. In fact no messages came through anyway, so maybe Hotmail is barred... I sent it again from a better accountstill frustrated by 2 days of problems. C. -- John Austin [EMAIL

RE: Tomcat error, BeginnerQuestion

2002-05-27 Thread james
Hi, Since we're on this, why is it that by changing the xerces that comes with cocoon and putting in xerces1.4 works for me?I got exactly the same error using the xerces that comes with cocoon. I'm using Tomcat 4.0.3, cocoon 2.0.2, jdk1.3.1_02 on windows 2000. Any clue? Thanks, James Okay,

Removing batik from Cocoon 2.0.2 build

2002-05-27 Thread Lajos Moczar
Hi all - I've been experimenting in building a Cocoon that doesn't require an X server. I removed batik-all-1.5b1.jar from the build, along with all the svg examples in the sitemap, rebuilt and tried it. I found that in addition to these changes, the FOPSerializer needs to be commented out

CocoBlog 0.0.3 released

2002-05-27 Thread Ugo Cei
I've just uploaded version 0.0.3 of CocoBlog here: http://www.beblogging.com/dist/cocoblog-0_0_3.zip CocoBlog is a free weblogging software tool based on Apache Cocoon and Apache Xindice. At the moment it is able to manage a single-user weblog, stored in an XML repository and publish it via

[FYI] Cocoon on WebLogic 7.0

2002-05-27 Thread Konstantin Piroumian
Hi, cocooners! I was able to install Cocoon 2.1-dev on WebLogic 7.0. It required some minor changes to Cocoon.java and CocoonServlet.java and renaming all the jar files with dots to something without dots (e.g.: myjar-1.0.jar - myjar.jar). After starting the server I could successfully access

cocoon actions

2002-05-27 Thread Jim
Hi, I'm new to cocoon, and I'm having a few difficulties with actions. I've tried writing the sample HelloWorld action, but I'm not sure what to do with it. I'm able to compile it, but where do I put it? I modified the code slightly - making it part of a package I call 'Security' and

Re: Cocoon on BEA Weblogic6.1 SP2

2002-05-27 Thread Konstantin Piroumian
From: Atul Gulve [EMAIL PROTECTED] Hi, I have deployed cocoon(2.0.1) application on bea WebLogic6.1 SP2. Great! Could you please tell us how you did it? The first cocoon welcome page is shown properly. Now, the problem I am facing is, bea is not loading sub sitemaps. I am getting

Test

2002-05-27 Thread Konstantin Piroumian
Ignore please. Sorry for inconvenience. _ Konstantin Piroumian Lead Developer _ - Please check that your question has not already been answered in

[TEST] Please ignore

2002-05-27 Thread Konstantin Piroumian
Trying to find out why my messages don't reach the list. Konstantin - Please check that your question has not already been answered in the FAQ before posting. http://xml.apache.org/cocoon/faqs.html To unsubscribe, e-mail:

RE: cocoon actions

2002-05-27 Thread Artur Bialecki
The example you provided only declares the actions. In order to use them you have to use them in you pipelines using the map:act or using the cocoon-action request parameter (check the action user docs). Also, examin your generated sitemap java file sitemap_xmap.java probably in your appservers

Re: renewed Newbie Question

2002-05-27 Thread Jens Nie
Am Montag, 27. Mai 2002 14:43 schrieb Graaf, Edgar de (fin): If I understand you correctly you want users to be able to place xml in cocoon that is processed by cocoon. Well: 1. Create a subdirectory in ../cocoon/ 2. Mount that directory (in the sitemap.xmap of /cocoon/) 3. In that

Re: cannot deploy on JBoss 3

2002-05-27 Thread John Austin
On Monday 27 May 2002 11:11 am, you wrote: Sorry, its that mingin' Hotmail...(I can only use KMail from home) - didn't realise it defaulted to HTML. In fact no messages came through anyway, so maybe Hotmail is barred... I sent it again from a better accountstill frustrated by 2 days

Re: renewed Newbie Question

2002-05-27 Thread John Austin
On Monday 27 May 2002 03:41 pm, you wrote: Well at first thank you for that suggestion. But i think it does not exactly match what i wan't to do using cocoon. See the following example: http://localhost:8080/cocoon/samples/hello/hello-page.xml Umm ... could you put in a hostname that

RE: cannot deploy on JBoss 3

2002-05-27 Thread Artur Bialecki
I've tried using cocoon2 with JBoss 2.4.4 and Tomcat 4.0.3 and couldn't get it to work. When I installed Tomcat 4.0.4b2 everything worked. I think some other people on this list also had problems with 4.0.3. HTML mail == BAD mojo Artur... -Original Message- From: Charles Wishpot

Cocoon/Weblogic

2002-05-27 Thread Ken Abe
Hi, Does anyone know where to find information on how to install Cocoon 2 on BEA Weblogic? The instructions provided on the Apache site don't work for me. Thanks. - Please check that your question has not already been

Real dumb question - how to concatenate XML files

2002-05-27 Thread daniel robinson
Ok. This is a dumb one, for many reasons - but I've been trying to figure it out for hours and have been all over the mail archives to try and figure it out. Say I have 3 XML files and I want to use them with an XSLT to respond to a request. What is the best way to do this? I checked out

RE: cannot deploy on JBoss 3

2002-05-27 Thread cnsxxx09
Thanks for the replies (and for not being too rude about accidentally sending HTML mail...) Surely it can't be *that* difficult to get it working in JBoss3/Catalina? Strangely enough I *did* have it working at home.so I know it can workafter battling with problems I ended up getting it