944,144 Members | Top Members by Rank

Ad:
  • JSP Discussion Thread
  • Unsolved
  • Views: 6264
  • JSP RSS
Apr 21st, 2007
0

jsp,eclipse and weblogic server

Expand Post »
hi expert!
i am new to jsp. i m using a html form to get user input. i want to collect all the information given by the user, using a javabean class with it's get and set property. and again i wat to display it to the user.
i am using eclipse ide and weblogic server.
but when i call that html form inertnet explore using
http://localhost:7001/example/userinfo.htm first i see the form and as i fill this form and press submit, controll goes to jsp page which has
<jsp:useBean id="formHandler " class="foo.FormBean" session="request">
but at this point i get an error

Parsing of JSP File '/examples/jsp/forms/process.jsp' failed:
/examples/jsp/forms/process.jsp(9): class 'foo.FormBean' could not be loaded
probably occurred due to an error in /examples/jsp/forms/process.jsp line 9:
<jsp:useBean id="formHandler" class="foo.FormBean" scope="request">

plz help me to sort out this problem.

regards
Abhishek
Similar Threads
Reputation Points: 10
Solved Threads: 0
Newbie Poster
abhishek.tyagi1 is offline Offline
6 posts
since Apr 2007
Apr 22nd, 2007
0

Re: jsp,eclipse and weblogic server

Did you add an import statement to the JSP declaration?
Team Colleague
Reputation Points: 1658
Solved Threads: 331
duckman
jwenting is offline Offline
7,719 posts
since Nov 2004
Apr 23rd, 2007
0

Re: jsp,eclipse and weblogic server

Click to Expand / Collapse  Quote originally posted by jwenting ...
Did you add an import statement to the JSP declaration?
hi jwenting!
i am sorry. but i could not get u?
Reputation Points: 10
Solved Threads: 0
Newbie Poster
abhishek.tyagi1 is offline Offline
6 posts
since Apr 2007
Apr 23rd, 2007
1

Re: jsp,eclipse and weblogic server

Click to Expand / Collapse  Quote originally posted by jwenting ...
Did you add an import statement to the JSP declaration?
hi!
plz help me if u can. what is that speacial declaration?
Reputation Points: 10
Solved Threads: 0
Newbie Poster
abhishek.tyagi1 is offline Offline
6 posts
since Apr 2007
Apr 24th, 2007
0

Re: jsp,eclipse and weblogic server

Click to Expand / Collapse  Quote originally posted by jwenting ...
Did you add an import statement to the JSP declaration?
hi!
plz help me. i am using weblogic server and eclipse for my project. i want to know how to load javabean classes into a jsp page.
here is my code, i m just trying a simple example
form to get user input
named get.htm

<HTML>
<BODY>
<FORM METHOD="post" ACTION="Save.jsp">


What's your name? <INPUT TYPE=TEXT NAME=username SIZE=20><BR>
What's your e-mail address? <INPUT TYPE=TEXT NAME=email SIZE=20><BR>
What's your age? <INPUT TYPE=TEXT NAME=age SIZE=4>
<P><INPUT TYPE=SUBMIT>
</FORM>
</BODY>
</HTML>

jsp page to process it named save.jsp

<jsp:useBean id="user" class="my.UserData" scope="session"/>
<jsp:setProperty name="user" property="*" />

<HTML>
<BODY>
You entered<BR>
Name: <%= user.getUsername() %> <BR>
Email: <%= user.getEmail() %><BR>
Age: <%= user.getAge() %><BR>

</BODY>
</HTML>

and this is my javabean class named UserData.java
package my;

publicclass UserData {
String username;
String email;
int age;

public void setUsername( String value )
{
username = value;
}

public void setEmail( String value )
{
email = value;
}

public void setAge( int value )
{
age = value;
}

public String getUsername() { return username; }

public String getEmail() { return email; }

public int getAge() { return age; }

}
Reputation Points: 10
Solved Threads: 0
Newbie Poster
abhishek.tyagi1 is offline Offline
6 posts
since Apr 2007
Apr 24th, 2007
0

