Re: [ANNOUNCEMENT] Apache Commons Exec 1.1 Released

2010-10-24 Thread Phil Steitz
On 10/24/10 3:05 AM, Siegfried Goeschl wrote: The commons-exec-team is pleased to announce the commons-exec-1.1.jar release! A library to reliably execute external processes from within the JVM Changes in this version include: New features: o Adding 'Argument' class and quote the arguments af

Re: [exec] Re: Redirect shell output

2010-10-24 Thread Johan Hertz
Hi Siegfried, It is a bit late for me to test this now, but thank you very much for pointing me in the right direction. Regards Johan On 24/10/2010 20:51, Siegfried Goeschl wrote: Hi Johan, I used the following test >>> Start >>> public void testMe() throws Exception { if(OS.i

Re: [exec] Re: Redirect shell output

2010-10-24 Thread Siegfried Goeschl
Hi Johan, I used the following test >>> Start >>> public void testMe() throws Exception { if(OS.isFamilyUnix()) { File testScript = TestUtil.resolveScriptForOS("./src/test/scripts/standalone"); System.out.println("Executing the following test script : " + t

Re: [ANNOUNCEMENT] Apache Commons Exec 1.1 Released

2010-10-24 Thread Siegfried Goeschl
Hi Martin, you can either check out the project from SVN or use the the following URL to download the stand-alone test suite http://people.apache.org/~sgoeschl/download/exec/ Thanks in advance Siegfried Goeschl On 10/24/10 3:48 PM, Martin Gainty wrote: Many Thanks to Siegfried and Konrad

[jexl]

2010-10-24 Thread cloudsuser cloudsuser
Using the syntax "${status}" as defined below i can able to access the value of status form JavaBeanObject(A) ${status} But how to get the value of nested bean object.Example... public class A { private String status; private B b; . .. } How to g

RE: [ANNOUNCEMENT] Apache Commons Exec 1.1 Released

2010-10-24 Thread Martin Gainty
Many Thanks to Siegfried and Konrad for the hard work they have contributed to fixing past bugs and implementing new features for common-exec If you could provide a link I will download and run the testcases. Vielen Danke, Martin __ Verzicht und Vert

[exec] Re: Redirect shell output

2010-10-24 Thread Johan Hertz
Hi Paul, Sorry about that. /Regards Johan On 24/10/2010 11:11, Paul Libbrecht wrote: Johan, which project are you asking this from? commons-exec? Please read the netiquette of this list... you need to make this clear otherwise you don't reach the right people. paul On 24 oct. 2010, at 10:

Re: Redirect shell output

2010-10-24 Thread Paul Libbrecht
Johan, which project are you asking this from? commons-exec? Please read the netiquette of this list... you need to make this clear otherwise you don't reach the right people. paul On 24 oct. 2010, at 10:56, Johan Hertz wrote: > Hi, > > I am trying to redirect output using something like thi

Re: [ANNOUNCEMENT] Apache Commons Exec 1.1 Released

2010-10-24 Thread l...@tiscali.it
HI, I would like to have an application wich use the common proxy to see how does it works and to learn it better. Could you send me one? thanks a lot leox SCARICA TISCALI WIPHONE: parla e invia SMS gratis dal tuo cellulare. http://wiphone.tiscali.it -

Redirect shell output

2010-10-24 Thread Johan Hertz
Hi, I am trying to redirect output using something like this: zfs send rpool/d...@test | gzip > mybackup.gz I can't find a way to do it, is there not a way similar to how ant do it? http://ant.apache.org/faq.html#shell-redirect-2 Regards Johan __

[ANNOUNCEMENT] Apache Commons Exec 1.1 Released

2010-10-24 Thread Siegfried Goeschl
The commons-exec-team is pleased to announce the commons-exec-1.1.jar release! A library to reliably execute external processes from within the JVM Changes in this version include: New features: o Adding 'Argument' class and quote the arguments after expansion. o Added TutorialTest as a playg