Advanced War deployment

2007-01-10 Thread Vlasov Igor
Vlasov Igor wrote: > > I have one commercial project and want to deploy it throw .war deployment > process. > My application uses external libs (10 mb) which must presents in > WEB-INF\lib dir. All app size is 12mb. > > How can i avoid of putting all that libs in .war f

Re: Advanced War deployment

2007-01-10 Thread Vlasov Igor
Leon Rosenberg-3 wrote: > > hmm, > > why don't you put the expanded web-app structure on the client's > machine somewhere else than under tomcat, put your new files therein > and repackage the .war on the machine directly? > > regards > Leon > Please give me the detailed explanation ot you

Re: AW: Advanced War deployment

2007-01-10 Thread Vlasov Igor
Markus Döring wrote: > > Hi, > Don't know if there is a better way to do, but you can place the lib files > into one of the following directorys instead of into the .war file: > > /tomcat/common/lib > /tomcat/server/lib > /tomcat/shared/lib > > Greetings > Markus > > I have no rights to ace

Re: Advanced War deployment

2007-01-10 Thread Vlasov Igor
Mikolaj Rydzewski-2 wrote: > > Vlasov Igor wrote: >> I have one commercial project and want to deploy it throw .war deployment >> process. >> My application uses external libs (10 mb) which must presents in >> WEB-INF\lib >> dir. All app size is 12mb. >&

Re: AW: deploying war files

2007-01-10 Thread Vlasov Igor
what I do is to deploy the war file as zip file, then extract it and reload the applicataion. It's not very nice, but it's working automatically in an ant script, I did it because the war file deployment was to unstable. How do you automatically run this ant script? -- View this message in c

Advanced War deployment

2007-01-10 Thread Vlasov Igor
I have one commercial project and want to deploy it throw .war deployment process. My application uses external libs (10 mb) which must presents in WEB-INF\lib dir. All app size is 12mb. How can i avoid of putting all that libs in .war file and transfer only actual content of my app in one file?