On Fri, Jul 24, 2009 at 10:47 AM, Shawn Beard <sbeard7...@yahoo.com> wrote:
> We use ANT to deploy applications. Is there a way to have ANT validate the > deployment by going to its URL and "Deployment is Valid" from the webpage? > Thank you. > You just want to make sure that the URL is valid? <condition property="url.valid"> <http url="${test.url}"/> </condition> That will set the property url.valid if the URL ${test.url} is reachable. -- David Weintraub qazw...@gmail.com