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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by mythaeus

  1. mythaeus

    Can we use multiple ActionServlet in Struts?

    the first question you need to ask is WHY do you need to use multiple servlets. struts is a SINGLE servlet model framework that supports multiple modules (for larger and coordinated application development) if that's what you're looking.
  2. mythaeus

    J2EE vs Jakarta Struts

    jsf is just another web framework, similar and overlapping struts, a slight variation on struts, but is component-based rather than request-based. jsf still generates HTML in the end, still young and not yet as popular. here a decent article to find out more info: www.virtuas.com/osl-jwf-01.pdf.
  3. mythaeus

    struts alternative to ...

    struts DOES have role-based authorization (roles attribute)at the action mapping level. look at the user guide again. the filter will help with authentication mostly. finer grain authorizations (buttons, links, page components etc.) will require your own custom solution (e.g custom tag or...
  4. mythaeus

    J2EE vs Jakarta Struts

    you're not listening. re-read the previous reply. J2EE needs a web and controller front which is the Servlet/JSP combination, something that Struts provides in a structured/streamlined manner. Struts INTERACTS and works within J2EE specs, but doesn't "INCLUDE technologies provided by J2EE"...
  5. mythaeus

    Struts v ColdFusion

    i have 3 years of struts experience and 7 years + of coldfusion (both deep hardcore experience, not brushing knowledge). it's a somewhat valid statement, but not totally fair. the true answer is 'it depends'. it depends on your current environment, size/type of your application, and a variety...
  6. mythaeus

    Problem getting default value in HTML:SELECT

    see my reply to this post: http://www.tek-tips.com/viewthread.cfm?qid=1053065&page=1 . you should consider using html:options instead of iterating through the list manually.
  7. mythaeus

    Passing Tiles from one request to the next

    you CANNOT use tiles the same way you use frames as you described. there isn't such a thing as 'target' in tiles. think of tiles as includes (must be refresh each time to change), and not independent frames or iframes.
  8. mythaeus

    struts-html-el.tld or just struts-html.tld

    i have been using struts for more than 2 years and have accountered all kinds of forms imaginable. i also use JSTL instead of the remaining struts tag-libs and i have yet to need the EL library.
  9. mythaeus

    try try again

    if the pre-select value is fixed, you can initialize it in your form-property using the 'initial' attribute. struts-html automatically populate your form with initial values if defined. if the pre-select comes from the backend, you need to do a form.set("myFormField", preselectValue); inside...

Part and Inventory Search

Back
Top