sms task / api ?!

2006-12-28 Thread Rebhan, Gilbert
Hi, anyone with a sms task for ant ? I'm searching a task that can send messages to a handy. If there's no task, maybe there's an java api or a ruby script ? open source preferred, must work in germany. Thanks for any hints Gilbert

Re: sms task / api ?!

2006-12-28 Thread Petar Tahchiev
On 28/12/06, Rebhan, Gilbert [EMAIL PROTECTED] wrote: Hi, anyone with a sms task for ant ? I'm searching a task that can send messages to a handy. If there's no task, maybe there's an java api or a ruby script ? open source preferred, must work in germany. Thanks for any hints Gilbert

Troubles with indexjar ...

2006-12-28 Thread Clemens Eisserer
Hello, I am trying to index my jar-files to replace my self-rolled plugin system with the great new index-support Webstart got with java-1.6. As far as I understood creating a jar with an index should look like this: jar jarfile=${webstart_file} basedir=clientcore index=true indexjar

Re: Troubles with indexjar ...

2006-12-28 Thread Clemens Eisserer
Ok, sorry about that. I forgot that indexjar_s_ are more than a single once;) 2006/12/28, Clemens Eisserer [EMAIL PROTECTED]: Hello, I am trying to index my jar-files to replace my self-rolled plugin system with the great new index-support Webstart got with java-1.6. As far as I understood

filter and antcall

2006-12-28 Thread jm
Hi, I noticed that if I specify a filter, and call antcall on another target, the filter is previously defined is not enabled in the new target, even with inheritRefs=true. I could not find anything in the docs, so I suggest adding something on the filter or antcall will be helpfull. javier

Re: Odd Behavior

2006-12-28 Thread Res Pons
I think I emailed Scott prematurely yesterday and it appears that both of you may be right. I'm seeing a different java compiler kicking in at night when the cronjob starts. I see gnu's being invoked by the cronjob and sun jdk when I login and my .bash_profile is sourced. Thanks, I'll play

Re: Odd Behavior

2006-12-28 Thread Alexey N. Solofnenko
I concur. I had to run my .profile script manually, because it did not seem to run for cron jobs. - Alexey. Res Pons wrote: I think I emailed Scott prematurely yesterday and it appears that both of you may be right. I'm seeing a different java compiler kicking in at night when the cronjob

Re: Odd Behavior

2006-12-28 Thread Martin Gainty
if you could construct a .sh (shell script) to capture what you're doing online and setup your cron to execute that shell script you'll get identical behaviour between the 2 Martin-- --- This e-mail message (including

Re: Odd Behavior

2006-12-28 Thread Res Pons
Ok thank you again both of you. It was indeed the wrong version of javac. I just relinked the /usr/bin/javac to the correct version. Thanks again. Original Message Follows From: Res Pons [EMAIL PROTECTED] Reply-To: Ant Users List user@ant.apache.org To: [EMAIL PROTECTED],

Re: Odd Behavior

2006-12-28 Thread Scot P. Floess
Yes, when cron jobs are kicked off, it does not mean the same thing as logging in - i.e. the cron job is executing directly without the benefit of running ~/.bashrc (or whatever your default shell is). This is very similar to init scripts when a *nix box boots - same issue. When I saw your

Re: Odd Behavior

2006-12-28 Thread Alexey N. Solofnenko
Yes, a simple command in front . /home/user/.profile; worked great. - Alexey. Res Pons wrote: Is it working for you now? I got it to work for me. Original Message Follows From: Alexey N. Solofnenko [EMAIL PROTECTED] Reply-To: Ant Users List user@ant.apache.org To: Ant Users List

Re: Odd Behavior

2006-12-28 Thread Res Pons
Thanks for the explanation and helping me out :) Original Message Follows From: Scot P. Floess [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: Ant Users List user@ant.apache.org Subject: Re: Odd Behavior Date: Thu, 28 Dec 2006 16:50:30 -0500 Yes, when cron jobs are kicked off, it does

Re: Odd Behavior

2006-12-28 Thread Res Pons
Thank you, I will add it too. Original Message Follows From: Alexey N. Solofnenko [EMAIL PROTECTED] Reply-To: Ant Users List user@ant.apache.org To: Ant Users List user@ant.apache.org Subject: Re: Odd Behavior Date: Thu, 28 Dec 2006 13:50:32 -0800 Yes, a simple command in front .