[DAS] DAS as web service

2007-11-14 Thread Amita Vadhavkar
There is an old thread - http://www.mail-archive.com/[EMAIL PROTECTED]/msg01951.html I am just trying to continue the discussion here to come up with requirement, use cases and a basic implementation. Standalone DAS can be used by client by having the required jar in classpath. By exposing DAS as

Re: [DAS] DAS as web service

2007-12-12 Thread Amita Vadhavkar
I could see that static and dynamic DOs (using xsd:anyType) can be passed using web service, but when it comes to DataGraph containing ChangeSummary is there a way to pass it as parameter? -Amita On Nov 14, 2007 6:34 PM, Amita Vadhavkar <[EMAIL PROTECTED]> wrote: > There is an old thread - > htt

Re: [DAS] DAS as web service

2007-12-13 Thread Amita Vadhavkar
Further down the road, I tried to insource datagraph.xsd in my .wsdl definition like - have xmlns:sdo="commonj.sdo" in the definition and import as below - and the out param of my web service as - and have web service like - public commonj.sdo.DataGraph

Re: [DAS] DAS as web service

2007-12-13 Thread Luciano Resende
Looks like you are starting to face some of the same issues I had in the past... I can see two issues here : Passing Data Graphs and Change Summary, and ensuring the client (e.g a web 2.0 application) would be SDO Enabled to handle this data representation and maintain it. Maybe a better alternati

Re: [DAS] DAS as web service

2007-12-14 Thread Luciano Resende
Sure, maybe a good first step would be to agree on a "data" interface to be used. On Dec 14, 2007 4:52 AM, Amita Vadhavkar <[EMAIL PROTECTED]> wrote: > Thanks Luciano, I will give a try to implementation-data-sdo. > -Amita > > > On Dec 13, 2007 5:18 PM, Luciano Resende <[EMAIL PROTECTED]> wrote: >

Re: [DAS] DAS as web service

2007-12-14 Thread Amita Vadhavkar
Thanks Luciano, I will give a try to implementation-data-sdo. -Amita On Dec 13, 2007 5:18 PM, Luciano Resende <[EMAIL PROTECTED]> wrote: > Looks like you are starting to face some of the same issues I had in > the past... I can see two issues here : Passing Data Graphs and Change > Summary, and e

Re: [DAS] DAS as web service

2008-01-04 Thread Amita Vadhavkar
I am checking impl-data-pojo from the sandbox and also can see the generic org.apache.tuscany.sca.implementation.data.collection.Collection from impl-data-api. I guess this interface is generic and can be used as the starting point for any sample implementations like what is there in impl-data-pojo

Re: [DAS] DAS as web service

2008-01-05 Thread Jean-Sebastien Delfino
Amita Vadhavkar wrote: I am checking impl-data-pojo from the sandbox and also can see the generic org.apache.tuscany.sca.implementation.data.collection.Collection from impl-data-api. I guess this interface is generic and can be used as the starting point for any sample implementations like what i