how to divert user's input out from formvalidator to another pipeline?

2004-04-13 Thread lechael
basically I want to validate user's input and then process these data. But I failed to figure out how to divert user's input out from the validator to another pipeline. Would anybody throw a light on this? Thanks!!! - To

Re: [OT] Distributed Cocoon Collab Environment

2004-04-13 Thread Leon Widdershoven
Hi, under Tomcat, you can run multiple instances of the web app cocoon (in theory - didn't test it) but you might be looking for somthing like the automount facility. That means you all have different apps (a copy of the base app you work on) mounted under different directories. You can each

Re: [OT] Distributed Cocoon Collab Environment

2004-04-13 Thread Antonio Gallardo
Hi: Our development environment looks is: The server configured with Tomcat 5.0.19 and 4 cocoon webapp inside + 1 full Cocoon install + samples for reference. You can look at it as 5 cocoon applications running on the same server. Since the applications uses diferents blocks, each one has a

Re: Woody tab state control

2004-04-13 Thread Ugo Cei
Steve Steinitz wrote: Yes, we need to set it programmatically so we can keep the tab state when returning from another page. Using your idea we still have: wi:group wi:styling type = tabs/ wi:state wt:widget id=tab-state/ /wi:state ... Should work. Here is a

Microsoft Acces Connection

2004-04-13 Thread Floris T'Joen
hello, I'm trying to make a connection to a Microsoft Acces Database using an JDBC-ODBC bridge. Has anyone experience with this stuff? I did this so far - I made a ODBC-datasouce named ds -in cocoon.xconf jdbc logger=core.datasources.ds name=ds

Re: Microsoft Acces Connection

2004-04-13 Thread Ivo Limmen
Hi Floris, You shouldn't use a hostname. ODBC only works locally. Use 'jdbc:odbc:ds' as URL and make sure you have a ODBC data source in Windows called 'ds'. Floris T'Joen wrote: hello, I'm trying to make a connection to a Microsoft Acces Database using an JDBC-ODBC bridge. Has anyone

Re: CForms(woody) ad hibernate design advice needed

2004-04-13 Thread Leszek Gawron
On Mon, Apr 12, 2004 at 10:01:53PM -0700, Uchenna Igwebuike wrote: I do the same thing with Entity Beans, by doing a net change ie update all records contained in the repeater, insert any new ones and delete(or deactivate) the missing ones. This way I don't loose the object identity How do you

cocoon under eclipse

2004-04-13 Thread Flavio Palumbo
Hi all, I tried to put cocoon under eclipse, building a new project in eclipse, addressing the directory of a working built of cocoon 2.1.3. The goal was to try to easily debug cocoon to better understand it. But now when I try to run it with jetty, in the normal way with cocoon servlet, i got

Jetty returning wrong images

2004-04-13 Thread Yves Vindevogel
Hi, I discovered a weird thing (aka bug?) in Jetty. I don't know whether this is the right place to post it, if not, can somebody point me to the right spot. This is my setup: Linux Slackware 9.1 (with swaret to update, so I have the latest packages) Ant 1.6.2 (or .1) Cocoon 2.1.4 (or. 3)

Validator Transformer

2004-04-13 Thread Carmona Perez, David
*** Este correo ha sido procesado por el antivirus del Grupo FCC. ***-*** Hi all, I've created a transformerthat can be inserted in any stage of an XML pipeline, in order to validate its contents. This can be a powerful tool for debugging and

Resend -- RE: Help with fb:multi-value/ binding - CFORMS

2004-04-13 Thread Uchenna Igwebuike
Could someone let me know if the fb:multi-value/ widget can be bound in both directions to a bean and how to do it. Thanks in advance. -Original Message- From: Uchenna Igwebuike [mailto:[EMAIL PROTECTED] Sent: Monday, April 12, 2004 7:15 AM To: '[EMAIL PROTECTED]' Subject: RE: Help

RE: cocoon under eclipse

2004-04-13 Thread Carmona Perez, David
*** Este correo ha sido procesado por el antivirus del Grupo FCC. ***-*** It seems a problem with the classpath, some core component of Cocoon is missing. Search for the existence of org/apache/cocoon/webapps/session/ContextManager.class in a JAR file.

Cocoon forms - XML binding serialisation loses namespace

2004-04-13 Thread Simon Collins
Hi all, When using Cocoon forms I've noticed that when writing out the form contents to an XML file (via the form.save(document) method), the root namespace declaration does not get written out. I saw this first in an application I'm writing but then verified that it also occurs in the Forms GUI

Serving arbitrary OutputStreams with Cocoon

2004-04-13 Thread Oscar Picasso
Hi, I have a Java application that can generate Postscript or PDF to OutputStreams. I would like to be able serve these OutputStreams with Cocoon. I have looked at ReaderResource but it seems to read resources from the file system. I also looked at implementing a Serializer but it needs to

Re: Serving arbitrary OutputStreams with Cocoon

2004-04-13 Thread Oscar Picasso
I have looked at ReaderResource but it seems to read resources from the file system. Oups. I had a bug in my sitemap that prevented me to use the ReaderResource with other protocoles than file system. I think I could use ReaderResource for what I need contrary to what I said before.

Re: Serving arbitrary OutputStreams with Cocoon

2004-04-13 Thread Geoff Howard
Oscar Picasso wrote: Hi, I have a Java application that can generate Postscript or PDF to OutputStreams. I would like to be able serve these OutputStreams with Cocoon. I have looked at ReaderResource but it seems to read resources from the file system. I also looked at implementing a Serializer

Re: Serving arbitrary OutputStreams with Cocoon

2004-04-13 Thread Ugo Cei
Oscar Picasso wrote: Hi, I have a Java application that can generate Postscript or PDF to OutputStreams. I would like to be able serve these OutputStreams with Cocoon. I have looked at ReaderResource but it seems to read resources from the file system. The cleanest way would be to wrap your

Re: [OT] Distributed Cocoon Collab Environment

2004-04-13 Thread Julian
Hi: Thanks all, I appreciate the input. I was thinking about using the Tomcat manager application to reload individual web-apps on the server. However, I am still unclear as to how one would mount individual workspaces while maintaining aseperation of logic and datastores b/w users. Are you guys

Suspicious Attachment

2004-04-13 Thread antivirus
-- Warning: Message delivery wasn't performed. Reason: Our virus scanner detected very suspicious code in the attachment of a mail addressed to a user of our system. The following message will not be delivered: From: [EMAIL

Re: Problem redirecting in flowscript

2004-04-13 Thread Mark Lundquist
Any word on this? I never saw a reply, but I too am interested in the answer... any takers? Thanks, Mark L :-) On Apr 2, 2004, at 8:08 AM, Mark H wrote: I'm having a problem doing redirects in flowscript (using a non-cocoon protocol). I've traced the problem to the code below and it says

Re: Serving arbitrary OutputStreams with Cocoon

2004-04-13 Thread Oscar Picasso
--- Geoff Howard [EMAIL PROTECTED] wrote: [..} Implement a custom Reader, similar to ResourceReader and the other Readers such ImageReader, DatabaseReader in the database block, etc. Geoff and --- Ugo Cei [EMAIL PROTECTED] wrote: [...] The cleanest way would be to wrap your components

Re: [OT] Distributed Cocoon Collab Environment

2004-04-13 Thread Leon Widdershoven
Hi, I have a separate machines for development and deployment. On the development machine, I have the datasources named exactly like the deployment machine, but the URL they point to differ (cocoon.xconf). If you run multiple cocoons in one tomcat, you can configure each cocoon.xconf

Cocoon Performance and Server Configuration

2004-04-13 Thread Sal Mangano
Title: Message Hi, I am trying to make appropriate hardware recomendations to a client that I will be setting up with a Web Site based on Coccon. The client has a bias to running a Windows installation due to the availability of in house expertise. My question is to those who are running

Fragment Extractor and Cache in V2.1.4

2004-04-13 Thread Windler Burri, Sarah
Hi Last year we have built some very nice network applications with the help of Cocoon V2.0.3. Thank you very much for this wonderful software. I'd like to upgrade to Cocoon V2.1.4, but a problem has emerged: The fragment extractor generates the first image in the right way, but all following

Re: Sql type for request parameter with multiple values

2004-04-13 Thread Carlos Dias
Thanks Christopher for the answer, but how can I convert the parameter enumeration to an array inside the sitemap?! Can I use the RequestParamAction action?! Thanks in advance, Carlos Dias - Original Message - From: Christopher Painter-Wakefield [EMAIL PROTECTED] To: [EMAIL PROTECTED]

How to fix org.apache.cocoon.sitemap.PatternException?

2004-04-13 Thread Christian Mayrhuber
I read somewhere that there has been a change in sitemap variable handling in the current 2.1 cvs. How do I fix PatternExceptions similiar to this one occuring in the proxy block samples from current 2.1 cvs? org.apache.cocoon.sitemap.PatternException: Evaluation error in expression:

Re: Sql type for request parameter with multiple values

2004-04-13 Thread Christopher Painter-Wakefield
I doubt it. If you are doing this using SQL actions or the like, you'll probably have to write your own action to do the conversion. Otherwise, consider using XSP+ESQL or XSP+SQL Transformer. However you cut it, it looks like you'll have to write some Java code. -Christopher

RE: Problem redirecting in flowscript

2004-04-13 Thread Joel McConaughy
Apache commons library does not support cross-host redirects. Solution is to use the httpClient library in an XSP to manually process the redirects and then read the response and serialize into the stream. Joel McConaughy Managing Partner Displayware 800 Fifth Ave., #101-316 Seattle, WA

Re: [OT] Distributed Cocoon Collab Environment

2004-04-13 Thread Julian
hi, great! i agree. I think the easiest thing is to setup multiple cocoon instances so developers can reset the ServletContext so the ClassLoader reloads. - webapps- - cocoon-julian- - - WEB-INF- - - - cocoon.xconf- - cocoon-leon- - - WEB-INF- - - - cocoon.xconf As far as the portal is

Re: Serving arbitrary OutputStreams with Cocoon

2004-04-13 Thread Ugo Cei
Il giorno 13/apr/04, alle 19:51, Oscar Picasso ha scritto: I guess the above approaches mean I need to use Piped streams to 'transform' my OuputStream to an InputSream. Or have you a better suggestion? Possibly, but keep in mind that you cannot write to and read from a Piped stream in the same

Re: [OT] Distributed Cocoon Collab Environment

2004-04-13 Thread Leon Widdershoven
Well, I think it is a bad idea to add for 100+ users a datasource jdbc:somedb://someip/uniqueID in the cocoon.xconf. That makes it large and not easily maintainable. What I would use for a unique data source per user is forget about cocoon pooling, but make some static java function which

Re: Registering own Authentication Manager

2004-04-13 Thread Joerg Heinicke
On 13.04.2004 19:21, [EMAIL PROTECTED] wrote: Hi, where can I register my own Authentication Manager (Authentication FW) instead the default one? I searched for this particular configuration without any success in the files 'cocoon.xconf' and 'web.xml' Best regards, Mat Probably in cocoon.roles?

Re: Help with fb:multi-value/ binding - CFORMS

2004-04-13 Thread Joerg Heinicke
On 12.04.2004 16:14, Uchenna Igwebuike wrote: When I bind a form without selecting any data to the bean, I don't get any errors, but when it contains some selections I get the following error uncaught JavaScript exception: at material

Re: How to fix org.apache.cocoon.sitemap.PatternException?

2004-04-13 Thread Upayavira
Christian Mayrhuber wrote: I read somewhere that there has been a change in sitemap variable handling in the current 2.1 cvs. How do I fix PatternExceptions similiar to this one occuring in the proxy block samples from current 2.1 cvs? org.apache.cocoon.sitemap.PatternException: Evaluation

RE: CRM or Sales Force Automation using Cocoon?

2004-04-13 Thread Chris Chesney
Thomas, Sorry for the delay -- I've been out of pocket for a couple days. First off, I should give you a better picture of how we've been using OFBiz. We're a consulting company that typically provides custom web applications with a focus on Open Source. One of our projects required workflow

Re: Fragment Extractor and Cache in V2.1.4

2004-04-13 Thread Joerg Heinicke
On 13.04.2004 20:15, Windler Burri, Sarah wrote: Hi Last year we have built some very nice network applications with the help of Cocoon V2.0.3. Thank you very much for this wonderful software. I'd like to upgrade to Cocoon V2.1.4, but a problem has emerged: The fragment extractor generates the

[OT] Melbourne

2004-04-13 Thread Torsten Curdt
I'll be in Melbourne, Australia until May, 2nd. If someone would like to meet up for a beer and some serious chatting about Cocoon. ...please drop me a mail off the list cheers -- Torsten - To unsubscribe, e-mail: [EMAIL

Re: CRM or Sales Force Automation using Cocoon?

2004-04-13 Thread Joerg Heinicke
On 14.04.2004 00:44, Chris Chesney wrote: Thomas, Sorry for the delay -- I've been out of pocket for a couple days. First off, I should give you a better picture of how we've been using OFBiz. Maybe you can complete http://wiki.cocoondev.org/Wiki.jsp?page=WorkflowImplementationComparison with

Re: Schema Catalog Resolution

2004-04-13 Thread Joerg Heinicke
On 12.04.2004 22:16, Williams, Adam I. wrote: I admit. I have read the manual. And I've searched the mail archive... I find no example of how to resolve a schemaLocation using the Catalog, as in: n:page xmlns:n=http://www.n.com; xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;

Re: Hi, it's me

2004-04-13 Thread Yves Vindevogel
Sorry Ricardo, but the virus you're sending, has absolutely no effect on an Apple Macintosh machine running OSX Panther. Could you please retry ? Thanks in advance ... On 13 Apr 2004, at 17:39, [EMAIL PROTECTED] wrote:

RE: (Easy) Passing a Variable From Sitemap to StyleSheet?

2004-04-13 Thread David Swearingen
I posted earlier this week about needing to pass a variable from the sitemap to a stylesheet, and I understand how to do this, but I'm getting a weird error now. [NOT SURE HOW TO ESCAPE HTML FOR POSTS TO MAILING LIST.] I'm setting the variable in the sitemap as follows: map:match

RE: (Easy) Passing a Variable From Sitemap to StyleSheet?

2004-04-13 Thread Steve Schwarz
David I think you want: ... xsl:param name=requestedfile/ ... thebody cinclude:include src={$requestedfile}/ /thebody ... I highly recommend Michael Kay's XSLT 2nd Edition Hope this helps Steve _ Tax headache? MSN Money

tomcat 5.0.19 and coccon 2.1.4

2004-04-13 Thread Isidro Vila Verde
Dear all, I am trying to install (in linux)cocoon 2.1.4 as a webapp under Tomcat 5.0.19. I tested it with some applications and it seems to be ok. But now I want to use JXForms. As this is completely new for me I decide to test samples first and... for my surprise it don't. That is I try

Flow-Woody-Event-Woody... possible?

2004-04-13 Thread Phil Blake
Hiya, In flow I create a woody form containing a list and a remove button. It is shown using the form.showForm(...) method. When the remove button is pressed a woody javascript event is triggered. The script runs and builds a new form and again shows it using form.showForm() However, the

RE: resolving param in template

2004-04-13 Thread David Swearingen
Yeah, it's weird: everyone keeps telling me that's the solution, but the error I get when trying that is this: java.io.FileNotFoundException: C:\jakarta-tomcat-4.1.30\webapps\cocoon\mount\my1\{$requestedfile} (The system cannot find the file specified) So, it's ignoring the $ sign. Could I have

Re: tomcat 5.0.19 and coccon 2.1.4

2004-04-13 Thread Antonio Gallardo
Hi Isidro: If you are starting with Cocoon better look for Woody. Woody in the next release 2.1.5 are renamed to Forms. Forms will be the flag ship for form management in Cocoon 2.1.5 and later. I would not recommend you to use JXForms. JXForms are deprecated. An Best Regards, Antonio Gallardo

Re: (Easy) Passing a Variable From Sitemap to StyleSheet?

2004-04-13 Thread David Swearingen
Ok, I see the source of the problem now. I am trying to resolve the value of a variable from within an xml document, not within the stylesheet. I'm using the xml document to collect a bunch of xml documents using cinclude. That's where I need to have the name of a file requested in the uri by

Re: (Easy) Passing a Variable From Sitemap to StyleSheet?

2004-04-13 Thread Steve Schwarz
David You can't do it directly within the document. But maybe you just need to think about the problem a little differently. Remember you don't need this aggregate document to physically exist. It just needs to be assembled at some point in your pipeline. So I'd use a stylesheet to get what

Re: Improvements to sitemap-v06.rng

2004-04-13 Thread David Crossley
Carmona Perez, David wrote: - Accept parameters to map:pipe Thanks, added that one. - Accept anchors (attribute name) in map:action and map:match As far as i know, map:match does not permit a name attribute, so i did not add your declaration. The map:action already has a name attribute. Your

reminder: Amsterdam Stammtisch on the 19th

2004-04-13 Thread Steven Noels
I'll be in Amsterdam next week - people interested in a Monday evening hookup please have a look at http://wiki.cocoondev.org/Wiki.jsp?page=AmsterdamStammtisch Cheers, /Steven -- Steven Noelshttp://outerthought.org/ Outerthought - Open Source Java XMLAn