Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Urgent Help Error message calling a Java Method in JSP

Status
Not open for further replies.

ilarum

Programmer
Aug 25, 2003
13
DE
Hi,
I have tomcat installed on my local machine. I have JSP. Which on load calls a method test which takes as arguments a 2D Array of Stringsof a class Test. When I create an instance of this method and call this method. I get an error message as NoSuchMethodError. The method exists but still pops up this error. I tried calling other methods that do no accept arguments and the work fine. Why is this could any body help me in this.

With Regards
Murali
 
Sounds like you may have a naming conflict on your CLASSPATH - eg a class Test is in one directory with method a(), but class Test is in another directory on your CLASSPATH with no method a() ...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top