• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

JAXB Validation error message.

 
Greenhorn
Posts: 13
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Hi All

I am working upon a single page application wherein I am using JSF2, SPRONG 2.5, JAXWS 2.0 webservice client.

Basicall My page has a form with multiple combo boxes. User is free to select a value and submit the value for combo box. Each submit is an JSF 2 supported AJAX submit.

When i submit the form for the first time after server start, I get the following error message :

[07/05/13 15:40:11:914 IST] 0000007c SystemErr R 19677396 [WebContainer : 4] INFO org.apache.bval.jsr303.ConfigurationImpl - ignoreXmlConfiguration == true

When I analyzed more, I found the code of org.apache.bval.jsr303.ConfigurationImpl class at :
http://www.find-code.com/src/org.apache.bval/bval-jsr303/0.1-incubating/org/apache/bval/jsr303/ConfigurationImpl.java.html

The code present at above link is as following:

/** Check whether a validation.xml file exists and parses it with JAXB */

private void parseValidationXml() {
if (isIgnoreXmlConfiguration()) {
log.info("ignoreXmlConfiguration == true");
}
else {
new ValidationParser(getProperties().get(Properties.VALIDATION_XML_PATH)) .processValidationConfig(this);
} }

I even added a blanl validation.xml to my project but i still got the same error message in logs. Can someone help me get rid of this message please ?

 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic