Re: Problem compiling Cocoon

2002-11-27 Thread Bertrand Delacretaz
On Wednesday 27 November 2002 08:51, Anna Afonchenko wrote: . . . How can I update the CVS in xml-cocoon2 directory instead of downloading the new CVS files every time from scratch? http://www.cvshome.org/ is your friend here. In this case what you need is cvs update. -Bertrand

Re: xsp !!!

2002-11-27 Thread Ivan Luzyanin
Hi all I got a problem and tried to solve it! i want to have a common 'common.xsp' file containing all the common values and i have other personal files that uses all the common values! so how can i use it ?? can i include/import a xsp file in oter xsp file? i tried to use aggregate but it

XSP and ESQL

2002-11-27 Thread Tom Place
Hi all, I was wondering if anyone could help me with the following. I am trying to put the results from a row of results directly into String variables as show below and Cocoon isn’t happy. I get a unclosed character literal compilation error. The XSP I am executing is as follows while

parameters in xsp

2002-11-27 Thread Robert Sösemann
I must create an dynamic variable based (from db content) cinclude path. But this doens't work. Do you know why? ... esql:results esql:row-results xsl:variable name=idesql:get-string column=i.id//xsl:variable xsl:variable name=stylesheet-pathesql:get-string

Question

2002-11-27 Thread Lautaro Brasseur
I have the following entry in sitemap.xmap: map:match pattern="*."map:generate type="myGenerator"/map:transform src=""/map:serialize//map:match I want to change the src parameter for the transformator, depending on a element that comes from the generator. There is any way to do this

Re: i18n translator and thai support

2002-11-27 Thread Konstantin Piroumian
Hi! Probably, you are using a wrong editor to edit your dictionary files and it somehow mangles the encoding. I usually use XML Spy to edit this kind of exotic languages and I've successfully edited the Chinese, Japanese and Korean translations (they are in C2.1 only). Regards, Konstantin

Re: parameters in xsp

2002-11-27 Thread Derek Hohls
Robert You need to look at the documents and the Cocoon sample to see how parameters and variables work in XSP - they are *not* the same as XSL. [EMAIL PROTECTED] 26/11/2002 04:15:30 I must create an dynamic variable based (from db content) cinclude path.But this doens't work. Do you know

Re: xsp !!!

2002-11-27 Thread Derek Hohls
It should also be possible to use logicsheets to do this... (see the Cocoon docs on how to) [EMAIL PROTECTED] 27/11/2002 11:23:41 Hi all I got a problem and tried to solve it! i want to have a common 'common.xsp' file containing all the common values and i have other personal files that

Re: parameters in xsp don't work

2002-11-27 Thread Derek Hohls
Sorry, but the syntax you were using showed that you did *not*seem to understand the difference between XSP and XSL; hence my suggestion to do some background reading - becausethat's where I managed to find the info needed to work with XSP. Also, before making sarcastic comments, please

RE: xsp !!!

2002-11-27 Thread Hong Gia Dinh
Title: RE: xsp !!! thnks but i dont want to use java file coz it made me recompile everytime i update the file. so, cant i use with xsp? cheers -Original Message- From: Ivan Luzyanin [mailto:[EMAIL PROTECTED]] Sent: 27 November 2002 16:24 To: [EMAIL PROTECTED] Cc: Hong Gia Dinh

RE: xsp !!!

