• 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

Form 'null' not found for locale en_US

 
Greenhorn
Posts: 28
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
In my application i am using form display in some jsp pages.when i display those pages the console displays WARN message Form 'null' not found for locale en_US.

the actual warn message is :

WARN [btpool0-1] ValidatorResources.getForm(448) | Form 'null' not found for loc
ale 'en_US'.

So,could any body help me how to resolve this issue.

Thanks

Chandra
 
author
Posts: 3285
13
Mac OS X Eclipse IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi there,

Could you post your JSP code that is failing? I'm not 100% sure that I understand your problem.
 
chandrap prakash
Greenhorn
Posts: 28
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The source code of jsp is:
<html>
<body>
<form:form id="addNewClientForm" action="popup_editadddeleteClient.html" commandName="clientAddEditFormBackingObject" cssClass="tableForm">

</form:form>
<v:javascript formName="clientAddEditFormBackingObject" staticJavascript="false"/>
<script type="text/javascript" src="<c:url value="/scripts/validator.jsp"/>"></script>
</body>
</html>

and in validator.jsp the source code is::

<%@ taglib uri="http://www.springmodules.org/tags/commons-validator" prefix="v" %>

<v:javascript dynamicJavascript="false" staticJavascript="true"/>

please reply me URGANT

Regards

Chandra
 
reply
    Bookmark Topic Watch Topic
  • New Topic