Re: [Native] Threading issues with Ruby on Windows, was: Alert Aggregator Sample - was: Web 2.0 sample

2007-02-12 Thread Simon Laws
On 2/12/07, Jean-Sebastien Delfino [EMAIL PROTECTED] wrote: [snip] Andrew Borley wrote: Further things that could be done: Demonstrate use of more than one language/SCA runtime. Currently all components are implemented in Python. There is a Ruby version of the POPChecker, but I hit

WS-BPEL implementation for SCA Module

2007-02-12 Thread Krishnakumar B
Hi, Can i implements a SCA Module in Tuscany as a WS-BPEL flow. Are there any examples for this? Regards Krish - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: SDO (Types) Registry

2007-02-12 Thread Christian Landbo Frederiksen
Let me first say, I don't not have very much insight into how Tuscany is built up. I am dealing with a situation where the xsd's, that define the format of a generic data publishing sysem, can be added and changed dynamically - even the individual types of a namespace can be changed (probably

Re: SDO (Types) Registry

2007-02-12 Thread Jeremy Boynes
I'm not sure if this is relevant but if you are looking to manage schemas themselves rather than instances described by them, the Apache XmlSchema project may be useful as well. http://ws.apache.org/commons/XmlSchema/index.html -- Jeremy On Feb 12, 2007, at 10:40 AM, Christian Landbo

Re: SDO (Types) Registry

2007-02-12 Thread Yang ZHONG
(Package/Types) Registry can be designed/implemented to load/refresh on demand to address your requirement, such as: 1. Runtime/user queries the Registry 2. If type wasn't loaded, load it; Otherwise, if source was updated, reload it The previous Registry version I worked on executed that way to

RE: SDO (Types) Registry

2007-02-12 Thread Christian Landbo Frederiksen
Yes! That sounds right. Any pointers as to how one could do that :) ? /Chr -Original Message- From: Yang ZHONG [mailto:[EMAIL PROTECTED] Sent: 12. februar 2007 20:03 To: tuscany-user@ws.apache.org Subject: Re: SDO (Types) Registry (Package/Types) Registry can be designed/implemented

RE: SDO (Types) Registry

2007-02-12 Thread Frank Budinsky
Christian, I don't think your scenario is beyond the purpose of SDO - In fact, I see it as a real world example that we should try to accommodate. To provide an option that allows you to overwrite/replace existing types, would not be difficult to do - but it would be dangerous to use if, for

Re: SDO (Types) Registry

2007-02-12 Thread Yang ZHONG
I prototyped some work in that area for Tuscany ( http://issues.apache.org/jira/browse/TUSCANY-677), see the email thread if interested ( http://www.mail-archive.com/tuscany-dev@ws.apache.org/msg07197.html). It was very long :-) It was paused due to only one client (Fuhwei) and Tuscany (SDO)

RE: SDO (Types) Registry

2007-02-12 Thread Christian Landbo Frederiksen
Hi Frank et. al. First I'll summarize my use case as Yang Zhong requested: An xml schema is uploaded and SDO is used to generate a form for submitting data as xml-instances of the schema. New schemas in the same namespace may be added often resulting in new forms (this is the first issue where