Did you ever get a solution to this issue? I'm having the same issue and my setup is very similar (Tomcat with FDS, Spring, Hibernate, etc). I've found that I can create an object, and it immediately appears in the list component so the fill method is picking it up after it is saved on the backend. However, I cannot delete it without getting the "not managed by this service" error. If I click around and trigger the fill again, it still gives the error. However, if I close the client browser, start a new one, and login again, I can then go and delete that item with no problems.
Any ideas? Bill --- In [email protected], "fabio_sebastiano" <[EMAIL PROTECTED]> wrote: > > Hi all, > i'm facing a really frustrating issues with my web application taht > use flex 2.0, fds and integrate spring and flex. Everything works fine > if a retrieve data from server and display them, but if i try to make > anykind of update on them, it gives me this error: > > [RPC Fault faultString="Item with id > '755B8019-F6C0-1DAA-4B7C-09D02B5271B3' not managed by this service. > Error on destination 'ente'." faultCode="Local.Call.Failed" > faultDetail="null"] > at > mx.data::ConcreteDataService/http://www.adobe.com/2006/flex/mx/internal::dispatchFaultEvent() > at Function/http://adobe.com/AS3/2006/builtin::apply() > at mx.rpc::AsyncDispatcher/::timerEventHandler() > at flash.utils::Timer/flash.utils:Timer::_timerDispatch() > at flash.utils::Timer/flash.utils:Timer::tick()+ > > 1) In the Data-management-config.xml, here's the destionation definition: > > ... > <destination id="ente"> > <adapter ref="java-dao" /> > <properties> > <source>EnteAssembler</source> > <factory>spring</factory> > <metadata> > <identity property="codEnte"/> > </metadata> > </properties> > </destination> > > 2) i've got an assembler class that extends Abstract Assembler and > overide update, create, delete and fill methods. Fill method works fine. > > 3) i've got an AS3 mapping file with managed and remotclass metadata > > 4) spring seems to be well configured because it could retrieve object > and beans. > > Where the error is....???? > Thank you so much > > Fabios >

