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 SkipVought 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. chuq2001

    SQLException

    Thanks, I got it figured out. I wasn't closing my statements after I used them. Chuck
  2. chuq2001

    SQLException

    I'm querying a database from a servlet and I get an SQLException: Limit on statements exceeded. This happens when two clients try using the servlet. any help? Chuck t
  3. chuq2001

    Applet - Servlet socket connection using orion server

    I've got an applet running on tomcat that connects to a servlet and I'm using a URLConnecton. To do this the applet and servlet need to be on the same server. Here's an example. If you need more info post a reply. URL currentPage = getCodeBase(); String protocol = currentPage.getProtocol()...
  4. chuq2001

    Tomcat on an AS/400?

    I'm designing a web app and have tomcat installed on my local machine. I need to install tomcat on our AS/400 and migrate the app to there. I can't find directions to install tomcat on a AS/400. Any Help? Chuck T.
  5. chuq2001

    String to Int?

    I need to convert a String like "011" to an integer.Any Help? Thanks Chuck T
  6. chuq2001

    String to int?

    I have a Sting that is a number("010") and want to convert it to an int. How can I do that? Any Help? Thanks Chuck T
  7. chuq2001

    Need to make non-serializable object serializable?

    I'm sending data by way of an ObjectOutputStream, but the object I want to send does not implament Serializable. Can I get it to be Serilaizable? Thanks Chuck T.
  8. chuq2001

    Browser does not display the contect on http://localhost/8080

    Right, you need to modify your web.xml file. Also make sure you have the right directory structure. Visit this site for a tutorial http://www.moreservlets.com/Using-Tomcat-4.html Chuck T.
  9. chuq2001

    How to get servlet running on tomcat to find .jar file?

    I've got a servlet that needs to access a Database. When I run it I get an exception: No suitable driver. The driver is in jt400.jar. I've added it to the classpath, but it still doesn't work. Any Help? Chuck T. "All this hacking's making me thirsty, I think I'll have a Tab" Homer...
  10. chuq2001

    tomcat JDBC securityRealm for mySQL

    goaganesha, Can you tell me how you solved this? Chuck T.
  11. chuq2001

    accessing JDBC Driver in *.jar file

    I'm having trouble accessing a AS400 database using a servlet. Whenever I add code to the servlet to access the DB I get an exception; server error page:NullPointerException dos prompt: java.sql.SQLException: No suitable Driver I think I need to get Tomcat to find the jt400.jar file with the...
  12. chuq2001

    security. AccessControlException from Applet?

    I'm creating am applet that connects to a database on an AS/400. When I try to connect it gives this error. java.security.AccessControlException: access denied (java.net.SocketPermision <systemname> resolve) where <systemname> is my AS/400 It's obviously a security problem Any help...
  13. chuq2001

    Ambiguous Statement?

    Here's my code Statement stmt1 = connection.createStatement(); It causes error that says Statement is an Amgiguous Type. It worked until I put the coded in an applet. Any help Thanks Chuck T
  14. chuq2001

    Export to PDF?

    I need to export my reports in access to a .PDF file to send over email. Any Help? Chuck T.
  15. chuq2001

    Switch statement?

    I want to use a switch statement, but don't know correct syntax. Like this Switch(var) case &quot;NF&quot; xxx=xxx case &quot;MW&quot; xxx=xxx I just need correct syntax Chuck
  16. chuq2001

    Need code to input parameters for query

    Bob Thanks, I got the whole of it working well along with the between clause. I appriciate all your help, I may need some more! Chuck
  17. chuq2001

    Inputing form data into global variable?

    Thanks for all your help, I got the thing working(thank god) godspeed chuck
  18. chuq2001

    Inputing form data into global variable?

    Here is what I got goin' <code>Global vDiv1 As Variant</code> <code>Function Div1() Div1 = vDiv1 End Function</code> thats my variable and function then I have a form with a text field, I want to input a value into the field, press a button(OK), and have the inputted value put...
  19. chuq2001

    Inputing form data into global variable?

    When I get the variable this way it gives me an error: Object doesn't support property of method. Basically, I have a form I would like to input the divisions of the company to query. I need to get those divisions from the form into a variable that my query can call. If I hard code the variable...
  20. chuq2001

    Inputing form data into global variable?

    I want to read a value entered into a textbox of a form into a globaL VARIABLE. I don't know the vba code to do it in a module. Any help Thank you Chuck

Part and Inventory Search

Back
Top