Re: Dynamic Type Definition...

2007-08-07 Thread kelvin goodson
I think you need the fix in https://issues.apache.org/jira/browse/TUSCANY-1408 that is part of the 1.0-incubating release which is currently being voted on. Regards, Kelvin. On 25/07/07, Upeka Bulumulle [EMAIL PROTECTED] wrote: Hi All, Tuscany SDO version: Tuscany SDO 1.0 beta1. I'm trying

RE: Dynamic Type Definition...

2007-07-25 Thread Dean Povey
I think the problem is that when you set many=true then the attribute becomes a list rather than a bare type (otherwise there is no way to add multiple attributes). You need to do: Listint custNum = new ArrayList(); custNum.add(1000); createdDO.setList(custNum, custNum); I didn't see the