In the above example there is no value for the "initial" in the web.xml file.
Without defining the value in the web.xml how can we retrive in the serlets.
The "initial" parameter which ought have been defined in the web.xml file has not been included. Please edit and rectify that. In the <servlet><servlet> tag we can add:
<init-param>
<param-name>initial</param-name>
<param-value>19</param-value>
</init-param>
"initial" value is not defind in the web.xmlsiva June 20, 2011 at 3:47 PM
In the above example there is no value for the "initial" in the web.xml file. Without defining the value in the web.xml how can we retrive in the serlets.
what use of class keyword in javabhagwan singh January 22, 2012 at 8:25 AM
please give me result as soon as possible
Init Param not given in the web.xml fileAddy January 25, 2012 at 5:12 PM
The "initial" parameter which ought have been defined in the web.xml file has not been included. Please edit and rectify that. In the <servlet><servlet> tag we can add: <init-param> <param-name>initial</param-name> <param-value>19</param-value> </init-param>
Missing <init-param> in above exampleWasim February 18, 2012 at 11:45 PM
Hi, In web.xml file. You missed the entry for <init-param>. Thanks, Wasim
Wrong exampleravi parekh May 21, 2012 at 6:05 PM
Where do "initial" come from ? "initial" have to be declared in web.xml config.getInitParameter("initial");
'initial' Param is missing in web.xmlAmit August 1, 2012 at 5:59 PM
In the above mentioned web.xml the value for 'initial' param is missing.
Post your Comment