2002-11-27 Thread Derek Hohls
well - are you aware that xsp is *also* recompiled every time you change the file! (because that's what it is converted into... a Java file, that must be regenerated and recompiled before it can be used.) [EMAIL PROTECTED] 27/11/2002 11:49:56 thnks but i dont want to use java file coz it

i18n more!!

2002-11-27 Thread Hong Gia Dinh
Title: i18n more!! I 'm a new user in cocoon, I have the case : i have a web site trying to apply cocoon into it. i have 2 languages, english and french now if in one page i choose a language such as 'french' i want all next page from that on will be in french. how can i do that? how can i

RE: xsp !!!

2002-11-27 Thread Hong Gia Dinh
Title: RE: xsp !!! as far as i understand, the cocoon mechanism does it for us but the java file i must precompile it. is it correct? -Original Message- From: Derek Hohls [mailto:[EMAIL PROTECTED]] Sent: 27 November 2002 16:49 To: [EMAIL PROTECTED] Subject: RE: xsp !!! well -

AW: i18n more!!

2002-11-27 Thread Kirchhoff, Lars
hi GD, you have to use the i18n Transformer, which sample and documentation is actually very good. try the instruction that can be found here http://xml.apache.org/cocoon/userdocs/transformers/i18n-transformer.html ciao Lars -Ursprungliche Nachricht- Von: Hong Gia Dinh [mailto:[EMAIL

RE: xsp !!!

2002-11-27 Thread Derek Hohls
I'm not sureabout this - but if you were to include these in a logic sheet (as I suggested in another reply), then Cocoon would take care it of for you. [EMAIL PROTECTED] 27/11/2002 12:01:17 as far as i understand, the cocoon mechanism does it for us but the java file i must precompile it.

Re: parameters in xsp don't work

2002-11-27 Thread Jeremy Quinn
On Tuesday, Nov 26, 2002, at 16:21 Europe/London, Christian Haul wrote: So I will redefine my question. How can I use values obtained by a db query in my esql in the cinclude statement? After your XSP has done it's job, process the XML with XSLT to assemble your CInclude tag from your SQL

Parsing XML from SQL

2002-11-27 Thread Jeremy Quinn
Dear All We are using the SQLTransformer for a project. Our SQL Database contains a Table called Resource, which keeps information about the resources in our archive. Most of these resources are binary, ie. .gif, .jpg, .swf, .mov etc. So we merely 'embed' the resource reference in the page

Re: i18n more!!

2002-11-27 Thread Kavitha Ramesh
hi GD, If you want to get a good idea about i18n, go to the welcome page of your cocoon(after cocoon installation, go to the url, http://localhost:8080/cocoon), you have a title Internationalization.Click the link and explore.Also in your cocoon directory you will have a folder i18n, explore

Invoking a Servlet directly!!!

2002-11-27 Thread Kavitha Ramesh
Hi, Normally we invoke a servlet like below: map:generate src=http://localhost:8080/cocoon/myservlet{requestQuery}; / But I would like to invoke the servlet directly like below: If the servlet is stored in a directory Web-Inf/Classes/Servlet/myservlet.class, then I would like to invoke as

passing parameters to XSP

2002-11-27 Thread Anna Afonchenko
Hi All. Another question: I neeed to pass to XSP some file that was evaluated previously in some pipeline (can pass it as a string), something like: map:generate src="" map:parameter name="content" value="cocoon:/file.html"/ /map:generate If I use cinclude inside XSP, I can do nothing

RE: passing parameters to XSP, or rather transforming before including...

2002-11-27 Thread Alten, Jelle Paul (uto)
Hi Anna, You are almost there! Just use "file.blabla" instead of file.html and create a pipeline that will match "file.blabla", and do a transformation on the file.html in this pipeling using your xsl. Hope it helps, Jelle -Oorspronkelijk bericht-Van: Anna Afonchenko

RE: xsp !!!

2002-11-27 Thread Ray Martin
Sirs, For a place to put 'common things', I suggest a descriptor file - XML not XSP. The tutorial that comes with Cocoon shows (slightly) how to use the descriptor file. The descriptor file is the place to put parameters that you want to share between the web page designers on one side and

How to render image

2002-11-27 Thread Pavel Ivanov
Hi there! I'm reading from XSP page BMP stored in DB as LONG RAW. What should I do show this image on user's browser? Pavel - Please check that your question has not already been answered in the FAQ before posting.

Re: [SUMMARY] Tomcat 4.1.12 and IE delays up to 5 mins to response.

2002-11-27 Thread Ted Garrett
Perhaps the term 'misconfigured network' IS a little bit harsh, but you overlook a feature of DHCP which can alleviate this issue and is quite necessary in a heterogenous network. DHCP can, after all update DNS with the hostname - IP Address mappings needed automatically. So while your

version problem in AbstractGenerator class

2002-11-27 Thread Andreas Hefti
hello all,I try to write my own Generator for Cocoon to get XML source from a EJB. first I try to write a simle sample to find out how it works. Ifound a sample in a how to.Iwrote the following simple

Re: cvs HEAD bombing out of pipeline

2002-11-27 Thread Antonio Gallardo
Copy xerxes, xalan and xml-apis in $TOMCAT/common/endorsed. Antonio Gallardo. Jacob L E Blain Christen dijo: i've been having this problem since yesterday. i do not know how to fix it. i am using the very latest from cvs and am trying to pull up any page in the cocoon distribution. i did

Re: [HSSF][POI] Gnumeric Conversion Question

2002-11-27 Thread Danny Mui
Thanks for your quick reply Andrew! Do you have an inkling on how gnumeric interprets merged fields? I'd rather build that support into the serializer than tagging individual cells that I'm going through now. I'd prefer to not delve into gnumeric's source (im a java weeny) if you've already

Re: cvs HEAD bombing out of pipeline

2002-11-27 Thread Jacob L E Blain Christen
that did the trick, thank you antonio. anna, you and i were having the same problem, if it still isn't fixed i think this could be the solution to your problem as well: make sure updated xerxes and xalan jars are in $JAVA_HOME/lib/jre/endorsed as well as $TOMCAT_HOME/common/endorsed -- jacob

Re: WebServiceProxy Hell

2002-11-27 Thread Tony Collen
On Tue, 26 Nov 2002, Ivelin Ivanov wrote: Are you saying that the version in CVS is bad? Please submit a bug in Bugzilla about this and mention which version do you use. It might be. When I get to work, today, I have a few things that I can check, but so far, I've gotten different results

Re: [HSSF][POI] Gnumeric Conversion Question

2002-11-27 Thread Andrew C. Oliver
I have a very scientific method for doing this. Open Gnumeric. Create a sheet with some garbage in it (but from scratch). Save it ungzip it (if its gzipped) open that same sheet create a merged cell (change nothing else) save it as something else ungzip it (if gzipped) diff 1.xml 2.xml Thats

Re: i18n more!!

2002-11-27 Thread Konstantin Piroumian
i18n more!!Take a look at the LocaleAction. It provides mechanism for setting user's locale for a session, request, in a cookie. And it uses either request parameter or the client's locale or a cookie to determine selected locale for the first time. See

Link Hosting:http://www.hebergement-pro.com

2002-11-27 Thread foudyl
Hello I've sending you this short e-mail here below how can we be referenced in the xml.apache.org in order to offer CoCOOn 2 Hosting to users thank you for your response Best regards Hello Thank you for your great Job We have interesting packages for

Re: Problem compiling Cocoon

2002-11-27 Thread Joerg Heinicke
Xalan and Xerces version have changed in the meantime, so the version in the endorsed directories must be updated. Joerg Hugo Burm wrote: I have the same problem on Win2000/JDK 1.4/Tomcat 4.12 I updated from the latest version yesterday evening, did a make clean and built twice. The previous

Problems compiling cocoon 2.0.1

2002-11-27 Thread Ferran Urgell
Hello! I am new in Cocoon and I have: J2sdk1.4, Jakarta tomcat 4.0.6 and cocoon 2.0.1 And when i'm trying to build cocoon.war I'm getting errors of compilation. I've used: .\build.bat -Dinclude.webapp.libs=yes -Dinstall.war=%CATALINA_HOME%\webapps install and not works Can someone help me ?

[HSSF][POI] Numeric Data format in Gnumeric

2002-11-27 Thread Antonio Gallardo
Hi! Can someone tell me how to format in Gnumeric Numeric Data types. I need to output in some cells float with 4 decimals. Example: 100.2563 I already found the format tag in Gnumeric format, but this does not work. Here a snip of the xsl I am using to do that. Its based on the sample docs +

Re: cvs HEAD bombing out of pipeline

2002-11-27 Thread Antonio Gallardo
I am happy helping you. Antonio Gallardo Jacob L E Blain Christen dijo: that did the trick, thank you antonio. anna, you and i were having the same problem, if it still isn't fixed i think this could be the solution to your problem as well: make sure updated xerxes and xalan jars are in

Re: starting cocoon with windows 2000

2002-11-27 Thread Lajos Moczar
You should use 2.0.3 instead - it is the easiest version to install so far. Personally, I'd go with JDK 1.3.1, however, 'cause you'll have to recompile some jars for JDK 1.4. Lajos Ferran Urgell wrote: Hello! I'm new in the cocoon, and I'm using windows 2000, I would to install cocoon.

RE: starting cocoon with windows 2000

2002-11-27 Thread Hunsberger, Peter
You should use 2.0.3 instead - it is the easiest version to install so far. Personally, I'd go with JDK 1.3.1, however, 'cause you'll have to recompile some jars for JDK 1.4. 2.0.3 works just fine with JDK 1.4 with no recompilation of jars required. Just make sure you get the version that

cvs HEAD bombing out of pipeline

2002-11-27 Thread Jacob L E Blain Christen
i've been having this problem since yesterday. i do not know how to fix it. i am using the very latest from cvs and am trying to pull up any page in the cocoon distribution. i did make sure i have the updated xerxes and xalan libs in my lib/jre/endorsed directory. textual output copied from

[Summary] WebServiceProxyGenerator wsproxy-method parameter

2002-11-27 Thread Tony Collen
Hi list(s), After almost a week of pounding my head on the cement, I've figured out what's been going on with the WSPG. Consider the following pipeline: map:match pattern=search/doSearch map:generate type=debugwsproxy src=http://localhost/postServlet; map:parameter

Merging Cells

2002-11-27 Thread nandipinto
Hi all, I'm wondering how to merge cells using HSSFSerializer? another question : where can I find a complete reference (description) about GNumeric XML standard? regards, nandipinto. - Please check that your question has

Re: WebServiceProxy Hell

2002-11-27 Thread Ivelin Ivanov
Can you verify if the demo works for you. - Original Message - From: Tony Collen [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, November 27, 2002 11:16 AM Subject: Re: WebServiceProxy Hell On Tue, 26 Nov 2002, Ivelin Ivanov wrote: Are you saying that the version in CVS

Access Cocoon ESQL connection pool in JavaBean

2002-11-27 Thread Kirchhoff, Lars
Hello, after playing around with XMLForms, I could manage to get it working with some database support, but I'm wondering about using the same connection pool than cocoon does with xsp:esql. I'm currently loading the postgres driver manually. Can somebody give me a hint how to use the cocoon

Re: [HSSF][POI] Gnumeric Conversion Question

2002-11-27 Thread Andrew C. Oliver
diff doesn't work? How odd! Danny Mui wrote: Thanks for sharing my manual diff doesn't seem to be working too well /grin. Will bring back what I can come up with. danny Andrew C. Oliver wrote: I have a very scientific method for doing this. Open Gnumeric. Create a sheet with some

Re: [HSSF][POI] Gnumeric Conversion Question

2002-11-27 Thread Danny Mui
No i was being silly.. manual diff == eyeballing :) Andrew C. Oliver wrote: diff doesn't work? How odd! Danny Mui wrote: Thanks for sharing my manual diff doesn't seem to be working too well /grin. Will bring back what I can come up with. danny Andrew C. Oliver wrote: I have a very

Re: Parsing XML from SQL

2002-11-27 Thread Gabriele Domenichini
Your problem is not simple. If I've understood you have resources record made like this: something.jpg | somewhere/somethingelse.mov | resourceFound.txt | Well if this is the point, I think the best way to act is to make some xslt transformation after the sql transformation. I don't have

Workflow

2002-11-27 Thread Maxime.Gheysen
Hi, Has someone made a workflow managment system with cocoon? Is there any workflow project existing or must I rebuild everything? Thank you! - Please check that your question has not already been answered in the FAQ before

Re: cvs HEAD bombing out of pipeline

2002-11-27 Thread Anna Afonchenko
Thanks for the information, Jacob. Can you tell me where can I find the updated jars? Thanks for help Anna - Original Message - From: Jacob L E Blain Christen [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, November 27, 2002 6:22 PM Subject: Re: cvs HEAD bombing out of

getLogger() method is null

2002-11-27 Thread Simon Elbaz
Hi, I am using CVS version 11/25/2002+Tomcat4.1.12+JDK1.4. My cocoon servlet stucks because the method getLogger() is null in the ExcaliburComponentManager class (method configure). How should I modify my configurations files (web.xml, cocoon.xml) in order to launch the servlet ? Thanks for