Re: Axis2 Binding use of Inbound Wire?

2006-08-02 Thread Venkata Krishnan
Hi Jeremy, I am trying to get a sample up for the RMI Binding and I am also stuck with the inbound wire not being set (i.e. it is null). Could you please help me identify what I could be missing out here? Thanks. - Venkat On 7/31/06, Scott Kurz [EMAIL PROTECTED] wrote: I'm trying to

RE: Problem with suplly chain

2006-08-02 Thread Meeraj Kunnumpurath
Jeremy, Ok, this is my suggestion ... 1. Have an annotated destroy method on the ThreadPoolWorkManager that will shutdown the executor. I tried this, however, for some reason the destroy method is not getting called. Is there anything else I need to do apart from the @Destroy annotation on the

Re: JBI Component for Tuscany

2006-08-02 Thread ant elder
fyi, i've copied the current servicemix binding code to our repos so we can start working on it here now. http://svn.apache.org/repos/asf/incubator/tuscany/java/sca/bindings/binding.servicemix/ ...ant On 8/1/06, ant elder [EMAIL PROTECTED] wrote: I've had a look at this code now I think we

Re: [C++ SCA] Language bindings embedding the runtime

2006-08-02 Thread ant elder
How about a C++ JavaScript extension to match the one we have in Java/SCA? You can use SpiderMonkey [1] which also has E4X support and then we'd be able to switch SCA JavaScript components btw the Java and C++ runtimes. Using E4X would mean you don't have the databinding issues when using web

Re: RMI Binding

2006-08-02 Thread Venkata Krishnan
Hi Jeremy, When trying out the sample for the RMI Binding, I encounterd the following problem: - 1) There seems to be a attribute named 'target' that org.apache.tuscany.core.loader.ServiceLoader.load is expecting out of the 'service' element in a composite. What is this attribute and what must

Re: [C++ SCA] Language bindings embedding the runtime

2006-08-02 Thread Pete Robbins
That sounds like an ineresting idea. I'll look into it. Now that the release is out of the way I want to open up discussion on here about restructuring the C++ runtime to enable it to support multiple language bindings (C++, PHP,...) and also to support the latest Assembly Specification for the

WSDLDefinitionRegistry getPortType(String)

2006-08-02 Thread ant elder
Any objections to adding a getPortType(String) method to the WSDLDefinitionRegistry that enables getting a portType from an unqualified portType name? I'd like this so JavaScript components can be as simple as possible and the namespace can be left out when its not necessary. ...ant

How to use interface.wsdl and the WSDLDefinitionRegistry

2006-08-02 Thread ant elder
Are interface.wsdl and the WSDLDefinitionRegistry available as part of the runtime yet? If I try interface.wsdl in and SCDL file it gets and unrecognized element exception, and WSDLDefinitionRegistry always seems to be null when I try to get hold of and instance of it. I've poked around trying to

Re: [C++ SCA] Language bindings embedding the runtime

2006-08-02 Thread Simon Laws
That's a great idea Pete. I would also like to add that we are just starting to think about SCA in PHP and is would seem sensible to reuse the work you have done in C++. So if we could also engineer the C++ implementation so that it is easy to concume as the basis for another implementation, as

[jira] Created: (TUSCANY-589) improve SDO Java website documentation

2006-08-02 Thread Kelvin Goodson (JIRA)
improve SDO Java website documentation --- Key: TUSCANY-589 URL: http://issues.apache.org/jira/browse/TUSCANY-589 Project: Tuscany Issue Type: Improvement Components: Website

[jira] Updated: (TUSCANY-589) improve SDO Java website documentation

