query string with more then one param in struts-config.xml

2002-08-20 Thread Sriram Nookala
I have the following forward within an action in struts-config.xml: forward name=success path=/do/campaign/entry?op=viewreload=1/ However tomcat doesn't seem to like it, so I changed it to: forward name=success path=/do/campaign/entry?op=viewamp;reload=1/ This however doesn't seem to do the

Re: html:options with a Map collection

2002-05-14 Thread Sriram Nookala
I've been trying to find documentation on how to use a Map collection in html:options with the Map key as the label name and the Map value as the label property. thanks, sriram -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: html:options with a Map collection

2002-05-14 Thread Sriram Nookala
, May 14, 2002 11:11 AM Subject: RE: html:options with a Map collection A Map is not a Collection. Mark -Original Message- From: Sriram Nookala [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 14, 2002 10:48 AM To: Struts Users Mailing List Subject: Re: html:options with a Map

html:options with a Map collection

2002-05-13 Thread Sriram Nookala
I've been trying to find documentation on how to use a Map collection in html:options with the Map key as the label name and the Map value as the label property. thanks, sriram -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

authentication and authorization with struts and ldap

2002-04-02 Thread Sriram Nookala
I'm looking for resources and examples in order to integrate ldap with struts for authorization and authentication. thanks, sriram

nested:iterate and nested:nest issues

2002-02-28 Thread Sriram Nookala
I have the following code in my jsp within a html:form tag: Here attributeDefintionList is a collection of AttributeDefintion beans. AttributeDefinition has a property type which itself is an AttributeType bean with a property store. The code I have doesn't seem to setting and getting store for

use of nested:iterate and nested:nest tags

2002-02-28 Thread Sriram Nookala
I have the following code in my jsp within a html:form tag: Here attributeDefintionList is a collection of AttributeDefintion beans. AttributeDefinition has a property type which itself is an AttributeType bean with a property store. The code I have doesn't seem to setting and getting store for

help with logic:iterate

2002-02-25 Thread Sriram Nookala
I have the following snippet of code in my jsp: logic:iterate id=columnName name=ParticipantImportWizardForm property=columnNameList table border=1 width=80% tr td width=50%h3 align=centerColumn Name/h3 /td td width=50%h3 align=centerType/h3 /td /tr

Re: help with logic:iterate

2002-02-25 Thread Sriram Nookala
html:text name=columnName / doesn't work since property is a required attribute. - Original Message - From: keithBacon [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED]; Sriram Nookala [EMAIL PROTECTED] Sent: Monday, February 25, 2002 12:19 PM Subject: Re: help

Re: help with logic:iterate

2002-02-25 Thread Sriram Nookala
/ ...and of course don't forget to close the iterate tag with the /nested:iterate If you're not on the nightly build, you can get the download from here... http://www.keyboardmonkey.com/struts It simply makes quick work of iterating and nesting beans as you are here. Arron. Sriram Nookala wrote

Re: Display taglib

2002-02-22 Thread Sriram Nookala
My working example is as below: %@ taglib uri=/WEB-INF/struts-html.tld prefix=html % %@ taglib uri=/WEB-INF/display.tld prefix=display % display:table width=75% name=seglist display:column property=name title=Name href=/campaignapp/do/segment/details paramId=id paramProperty=id /

error implementing menus using tiles

2002-02-07 Thread Sriram Nookala
I'm trying to create a dynamic menu using the tiles tutorial, but I get the following error when I display the jsp: [ServletException in:/topnavbar.jsp] Cannot find bean links in scope page' What am I doing wrong? thanks, sriram My implementation is as follows: 1. I have a topnvabar.jsp

Tiles Vs Templates

2002-02-04 Thread Sriram Nookala
I'm trying to get some information in order to make a choice between struts templates and Tiles for our UI design and templating. Where would you choose one over the other, and what does Tiles offer you that Templates doesn't? thanks, sriram -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED]

request value not being dispayed in jsp

2002-01-31 Thread Sriram Nookala
I have the following line of code in my action class's perform method: request.setAttribute(test10,This is a test); In the jsp that the action forwards to I have the following line of code: % out.println(request.getAttribute( test10)); % I get null as the value. What am I missing here?

examples of struts templates struts templates Vs Tiles

2002-01-30 Thread Sriram Nookala
I'm looking for good examples of using struts templates for building a UI. I'm trying to figure out how to display the current tab as selected using templates, haven't found any example that helps me do that. Also, is Tiles the recommended way of templating screens or should Struts templates

Required attributes for 'Action' tag in struts-config.xml

2002-01-25 Thread Sriram Nookala
I have the following action mapping in my struts-config.xml: action path=/campaign/main type=com.proteusmobile.actions.CampaignMainAction /action When I build and run the application I get the following error: javax.servlet.ServletException: Cannot create rewrite URL:

required attributes for 'Action' tag in struts-config.xml

2002-01-24 Thread Sriram Nookala
I have the following action mapping in my struts-config.xml: action path=/campaign/main type=com.proteusmobile.actions.CampaignMainAction /action When I build and run the application I get the following error: javax.servlet.ServletException: Cannot create rewrite URL:

persistance for wizard type forms

2002-01-23 Thread Sriram Nookala
I'm developing wizard-type forms using struts. The data I entered previously doesn't show up when I go back to the previous form even though I use the same 'ActionForm' for all the wizard forms and I set the scope in the action mapping to 'session'. What am I missing ? -- To unsubscribe,