[OS-webwork] WW2.0 + XML Mapping+ HashMap support

2004-03-07 Thread kiran kumar
Hi, In WW1.4, A HashMap returned from Action Result was converted to XML with a "key" , "value" pair mapping. However with WW2.0, HashMap is not being converted to its corresponding XML. All the other data types including Lists work fine except HashMap. I have checked the source for WW2.0 and it

[OS-webwork] Spring integration using ObjectFactory

2004-03-07 Thread Simon Stewart
I've just uploaded a simple implementation of the ObjectFactory to JIRA that offers support for using Spring to create (and therefore wire) Actions in XWork. In order to make this approach work, it was necessary to change the ActionConfig class so that a reference to the Action's class name was

Re: [OS-webwork] Chaining actions question

2004-03-07 Thread Matthew Payne
I added "a" second example to the wiki. here http://wiki.opensymphony.com/space/Webwork+-+Why+would+I+use+Action+Chaining%3F Bar viewFoo /foo Matthew Payne wrote: I added an second example to the wiki here http://wiki.opensymphony.com/space/Webwork+-+Why+would+I+

Re: [OS-webwork] Chaining actions question

2004-03-07 Thread Matthew Payne
I added an second example to the wiki here http://wiki.opensymphony.com/space/Webwork+-+Why+would+I+use+Action+Chaining%3F Matthew Payne wrote: I figured it out. If I want to chain to an action in the same package/namespace, I can just to ... viewJob ... If I want to cha

Re: [OS-webwork] Chaining actions question

2004-03-07 Thread Matthew Payne
I figured it out. If I want to chain to an action in the same package/namespace, I can just to ... viewJob ... If I want to chain to an action in a different namespace, I have to set it up like. ... viewJob /jobs

Re: [OS-webwork] Open Source Java Programming errata

2004-03-07 Thread Francisco Hernandez
I found some problems with the lucene examples in the book and havent be able to find an errata page for the book either Aaron Held wrote: Is there an errata page for the book Java Open Source Programming?? Spent some time trying to get this to work: Before I figured out that I needed to add s

[OS-webwork] Open Source Java Programming errata

2004-03-07 Thread Aaron Held
Is there an errata page for the book Java Open Source Programming?? Spent some time trying to get this to work: Before I figured out that I needed to add something like: listKey=top.value listValue=top.key (Thanks to the webwork list) I downloaded the petsoar app - which has beta webwork and

[OS-webwork] WINNING NOTIFICATION

2004-03-07 Thread JIM VAN GILL
FROM: THE DESK OF THE PROMOTIONS MANAGER, INTERNATIONAL PROMOTIONS/PRIZE AWARD DEPARTMENT REFERENCE NUMBER: NL/255125600304 BATCH NUMBER: 54/1017/IDL ATTENTION:Sir/Madam, AWARD NOTIFICATION We are pleased to inform you of the result of the winners of THE INTERNATIONAL LOTTO

[OS-webwork] Chaining actions question

2004-03-07 Thread Matthew Payne
What is the syntax for chaining to an action in a different package? I know what I have below is wrong. . . . . . /WEB-INF/vm/CreateCronTrigger.vm ../job/viewJob /WEB-INF/vm/CreateCronTrigger.vm Thanks, Matt ---