Re: Using Tuscany DAS w/an Oracle table of XMLType

2007-03-20 Thread Luciano Resende
Hi Ron This is something that we would like to have in DAS, but i don't think anyone had started to look into it yet, at least that I know of... would you be willing to help us and contribute this feature ? We in the community could help/support you. -- Luciano Resende

RE: ConcurrentModificationException Disconnected DataGraphs

2007-03-20 Thread Murtaza Goga
Maybe I confused the issue with the way I had coded it. I want to add a reference to the 'department' object in the two disconnected DataGraphs. I was calling DataObject.detach to remove the container reference. The test case will fail with the same exception if you comment out the detach. I am

RE: ConcurrentModificationException Disconnected DataGraphs

2007-03-20 Thread Frank Budinsky
The departments property is a containment reference - not a simple cross-reference (pointer). A DataObject can only have a single container, so SDO specifies that if you add an object to a containment reference, it is automatically removed from its previous container, if it has one. You could

RE: ConcurrentModificationException Disconnected DataGraphs

2007-03-20 Thread Murtaza Goga
Thanks for the clarifications! -Original Message- From: Frank Budinsky [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 20, 2007 1:11 PM To: tuscany-user@ws.apache.org Subject: RE: ConcurrentModificationException Disconnected DataGraphs The departments property is a containment reference