Re: [OT] Migrated from 6.0.29 to 7.0.10, Now I get INFO: TLD skipped. URI: http://struts.apache.org/tags-bean is already defined

2011-06-10 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Brian, (Resurrecting a thread from the long past that I hadn't noticed until just now). On 3/15/2011 7:56 PM, Brian Braun wrote: I don't know yet which project are you talking about, but why haven't you decided to migrate to JSF 2.0 or Spring MVC,

Re: Migrated from 6.0.29 to 7.0.10, Now I get INFO: TLD skipped. URI: http://struts.apache.org/tags-bean is already defined

2011-06-09 Thread Dilip Parihar
Hi All, I had gone thru the same error and here is what I configured to fix the error: The solution i did is: 1. Remove the entries from WEB.xml of taglib directive. 2. Remove the *.tld from WEB-INF folder if any because they already exists in struts-xxx.jar file. 3. In JSP replace i.

Re: [OT] Migrated from 6.0.29 to 7.0.10, Now I get INFO: TLD skipped. URI: http://struts.apache.org/tags-bean is already defined

2011-03-16 Thread Mark Thomas
On 15/03/2011 23:56, Brian Braun wrote: I would like to know what Mark Thomas thinks about this, being a person involved with Spring Source. I'm afraid I am probably going to disappoint you there. Whilst I am employed by SpringSource (now VMware) I know relatively little about the Spring

Re: [OT] Migrated from 6.0.29 to 7.0.10, Now I get INFO: TLD skipped. URI: http://struts.apache.org/tags-bean is already defined

2011-03-15 Thread Brian Braun
I don't know yet which project are you talking about, but why haven't you decided to migrate to JSF 2.0 or Spring MVC, instead of staying with Struts? My needs are mostly to create apps faster, specially in the GUI. The forms, the validation, the old basic HTML... I spend too much time doing

Re: [OT] Migrated from 6.0.29 to 7.0.10, Now I get INFO: TLD skipped. URI: http://struts.apache.org/tags-bean is already defined

2011-03-14 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Brian, On 3/12/2011 6:46 PM, Brian Braun wrote: Well, first of all, I'm using the 2004 Struts version. Why didn't I upgraded that over all these years? Because in the first years I thought I was going to migrate to JSF, and recetly I'm thinking

Re: Migrated from 6.0.29 to 7.0.10, Now I get INFO: TLD skipped. URI: http://struts.apache.org/tags-bean is already defined

2011-03-13 Thread Mark Thomas
On 13/03/2011 05:37, Brian Braun wrote: %@ taglib uri=*/WEB-INF/struts-bean.tld* prefix=*bean*% That page fails, because it is not being able to find the TLD file anymore. What should I do? I really want to get rid of the info messages. - Do I need to delete the TLDs from my WEB-INF

Re: Migrated from 6.0.29 to 7.0.10, Now I get INFO: TLD skipped. URI: http://struts.apache.org/tags-bean is already defined

2011-03-13 Thread Brian Braun
Hi Mark, You said: Yes. You need to refer to the taglibs in your JSPs using the URI rather than the file location. e.g. %@ taglib uri=http://struts.apache.org/tags-bean; prefix=bean% Does it mean that my code will not work if I'm not connected to the internet? Or that it will run lightly slower

Re: Migrated from 6.0.29 to 7.0.10, Now I get INFO: TLD skipped. URI: http://struts.apache.org/tags-bean is already defined

2011-03-13 Thread Mark Thomas
On 13/03/2011 12:09, Brian Braun wrote: Hi Mark, You said: Yes. You need to refer to the taglibs in your JSPs using the URI rather than the file location. e.g. %@ taglib uri=http://struts.apache.org/tags-bean; prefix=bean% Does it mean that my code will not work if I'm not connected to

Re: Migrated from 6.0.29 to 7.0.10, Now I get INFO: TLD skipped. URI: http://struts.apache.org/tags-bean is already defined

2011-03-13 Thread Brian Braun
OK, I will find out what are the URIs of the TLDs. Thanks a lot On Sun, Mar 13, 2011 at 8:11 AM, Mark Thomas ma...@apache.org wrote: On 13/03/2011 12:09, Brian Braun wrote: Hi Mark, You said: Yes. You need to refer to the taglibs in your JSPs using the URI rather than the file

Re: Migrated from 6.0.29 to 7.0.10, Now I get INFO: TLD skipped. URI: http://struts.apache.org/tags-bean is already defined

2011-03-13 Thread Konstantin Kolinko
2011/3/13 Mark Thomas ma...@apache.org: On 13/03/2011 05:37, Brian Braun wrote: - Should I tell Tomcat not to show those info messages somehow? No. If you really want to silence the messages, without changing anything in your application, it is possible by adding the following line to

Re: Migrated from 6.0.29 to 7.0.10, Now I get INFO: TLD skipped. URI: http://struts.apache.org/tags-bean is already defined

2011-03-13 Thread Brian Braun
Hi Konstantin, I really, really, really appreciate the information you have given to me in your response. Thanks a lot! On Sun, Mar 13, 2011 at 10:34 AM, Konstantin Kolinko knst.koli...@gmail.com wrote: 2011/3/13 Mark Thomas ma...@apache.org: On 13/03/2011 05:37, Brian Braun wrote: -

Re: [OT] Migrated from 6.0.29 to 7.0.10, Now I get INFO: TLD skipped. URI: http://struts.apache.org/tags-bean is already defined

2011-03-12 Thread Brian Braun
Well, first of all, I'm using the 2004 Struts version. Why didn't I upgraded that over all these years? Because in the first years I thought I was going to migrate to JSF, and recetly I'm thinking that maybe I should go with Spring. For that reason, I didn't want to invest time upgrading to the

Re: Migrated from 6.0.29 to 7.0.10, Now I get INFO: TLD skipped. URI: http://struts.apache.org/tags-bean is already defined

2011-03-12 Thread Brian Braun
Hi Mark, I have been thinking about this issue, and I have some thoughts and questions. My web.xml file doesn't mention the TLDs, but I have confirmed that the Struts JAR does contain them. That is the reduncancy. I tried removing the TLDs from my WEB-INF directory, and the the info message was

Re: [OT] Migrated from 6.0.29 to 7.0.10, Now I get INFO: TLD skipped. URI: http://struts.apache.org/tags-bean is already defined

2011-03-11 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Brian, On 3/9/2011 3:42 PM, Brian Braun wrote: Actually, I had already unzipped my .war file and inspected every file inside, and arrived to that conclution: The only place where the TLD files are also present is the JARs that correspond to Struts

RE: [OT] Migrated from 6.0.29 to 7.0.10, Now I get INFO: TLD skipped. URI: http://struts.apache.org/tags-bean is already defined

2011-03-11 Thread Martin Gainty
peuvent facilement être sujets à la manipulation, nous ne pouvons accepter aucune responsabilité pour le contenu fourni. Date: Fri, 11 Mar 2011 17:39:08 -0500 From: ch...@christopherschultz.net To: users@tomcat.apache.org Subject: Re: [OT] Migrated from 6.0.29 to 7.0.10, Now I get INFO: TLD

Migrated from 6.0.29 to 7.0.10, Now I get INFO: TLD skipped. URI: http://struts.apache.org/tags-bean is already defined

2011-03-09 Thread Brian Braun
Hi, I just migrated from Tomcat 6.0.29 to 7.0.10. I have solved several problems regarding the migration, but I don't know what these mean: INFO: Deploying web application archive ROOT.war Mar 9, 2011 9:28:12 AM org.apache.catalina.startup.TaglibUriRule body INFO: TLD skipped. URI:

Re: Migrated from 6.0.29 to 7.0.10, Now I get INFO: TLD skipped. URI: http://struts.apache.org/tags-bean is already defined

2011-03-09 Thread Mark Thomas
On 09/03/2011 18:12, Brian Braun wrote: Hi, I just migrated from Tomcat 6.0.29 to 7.0.10. I have solved several problems regarding the migration, but I don't know what these mean: INFO: Deploying web application archive ROOT.war Mar 9, 2011 9:28:12 AM

Re: Migrated from 6.0.29 to 7.0.10, Now I get INFO: TLD skipped. URI: http://struts.apache.org/tags-bean is already defined

2011-03-09 Thread Brian Braun
Hi Mark, Now that I check my web.xml file, I realized that these TLD files are not even mentioned there! I think I remember they used to be mentioned there, but I upgraded my web.xml file to a newer format and then I got rid of those references. But I'm getting the INFOs in my log yet, since I

Re: Migrated from 6.0.29 to 7.0.10, Now I get INFO: TLD skipped. URI: http://struts.apache.org/tags-bean is already defined

2011-03-09 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Brian, On 3/9/2011 1:42 PM, Brian Braun wrote: Now that I check my web.xml file, I realized that these TLD files are not even mentioned there! I think I remember they used to be mentioned there, but I upgraded my web.xml file to a newer format and

Re: Migrated from 6.0.29 to 7.0.10, Now I get INFO: TLD skipped. URI: http://struts.apache.org/tags-bean is already defined

2011-03-09 Thread Brian Braun
Hi chris, Actually, I had already unzipped my .war file and inspected every file inside, and arrived to that conclution: The only place where the TLD files are also present is the JARs that correspond to Struts (don't laugh, but I'm still using it) and other components. I guess Tomcat 7 is

Re: Migrated from 6.0.29 to 7.0.10, Now I get INFO: TLD skipped. URI: http://struts.apache.org/tags-bean is already defined

2011-03-09 Thread Mark Thomas
On 09/03/2011 20:42, Brian Braun wrote: Hi chris, Actually, I had already unzipped my .war file and inspected every file inside, and arrived to that conclution: The only place where the TLD files are also present is the JARs that correspond to Struts (don't laugh, but I'm still using it)

Re: Migrated from 6.0.29 to 7.0.10, Now I get INFO: TLD skipped. URI: http://struts.apache.org/tags-bean is already defined

2011-03-09 Thread Brian Braun
That's nice! I that something new in Tomcat 7, or is it already present in 6.0.29? On Wed, Mar 9, 2011 at 3:45 PM, Mark Thomas ma...@apache.org wrote: On 09/03/2011 20:42, Brian Braun wrote: Hi chris, Actually, I had already unzipped my .war file and inspected every file inside, and

Re: Migrated from 6.0.29 to 7.0.10, Now I get INFO: TLD skipped. URI: http://struts.apache.org/tags-bean is already defined

2011-03-09 Thread Mark Thomas
On 09/03/2011 20:49, Brian Braun wrote: That's nice! I that something new in Tomcat 7, or is it already present in 6.0.29? It should be in 6 although you probably won't get the warnings. The TLD scanning was completely re-worked for 7. Mark

Re: Migrated from 6.0.29 to 7.0.10, Now I get INFO: TLD skipped. URI: http://struts.apache.org/tags-bean is already defined

2011-03-09 Thread Brian Braun
OK, thanks for the responses! On Wed, Mar 9, 2011 at 3:51 PM, Mark Thomas ma...@apache.org wrote: On 09/03/2011 20:49, Brian Braun wrote: That's nice! I that something new in Tomcat 7, or is it already present in 6.0.29? It should be in 6 although you probably won't get the warnings.