Hi! I want to read a property based on another property. FOR EXAMPLE:
In file "deploy.properties" i would like to have properties for deploy directories for different test environments: deploy.dir.ft = ft/stage/2 deploy.dir.st =st/stage/2 deploy.dir.pt =st/stage/2 deploy.dir.pr=pr/stage/1 Then i want to read the deploy directory for the current testenvironment! I tried this: <ftp server="ftpserver" remotedir="${deploy.dir.${testenv}}" : : </ftp> ....and offcause it did not work :-) Is this possible? Thanks! Daniel