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 gkittelson 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: Rhoon
  • Order by date
  1. Rhoon

    Problem with html:messages tag

    I'm at a loss, unless there is some way to set the GLOBAL_KEY somewhere... perhaps in the application.resource file? Check out Ted Husted's page: http://husted.com/struts/tips/ Try Tip #17 and see if that works for you and move on from there? http://husted.com/struts/tips/017.html The only...
  2. Rhoon

    call struts action on change of combobox value

    Future tip: use the code [] tags please. Thanks. <html:select name="ann" property="visible" value="val(VISIBLE)" size="1"><html:option value="true">Yes</html:option><html:option value="false">No</html:option></html:select></td> If this is the combo box you are refering to, I'm not sure what...
  3. Rhoon

    Problem with html:messages tag

    what happens when you take message="true" out? message By default the tag will retrieve the bean it will iterate over from the Globals.ERROR_KEY constant string, but if this attribute is set to 'true' the bean will be retrieved from the Globals.MESSAGE_KEY constant string. Also if this is...
  4. Rhoon

    Basic question re: applet in Firefox vs IE and &quot;basic user&quot; on XP

    http://forum.java.sun.com/thread.jspa?threadID=623060&tstart=225 this link may help you out. This person was having the same problem you describe. Let me know if that doesn't solve the issue and I can dig more stuff up. HTH Andrew
  5. Rhoon

    Connecting to Oracle 9i Error

    Author: Timur12345 Sep 6, 2004 5:50 AM (reply 8 of 12) After adding "ORACLE_HOME/lib32" to the java.library.path that error dissapear! But now I have another error! http://swforum.sun.com/jive/thread.jspa?threadID=47979&messageID=153800 googled it. HtH Andrew
  6. Rhoon

    Eclipse?

    Drop your question in the listed Eclipse forum and I'll answer it over there with a lot more examples options and links.
  7. Rhoon

    one action mapping, multiple form beans

    Ted Husted answered this question here: http://www.jguru.com/faq/view.jsp?EID=543700 It should set you in the right direction rather than me reading all the information and trying to tell you how. If that doesn't help you, google the title of the thread you created, you get a good number of...
  8. Rhoon

    Problem rendering the action in HTML

    what if you do this: <html:link action="/home"/>Home</html:link> It should then look for http://www.domain.com/home.do instead of http://www.domain.com/app/home.do Let me know if that doesn't work and we can try figure something else out. No Idea why it would put in a double // Andrew
  9. Rhoon

    UnavailableException: Cannot load a validator resource from '/WEB-INF/

    Not sure if I have a concrete answer for you, but I would look here: <set-property property="pathnames" value="/WEB-INF/validator-rules.xml,/WEB-INF/validation.xml"/> To me, that error is saying it can't find it at all. I would fiddle with the /'s but I just dug up on a few websites on google...
  10. Rhoon

    Problem in passing an Arraylist from JSP to action class

    <% request.setAttribute("messageList", aMsgList); System.out.println("Before for loop. Size =" +aMsgList.size()); <li> <A href="inboxMsg.do?Id=<%=i%>"><%=aTaskId%><%=aTaskMsg%></A></li> %> Could you show us how you are defining aMsgList please?
  11. Rhoon

    recover current page in principal jsp

    How can I recover the current page of my action in my principal.jsp without set parameter or attribute of each action. Could you expand what you mean a little more here? Are you referring to how do you tell which page called the action? Or which action set up the page? If you're really...
  12. Rhoon

    Validating date in an indexed item

    depends="date" Somewhere there you need depends="required, date" I think that's how it goes, but if what I'm reading is, if they leave the date area blank it should pitch an error. Somewhere you need to add the required flag. HtH Andrew
  13. Rhoon

    Help Displaying Error Messages

    <bean:message bundle="errors" key="ERRORS_HEADING"/> This is the only thing I don't follow. Where is the constant ERRORS_HEADING set?
  14. Rhoon

    Installation Configurations

    What kind of configurations? Hardware? Personal Profiles on a multi-user system? Software? MIP (More info Please)
  15. Rhoon

    Power supply not powerful enough?

    Could you give us a little more information? Types and brands of all your system components? MB CPU Vid Card Sound Card (have one?) Any other cards in the computer.
  16. Rhoon

    Help Displaying Error Messages

    and not <> </> en_US.Invalid Taking a guess, I would say that your locale variable is set to true and it's looking application.resources for en_US.Invalid. Can't help you on the rest, I use <html:errors/> It's faster and easier although less robust. HtH Andrew
  17. Rhoon

    war/deployment details

    Q: What are Context XML declarations? A: web.xml, struts-config.xml, tells Tomcat how everything is linked together and what dependancies are defined (that's my understanding of it anyway). Q: What are expanded web applications? A: While I'm not sure about .jar's, I know .war and .ear files...
  18. Rhoon

    different token

    I'm hoping split worked out for you, but just as an exercise for learning (for both myself and others) I wrote what I thought the reasons for your code's failure on first run through. It will hopefully also allow you to gain insight into debugging code easier. ______ This appears to only grab...
  19. Rhoon

    Best tool for creating GUI interfaces

    Visual Editor is not the only one out there either. I have Jigloo and Designer, I only use them these days for creating the initial projects and importing a bunch of libraries then I switch back over to myEclipse, but I'm still trying to learn the SWT and JFace packages which accounts for the...

Part and Inventory Search

Back
Top