RE: Ant install tasks

2003-12-09 Thread Rich Garabedian
from the Tomcat documentation before. I must be doing something wrong?? -Original Message- From: Mike [mailto:[EMAIL PROTECTED] Sent: Monday, December 08, 2003 10:00 PM To: Tomcat Users List; [EMAIL PROTECTED] Subject: Re: Ant install tasks Correct me if I'm wrong, but shouldn't

RE: Ant install tasks

2003-12-09 Thread Robert D. Abernethy IV
Users List Subject: Re: Ant install tasks Robert D. Abernethy IV wrote: I was getting this same error and it took me some time to get around it. First, I decided to use a WAR file to deploy, rather than an unpacked directory. Second, I had to comment out the jasper2 task in the compile target

RE: Ant install tasks

2003-12-09 Thread Rich Garabedian
, 2003 9:40 AM To: 'Tomcat Users List' Subject: RE: Ant install tasks Thanks everyone for your comments. Here is more detail: I'm using the build.xml directly downloaded from the tomcat 5 documentation. The install task of that build file looks like this: deploy url=${manager.url

Re: Ant install tasks

2003-12-09 Thread Remy Maucherat
Rich Garabedian wrote: Thanks everyone for your comments. Here is more detail: I'm using the build.xml directly downloaded from the tomcat 5 documentation. The install task of that build file looks like this: deploy url=${manager.url} username=${manager.username}

Re: Ant install tasks

2003-12-09 Thread Remy Maucherat
Robert D. Abernethy IV wrote: Here is what I copied from the deployer build script to my build script: !-- Compile JSPs -- jasper2 validateXml=false uriroot=${web.home} webXmlFragment=${build.home}/WEB-INF/generated_web.xml addWebXmlMappings=true outputDir=${build.home}/WEB-INF/classes

Re: Ant install tasks

2003-12-08 Thread Remy Maucherat
Rich Garabedian wrote: I've used the custom ant tasks to build and install web apps a zillion times. However, I'm setting up a new build/test environment on a fresh machine and I'm having a problem getting the install task to work. I can do all the normal all/compile/dist tasks. plus I can do the

RE: Ant install tasks

2003-12-08 Thread Kumar, Sumit
Hello, Is it possible to put an object in session of another webapp, like I am in context of webapp1 and I want to put an UserInfo object in session of webapp2. Can I even access session of webapp2 from webapp1. Both are deployed under Tomcat4.1. Thanks -sumit

RE: Ant install tasks

2003-12-08 Thread Robert D. Abernethy IV
PROTECTED] Subject: RE: Ant install tasks Hello, Is it possible to put an object in session of another webapp, like I am in context of webapp1 and I want to put an UserInfo object in session of webapp2. Can I even access session of webapp2 from webapp1. Both are deployed under Tomcat4.1. Thanks

Re: Ant install tasks

2003-12-08 Thread Remy Maucherat
Robert D. Abernethy IV wrote: I was getting this same error and it took me some time to get around it. First, I decided to use a WAR file to deploy, rather than an unpacked directory. Second, I had to comment out the jasper2 task in the compile target because it was messing up my web.xml file in

Re: Ant install tasks

2003-12-08 Thread Mike
Correct me if I'm wrong, but shouldn't the host be: file:///C:/Documents%20and%20Settings/rich/My%20Documents/workbench/java/build.xml the difference being the three slashes between file: and C? - Mike - Original Message - From: Rich Garabedian [EMAIL PROTECTED] To: [EMAIL PROTECTED]