-
hi
I want to invoke javaBean from Jsp. I put jsp file in public Html and the javabean class in c:\weblogic\myserver\classess. And also uncooment and wrote necessary statements in weblogic.properties file.
after running the jsp file display the following error on browser
class not found (beanclass) in c:\weblogic\myserver\servletclass\jsp_servleet;: servletclass.javabean name . class
please help me about that..
regads
Bala Murali
-
Try:
1.Make sure you import the package containing your beans in
the JSP.
<%@page import="com.xyz.web.beans" %>
If the above doesn't help, also try:
2. Make sure you have 2 different classpaths, one seperate
for servlets(servlet.classpath) and the other for
beans and other weblogic classes(weblogic.classpath)
-
Thanq for giving information