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 Mike Lewis 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. calypso13

    Javabean "Property has no getter method" error.. HELP

    I tried that. The Arraylist displayed both the addr and cust columns and data. I also tested the database and connection without the inserting it in an array and it displayed fine.
  2. calypso13

    Javabean "Property has no getter method" error.. HELP

    well, now I dont get any errors but a blank page. I get the idea and will read more on Javabean... thanks :)
  3. calypso13

    Javabean "Property has no getter method" error.. HELP

    I really want to thank you for all your help. I tried the above and now I get the following errors: javax.servlet.ServletException:javax.servlet.jsp.el.ELException: An error occurred while getting property "info" from an instance of class database.Info root cause java.sql.SQLException: Invalid...
  4. calypso13

    Javabean "Property has no getter method" error.. HELP

    I ended up adding the setter and getter method for "addr" in my info.java because everytime I added this <td>${t1.addr}</td>, it also had an error that it couldnt find the "addr" getter method. //info.java package database; public class Info{ private String user; public Info(){ } public...
  5. calypso13

    Javabean &quot;Property has no getter method&quot; error.. HELP

    Am still getting the same error as before. EXCEPTION: javax.servlet.ServletException: Error looking up property "info" in object type "info". ROOTCAUSE: [.LookupUtil] Error looking up property "info" in object type "info". Cause: Unknown property 'info'
  6. calypso13

    Javabean &quot;Property has no getter method&quot; error.. HELP

    Thanks for the help. But why is the setter and getter in both Info.java and Infobean.java? private String user; public Info(){ } public void setUser(String user) { this.user = user; } public String getUser() { return user; }
  7. calypso13

    Javabean &quot;Property has no getter method&quot; error.. HELP

    I am trying to display data info for each user by getting the user value which is already in the session but I keep getting this error. Exception: Error looking up property "info" in object type "test.info". Cause: Property 'info' has no getter method WHat am I doing wrong? //info.java public...
  8. calypso13

    problem selecting multiple table with &quot;UNION&quot;

    I am connecting to a Basis database using JDBC (Basis driver). It works in commandline but not in a JSTL <sql:query>. For testing purposes, I connected to a sample MySQL database using the sql-connector in Tomcat, used the same JSTL statement, and it works fine. So am thinking there is...
  9. calypso13

    problem selecting multiple table with &quot;UNION&quot;

    I have this statement in a JSTL tag. But it only displays the last field "addr". How do I select both tables or multiple unrelated (except for "user" field) tables and display all data found on one page? From what I read, the UNION is what am looking for, but its not working right and am not...
  10. calypso13

    psql: FATAL 1: Permissions Denied error

    I installed PostgreSQL 7.4 on RedHat8, but I keep getting this error when I do "createdb testdb" or "createuser username". I rebuilt postgresql but same thing. Then, I tried a fresh installation, still didnt work. All directory permissions are set to 'postgres' psql: FATAL 1: cannot open...
  11. calypso13

    displaying and retrieving form data

    All images in my directory all start with a 6 digit number, right now the script displays all of the images in that directory and subdirectories. How do I make my form pick up the requested image. Like if I type 012345, it should only display the images that start with the name 012345...
  12. calypso13

    Software error: Can't cd to : HELP!

    I got it to work with File::Find::Rule, I just had to chdir. For some reason the rule wasnt doing it. thanks for the tips.
  13. calypso13

    Software error: Can't cd to : HELP!

    The webuser has access to /var/www/images, I can access it from my browser right now. And I sliced out /var/www/ from the url so its displays http://url/images/someimage.jpg but it still doesnt work in the browser. Could there be another explanation for this error. I checked to see if the...
  14. calypso13

    Software error: Can't cd to : HELP!

    Am a perl newbie. when I try displaying this script in a browser, I get this error "Can't cd to : " . However, this script works in command line. For now, I would like to display the list of files in a browser. Also, how do I create a form to search these images with? thanks #find.pl...
  15. calypso13

    getElementById help and formatting in Javascript

    Thanks for the help but I already tried that. It doesnt work. If I do this " a:active, a:visited {font-weight: bold;}" then the text will remain bold even when users click on a different link. I will figure out something else or way to do it. Thanks for all the help.
  16. calypso13

    getElementById help and formatting in Javascript

    Is there a way to make the text stay bold after the link has been visited? Without "return false;" the text doesnt stay bold, it just acts like a hover or active effect. And with the "return false;", href="default.html" is not processed.
  17. calypso13

    getElementById help and formatting in Javascript

    How do I make the script below work?. It makes the text bold but doesnt go to the default.html page link. The "return false" line stops it. I didnt want to create another stylesheet just to format this one tiny text. Is there a way to format this text in Javascript? <A href="default.html"...
  18. calypso13

    Help! Javascript error. Is Null or not an object error

    I am still getting the same error. Only Happens in IE :(
  19. calypso13

    Help! Javascript error. Is Null or not an object error

    Although the script works, I get this error "textInput.Input is null or not an object." Please help me. what am I doing wrong? //input.htm <html> <title><title> <head> <script language="Javascript" type="text/javascript"> <!-- window.onload=DoThis; function DoThis() {...

Part and Inventory Search

Back
Top