Re: Binding target information

2007-12-13 Thread Simon Laws
On Dec 13, 2007 12:50 AM, Jean-Sebastien Delfino [EMAIL PROTECTED] wrote: The discussion is getting too long for me to follow, sorry. We (including me) should try harder to write shorter emails. Simon Laws wrote: When processing references at the domain level I need to know the name of

Re: How to set a specific data binding to be used by a binding?

2007-12-13 Thread ant elder
I'm using interface.java in my composite so don't have any wsdl in the code i'm running. You can choose to to use interface.wsdl or interface.javaas you like right? so ideally I'd like a binding to work the same either way. Is there a reason java interfaces need to produce unwrapped xml by

Re: Binding target information

2007-12-13 Thread ant elder
On Dec 13, 2007 8:26 AM, Simon Laws [EMAIL PROTECTED] wrote: snip Two reasons why bindings need to be identified and have endpoint information updated. 1. The endpoint information is not known in the domain unless it is explicitly provided by the user. If it isn't provided by the user the

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 - xsd:import namespace=commonj.sdo schemaLocation=datagraph.xsd/ and the out param of my web service as - element name=executeQueryResponse

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

[jira] Commented: (TUSCANY-1483) Static SDO generator: problem with elements named internal*

2007-12-13 Thread Amita Vadhavkar (JIRA)
[ https://issues.apache.org/jira/browse/TUSCANY-1483?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12551485 ] Amita Vadhavkar commented on TUSCANY-1483: -- Hi David, Please see

Re: I wish Tuscany would bind TM to JNDI

2007-12-13 Thread Luciano Resende
Mike Edwards wrote: So, if your intention is to design the TM implementation within Tuscany, hidden from the end-users, then I can see the attraction, given that most of the available TM software is based around JNDI. However, I hope that this can be hidden under the covers. I think that Mike is

Re: Release 1.1 - what will be ready for next week?

2007-12-13 Thread ant elder
On Dec 12, 2007 10:03 AM, Simon Laws [EMAIL PROTECTED] wrote: On Dec 12, 2007 9:45 AM, Luciano Resende [EMAIL PROTECTED] wrote: Following Ant's question, after you cut the first RC, development would continue on trunk or on a branch ? Based on the timeframe and considering we would still

Re: Release 1.1 - what will be ready for next week?

2007-12-13 Thread Simon Laws
On Dec 13, 2007 12:16 PM, ant elder [EMAIL PROTECTED] wrote: On Dec 12, 2007 10:03 AM, Simon Laws [EMAIL PROTECTED] wrote: On Dec 12, 2007 9:45 AM, Luciano Resende [EMAIL PROTECTED] wrote: Following Ant's question, after you cut the first RC, development would continue on trunk or on

Re: How to run incremental builds of the Tuscany SCA tree

2007-12-13 Thread Jean-Sebastien Delfino
Luciano Resende wrote: On Dec 12, 2007 4:44 PM, Raymond Feng [EMAIL PROTECTED] wrote: Hi, Beyond performance, I don't think svn stat is good way to handle the case that the project has been updated from svn but the build is not run yet. I now ported the timestamp check from the

Stopping and starting components with web service bindings

2007-12-13 Thread Simon Laws
In the stop() method of the Axis2ServiceClient there is the following... // close all connections that we have initiated, so that the jetty server // can be restarted without seeing ConnectExceptions HttpClient httpClient =

Re: WorkerService component, was: Remotable interfaces and pass by value

2007-12-13 Thread Simon Laws
On Dec 13, 2007 3:04 PM, Giorgio Zoppi [EMAIL PROTECTED] wrote: Jean-Sebastien Delfino ha scritto: OK I'm starting to understand. That looks like a pretty useful component to have! One more question, after which I may make some suggestions. What does the WSDL portType describing your

Re: Stopping and starting components with web service bindings

2007-12-13 Thread Giorgio Zoppi
Simon Laws ha scritto: In the stop() method of the Axis2ServiceClient there is the following... // close all connections that we have initiated, so that the jetty server // can be restarted without seeing ConnectExceptions HttpClient httpClient =

Re: How to run incremental builds of the Tuscany SCA tree

2007-12-13 Thread Raymond Feng
Yes, that's right. Thanks, Raymond - Original Message - From: Luciano Resende [EMAIL PROTECTED] To: tuscany-dev@ws.apache.org Sent: Thursday, December 13, 2007 4:04 AM Subject: Re: How to run incremental builds of the Tuscany SCA tree On Dec 12, 2007 4:44 PM, Raymond Feng [EMAIL

Re: How to run incremental builds of the Tuscany SCA tree

2007-12-13 Thread Daniel Kulp
That's pretty cool. Any thoughts about submitting that to the maven team? Dan On Thursday 13 December 2007, Raymond Feng wrote: Yes, that's right. Thanks, Raymond - Original Message - From: Luciano Resende [EMAIL PROTECTED] To: tuscany-dev@ws.apache.org Sent: Thursday,

Re: Binding target information

2007-12-13 Thread Jean-Sebastien Delfino
ant elder wrote: On Dec 13, 2007 8:26 AM, Simon Laws [EMAIL PROTECTED] wrote: snip Two reasons why bindings need to be identified and have endpoint information updated. 1. The endpoint information is not known in the domain unless it is explicitly provided by the user. If it isn't provided

Re: Policy Handlers ?

2007-12-13 Thread Venkata Krishnan
Hi, I've tried to add JAAS based 'authentication' to the security policies. I apologize for making this mail very long. Here is a overview of what I did... - JAAS depends on something called LoginModule and LoginConfiguration. I have assumed that this will be taken care of by the

Re: How to set a specific data binding to be used by a binding?

2007-12-13 Thread Raymond Feng
Hi, Are you trying to handle the case below? 1) The reference has a java interface and the source component calls a method such as String op(String str, int i); 2) And you try create a XML text as oparg0Str/arg0arg110/arg1/op and use it as the body for the JMSMessage. The JMS binding is

