RE: Ant task to handle HTTPResponse status code (HELP!!!)

2006-03-24 Thread Alan Andrade
Hi This condition I use checks for failure and success ie 400 and 200 response status. Failed to start the Enterprise Application. Please check the [exec] messages or the server logs. Thanks Alan -Original Message- From: Steve Loughr

Re: XmlProperty caching values

2006-03-24 Thread Jeffrey E Care
Ant properties are immutable. Jeffrey E. (Jeff) Care [EMAIL PROTECTED] IBM WebSphere Application Server Development WAS Pyxis Lead Release Engineer "Arun Gupta" <[EMAIL PROTECTED]> wrote

RE: XmlProperty caching values

2006-03-24 Thread Jim MacDonald
Hi, Only just joined the group so apologies if this is out of context. My understanding is that the ANT properties are immutable and when multiple targets are on the same command line (is that what you mean) then the second target inherits the properties of the first. I had that problem at any r

XmlProperty caching values

2006-03-24 Thread Arun Gupta
Here is an excerpt from my build script: -- cut here -- -- cut here -- Depending upon the order of invocation of these targets, always dumps the exact same value of ${bindings.wsdlLocation} in both the targets. The value, however, is diff

RE: regarding Ant

2006-03-24 Thread Anderson, Rob (Global Trade)
Ant can be used for any automation that it is capable of. It can also be extended to do other things that it is not currently capable of. For example, We have a lot of automation that handles documents that we need to import into LiveLink, a document management system. I wrote a custom Ant task to

RE: regarding Ant

2006-03-24 Thread RADEMAKERS Tanguy
Manas, You can get LOTS of benefit of using ant with WSAD - check your docco, i'm sure that WSAD ships with custom ant tasks - most java app servers do. /t >-Original Message- >From: Manas_Das [mailto:[EMAIL PROTECTED] >Sent: Friday, March 24, 2006 3:44 PM >To: Ant Users List >Subject: R

RE: regarding Ant

2006-03-24 Thread Manas_Das
Hi Tanguy, Thanks for your reply. Actually I am using WSAD to develop web projects in java .but I am interested to work in a tool which uses system calls directly I mean I want to get the low level ideas. Can I use ant while using WSAD I mean can I get some benefit from ant or I don't need it now.

RE: regarding Ant

2006-03-24 Thread RADEMAKERS Tanguy
Hello Manas, Ant is mainly used to automate processes related to developing java software - so things like compiling, testing, deploying, etc. Think about all of the things you do that do related to "development" (i.e. not meetings - ant can't go to meetings for you yet) but don't involve typing j

regarding Ant

2006-03-24 Thread Manas_Das
Dear all, I got the idea that ant should be used whenever we want to automate some processes and more over it is a building tool in which we can specify several tasks but still I am getting confused with ant .could someone explain me about ant I mean what are the scenarios in which we shoul

Re: Ant task to handle HTTPResponse status code (HELP!!!)

2006-03-24 Thread Steve Loughran
Ivan "Rambius" Ivanov wrote: Hello, I suppose you will need a fully fledged http client like Jakarta Commons HttpClient[1]. Sending any http request using its API is pretty easy. Then you can encapsulated the request and the status handling in a task/scriptdef. I noticed once a conversation in

RE: WAR task in ANT

2006-03-24 Thread Ruth Lydia Samuel
Hi, I'm using WSAD 5.x to test the war files created. In my war file(created using ANT), I want to package the source file in such a way that when it's imported into my webproject in WSAD, it actually gets extracted to the javasource part of my webproject rather than the webcontent part

Re: WAR task in ANT

2006-03-24 Thread Naveen Kumar A.H
Use Nested elements ... Here it is dir="${src.dir}" prefix="src" /> with war task.. src.dir is java source... prefix is the driectory in which u want to place eg:- if u want source in web-inf/src then use prefix as prefix="web-inf/src" ,i hope it will solve ur problem. Regards Naveen Kumar