Re: About StAXArtifactProcessor

2008-03-11 Thread Venkata Krishnan
Hi Luciano, Here is what I am facing... - The targetnamespace attribute is a part of the sca:definitions element and that is read by the SCADefnProcessor. - For subsequent elements such as Intents and Policysets in the definitions.xml, the SCADefnsProcessor delegates to the extension processor

Re: How can I get a list of effective policySets for a given operation?

2008-03-11 Thread Venkata Krishnan
Hi Raymond, SCA Artifacts that can have operations configured on them implement the 'OperationsConfigurator' interface. This interface has a method that will return a list of 'ConfiguredOperation' and each element in this list represents an operation that has been configured for policies. The

Adding support for Properties in Implementation widget, was Re: SCA in Web 2.0 applications...

2008-03-11 Thread Luciano Resende
I have added support for Properties in the implementation.widget. Declaring SCA properties using JavaScript can be done with the syntax below. This properties will get properly introspected by the implementation.widget and wired. //@Property var locale = Property(locale); //@Property locale =

Re: Is it possible to define a customizable value for an intent or policy?

2008-03-11 Thread ant elder
On Tue, Mar 11, 2008 at 1:01 AM, Jean-Sebastien Delfino [EMAIL PROTECTED] wrote: ant elder wrote: On Fri, Mar 7, 2008 at 12:01 AM, Jean-Sebastien Delfino [EMAIL PROTECTED] wrote: ant elder wrote: On Wed, Mar 5, 2008 at 9:46 AM, ant elder [EMAIL PROTECTED] wrote: On Tue, Mar 4,

Re: Suggestion for Replying with comments to a specific committ

2008-03-11 Thread ant elder
On Tue, Mar 11, 2008 at 12:20 AM, Luciano Resende [EMAIL PROTECTED] wrote: It would be great if people could start changing the subject when replying with comments to a given committs, this would allow others to better identify what's going on and possible jump and help on the discussion.

Re: Component Service Not Coming up.

2008-03-11 Thread ant elder
On Tue, Mar 11, 2008 at 3:38 AM, Sandeep Raman [EMAIL PROTECTED] wrote: Hi, I have an issue with the component service not coming up. below mentioned is my scenario. I have a JSP (default.jsp) which does the following: %@ page import=org.apache.tuscany.sca.host.embedded.SCADomain% %@

Re: svn commit: r635435 - in /incubator/tuscany/java/sca/modules: assembly/src/main/java/org/apache/tuscany/sca/assembly/builder/impl/ assembly/src/test/java/org/apache/tuscany/sca/assembly/builder/im

2008-03-11 Thread Simon Laws
Comments inline snip... and that's OK I think :) as binding.ws and binding.jsonrpc could end up on different port numbers for example (depending on their node configuration). And they might not. Actually, I was struggling to understand why we needed this test for duplicate names

Re: Suggestion for Replying with comments to a specific committ

2008-03-11 Thread Simon Laws
On Tue, Mar 11, 2008 at 8:33 AM, ant elder [EMAIL PROTECTED] wrote: On Tue, Mar 11, 2008 at 12:20 AM, Luciano Resende [EMAIL PROTECTED] wrote: It would be great if people could start changing the subject when replying with comments to a given committs, this would allow others to better

Re: Tests for Tuscany running under OSGi

2008-03-11 Thread ant elder
On Fri, Mar 7, 2008 at 7:33 PM, Rajini Sivaram [EMAIL PROTECTED] wrote: itest/osgi-tuscany contains tests for an OSGi-based Tuscany runtime. I haven't included the tests in itests/pom.xml because they need to create bundles corresponding to Tuscany, and hence require around 100 megabytes.

[jira] Commented: (TUSCANY-1683) AXIS data binding can not process array Type response

