>
> Hi there
> I was wondering if anybody could help me out with
> something?
>
> I have a JSP that is trying to access a method in a
> java class that I have defined. However, when I try
> and run the pgae, it gives the 500 error message and
> says
>
> "Can't make static reference to method
>
The problem is that you have not declared the method as static. So you need
to either do this :
(new dynamicContent.dynamicContent()).getSelected("A", "B");
or declare the function as static String getSelected(string a, String b) and
call
dynamicContent.dynamicContent.getSelected("A", "B");