Re: Tomcat 8.5 Regarding PostResources for Web-Inf\lib and Web-Inf\classes

2016-09-03 Thread vimil
I looked at tomcat 8 source code to determine how the class loader resolves libraries and class folders specified in post resources. if the order of post resources is as follows then the class loader looks for classes in library1.jar before it looks for classes in

Re: Tomcat 8.5 Regarding PostResources for Web-Inf\lib and Web-Inf\classes

2016-09-07 Thread vimil
Thank you for updating the documentation. This helps a lot with clarifying how Resources work -- View this message in context: http://tomcat.10.x6.nabble.com/Tomcat-8-5-Regarding-PostResources-for-Web-Inf-lib-and-Web-Inf-classes-tp5053929p5054838.html Sent from the Tomcat - User mailing list

regarding escaping of single quotes in attrbutes of html tags

2014-05-02 Thread Vimil Saju
Hi, I noticed that in version 7.0.53 single quotes in attributes of html tags that are generated using jspx are being escaped with #039; This was not the case in version 7.0.32. Could someone explain the reason behind this change? Thanks Vimil

Re: regarding escaping of single quotes in attrbutes of html tags

2014-05-02 Thread Vimil Saju
           body a href=# onclick=clicked('Hello')Hello/a /body /html However in tomcat 7.0.53 the html generated is html            body a href=# onclick=clicked(#039;Hello#039;)Hello/a /body /html I was wondering why the single quotes are now being escaped in html output. Thanks Vimil On Friday

Re: regarding escaping of single quotes in attrbutes of html tags

2014-05-03 Thread Vimil Saju
The rules: http://tomcat.apache.org/lists.html#tomcat-users 6. Do not top-post 7. Do not use HTML e-mails As you can see from the above, from HTML point of view there is no difference. onclick= =3Dclicked('Hello')Hello/a=0A/body=0A/html=0A=0AI was wo= ndering why the single quotes are now

Exclude scanning of class folders for Servlet 3.0 annotations.

2014-06-14 Thread Vimil Saju
if (isScanAllDirectories()) { name = path; } return name; }   I would like to know if there are any issues with my suggestion. I would also like to know if there is any workaround for my problem. Thanks Vimil

Tomcat 8.5 Regarding PostResources for Web-Inf\lib and Web-Inf\classes

2016-08-12 Thread Vimil Saju
This is regarding the Resources feature of tomcat 8.5 that allows us to add external jars and class folder to the webapp classpath. There seems to be an issue with the order in which class folder and jar files are added to the classpath.         With the above configuration the webapp