Hello, I heve a big problem using Jrun with IIS 4.0. It is the following

error.
I have a .class from the .java following:
package a.b;
class A{

 public void lola(){
  System.out.println("lola");
 }
}

public class B extends A{
}
As you can B extends A and you can do B b = new B(); b.lola(); whithout
problems

And i have too the jsp file;
lola.jsp

<%@ page language="java" import="a.b.*" %>
<%
 A a = new A();

 a.lola();
%>

If you try to do it, Jrun gives you an error message of accesing
violated in run-time

�Can you help me?

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

Reply via email to