francisco proenca

Greenhorn
+ Follow
since Apr 27, 2012
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by francisco proenca

I think that I haven't been quite clear. I'd like to pass values from an Java variable to a Ant variable.

eg:

String valueJava = "C:/xxx";

to

<property name="xxx" value="C:/xxx" />

eg:

<property name="xxx" value="(String value = "C:/xxx";)" />

set String valueJava in value's property

thanks !
11 years ago
Hi folks,

I have got a Ant xml that does some things in my environment. In my xml there are some variables eg: paths and etc, that I set them manually ever I execute it, but I have to change the value in the variable manually ever time that change something in my environment. I'd like to do this dynamically.

eg:

<property name="xxx" value="C:/xxx" />


I'd like to know, if is possible I set them dynamically through of a web interface.

Exemple:

I have a web interface with some fields, I type some values in this fields and pass to a variable in my servlet. Then, I get the values those variables that I set in my servlet and forwards to my xml Ant, to set xml Ant variables.

Anybody knows how can I resolve this ?

tks folks !

11 years ago