Re: Tomcat 8 : Shared loader

2016-06-15 Thread Amit Pande
Thank you Mark for your valuable inputs. They are indeed a great help. Thanks, Amit On 15/06/16 7:00 pm, "Mark Thomas" wrote: >On 15/06/2016 12:03, Amit Pande wrote: >> >> >> On 15/06/16 4:06 pm, "Mark Thomas" wrote: >> >>> On 15/06/2016 11:00, Amit

RE: How to cancel download on the server side

2016-06-15 Thread Bill Miller
Do you have the ability to have multiple client-server connections open? You could have a second channel to the server that can communicate the status to the client and when/if there is a problem indicate through that status channel that the download has been truncated. Not the greatest idea

Re: Tomcat 8 : Shared loader

2016-06-15 Thread Mark Thomas
On 15/06/2016 12:03, Amit Pande wrote: > > > On 15/06/16 4:06 pm, "Mark Thomas" wrote: > >> On 15/06/2016 11:00, Amit Pande wrote: >>> We develop multiple web application which happen to share the same >>> stack (Spring, Hibernate,etc). >>> >>> Thinking of sharing these third

RE: Tomcat 8 : Shared loader

2016-06-15 Thread Lulseged Zerfu
No issues except that you may need to update jarsToSkip if not already in that list. BRLulseged > From: amit.pa...@veritas.com > To: users@tomcat.apache.org > Subject: Re: Tomcat 8 : Shared loader > Date: Wed, 15 Jun 2016 12:46:40 + > > Thanks a lot, Lulseged for your inputs. > > With this

Re: Tomcat 8 : Shared loader

2016-06-15 Thread Amit Pande
Thanks a lot, Lulseged for your inputs. With this approach, did you see any apparent issues / precautions that we should be aware of ? Thanks, Amit On 15/06/16 3:54 pm, "Lulseged Zerfu" wrote: >It should be shared.loader: >shared.loader="${catalina.base}/shared" > >>

Re: Tomcat 8 : Shared loader

2016-06-15 Thread Amit Pande
On 15/06/16 4:06 pm, "Mark Thomas" wrote: >On 15/06/2016 11:00, Amit Pande wrote: >> We develop multiple web application which happen to share the same >>stack (Spring, Hibernate,etc). >> >> Thinking of sharing these third party libraries instead of duplicating >>in each web

Re: Tomcat 8 : Shared loader

2016-06-15 Thread Mark Thomas
On 15/06/2016 11:00, Amit Pande wrote: > We develop multiple web application which happen to share the same stack > (Spring, Hibernate,etc). > > Thinking of sharing these third party libraries instead of duplicating in > each web app war. Why? > IIUC, putting those in Tomcat (8)'s lib folder

RE: Tomcat 8 : Shared loader

2016-06-15 Thread Lulseged Zerfu
It should be shared.loader: shared.loader="${catalina.base}/shared" > From: zlulse...@hotmail.com > To: users@tomcat.apache.org > Subject: RE: Tomcat 8 : Shared loader > Date: Wed, 15 Jun 2016 10:21:39 + > > Hi > I have also same problem and have solved it by using shared folder. > Look at

RE: Tomcat 8 : Shared loader

2016-06-15 Thread Lulseged Zerfu
Hi I have also same problem and have solved it by using shared folder. Look at the catalina.properties file under $CATALINA_HOME/conf You can look in to the common.loader an server.loader how to define loaders. You should add loaders in the same way in the shared.loader. I have created

Tomcat 8 : Shared loader

2016-06-15 Thread Amit Pande
We develop multiple web application which happen to share the same stack (Spring, Hibernate,etc). Thinking of sharing these third party libraries instead of duplicating in each web app war. IIUC, putting those in Tomcat (8)'s lib folder might cause issues since the classes in there are loaded