Re: jsp,eclipse and weblogic server

Click to Expand / Collapse  Quote originally posted by jwenting ...
Did you add an import statement to the JSP declaration?
hi!
plz help me. i am using weblogic server and eclipse for my project. i want to know how to load javabean classes into a jsp page.
here is my code, i m just trying a simple example
form to get user input
named get.htm

<HTML>
<BODY>
<FORM METHOD="post" ACTION="Save.jsp">


What's your name? <INPUT TYPE=TEXT NAME=username SIZE=20><BR>
What's your e-mail address? <INPUT TYPE=TEXT NAME=email SIZE=20><BR>
What's your age? <INPUT TYPE=TEXT NAME=age SIZE=4>
<P><INPUT TYPE=SUBMIT>
</FORM>
</BODY>
</HTML>

jsp page to process it named save.jsp

<jsp:useBean id="user" class="my.UserData" scope="session"/>
<jsp:setProperty name="user" property="*" />

<HTML>
<BODY>
You entered<BR>
Name: <%= user.getUsername() %> <BR>
Email: <%= user.getEmail() %><BR>
Age: <%= user.getAge() %><BR>

</BODY>
</HTML>

and this is my javabean class named UserData.java
package my;

publicclass UserData {
String username;
String email;
int age;

public void setUsername( String value )
{
username = value;
}

public void setEmail( String value )
{
email = value;
}

public void setAge( int value )
{
age = value;
}

public String getUsername() { return username; }

public String getEmail() { return email; }

public int getAge() { return age; }

}

when i call get.htm from internet explorer and gives my input and press submit button i got the error as follows

Parsing of JSP File '/Save.jsp' failed:
/Save.jsp(1): class 'my.UserData' could not be loaded
probably occurred due to an error in /Save.jsp line 1:
<jsp:useBean id="user" class="my.UserData" scope="session"/>


plz anyone who knows the solution help me.
thanks in advance.
regards
abhishek
Last edited by abhishek.tyagi1; Apr 24th, 2007 at 6:38 am.
Reputation Points: 10
Solved Threads: 0
Newbie Poster
abhishek.tyagi1 is offline Offline
6 posts
since Apr 2007
Apr 24th, 2007
0

Re: jsp,eclipse and weblogic server

I told you what to do... You should be able to figure out how to do it on your own.
Team Colleague
Reputation Points: 1658
Solved Threads: 331
duckman
jwenting is offline Offline
7,719 posts
since Nov 2004
May 3rd, 2007
0

Re: jsp,eclipse and weblogic server

Click to Expand / Collapse  Quote originally posted by jwenting ...
I told you what to do... You should be able to figure out how to do it on your own.
thanks dear!
i got the solution.
regards
abhishek
Reputation Points: 10
Solved Threads: 0
Newbie Poster
abhishek.tyagi1 is offline Offline
6 posts
since Apr 2007
Nov 25th, 2009
-1
Re: jsp,eclipse and weblogic server
thanks dear!
i got the solution.
regards
abhishek
hi,
abhishek how u get rid of this problem pls tell me
i m also searching for the solution
pls help me
Reputation Points: 10
Solved Threads: 0
Newbie Poster
GHANSHYAM176 is offline Offline
1 posts
since Nov 2009

This thread is more than three months old

No one has posted to this discussion for at least three months. Please let old threads die and do not reply to them unless you feel you have something new and valuable to contribute that absolutely must be added to make the discussion complete. Otherwise, please start a new thread in this forum instead.
Message:
Previous Thread in JSP Forum Timeline: How to upload a file in server through JSP and perform some action on that and return
Next Thread in JSP Forum Timeline: Including blob in JSP





About Us | Contact Us | Advertise | Acceptable Use Policy
Forum Index | Build Custom RSS Feed


Follow us on Twitter


© 2011 DaniWeb® LLC