Re: [S2] json-plugin: includeProperties being ignored?

2009-03-01 Thread Andras Balogh
Hi, Try to specify the includeProperties at the definition and not at the result type. BR, Andras john.c.cartwri...@noaa.gov wrote: Hello All, I'm having trouble getting the json-plugin 0.32 to behave as I'd expected. The action is exposing a List of objects annotated as "@JSON(name="ite

Re: Please help to get Arabic i18n(internationalization) using struts2.1.6

2009-03-01 Thread sajidbigler
Hi Dave, Its like when i tried struts2-blank-2.1.6.war example and its working fine.here the logic is not much more complicated.here returns proper i18n even Arabic. this tag wont return proper Arabic i18n .unless we do . i really dint understand how come spanish ,german work but not Arabic.

Re: Acegi with Struts 2.

2009-03-01 Thread Mohan Radhakrishnan
Hi, I was able to fix the Spring Security/Struts 2 filter issue by reordering the filter mappings. Now it works. Thanks, Mohan -- View this message in context: http://www.nabble.com/Acegi-with-Struts-2.-tp22259802p22281615.html Sent from the Struts - User mailing list archive at Nabble.

Re: Struts Ajax Newbie

2009-03-01 Thread chumbobumbo
Thanks for your help, however I think I may have miscommunicated, all I was trying to find out is what is the 'currently acceptable' approach for storing (and retrieveing) data between consecutive ajax calls seeing that one always gets a brand new instance for any (and every) given action. Does St

adding a content-length header

2009-03-01 Thread Michael Finney
Hi, Hypothetically: Let's say I am working with a server that does not always send a HTTP response with a content-length header or a Transfer-Encoding of chunked (with all the required other stuff set). The following thought came to mind: Shouldn't there be a way to get the length of the content

Re: Struts Ajax Newbie

2009-03-01 Thread Mileidys Gonzalez Prieto
Well, for to do actions like that in my code I'm using AjaxTags. http://ajaxtags.sourceforge.net/ Is really easy to use... On Sun, 2009-03-01 at 15:47 -0800, chumbobumbo wrote: > This is probably so basic - I'll put my flame proof suit just in case. > > I have a 2 combos and (yes ;-) I would li

Re: Nested iterator struts 2.1.6 -- automatically rebuild the collection

2009-03-01 Thread musomesa
Hi Phan, ??? I wrestled with this problem until I was out of my depth.? I tried it with an ArrayList> initialized as [[1.0, 2.0, 3.0], [7.0, 8.0, 9.0]] and on resubmission the data keeps getting flattened to [[[1.0]], [[2.0]], [[3.0]], [[7.0]], [[8.0]], [[9.0]]] :( Here is what I have dug u

Re: Please help to get Arabic i18n(internationalization) using struts2.1.6

2009-03-01 Thread Dave Newton
sajidbigler wrote: we can make it in Spanish,German and few but few we cant.which we cant is Arabic. is this a bug can i report to devlopment list?can any one help me out? :( Can you describe the exact problem again? Under what circumstances are you unable to get localized Arabic messages? D

Re: How to specify namespace for s:submit.

2009-03-01 Thread Dave Newton
Zarar Siddiqi wrote: can submit to different actions, I'm just not sure if the namespace can be specified. How? Using the "action" attribute (optionally specifying the method with the "method" attribute). Dave - To unsu

Struts Ajax Newbie

2009-03-01 Thread chumbobumbo
This is probably so basic - I'll put my flame proof suit just in case. I have a 2 combos and (yes ;-) I would like the second one to be loaded depending on what's been chosen in the first one, so in my action execute method I have: model.setList(service.getData1()); my struts.xml looks lik

Re: How to specify namespace for s:submit.

2009-03-01 Thread Zarar Siddiqi
> can submit to different actions, I'm just not sure if the > namespace can be specified. How? Wouldn't the Struts tag just render a form tag with two different submit buttons and clicking on either one will invoke the action defined in the form tag? I don't see how this is possible without the u

No Action mapped for namespace

2009-03-01 Thread aum strut
HI All, i am facing action mapping problem and unable to figure it out where ia m doing wrong. i have a login.jsp page where there are only 2 fileds a loinid and password field i am using AJAX call for user login below is the code from my login.jsp page i am using the f

Re: Please help to get Arabic i18n(internationalization) using struts2.1.6

2009-03-01 Thread sajidbigler
we can make it in Spanish,German and few but few we cant.which we cant is Arabic. is this a bug can i report to devlopment list?can any one help me out? :( -- View this message in context: http://www.nabble.com/Please-help-to-get-Arabic-i18n%28internationalization%29-using-struts2.1.6-tp2312

Re: How to specify namespace for s:submit.

2009-03-01 Thread Wes Wannemacher
On Sunday 01 March 2009 08:52:25 Dave Newton wrote: > Zarar Siddiqi wrote: > > submits a . If you want your two submit buttons > > to call two different actions, you'll need two different forms. > > can submit to different actions, I'm just not sure if the > namespace can be specified. > > Dave

Re: How to specify namespace for s:submit.

2009-03-01 Thread Dave Newton
Zarar Siddiqi wrote: submits a . If you want your two submit buttons to call two different actions, you'll need two different forms. can submit to different actions, I'm just not sure if the namespace can be specified. Dave ---