2008-03-11 Thread ant elder (JIRA)
[ https://issues.apache.org/jira/browse/TUSCANY-1683?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12577379#action_12577379 ] ant elder commented on TUSCANY-1683: The above code looks like a good fix to me,

Re: Component Service Not Coming up.

2008-03-11 Thread Sandeep Raman
Hi, I have done pretty much in the same way as the sample. i need to see my wsdl , my component service which is running . I am not able to figure out the URL for the wsdl file. I am stuck up there, since all my external requests need this wsdl URL to process, any help or suggestion will be

[jira] Resolved: (TUSCANY-2055) ServiceReference.getConversationID() not returning generated conversation IDs

2008-03-11 Thread Simon Laws (JIRA)
[ https://issues.apache.org/jira/browse/TUSCANY-2055?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Simon Laws resolved TUSCANY-2055. - Resolution: Fixed Fix Version/s: (was: Java-SCA-Next)

Re: How can I get a list of effective policySets for a given operation?

2008-03-11 Thread Venkata Krishnan
Hi Raymond, I found a few holes that had crept into this part with the recent 'applicablePolicySets' related work. Am fixing them and should be done anytime. Will not hold you back from your work for long. Thanks - Venkat On Tue, Mar 11, 2008 at 12:47 PM, Venkata Krishnan [EMAIL PROTECTED]

Re: Component Service Not Coming up.

2008-03-11 Thread ant elder
A difference between this and the calculator sample is the way the jsp gets the SCADomain object, the Tuscany jsp samples do: % SCADomain scaDomain = (SCADomain) application.getAttribute( org.apache.tuscany.sca.SCADomain); CalculatorService calculatorService =

[jira] Updated: (TUSCANY-2056) Conversation does not continue if a Service Reference is passed as a return value (not as a parameter) when using binding.ws

2008-03-11 Thread Daniel Stucky (JIRA)
[ https://issues.apache.org/jira/browse/TUSCANY-2056?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Daniel Stucky updated TUSCANY-2056: --- Attachment: test.zip updated test with additional output and alternative sca binding

[jira] Commented: (TUSCANY-2056) Conversation does not continue if a Service Reference is passed as a return value (not as a parameter) when using binding.ws

2008-03-11 Thread Daniel Stucky (JIRA)
[ https://issues.apache.org/jira/browse/TUSCANY-2056?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12577424#action_12577424 ] Daniel Stucky commented on TUSCANY-2056: Hi Simon, I attached an updated version

Re: Tests for Tuscany running under OSGi

2008-03-11 Thread ant elder
On Fri, Mar 7, 2008 at 7:33 PM, Rajini Sivaram [EMAIL PROTECTED] wrote: itest/osgi-tuscany contains tests for an OSGi-based Tuscany runtime. I haven't included the tests in itests/pom.xml because they need to create bundles corresponding to Tuscany, and hence require around 100 megabytes.

Re: Tests for Tuscany running under OSGi

2008-03-11 Thread ant elder
On Fri, Mar 7, 2008 at 7:33 PM, Rajini Sivaram [EMAIL PROTECTED] wrote: itest/osgi-tuscany contains tests for an OSGi-based Tuscany runtime. I haven't included the tests in itests/pom.xml because they need to create bundles corresponding to Tuscany, and hence require around 100 megabytes.

Re: How to resolve build error of Tuscany plugin for Geronimo

2008-03-11 Thread Vamsavardhana Reddy
I am able to build successfully. I am using JDK5 and maven 2.0.6. ++Vamsi On Thu, Mar 6, 2008 at 6:16 PM, [EMAIL PROTECTED] wrote: Hi all, I'm facing build error of Tuscany plugin for Geronimo. I checked out sources from https://svn.apache.org/repos/asf/geronimo/plugins/tuscany/trunk

[jira] Resolved: (TUSCANY-2056) Conversation does not continue if a Service Reference is passed as a return value (not as a parameter) when using binding.ws

2008-03-11 Thread Simon Laws (JIRA)
[ https://issues.apache.org/jira/browse/TUSCANY-2056?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Simon Laws resolved TUSCANY-2056. - Resolution: Fixed Fix Version/s: (was: Java-SCA-Next)

Re: Adding support for Properties in Implementation widget, was Re: SCA in Web 2.0 applications...

2008-03-11 Thread Jean-Sebastien Delfino
Luciano Resende wrote: I have added support for Properties in the implementation.widget. Declaring SCA properties using JavaScript can be done with the syntax below. This properties will get properly introspected by the implementation.widget and wired. //@Property var locale =

Re: svn commit: r635435 - in /incubator/tuscany/java/sca/modules: assembly/src/main/java/org/apache/tuscany/sca/assembly/builder/impl/ assembly/src/test/java/org/apache/tuscany/sca/assembly/builder/im

2008-03-11 Thread Jean-Sebastien Delfino
Simon Laws wrote: Comments inline snip... and that's OK I think :) as binding.ws and binding.jsonrpc could end up on different port numbers for example (depending on their node configuration). And they might not. Actually, I was struggling to understand why we needed this test for

Re: JIRA fest for week beginning 10th March? Re: What should be in Tuscany SCA Java release 1.2?

2008-03-11 Thread Simon Nash
Simon Laws wrote: On Wed, Mar 5, 2008 at 6:22 PM, ant elder [EMAIL PROTECTED] wrote: The main thing I'd like to do for 1.2 is to try to finish off the JMS binding so that it as much as possible fully implements the spec but that wont be done by middle of next week. Guess i don't mind too much

Proposed resolution for TUSCANY-2055

2008-03-11 Thread Simon Nash
I would like to resolve TUSCANY-2055 based on the most recent comment that I appended referring to the resolution of OASIS issue JAVA-31. Does anyone object to my marking this resolved? If not, I will go ahead and do this later this week. Simon

Re: Proposed resolution for TUSCANY-2055

2008-03-11 Thread Simon Laws
On Tue, Mar 11, 2008 at 3:35 PM, Simon Nash [EMAIL PROTECTED] wrote: I would like to resolve TUSCANY-2055 based on the most recent comment that I appended referring to the resolution of OASIS issue JAVA-31. Does anyone object to my marking this resolved? If not, I will go ahead and do this

Re: Proposed resolution for TUSCANY-2055

2008-03-11 Thread Raymond Feng
+1. Raymond -- From: Simon Nash [EMAIL PROTECTED] Sent: Tuesday, March 11, 2008 8:35 AM To: tuscany-dev@ws.apache.org Subject: Proposed resolution for TUSCANY-2055 I would like to resolve TUSCANY-2055 based on the most recent comment that I

Re: Support for binding config in definitions.xml

2008-03-11 Thread Jean-Sebastien Delfino
Venkata Krishnan wrote: Hi Sebastien, If the SCADefinitions model must hold jms binding definitions, I guess it must add the jms binding as a dependency. Good news, it doesn't need to :) This is similar to the assembly model holding JMS binding definitions for example, without having a

Re: How can I get a list of effective policySets for a given operation?

2008-03-11 Thread Raymond Feng
What about an operation that is not explicitly customized by the operation element? For example, if I have this: component ... policySets=ns1:PS1 service ... policySets=ns1:PS2 binding.xyz ... policuSets=ns1:PS3/ /service /component Can I do the the following?

Re: Tests for Tuscany running under OSGi

2008-03-11 Thread Simon Nash
Rajini Sivaram wrote: itest/osgi-tuscany contains tests for an OSGi-based Tuscany runtime. I haven't included the tests in itests/pom.xml because they need to create bundles corresponding to Tuscany, and hence require around 100 megabytes. Since we currently dont have other tests for a

Re: How can I get a list of effective policySets for a given operation?

2008-03-11 Thread Raymond Feng
By debugging, I only see the explicitly configured operations on the OperationsConfigurator.getConfiguredOperations(). Should we populate all operations? Otherwise, we probably need to provide a utility to get effective policySets for a given operation like:

Re: Adding support for Properties in Implementation widget, was Re: SCA in Web 2.0 applications...

2008-03-11 Thread Luciano Resende
For now String. this might change when I get isMany working. On Tue, Mar 11, 2008 at 8:29 AM, Jean-Sebastien Delfino [EMAIL PROTECTED] wrote: Luciano Resende wrote: I have added support for Properties in the implementation.widget. Declaring SCA properties using JavaScript can be done

Re: How can I get a list of effective policySets for a given operation?

2008-03-11 Thread Venkata Krishnan
Hi Raymond, Yes, we create 'configuredOperations' only for those that have been explicitly configured for with some policysetting. I was expecting that the binding/implementation extension or the WireProcessor or whatever mechanism that is which links up policy handlers, will effect all

Re: Support for binding config in definitions.xml

2008-03-11 Thread Venkata Krishnan
Hmm... seems like I am missing something then... alright let me ask you this way... if SCADefintions is going to contain a list of JMSBinding definitions.. won't in end up something like this... public interface SCADefinitions { ListIntent getPolicyIntents(); ListJMSBinding

[jira] Created: (TUSCANY-2072) servler-api jar packaged in demo war file

2008-03-11 Thread Vamsavardhana Reddy (JIRA)
servler-api jar packaged in demo war file - Key: TUSCANY-2072 URL: https://issues.apache.org/jira/browse/TUSCANY-2072 Project: Tuscany Issue Type: Bug Components: Java SCA Samples

[jira] Created: (TUSCANY-2073) The resolution to TUSCANY-2047 didn't clean up references to SCA Binding module

2008-03-11 Thread Kapish Aggarwal (JIRA)
The resolution to TUSCANY-2047 didn't clean up references to SCA Binding module --- Key: TUSCANY-2073 URL: https://issues.apache.org/jira/browse/TUSCANY-2073 Project: Tuscany

[jira] Commented: (TUSCANY-2073) The resolution to TUSCANY-2047 didn't clean up references to SCA Binding module

2008-03-11 Thread Kapish Aggarwal (JIRA)
[ https://issues.apache.org/jira/browse/TUSCANY-2073?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12577522#action_12577522 ] Kapish Aggarwal commented on TUSCANY-2073: -- The file containing the import is

[jira] Assigned: (TUSCANY-2072) servler-api jar packaged in demo war file

2008-03-11 Thread Raymond Feng (JIRA)
[ https://issues.apache.org/jira/browse/TUSCANY-2072?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Raymond Feng reassigned TUSCANY-2072: - Assignee: Raymond Feng servler-api jar packaged in demo war file

[jira] Resolved: (TUSCANY-2072) servler-api jar packaged in demo war file

2008-03-11 Thread Raymond Feng (JIRA)
[ https://issues.apache.org/jira/browse/TUSCANY-2072?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Raymond Feng resolved TUSCANY-2072. --- Resolution: Fixed Fixed under r636051. servler-api jar packaged in demo war file

Re: How to resolve build error of Tuscany plugin for Geronimo

2008-03-11 Thread Luciano Resende
Hi Vamsi I have the same issue, do I need to build geronimo first ? or maybe geronimo needs to deploy a snapshot of some modules ? On Tue, Mar 11, 2008 at 6:40 AM, Vamsavardhana Reddy [EMAIL PROTECTED] wrote: I am able to build successfully. I am using JDK5 and maven 2.0.6. ++Vamsi

Re: How can I get a list of effective policySets for a given operation?

2008-03-11 Thread Venkata Krishnan
Hi Raymond, I have cleaned up and fixed somethings for operations in r636059. There is one more thing related to validation that needs to be fixed and I shall do it tomorrow. Its basically about operations defined on services need to be inherited by the service bindings. But then it could

Re: Tests for Tuscany running under OSGi

2008-03-11 Thread Rajini Sivaram
Ant, The new module tuscany-extensibility is not included in the bundles. I will fix that. On 3/11/08, ant elder [EMAIL PROTECTED] wrote: On Fri, Mar 7, 2008 at 7:33 PM, Rajini Sivaram [EMAIL PROTECTED] wrote: itest/osgi-tuscany contains tests for an OSGi-based Tuscany runtime. I

Re: Tests for Tuscany running under OSGi

2008-03-11 Thread Rajini Sivaram
On 3/11/08, ant elder [EMAIL PROTECTED] wrote: On Fri, Mar 7, 2008 at 7:33 PM, Rajini Sivaram [EMAIL PROTECTED] wrote: itest/osgi-tuscany contains tests for an OSGi-based Tuscany runtime. I haven't included the tests in itests/pom.xml because they need to create bundles corresponding

[SCA 1.2] Contributing patches for SCA 1.2 release

2008-03-11 Thread Luciano Resende
Hi Tuscany SCA Users I'm handling the Java SCA 1.2 release and would like to ask around if the user community is interested in contributing any patch for any specific issue of interest. Please let me know if you are interested and need any help. Also note that you should change the JIRA to

Re: Tests for Tuscany running under OSGi

2008-03-11 Thread Rajini Sivaram
On 3/11/08, ant elder [EMAIL PROTECTED] wrote: On Fri, Mar 7, 2008 at 7:33 PM, Rajini Sivaram [EMAIL PROTECTED] wrote: itest/osgi-tuscany contains tests for an OSGi-based Tuscany runtime. I haven't included the tests in itests/pom.xml because they need to create bundles corresponding

[jira] Closed: (TUSCANY-2072) servler-api jar packaged in demo war file

2008-03-11 Thread Vamsavardhana Reddy (JIRA)
[ https://issues.apache.org/jira/browse/TUSCANY-2072?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Vamsavardhana Reddy closed TUSCANY-2072. Verified the fix. servler-api jar packaged in demo war file

Re: Tests for Tuscany running under OSGi

2008-03-11 Thread Rajini Sivaram
On 3/11/08, Simon Nash [EMAIL PROTECTED] wrote: Rajini Sivaram wrote: itest/osgi-tuscany contains tests for an OSGi-based Tuscany runtime. I haven't included the tests in itests/pom.xml because they need to create bundles corresponding to Tuscany, and hence require around 100 megabytes.

[SCA 1.2] Release Branch

2008-03-11 Thread Luciano Resende
As suggested on the following thread [1], I'd like to create a Java SCA 1.2 branch sometime after this Friday, March 14th, and then start with a RC early next week. Thoughts ? [1] http://www.mail-archive.com/tuscany-dev%40ws.apache.org/msg28635.html -- Luciano Resende Apache Tuscany Committer

Re: Suggestion for Replying with comments to a specific committ

2008-03-11 Thread Luciano Resende
It's more like, considering the two subjects below, witch one would be more informative and would probably catch the attention of the owner of the change (and others that might be interested in the area) ? svn commit: r635808 -

[jira] Commented: (TUSCANY-2062) WSDL2Java code generation fails on WSDL with multiple namespace imports

2008-03-11 Thread Jean-Sebastien Delfino (JIRA)
[ https://issues.apache.org/jira/browse/TUSCANY-2062?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12577584#action_12577584 ] Jean-Sebastien Delfino commented on TUSCANY-2062: - David, are you now

Exception while running demo\alert-aggregator-webapp

2008-03-11 Thread Vamsavardhana Reddy
I am seeing the following exception when running demo-alert-aggregator-webapp.war in Geronimo Tomcat 2.1 server. 01:43:23,250 ERROR [[default]] Servlet.service() for servlet default threw exception java.lang.IllegalStateException: Cannot create a session after the response has been committed

Re: Exception while running demo\alert-aggregator-webapp

2008-03-11 Thread Raymond Feng
Hi, I fixed the problem under r636138. Thanks, Raymond -- From: Vamsavardhana Reddy [EMAIL PROTECTED] Sent: Tuesday, March 11, 2008 1:20 PM To: tuscany-dev@ws.apache.org Subject: Exception while running demo\alert-aggregator-webapp I am seeing

Re: [jira] Commented: (TUSCANY-2062) WSDL2Java code generation fails on WSDL with multiple namespace imports

2008-03-11 Thread Giorgio Zoppi
I've problems with SCA WSDL and Axis2 and Python ZSI too. I fetched a WSDL and i'm trying to use a databinding. Could you try in one of your example to: 1) fetch a WSDL with wget or curl 2) use Python ZSI to invoke some business function using a databinding? I'll try it again :), but let me know

Tutorial: Adding a Markeplace Scenario

2008-03-11 Thread Antollini, Mario
Hello jean-Sebastien, I was thinking about adding a Marketplace scenario to the Tutorial we will be presenting at JavaOne. By Marketplace I mean doing something similar to what Amazon does: offering third party retailers' products via Amazon's site. I think we can do that by offering

Open Source Experience for JavaOne

2008-03-11 Thread Antollini, Mario
Hello, Jean-Sebastien and I would like to add a single slide we can show at JavaOne where we can share our experience (or BKMs) of working in an Open Source project. This is what I have so far... 1. Managing the code a. Organize the project in small modules

Re: Open Source Experience for JavaOne

2008-03-11 Thread Luciano Resende
You might find some useful stuff on the following presentation. [1] http://www.cubiclemuses.com/cm/files/open_source_works.pdf On Tue, Mar 11, 2008 at 7:51 PM, Antollini, Mario [EMAIL PROTECTED] wrote: Hello, Jean-Sebastien and I would like to add a single slide we can show at JavaOne

Re: How to resolve build error of Tuscany plugin for Geronimo

2008-03-11 Thread Vamsavardhana Reddy
phew... that's a relief :) ++Vamsi On Wed, Mar 12, 2008 at 10:53 AM, Raymond Feng [EMAIL PROTECTED] wrote: I was using maven 2.0.8. I just tried maven 2.0.6 and it works! It seems that there are some changes in maven 2.0.8 that trigger the problem. Thanks, Raymond