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!

Search results for query: *

  1. ilarum

    Urgent Help Error message calling a Java Method in JSP

    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...
  2. ilarum

    Urgent Help

    Hi, I have String of this format 08/25/2003 or 08.25.2003. I need to convert this to a Calendar. How do I achieve this. Well the reason for this format of String is that in these values are retrieved from a HTML input tag where the user enters and they need to be converted to Calendar type. How...
  3. ilarum

    Call a method in a class on click of a Hyper Link

    Hi, I have a JSP Page that has an applet embedded in it. The applet is loaded. Now I have a hyperlink in the JSP. On the click of it I need to call a mthod in a class. How do I achieve this. With Regards Murali
  4. ilarum

    Problem in resolving the class files the jar .

    hi, Well I had the classes in a certain package. Then I jarred them and placed in the lib directory its perfectly fine right. I had an applet in these classes. A JSP had an applet embedded in it. But it says unable to resolve the classes why is it. With Regards Murali
  5. ilarum

    Problem in resolving the class files the jar .

    Hi, When we create a webapplication. We have the following structure. MyWebApp jsp files html files images logo.gif WEB-INF web.xml classes sample.class test.class...
  6. ilarum

    What is TomCat

    Hi, Could anybody say me what exactly is tomcat. A Definition for tomcat. Is it an application server with a servlet container. With Regards Murali
  7. ilarum

    Retreving values in a jsp

    Hi, Here is the code that can achieve this objective. //First JSP <%@ page import = &quot;java.util.Hashtable&quot; %> <html> <% if(request.getParameter(&quot;name&quot;) != null && request.getParameter(&quot;email&quot;) != null) { Hashtable ht = new Hashtable()...
  8. ilarum

    Retreving values in a jsp

    Hi, Is not possible technically. With Regards Murali
  9. ilarum

    Retreving values in a jsp

    Hi, Assume that I dont want to use a intermediate servlet/jsp. Then how do you achieve this. Do let me know. With Regards Murali
  10. ilarum

    Retreving values in a jsp

    Hi, Assume that I have a JSP with input fields. Also I have a submit button which when clicked takes you to another JSP. But the need is here to ensure that when I click the values from the i/p field (entered by the user) should be retrived and stored in a 2d array. And I need to pass this 2D...
  11. ilarum

    basic doubt in tomcat

    Hi, What is the tomcat server. Is it an application server that contains only the servlet container. With Regards Murali
  12. ilarum

    Pass a 2D Array from one JSP to another

    Hi, I have a JSP page that has a 2D Array of Strings. I need to pass this 2D Array to another JSP. But when I pass its a null. The code is as follows <html> <body> <from method = &quot;post&quot; action = &quot;two.jsp&quot;> <% String[][] data = {{&quot;USER&quot;, &quot;TOM&quot;}...
  13. ilarum

    Calling JavaScript in JSP on click of a button

    Hi, I have JSP with an applet embedded in it. The applet has a method called test(). In the JSP I have button called test. Now I need to call the method test on the click of the button in the JSP. The JSP code is as follows. <html> <head> <script type = &quot;text/javascript&quot; language...

Part and Inventory Search

Back
Top