Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am getting following error, when I run the demo JSF application on the console

[SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'source' to 'org.eclipse.jst.jee.server:JSFTut' did not find a matching property.
share|improve this question

2 Answers

up vote 57 down vote accepted

This is not an error. This is a warning. The difference is pretty huge. This particular warning basically means that the <Context> element in Tomcat's server.xml contains an unknown attribute source and that Tomcat doesn't know what to do with this attribute and therefore will ignore it.

Eclipse WTP adds a custom attribute source to the project related <Context> element in the server.xml of Tomcat which identifies the source of the context (the actual project in the workspace which is deployed to the particular server). This way Eclipse can correlate the deployed webapplication with an project in the workspace. Since Tomcat version 6.0.16, any unspecified XML tags and attributes in the server.xml will produce a warning during Tomcat's startup, even though there is no DTD nor XSD for server.xml.

Just ignore it. Your web project is fine. It should run fine. This issue is completely unrelated to JSF.

share|improve this answer
1  
You can add this to your logging.properties to suppress warnings while reading your config: org.apache.tomcat.util.digester.Digester.level = SEVERE – Christian Oct 8 '12 at 19:23
You sir are amazing. Every time I have a question I end up googling it and taken right to a stack overflow question that you answered! Just wanted to tell you that I am thankful for all of the help you continually give on this site – gmustudent Oct 15 '12 at 17:23
@gmu: you're welcome. – BalusC Oct 15 '12 at 17:51
I've noticed that if you have the server.xml file open it does not add the context back in. I just stopped the server and closed the server.xml file then re-added the project. THought I would mentioned it in case anyone else runs into the same problem. – Michael Mar 13 at 18:29

Remove the project from the server from the Server View. Then run the project under the same server.

The problem is as @BalusC told corrupt of server.xml of tomcat which is configured in the eclipse. So when you do the above process server.xml will be recreated .

share|improve this answer
My tomcat instance started up pretty quick one day (unusually), and looking at logs I noticed same message the poster had ... I tried cleaning and restarting server to no avail. Removing and then re-Adding the project to the Server helped as arvindwill recommended. – armyofda12mnkeys Jan 25 at 14:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.