Re: Using security policies in the Bigbank scenario, was Re: Policy Framework Scenarios.

2007-12-13 Thread Jean-Sebastien Delfino
Venkata Krishnan wrote: Hi, Heres what I am intending to do for the secure-bigbank into which I have copied over the exiting calculator, stockquote and account demos into secure-bigbank... - The Calculator and StockQuote services need to exchange data that cannot be tampered with since the

What happened to implementation-data?

2007-12-13 Thread Jean-Sebastien Delfino
Looks like it has been removed, breaking the store tutorial that I'm working on. Or maybe renamed to implementation-data-xml? but then that module contains provider factories and runtime code and it's inconsistent with the other *-xml modules. For now I'm going to create an

Re: What happened to implementation-data?

2007-12-13 Thread Jean-Sebastien Delfino
Douglas Leite wrote: Luciano has told me about the creation of many kinds of implementation-data, like impl-data-xml, impl-data-pojo, impl-data-jpa. many kinds of implementation-data sounds scary. As an application developer why would I have to pick different implementation types for

Improving the store tutorial module structure

2007-12-13 Thread Jean-Sebastien Delfino
The store module is starting to contain too many variations of the online store composition so I'm going to refactor it into modules for the different variations, like was already done for store-eu: - store-merger - store-db - store-supplier etc. I'll try to leverage SCA contribution imports

Re: How to run incremental builds of the Tuscany SCA tree

2007-12-13 Thread Raymond Feng
Just try to document the status of our incremental build plugin, there is one known issue to deal with pom projects (type=pom). 1) We need to find a way to detect if the pom.xml has been changed. There is no archive produced by this type of project. We may have to check if the pom in local

Re: How to run incremental builds of the Tuscany SCA tree

2007-12-13 Thread Jean-Sebastien Delfino
Daniel Kulp wrote: That's pretty cool. Any thoughts about submitting that to the maven team? Dan I had started with posts [1],[2] to the Maven list. The only response I got [3] gave me a good laugh, the next logical step was to write the plugin :) I'd suggest to use and mature the

Do domain-level wires work with binding.ws?

2007-12-13 Thread Jean-Sebastien Delfino
Can I now do this: reference name=vegetableCatalog target=CloudVegetableCatalogService binding.ws/ /reference and get the WS binding configured automatically from the target like it has been working with binding.sca? Thanks -- Jean-Sebastien

Exception in SCADomainProxyImpl.registerNodeStart(...)

2007-12-13 Thread Jean-Sebastien Delfino
From the store tutorial modules (SVN r604081) I'm starting: 1. cloud/launch.LaunchCloud 2. store/launch.LauchStore and getting this exception: Exception in thread main org.apache.tuscany.sca.node.NodeException at org.apache.tuscany.sca.node.impl.SCANodeImpl.start(SCANodeImpl.java:286)

Help: CppCalculator CPPImplementation

2007-12-13 Thread Adriano Crestani
Hi, when I try to run the cppcalculator sample I get the following exception: 5380:5972 Unsupported implementation type: http://www.osoa.org/xmlns/sca/1.0#CPP Implementation calculator_client: exception caught: Exception Class: SystemConfigurationException Description: