Re: Error creating form bean - struts 1.2 + weblogic 8.1 + myeclipse 5.5

2010-04-08 Thread Nanu Khota
I tried the same code with tomcat 5.5.28 server and surprisingly... it worked 
absolutely fine. But got no clue of what's wrong with weblogic 
8.0. PS: Sandeep, Iam working with struts 1.2, please see the subject 
line. NanuOn Fri, 02 Apr 2010 00:14:44 +0530 wrote>in struts 2 we don't 
have form bean.>>If you want to access some object similar to form you 
need to set in action class with get and set methods and fram work will take 
care of other thing remove the from tag from struts config.>>Apache 
struts site has the wonderful startup tutorial you can go through it and start 
coding in 10 mins>>
On 1 April 2010 17:29, Nanu Khota <nanukh...@rediffmail.com> wrote:>
>>>>>-- Forwarded message 
-->From: "Panchal, Ashish IN GGN SISL" 
<ashish.panc...@siemens.com>>To: "nanukh...@rediffmail.com" 
<nanukh...@rediffmail.com>>Date: >Subject: Error creating 
form bean - struts 1.2 + weblogic 8.1 + myeclipse 5.5>


 
Hi All,
 
I am a newbee to struts and trying some hands on it. I was just trying to 
develop a simple login form but getting following exception on initial run only.
 
-
 
SEVERE: Error creating form bean of class com.abc.struts.form.LoginForm
java.lang.NullPointerException
at 
org.apache.struts.config.FormBeanConfig.createActionForm(FormBeanConfig.java:212)
at org.apache.struts.util.RequestUtils.createActionForm(RequestUtils.java:292)
at org.apache.struts.util.RequestUtils.createActionForm(RequestUtils.java:191)
at org.apache.struts.taglib.html.FormTag.initFormBean(FormTag.java:477)
at org.apache.struts.taglib.html.FormTag.doStartTag(FormTag.java:457)
at jsp_servlet.__login._jspService(__login.java:196)
at weblogic.servlet.jsp.JspBase.service(JspBase.java:33)
 
-
 
I tried searching thru all forums from last 2 days but could not found any 
solution to the issue. This seems to be a very common problem but I don't know 
why its not going away. I am really stuck up.
 
Below are the listing of files required to analyize the cause of error.
 
web.xml


http://java.sun.com/dtd/web-app_2_3.dtd">;

  
    action
    org.apache.struts.action.ActionServlet
    
  config
  /WEB-INF/struts-config.xml
    
    
  debug
  3
    
    
  detail
  3
    
    0
  
  
    action
    *.do
  
  
    index.jsp
  
  
    
/WEB-INF/struts-html.tld
    
/WEB-INF/struts-html.tld
  

 
 
index.jsp
-
..

    Login
  
.
 
 
struts-config.xml
-

http://struts.apache.org/dtds/struts-config_1_2.dtd">;
 

  
  
    
 
  
 
  
  
  
    
  attribute="loginForm"
  name="loginForm"
  path="/empLogin"
 scope="request"
  type="com.siemens.struts.action.EmpLoginAction"
 validate="false" />
 
    
 
  
 
  

 
 
Login.jsp
-
 

    
  


    



  
Login:
  

    

    


  
Password:
  

    
    


  
Login
    
  
    
  
 
I can also provide the form bean and action class if required but I believe it 
won't add to solving the problem as the exception occurs when I click on the 
link on index.jsp and then it tries to render the Login.jsp.
 
Please help.
 
Nanu>

Important notice: This e-mail and any attachment there to contains corporate 
proprietary information. If you have received it by mistake, please notify us 
immediately by reply e-mail and delete this e-mail and its attachments from 
your system.>Thank 
You.>>>->To
 unsubscribe, e-mail: user-unsubscr...@struts.apache.org>For additional 
commands, e-mail: user-h...@struts.apache.org>>

Error creating form bean - struts 1.2 + weblogic 8.1 + myeclipse 5.5

2010-04-01 Thread Nanu Khota
--- Begin Message ---

Hi All,

I am a newbee to struts and trying some hands on it. I was just trying to 
develop a simple login form but getting following exception on initial run only.

-

SEVERE: Error creating form bean of class com.abc.struts.form.LoginForm
java.lang.NullPointerException
at 
org.apache.struts.config.FormBeanConfig.createActionForm(FormBeanConfig.java:212)
at org.apache.struts.util.RequestUtils.createActionForm(RequestUtils.java:292)
at org.apache.struts.util.RequestUtils.createActionForm(RequestUtils.java:191)
at org.apache.struts.taglib.html.FormTag.initFormBean(FormTag.java:477)
at org.apache.struts.taglib.html.FormTag.doStartTag(FormTag.java:457)
at jsp_servlet.__login._jspService(__login.java:196)
at weblogic.servlet.jsp.JspBase.service(JspBase.java:33)

-

I tried searching thru all forums from last 2 days but could not found any 
solution to the issue. This seems to be a very common problem but I don't know 
why its not going away. I am really stuck up.

Below are the listing of files required to analyize the cause of error.

web.xml


http://java.sun.com/dtd/web-app_2_3.dtd";>

  
action
org.apache.struts.action.ActionServlet

  config
  /WEB-INF/struts-config.xml


  debug
  3


  detail
  3

0
  
  
action
*.do
  
  
index.jsp
  
  
/WEB-INF/struts-html.tld
/WEB-INF/struts-html.tld
  



index.jsp
-
..

Login
  
.


struts-config.xml
-

http://struts.apache.org/dtds/struts-config_1_2.dtd";>


  
  


  

  
  
  




  

  



Login.jsp
-



  

  Login:
  


  Password:
  


  Login

  

  

I can also provide the form bean and action class if required but I believe it 
won't add to solving the problem as the exception occurs when I click on the 
link on index.jsp and then it tries to render the Login.jsp.

Please help.

Nanu


Important notice: This e-mail and any attachment there to contains corporate 
proprietary information. If you have received it by mistake, please notify us 
immediately by reply e-mail and delete this e-mail and its attachments from 
your system.
Thank You.
--- End Message ---

-
To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
For additional commands, e-mail: user-h...@struts.apache.org

Error creating form bean - nullpointerexception - struts 1.2 + weblogic 8.1 + myeclipse 5.5

2010-04-01 Thread Nanu Khota
Hi All,
I am a newbee to struts and trying some hands on it. I was just trying to 
develop a simple login form but getting following exception on initial run 
itself.
-
SEVERE: Error creating form bean of class 
com.abc.struts.form.LoginFormjava.lang.NullPointerExceptionat 
org.apache.struts.config.FormBeanConfig.createActionForm(FormBeanConfig.java:212)at
 org.apache.struts.util.RequestUtils.createActionForm(RequestUtils.java:292)at 
org.apache.struts.util.RequestUtils.createActionForm(RequestUtils.java:191)at 
org.apache.struts.taglib.html.FormTag.initFormBean(FormTag.java:477)at 
org.apache.struts.taglib.html.FormTag.doStartTag(FormTag.java:457)at 
jsp_servlet.__login._jspService(__login.java:196)at 
weblogic.servlet.jsp.JspBase.service(JspBase.java:33)
-
I tried searching thru all forums from last 2 days but could not found any 
solution to the issue. This seems to be a very common problem but I don't know 
why its not going away. I am really stuck up.
Below are the listing of files required to analyize the cause of error.
web.xml ; 
    
action    
org.apache.struts.action.ActionServlet   
   
config  
/WEB-INF/struts-config.xml   
     
  
debug  
3    
    
  
detail   &
 nbsp;  3    
    
0    
    
action    
*.do  
      
index.jsp  
    
 /WEB-INF/struts-html.tld  
 /WEB-INF/struts-html.tld 
 
index.jsp-..    Login  .
struts-config.xml-;
        
  
      
    
      

  
  
Login.jsp-
          
  
 
     
    
  
 
     
    
  &nbs
 p;     
Login:
Password:
Login
   
  I can also provide the form bean and action class if required but I believe it won't add to solving the problem as the exception occurs when I click on the link on index.jsp and then it tries to render the Login.jsp. Please help. Regards,Nanu

Error creating form bean struts 1.2 + weblogic 8.1 + myeclipse 5.5

2010-04-01 Thread Nanu Khota
Hi All,
I am a newbee to struts and trying some hands on it. I was just trying to 
develop a simple login form but getting following exception on initial run only.
-
SEVERE: Error creating form bean of class 
com.abc.struts.form.LoginFormjava.lang.NullPointerExceptionat 
org.apache.struts.config.FormBeanConfig.createActionForm(FormBeanConfig.java:212)at
 org.apache.struts.util.RequestUtils.createActionForm(RequestUtils.java:292)at 
org.apache.struts.util.RequestUtils.createActionForm(RequestUtils.java:191)at 
org.apache.struts.taglib.html.FormTag.initFormBean(FormTag.java:477)at 
org.apache.struts.taglib.html.FormTag.doStartTag(FormTag.java:457)at 
jsp_servlet.__login._jspService(__login.java:196)at 
weblogic.servlet.jsp.JspBase.service(JspBase.java:33)
-
I tried searching thru all forums from last 2 days but could not found any 
solution to the issue. This seems to be a very common problem but I don't know 
why its not going away. I am really stuck up.
Below are the listing of files required to analyize the cause of error.
web.xml ; 
    
action    
org.apache.struts.action.ActionServlet   
   
config  
/WEB-INF/struts-config.xml   
     
  
debug  
3    
    
  
detail   &
 nbsp;  3    
    
0    
    
action    
*.do  
      
index.jsp  
    
 /WEB-INF/struts-html.tld  
 /WEB-INF/struts-html.tld 
 
index.jsp-..    Login  .
struts-config.xml-;
        
  
      
    
      

  
  
Login.jsp-
          
  
 
     
    
  
 
     
    
  &nbs
 p;     
Login:
Password:
Login
   
  I can also provide the form bean and action class if required but I believe it won't add to solving the problem as the exception occurs when I click on the link on index.jsp and then it tries to render the Login.jsp. Please help. Nanu