Masaoud wrote:

> Hi,
>
>     I am using a bean inside a JSP page and trying to call a method
> (which is a non-get/set method). When the JSP page is invoked,
> following error is reported
>
> 500 Internal Server Error
> Java Server Page Translation Error
> Error during compilation :
> D:\JavaWebServer2.0\tmpdir\default\pagecompile\jsp\_ees\_newUrl.java:101:
> Method addURL() not found in class abc.xyz.test.
>                    mybean.addURL();
>                                 ^
> 1 error
>
> But if I replace the addURL() method by any get/set method,
> no errors are reported.
>

Is your addURL() method public?

>
> Are there any constraints on the methods that can be invoked
> from a JSP ? or only the get/set methods can be called ?
>

In a scriptlet you can do anything you can do in Java.

>
> Regards
>
>   Masaoud
>

Craig McClanahan

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
FAQs on JSP can be found at:
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html

Reply via email to