I'm beginner with canoo and Ant, and I've a question about dynamic vars and their scopes.
I've wrote 2 scripts, main.xml and aux.xml. The first call the second via a tag <ant antfile="aux.xml">. All is working fine at this step. Problem occurs when I need to retrieve datas obtained before "antfile". Script seems to be like ... <storeProperty name="myVar" value="foo" /> <ant antfile="aux.xml" /> <!-- And now, myVar content is lost ;-( --> ... So, now my 2 questions : - Is there a way to control (and prevent) myVar using antfile ? - Is there a way to retrieve datas from main.xml during aux.xml execution (I mean, can I retrieve myVar and use it in aux.xml) ? Google wasn't my friend this time :-( Thx, david. -- _______________________________________________ WebTest mailing list [email protected] http://lists.canoo.com/mailman/listinfo/webtest

