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 ajaybrar

  1. ajaybrar

    nested tags

    hi! found my error. <nested:root name=&quot;newUser&quot;> <nested:write property=&quot;name&quot;/> </nested:root> the above was fine and the reason i spend so many agonizing days looking for the error was because i didn't add the include statement for the tag, 'nested' at the start of my...
  2. ajaybrar

    nested tags

    hi! just a clarification, useBean is used to bring the bean into scope, in my example above the bean is already placed in the session. with nested tags, i thought the point was the the outer tag defines the bean (with eg: nested:root), then the inner tags refer to that bean by default. eg: with...
  3. ajaybrar

    nested tags

    hi! i'm doing nested statements for the first time so please tell me where i am wrong. can i write <bean:write name=&quot;newUser&quot; property=&quot;name&quot;/> as <nested:root name=&quot;newUser&quot;> <nested:write property=&quot;name&quot;/> </nested:root> would they give the...
  4. ajaybrar

    logic:iterate collection=&quot;&quot;

    hi! can someone tell me whats wrong with this? I am placing a vector of TransactionBean in session as session.setAttribute(&quot;resVector&quot;, resVector); i then place an empty TransactionBean in session scope as well TransactionBean tb = new TransactionBean()...
  5. ajaybrar

    Cannot retrieve definition for form bean null

    hi! i had heard that a form bean for a form was optional, not sure why i am getting this error here. i have a button on a page and it goes like <html:form action=&quot;/kiosk&quot;> browse kiosks <html:submit value=&quot;Submit&quot;/></html:form> in my struts-config.xml i have defined the...
  6. ajaybrar

    cant find .do

    hi! my action mapping is, <action path=&quot;/agency&quot; type=&quot;AgencyAction&quot; scope=&quot;request&quot;> <forward name=&quot;success&quot; path=&quot;/agency.jsp&quot; /> </action> AgencyAction accesses the database, creates a User...
  7. ajaybrar

    deploying ejb's with tomcat

    hi! i am trying to deploy ejb's with tomcat, but from what i have found out you need some sort of middleware such as OpenEJB to do this. is there an alternate way of doing it? thanks ajay
  8. ajaybrar

    cant find .do

    hi! i just tried that. it still doesn't work http://www.ajaybrar.net/projectv5/menu.jsp i get a HTTP 300 Multiple Choices error
  9. ajaybrar

    cant find .do

    hi! i'm having a problem with my struts application. i have used <html:link page=&quot;/blah.jsp&quot;>blah</html:link> for my links. since this attaches a dynamic string to the end of the link, ie, the ;jsessionid=dsfhj3h2j3 this gives me a HTTP 300 Multiple Choices error. i get a...

Part and Inventory Search

Back
Top