Re: Ant library paths

2004-12-10 Thread Laconia Data Systems
of the Gods Rd > Colorado Springs, CO 80919 > > Phone: 719-535-6064 > > > > -Original Message- > > From: Laconia Data Systems [mailto:[EMAIL PROTECTED] > > Sent: Friday, December 10, 2004 3:55 PM > > To: Erskine, Chris > > Cc: Ant Users Lis

Re: Ant library paths

2004-12-10 Thread Laconia Data Systems
The agreed upon way for one build.xml to call any other Ant target is Antcall Concerning params I would inquire on params (which are based on properties -file based or otherwise ) from Antcall http://ant.apache.org/manual/CoreTasks/antcall.html HTH, Martin- - Original Message - From: "Ers

Re: Syntax error messagefile ?!

2004-12-10 Thread Laconia Data Systems
Gilbert the right way of handling is to use pathconvert for the OS you are using temp.home.converted is ${temp.home.converted} (and then later on refer to temp.home.converted) OR you could just substitute \\ so your parser doesnt think you are trying to use a single escape \ character

Re: Sshexec and nohup

2004-12-09 Thread Laconia Data Systems
sounds like a permissions error when you call build.xml task you'll need to pass your pgp key along or you'll need to authenticate in same way I would look into ssh task for running the task also ssh task for creating the necessary files Anyone else ?? Martin- - Original Message - From: <[

Re: txtfile with various lines

2004-12-09 Thread Laconia Data Systems
To All I just write this quick and dirty test ${test} F:\>ant Buildfile: build.xml server: [echo] This will be echoed BUILD SUCCESSFUL Total time: 0 seconds My suggestion is if the solution works use it Bye, - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAI

Re: txtfile with various lines

2004-12-09 Thread Laconia Data Systems
\ is an escape character (at least for the majority of XML parsers) \\ is the '\' character property="Whatever this is" will always echo as "Whatever this is" strip away the string quotes and Ant will be able to parse the property and it's contents in other words Good Luck/Viel Gluck, Martin 617

Re: Macro param issue with dirname

2004-12-09 Thread Laconia Data Systems
Mr Evans Hard to believe that anyone would name a file @filename I would suggest downloading and isntalling ant-contrib http://sourceforge.net/projects/ant-contrib then constructing the filename with special characters to a mutable variable http://ant-contrib.sourceforge.net/tasks/variable_task.ht

Re: junit task halts

2004-12-08 Thread Laconia Data Systems
Dear Black: I just love the easy ones Your test target creates XML output by default unless you tell the formatter to output to txt take a look at http://ant.apache.org/manual/OptionalTasks/junit.html the output should be com.mytests.test.*.xml the output Doesnt really do much good unless you use a

Re: Annoying messages

2004-11-20 Thread Laconia Data Systems
I have seen a ton of these messages- The Postmaster for this list can install a Q&D filter to make sure these messages get filtered out- Anyone else have a solution ?? Martin- - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, November 19, 2004 8:51 AM Sub

Re: Find value between xml tags

2004-11-19 Thread Laconia Data Systems
Sanjeev- what is the delta??? -M - Original Message - From: "Sanjeev_Das" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, November 18, 2004 8:21 AM Subject: Find value between xml tags Hi All, I need to find out the value present in between the xml tags. Is there an

Re: Suppressing DOS window when calling Ant from Java

2004-11-15 Thread Laconia Data Systems
start /B Dont ask me how I know that- Martin- - Original Message - From: "Sharad Jain" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, November 15, 2004 6:00 PM Subject: Suppressing DOS window when calling Ant from Java > I am trying to embed Ant into my application. > The foll

Re: Need guidance re

2004-10-24 Thread Laconia Data Systems
Rhino Include your build.xml here From: "Laconia Data Systems" <[EMAIL PROTECTED]> > To: "Ant Users List" <[EMAIL PROTECTED]> > Sent: Sunday, October 24, 2004 4:50 PM > Subject: Re: Need guidance re > > > > Rhino > > I Cant make specif

Re: Need guidance re

2004-10-24 Thread Laconia Data Systems
t: Sunday, October 24, 2004 4:14 PM Subject: Re: Need guidance re > Sorry? I'm not clear what you mean. I hope you're not saying that I need to > put a task in every target ;-) > > How would you change my example to do what you are talking about? > > Rhino >

Re: Need guidance re

2004-10-24 Thread Laconia Data Systems
Rhino I would suggest calling the sound within a specific task which executes depending on the presence a property (if="property") or absence of property (unless="property") HTH, Martin- - Original Message - From: "Rhino" <[EMAIL PROTECTED]> To: "Ant Users List" <[EMAIL PROTECTED]> Sent: S

Re: Bat to Ant

2004-10-24 Thread Laconia Data Systems
You can incorporate a Java task within sample build.xml Take a look at http://ant.apache.org/manual/CoreTasks/java.html Martin- - Original Message - From: "André Dantas Rocha" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, October 24, 2004 8:55 AM Subject: Bat to Ant Hi, I ha

Re: Question about Mail task

2004-10-19 Thread Laconia Data Systems
Rhino copy both mail.jar and activation.jar to %ANT_HOME%\lib retry task Martin - Original Message - From: Rhino To: ant-user Sent: Tuesday, October 19, 2004 12:07 AM Subject: Question about Mail task I just tried using Ant's mail task for the first time and found somethin

Re: winning the case for ANT

2004-10-18 Thread Laconia Data Systems
Simon Could you give us an example where make is more (cheaper/faster/better performance) buildtool than Ant ? Thanks, Martin- - Original Message - From: "Chappell, Simon P" <[EMAIL PROTECTED]> To: "Ant Users List" <[EMAIL PROTECTED]> Sent: Monday, October 18, 2004 11:15 AM Subject: RE: wi

Re: Appending to ANT classpath

2004-10-18 Thread Laconia Data Systems
Hello Ben Yes You can specify the CLASSPATH for a specific Java Task take a look at http://ant.apache.org/manual/CoreTasks/java.html HTH, Martin- - Original Message - From: "Ben Gill" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, October 18, 2004 5:07 AM Subject: Appending to A

Re: Ant 1.6.2 failing to bootstrap

2004-10-16 Thread Laconia Data Systems
: Ant 1.6.2 failing to bootstrap > Laconia Data Systems wrote: > > >Sounds like you have an adapter missing..this solution works when compiling > >ANT scripts within Eclipse: > >add the following property before compiling: > > >value="org.eclipse.jdt.core.JDTCompilerAd

Re: Ant 1.6.2 failing to bootstrap

2004-10-16 Thread Laconia Data Systems
Sounds like you have an adapter missing..this solution works when compiling ANT scripts within Eclipse: add the following property before compiling: Martin- - Original Message - From: "Sebastian Redl" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, October 16, 2004 9:40 AM Sub

Re: winning the case for ANT

2004-10-15 Thread Laconia Data Systems
Careful Charles The one thing I learned in this biz The more incompetent the person is the more "politically adept" they become (as a matter of survival) and as a side effect their political adeptness allows them to achieve much higher rank (managers/supervisors) than us (throw away day laborer peo

Re: Ant build script using sosget

2004-10-14 Thread Laconia Data Systems
Gareth you can install CYGWIN available at http://www.cygwin.com and mount a cygwin drive e.g. cygdrive/c/ Martin- - Original Message - From: "Gareth Kelly" <[EMAIL PROTECTED]> To: "'Ant Users List'" <[EMAIL PROTECTED]> Sent: Thursday, October 14, 2004 12:58 PM Subject: RE: Ant build script

Re: setErrorPrintStream on DefaultLogger not working

2004-10-14 Thread Laconia Data Systems
Kelly I would strongly recommend implementing log4j to enable logging capabilities for your application To quote "The target of the log output can be a file, an OutputStream, a java.io.Writer, a remote log4j server, a remote Unix Syslog daemon, or even a NT Event logger among many other output targ

Re: CopyStreamException on FTP task

2004-10-14 Thread Laconia Data Systems
: Re: CopyStreamException on FTP task > Laconia Data Systems wrote: > > > Robert > > Looks like a file access permission problem > > It appears that the FPT user does *not* have mkdir or *create* capability > > Can you change the FTP user's access capabilities to cr

Re: Ant + Hibernate = Grief + Confusion

2004-10-07 Thread Laconia Data Systems
Hello Gregory Perhap you could be more specific about example which causes these race conditions ? Martin- - Original Message - From: "Greg Wilson" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, October 07, 2004 2:10 PM Subject: Ant + Hibernate = Grief + Confusion > Hi everyo

Re: Classpath Issue - Not sure why it isn't being picked up

2004-10-07 Thread Laconia Data Systems
ks to everyone for their help. Grand -----Original Message- From: Laconia Data Systems [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 06, 2004 7:45 PM To: Ant Users List Subject: Re: Classpath Issue - Not sure why it isn't being picked up Yes It appears your javac task is exhausting

Re: Classpath Issue - Not sure why it isn't being picked up

2004-10-06 Thread Laconia Data Systems
ryError <>" How do I view the stack trace? And what might be causing the "out of resources" error"? thanks -Original Message- From: Laconia Data Systems [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 06, 2004 9:30 AM To: Ant Users List Subject: Re: Class

Re: ANT 1.6, SCP and session timeout

2004-10-06 Thread Laconia Data Systems
Mike 192.168.*.* is a DHCP dynamically assigned IP address Please confirm the IP Address via tracert hostname of your Sun Box Martin- - Original Message - From: "Nibeck Mike" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, October 06, 2004 9:07 AM Subject: ANT 1.6, SCP and ses

Re: Classpath Issue - Not sure why it isn't being picked up

2004-10-06 Thread Laconia Data Systems
[javac] import esolutions.*; [javac] ^ [javac] C:\PCC Source\CAN\esolutions\common\WeCommonCode.java:18: cannot res olve symbol End of Errors*** Thanks to all that have helped. -Original Message- From: Laconia Data Systems

Re: Classpath Issue - Not sure why it isn't being picked up

2004-10-06 Thread Laconia Data Systems
Grand: Keep in mind that if your base folder is named 'base' and your package name is named 'foo' then you need to compile the source from folder 'base' which referennces package (folder) foo Since your email did not provide package names I do not know what the specific names would be Martin -

Re: Delete Files and SubFolders

2004-09-27 Thread Laconia Data Systems
Jeff et al I could never get delete dir= to work so I coded my own Regards, Martin- - Original Message - From: "Jeff Davidson" <[EMAIL PROTECTED]> To: "Ant Users List" <[EMAIL PROTECTED]> Sent: Monday, September 27, 2004 6:10 PM Subject: RE: Delete Files and SubFolders Brent, If you're u

Re: Execute failed: java.io.IOException: CreateProcess: - I have tried about everything

2004-09-08 Thread Laconia Data Systems
If this a one time hit then If this executable is used more than once then I would do the append to PATH at the top of the build so all targets have knowledge of it.. HTH, Martin - Original Message - From: "Vadim Kazakov" <[EMAIL PROTECTED]> To: "Ant Users List" <[EMAIL PROTECTED]> Sent: