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 IamaSherpa 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: *

  • Users: odenc
  • Order by date
  1. odenc

    10g AS - occasional "page cannot be displayed"

    Hi all, I am coming across a problem with my new installation of Oracle 10g AS. It is a deployment containing Java servlets. Every now and then users get a message to say "Page cannot be displayed". I imagine it may be something to do with the timeout settings and when the server is not detected...
  2. odenc

    File Upload/Virus Scan

    I need to integrate some kind of error handling in my code to ensure that if a virus is found, that the file is then prevented from being uploaded to the database. I don't think just scanning any new files on the server will be enough.
  3. odenc

    File Upload/Virus Scan

    Ref thread855-848267 I am looking for a way to ensure that files uploaded to my web application server are virus free. Has anybody out there done something like this before? Am very happy to shell out for antivirus software, but I really need to be sure that it will do the job. I have a web...
  4. odenc

    How to put a value in an input file box?

    Thanks for the advice everybody! I think I am now going to have to focus on "user acceptance" to bypass this problem!
  5. odenc

    How to put a value in an input file box?

    I am trying to put a value into an input file box. On the HTML form the user has the option to upload another file. If they have previously browsed and chosen a file, when the page refreshes this value is wiped. Because this would be a pain for users, I am trying to get it so the value is...
  6. odenc

    How to test if a certain String containg another String?

    You could do something like the following: String myString = "1,2,3,4"; int myNumber=2; boolean myBoolean = myString.indexOf(valueOf(myNumber)) > 0; if myBoolean is true then the number is in the string.
  7. odenc

    Getting the name of the current method

    Hi all, I am using JDK 1.3.1 and want to get the name of the current method as a string (for exception handling). Does anybody know how to do this? Thanks, Caroline.
  8. odenc

    Finally block not being executed

    try { sql = SOMESQL STATEMENT results = this.getDbManager().executeSelect(sql); if (results == null) { throw new RecordNotFoundException("Error Retrieving record for" + aUserId); } else if (results.next()) { incorrectLogins = results.getString("COUNTER"); } } catch...
  9. odenc

    Finally block not being executed

    Hi All, I am debugging some java code, and have noticed that the finally block is not being executed. As far as I am aware, in a try-catch-finally declaration, the finally part should always be run. Is this the case? And if so, does anybody have any idea why this block of code is being skipped...

Part and Inventory Search

Back
Top