2006-08-02 Thread Kelvin Goodson (JIRA)
[ http://issues.apache.org/jira/browse/TUSCANY-589?page=all ] Kelvin Goodson updated TUSCANY-589: --- Attachment: site.zip This zip file contains 1) a patch file, rooted in the site directory and 2) 3 image files to be dropped into the

sdo website update

2006-08-02 Thread kelvin goodson
Would some kind committer please apply my website patch http://issues.apache.org/jira/browse/TUSCANY-589 thanks -- Best Regards Kelvin Goodson

Re: sdo website update

2006-08-02 Thread Pete Robbins
I'll take a look at it. Cheers, On 02/08/06, kelvin goodson [EMAIL PROTECTED] wrote: Would some kind committer please apply my website patch http://issues.apache.org/jira/browse/TUSCANY-589 thanks -- Best Regards Kelvin Goodson -- Pete

Re: sdo website update

2006-08-02 Thread Pete Robbins
Looks good. Patch applied. Cheers, -- Pete

Re: Problem with suplly chain

2006-08-02 Thread Jim Marino
On Aug 2, 2006, at 1:30 AM, Meeraj Kunnumpurath wrote: Jeremy, Ok, this is my suggestion ... 1. Have an annotated destroy method on the ThreadPoolWorkManager that will shutdown the executor. I tried this, however, for some reason the destroy method is not getting called. Is there anything

RE: Problem with suplly chain

2006-08-02 Thread Meeraj Kunnumpurath
Ta -Original Message- From: Jim Marino [mailto:[EMAIL PROTECTED] Sent: 02 August 2006 15:24 To: tuscany-dev@ws.apache.org Cc: Jeremy Boynes Subject: Re: Problem with suplly chain On Aug 2, 2006, at 1:30 AM, Meeraj Kunnumpurath wrote: Jeremy, Ok, this is my suggestion ... 1. Have

Re: RMI Binding

2006-08-02 Thread Jeremy Boynes
The target attribute is a bug - there was talk of adding it to the reference element at some point but that change was never made. That stuff should be backed out. -- Jeremy On Aug 2, 2006, at 2:36 AM, Venkata Krishnan wrote: Hi Jeremy, When trying out the sample for the RMI Binding, I

Re: Problem with suplly chain

2006-08-02 Thread Jim Marino
Quick question: Are you running this from the launcher or SCATestCase? Jim On Aug 2, 2006, at 7:28 AM, Meeraj Kunnumpurath wrote: Ta -Original Message- From: Jim Marino [mailto:[EMAIL PROTECTED] Sent: 02 August 2006 15:24 To: tuscany-dev@ws.apache.org Cc: Jeremy Boynes Subject: Re:

RE: Problem with suplly chain

2006-08-02 Thread Meeraj Kunnumpurath
From the launcher. -Original Message- From: Jim Marino [mailto:[EMAIL PROTECTED] Sent: 02 August 2006 16:10 To: tuscany-dev@ws.apache.org Subject: Re: Problem with suplly chain Quick question: Are you running this from the launcher or SCATestCase? Jim On Aug 2, 2006, at 7:28 AM,

Re: Problem with suplly chain

2006-08-02 Thread Jim Marino
o.k. Actually it looks like it is a problem with both. The issue is the launcher is not shutting down the system composite (it does shut down the runtime though). There is a simple fix to this in Launcher involving: 1. Changing line 116 to make the variable a field on the class:

Re: Problem with suplly chain

2006-08-02 Thread Jim Marino
Forgot to add that the component ref should be nulled at the end of 2... Jim On Aug 2, 2006, at 8:48 AM, Jim Marino wrote: o.k. Actually it looks like it is a problem with both. The issue is the launcher is not shutting down the system composite (it does shut down the runtime though).

Re: Problem with suplly chain

2006-08-02 Thread Jeremy Boynes
On Aug 2, 2006, at 8:48 AM, Jim Marino wrote: Normally, I would have just applied the fix but I'm in the middle of some other uncommitted work I can't separate out. Do you mind checking this out when you get a chance to see it behaves properly with the work manager changes and then

Re: sdo website update

2006-08-02 Thread kelvin goodson
thanks pete On 02/08/06, Pete Robbins [EMAIL PROTECTED] wrote: Looks good. Patch applied. Cheers, -- Pete -- Best Regards Kelvin Goodson

RE: Problem with suplly chain

2006-08-02 Thread Meeraj Kunnumpurath
I can try this out tonight and submit the patch for the work manager and launcher. -Original Message- From: Jeremy Boynes [mailto:[EMAIL PROTECTED] Sent: 02 August 2006 16:56 To: tuscany-dev@ws.apache.org Subject: Re: Problem with suplly chain On Aug 2, 2006, at 8:48 AM, Jim Marino

[jira] Created: (TUSCANY-590) DAS: Additional ConfigHelper methods needed

2006-08-02 Thread Brent Daniel (JIRA)
DAS: Additional ConfigHelper methods needed --- Key: TUSCANY-590 URL: http://issues.apache.org/jira/browse/TUSCANY-590 Project: Tuscany Issue Type: Improvement Components: Java DAS RDB

Re: Axis2 Binding use of Inbound Wire?

2006-08-02 Thread Venkata Krishnan
Hi Jeremy, I looked up the SystemBindingBuilder.build method and gathered the way inbound and outbound wires are instantiated and initialized. I copied the same code over to the RMIBindingBuilder and created classed for InBoundWireImpl and OutBoundWireImpl as well. Is this the right way to go

[jira] Updated: (TUSCANY-590) DAS: Additional ConfigHelper methods needed

2006-08-02 Thread Brent Daniel (JIRA)
[ http://issues.apache.org/jira/browse/TUSCANY-590?page=all ] Brent Daniel updated TUSCANY-590: - Attachment: Tuscany590.txt The attached patch adds several methods to ConfigHelper with associated unit tests. DAS: Additional ConfigHelper methods

[jira] Commented: (TUSCANY-535) Implement XSDHelper.generate() method for generating XSD from SDO types

2006-08-02 Thread Frank Budinsky (JIRA)
[ http://issues.apache.org/jira/browse/TUSCANY-535?page=comments#action_12425313 ] Frank Budinsky commented on TUSCANY-535: Applied latest patch in revision 428070. I also made the change described in TUSCANY-577 to this version. I'm

[jira] Closed: (TUSCANY-590) DAS: Additional ConfigHelper methods needed

2006-08-02 Thread Kevin Williams (JIRA)
[ http://issues.apache.org/jira/browse/TUSCANY-590?page=all ] Kevin Williams closed TUSCANY-590. -- Fix Version/s: Java-Mx Resolution: Fixed Verified with revision: 428100 DAS: Additional ConfigHelper methods needed

Use of JIRA for documentation

2006-08-02 Thread Kevin Williams
The DAS White Paper is now out of date and my first thought was to open a JIRA to track this. Does it make sense to assign the issue to the DAS component or should I request a new component for DAS Documentation? Thanks, --Kevin

Fwd: Supply chain fix

2006-08-02 Thread Jeremy Boynes
Forwarded for Meeraj as he is having email issues. -- Jeremy Begin forwarded message: From: meeraj [EMAIL PROTECTED] Date: August 2, 2006 1:45:08 PM PDT To: Jeremy Boynes [EMAIL PROTECTED] Cc: Jim Marino [EMAIL PROTECTED], [EMAIL PROTECTED] Subject: Supply chain fix Jeremy, The changes to

[jira] Updated: (TUSCANY-591) broken link: DAS Whitepaper

2006-08-02 Thread Luciano Resende (JIRA)
[ http://issues.apache.org/jira/browse/TUSCANY-591?page=all ] Luciano Resende updated TUSCANY-591: Attachment: patch-tuscany591.txt changes on the site build script to process the resources directory broken link: DAS Whitepaper

[jira] Updated: (TUSCANY-591) broken link: DAS Whitepaper

2006-08-02 Thread Luciano Resende (JIRA)
[ http://issues.apache.org/jira/browse/TUSCANY-591?page=all ] Luciano Resende updated TUSCANY-591: Attachment: resources.zip This are the resources that were missing when we switched sites. this should go under site-author/resources broken link: