Re: [commons-lang] seek information regarding commons-lang package

2006-06-28 Thread Venkat Narayana, Noida
Hi Gary, Thanks alot for the reply. you said the lang 2.1 is running fine on sun java 1.4.2, I would like to know will the old version 2.0 work on java 1.4 with out any issues. Please provide this info if u have any idea. this is very critical for us as we are migrating the application

numbered tags for an array

2006-06-28 Thread Stefano Orselli
Hi to all! I've a problem. I transform a bean to an xml file, and after i process this xml file with fop. I've an array (or a collection) but when i create (via betwixt) the xml file i find all the tags for the array value without numeration: example .. nameFrancesca/name nameStefano/name

Re: [vfs] Common VFS new features

2006-06-28 Thread Mario Ivankovits
Hi hrjk, please prefix your post with [vfs], else chances are good my mailfilter wouldnt get them - and its common to do so on such umbrella lists. If you have any assumptions about release time of following features, please share them. As always with open source, we (I) cant promise

Betwixt: numbered tags for an array

2006-06-28 Thread Stefano Orselli
Hi to all! I've a problem. I transform a bean to an xml file(BETWIXT), and after i process this xml file with fop. I've an array (or a collection) but when i create (via betwixt) the xml file i find all the tags for the array value without numeration: example .. nameFrancesca/name

[scxml] nested if statements

2006-06-28 Thread Nestor Urquiza
Hello guys, below a snippet of code where I am trying to use an if statement within another one. n:if cond=deliveryConfirmationStatus eq 'DLV_CONF_ST_PERMANENT_UNBILLABLE' !-- what do we do here? -- n:var name=dummy expr=dummy/

Re: [betwixt] windows dev does not work on unix

2006-06-28 Thread C. Grobmeier
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 sorry for wasting bandwitdh, i was fooled myself: my build file didn't include the betwixt files. C. Grobmeier wrote: betwixt is driving me mad at the moment. I have developed something simple at my win-box and this works perfectly. same on

Re: numbered tags for an array

2006-06-28 Thread Fabian Sergio de Rosa
i think that's to hard to make test if you can person nameAname/name order1/name /person person nameAnothername/name order2/name /person that's most easy to do and most easy to map and understand. 2006/6/28, Stefano Orselli [EMAIL PROTECTED]: Hi to all! I've a problem. I transform a

Re: chains 1.1

2006-06-28 Thread sia far
Thank you for your reply. As you metioned the problem was using the deprecated feature org.apache.commons.chain.CONFIG_ATTR and then trying to retrieve the catalog from the servlet context. Once I made the changes, everything is fine now. thanx for your tip, it is appreciated greatly.

Digester push(null)

2006-06-28 Thread Joachim Fuchs
Hi, I found this code in Tomcat's ContextConfig.java: code webDigester.clear(); webDigester.push(context); webDigester.parse(is); webDigester.push(null); /code My question is what happens with the digester when pushing a null reference? I expect a null pointer expetion to be thrown, so what is

Re: numbered tags for an array

2006-06-28 Thread Mike Sparr - www.goomzee.com
order1/name was just a typo and not well-formed XML... The point he was trying to make is to have some other element with your numbering or you could also have an attribute with the name tag: person name order=1Aname/name /person person name order=2Bname/name /person ... Cheers, Mike On

Re: numbered tags for an array

2006-06-28 Thread Mike Sparr - www.goomzee.com
Here are 3 ways you could form the XML (also potential xpath syntax - don't quote me on the attribute lookup w/ @ symbol - it's been a while and you may just write [EMAIL PROTECTED] instead of adding the slash element/@attribute? - it should get you close): person order=1 nameAname/name /person

[jelly] How is Jelly's Script compile intended to work?

2006-06-28 Thread Jonathan Halterman
I was curious if anyone can tell me what Jelly's Script.compile() method is intended to do? I've browsed through the source and none of the implementations actually seem to do anything, let alone optimize or compile the script. Has this just not been implemented yet? Jonathan

Re: [jelly] How is Jelly's Script compile intended to work?

2006-06-28 Thread Dion Gillard
AFAIK, compile is unimplemented at this point. On 6/29/06, Jonathan Halterman [EMAIL PROTECTED] wrote: I was curious if anyone can tell me what Jelly's Script.compile() method is intended to do? I've browsed through the source and none of the implementations actually seem to do anything, let