Hello all,
Does anyone know if SWF will automatically bind http request params to object properties of *non primitive* flow inputs? For example, if I've defined the following flow input:
And foo has two String attributes attr1 and attr2. I'd like to be able to launch this flow passing in the values for attr1 and attr2 in the query string and have the "myInput" object populated with those values. I used this feature in Spring MVC but haven't found the right syntax to get SWF to bind correctly. I've tried passing the params as attr1, myInput.attr1, and foo.attr1 to no avail. Is this possible out of the box with SWF (without having to create any kind of custom converter class). I'm using SWF 2.3, Spring 3.0.5. Thanks in advance!Code:<input name="myInput" type="a.b.c.Foo"/>
Seamus


Reply With Quote
