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 strongm 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. MalCarne

    The more that I read about relative paths, the more confused I get

    Can someone help me out with this? This is actually more java specific than jsp, but it's easier to illustrate with the jsp pages. From what I've read, relative paths are relative to where the method is being executed from. I have a class that should read a text file using a relative path. If...
  2. MalCarne

    jsp:useBean problem

    If nothing else, can someone suggest another method?
  3. MalCarne

    jsp:useBean problem

    The real issue in this is that the processing jsp has no awareness of the posted data, despite the post method from the submitting page. Frankly, I'm at a loss as far as form submission in jsp goes. A post should result in form information being written to the header. A request.getParameter, if...
  4. MalCarne

    jsp:useBean problem

    I've got a very simple form that posts to a processing jsp page. The processing page amounts to <jsp:useBean id="Handler" class="user.getEmployeeFormData" scope="request" > <jsp:setProperty name="Handler" property="*" /> </jsp:useBean> <jsp:forward...
  5. MalCarne

    Dumb relative path question

    I'm trying to access a servlet in my jsp using <jsp:forward/>. The structure that I'm using is based off of this article: http://www.javaworld.com/javaworld/jw-03-2000/jw-0331-ssj-forms.html?page=2 So, I put the relative path to the servlet in the jsp tag and consistently get a 404 error when...
  6. MalCarne

    NullPointerException when calling class from jsp

    I see. The jdbcodbc driver is supposed to be in rt.jar, isn't it?
  7. MalCarne

    NullPointerException when calling class from jsp

    No, but the compiler screams about them not being static if I change that. Changing to if (con != null && !con.isClosed()) bypasses the error, but doesn't really get me that far, as I'm kinda hoping to return some data here. The part that confuses me the most here is that I can run the...
  8. MalCarne

    NullPointerException when calling class from jsp

    I've got a very simple jsp page that calls a class method to return a ResultSet. The method calls another method in the same class to return a Connection. When run stand alone, everything within the class runs as expected. But when called from the jsp, the Connection throws a...
  9. MalCarne

    Web Service Client

    I resolved the problem. Easy fix. Uninstall any IDE's and anything vaguely java related and reinstall the latest JDK and JRE. Reinstall IDE and all is well. Small matter of 4 hours to accomplish all of that, but I have a working web service. Thanks for your help.
  10. MalCarne

    Web Service Client

    Both from the IDE and the command line I get loads of lovely errors. From the command line - the class "Client" lives in package "client" so from the client directory I run "java Client" where I get "Exception in thread main NoClassDefFoundError: (wrong name: client/Client)" My classpath...
  11. MalCarne

    Web Service Client

    Dian, Thanks for the tip, I'm already using an eclipse based IDE. I'm finding that I'm not only struggling with the java element of things, but having to learn the IDE at the same time results in further headaches. I've caught the RemoteException that I mentioned above and now get no def class...
  12. MalCarne

    Web Service Client

    I'm just trying to wrap my head around things at a very basic level right now (besides, the way my company works translates to "just do it, get it right later"). So, I've tried what timw posted, which is the same thing that I've been trying to get to work for a week (slightly different naming...
  13. MalCarne

    Web Service Client

    That's where I get a little lost. Can I call the methods in the stub like in the jsp I posted, or am I supposed to add methods to the stub. Sorry for being a bit thick headed.
  14. MalCarne

    Web Service Client

    I'm new to Java and know just enough about web services to be dangerous in C# and VB. I have to create an app that uses web services and am hitting a wall. I have a simple class that returns a string that I've deployed as a web service using websphere application developer. I can create a jsp...
  15. MalCarne

    T1 Resources

    I'll forward these along. Thanks for the info.
  16. MalCarne

    T1 Resources

    I'm doing an install for a client who needs some configuration help. They have a 6608 w/Call Manager 4.0.3. I need 8 T1 channels from the 6608 to my equipment. I've searched through Cisco's site, looking for some configuration info for the client. Does anyone know a resource that I can point...
  17. MalCarne

    weird ie problem

    Thanks all. The onclick=function works in both browsers.
  18. MalCarne

    weird ie problem

    Sorry, monksnake posted while I was. By "that" in my above post I was referring to the addEventListener
  19. MalCarne

    weird ie problem

    I've tried that both before the appendChild and after. Both result in "Object does not support this property or method". Again, only in IE.
  20. MalCarne

    weird ie problem

    Just an update, IE won't respond to ANYTHING that I've tried for an onClick, even just a simple alert. Again, it all works fine in IE. I'm wondering if this is not getting bound to the form properly?

Part and Inventory Search

Back
Top