RE: Reg: Bigbank account demo

2008-04-03 Thread Ashwini Kumar Jeksani
Hi,

I am using \tuscany-sca-1.1-incubating which is the stable release.

Thanks & Regards
Ashwini Kumar Jeksani

-Original Message-
From: haleh mahbod [mailto:[EMAIL PROTECTED]
Sent: Thursday, April 03, 2008 9:33 PM
To: tuscany-user@ws.apache.org
Subject: Re: Reg: Bigbank account demo

What version are you using? Is this against the trunk  or one of the
releases?

On 4/3/08, Ashwini Kumar Jeksani <[EMAIL PROTECTED]> wrote:
>
>
> Hi,
>
> I tried deploying bigbank-account demo and when I click the
> getAccountReport("Dojo1234") request button I am getting the following error
> in the response, could anyone help me in this.
>
> {"error":java.lang.reflect.UndeclaredThrowableException,"id":1}
> Thanks & Regards
> Ashwini Kumar Jeksani
>
>
>
>  CAUTION - Disclaimer *
> This e-mail contains PRIVILEGED AND CONFIDENTIAL INFORMATION intended
> solely for the use of the addressee(s). If you are not the intended
> recipient, please notify the sender by e-mail and delete the original
> message. Further, you are not to copy, disclose, or distribute this e-mail
> or its contents to any other person and any such actions are unlawful. This
> e-mail may contain viruses. Infosys has taken every reasonable precaution to
> minimize this risk, but is not liable for any damage you may sustain as a
> result of any virus in this e-mail. You should carry out your own virus
> checks before opening the e-mail or attachment. Infosys reserves the right
> to monitor and review the content of all messages sent to or from this
> e-mail address. Messages sent to or from this e-mail address may be stored
> on the Infosys e-mail system.
> ***INFOSYS End of Disclaimer INFOSYS***

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Reg: passing Javaobject using a JSON binding

2008-04-03 Thread Ashwini Kumar Jeksani
Hi,

I had opened the JIRA and attached the war file with it.
https://issues.apache.org/jira/browse/TUSCANY-2196


Thanks & Regards
Ashwini Kumar Jeksani


-Original Message-
From: Raymond Feng [mailto:[EMAIL PROTECTED]
Sent: Thursday, April 03, 2008 9:10 PM
To: tuscany-user@ws.apache.org
Subject: Re: Reg: passing Javaobject using a JSON binding

Hi,

Would you please open a JIRA [1] and attach your test case there? It will
help us resolve the issue more effectively.

[1] https://issues.apache.org/jira/browse/TUSCANY

Thanks,
Raymond

--
From: "Ashwini Kumar Jeksani" <[EMAIL PROTECTED]>
Sent: Thursday, April 03, 2008 6:22 AM
To: 
Subject: RE: Reg: passing Javaobject using a JSON binding

> Hi Raymond,
>
> This might help you debugging.
>
> http://localhost:8080/EmployeeService?smd
> =
>
> {"SMDVersion":".1","objectName":"EmployeeBOService","serviceType":"JSON-RPC","serviceURL":"http://localhost:8080/EmployeeService","methods":[{"name":"fetchEmployeeData","parameters":[{"name":"param0","type":"STRING"}]}]}
>
>
> After browsing through my problem I came to an opinion that the java bean
> is not properly converted to jsonobject. Am I right here? could you please
> help me debug my issue?
>
> My Console:
>
> [java] Apr 3, 2008 6:15:12 PM
> org.apache.tuscany.sca.http.jetty.JettyServer addServletMapping
> [java] INFO: Added Servlet mapping:
> http://hydhtc43236:8080/EmployeeService/*
> [java] Apr 3, 2008 6:15:12 PM
> org.apache.tuscany.sca.http.jetty.JettyServer addServletMapping
> [java] INFO: Added Servlet mapping:
> http://hydhtc43236:8080/EmployeeService
> [java] Apr 3, 2008 6:15:12 PM
> org.apache.tuscany.sca.http.jetty.JettyServer addServletMapping
> [java] INFO: Added Servlet mapping:
> http://hydhtc43236:8080/SCADomain/scaDomain.js
> [java] Apr 3, 2008 6:15:12 PM
> org.apache.tuscany.sca.http.jetty.JettyServer addServletMapping
> [java] INFO: Added Servlet mapping: http://hydhtc43236:8080/*
> [java] Employee Details server started (press enter to shutdown)
> [java] Name :admin
> [java] DOJ :2006-06-26 00:00:00.0
> [java] EMAIL :[EMAIL PROTECTED]
> [java] Apr 3, 2008 6:15:28 PM com.metaparadigm.jsonrpc.BeanSerializer
> analyzeBean
> [java] INFO: analyzing employeedata.EmployeeData
>
>
> Thanks & Regards
> Ashwini Kumar Jeksani
>
>
> -Original Message-
> From: Ashwini Kumar Jeksani [mailto:[EMAIL PROTECTED]
> Sent: Thursday, April 03, 2008 6:17 PM
> To: tuscany-user@ws.apache.org
> Subject: RE: Reg: passing Javaobject using a JSON binding
>
> Hi Raymond,
>
> Thanx for the help but now I am getting [object Object] in the response
> could you tell me how to convert it?
>
> Thanks & Regards
> Ashwini Kumar Jeksani
>
> -Original Message-
> From: Raymond Feng [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, April 02, 2008 9:01 PM
> To: tuscany-user@ws.apache.org
> Subject: Re: Reg: passing Javaobject using a JSON binding
>
> Hi,
>
> It seem that the java bean has not been transformed into JSON. Do you have
> the @Remotable annotation on the service interface exposed over
> binding.jsonrpc?
>
> Thanks,
> Raymond
> --
> From: "Ashwini Kumar Jeksani" <[EMAIL PROTECTED]>
> Sent: Wednesday, April 02, 2008 7:57 AM
> To: 
> Subject: Reg: passing Javaobject using a JSON binding
>
>>
>> Hi,
>> I have a service which is exposed over JSON binding and will return a
>> java
>> object as a response. I want the response data to be in an xml format
>> when
>> I call it from the .html file using DOJO, but I am getting the output as
>> shown. Could anyone tell me how to convert the java object data to an xml
>> in my case? Any help would be appreciated.
>>
>>
>> Code used in html file:
>>
>>var employeeService = new
>> dojo.rpc.JsonService("EmployeeJSON?smd");
>>
>>
>> employeeService.fetchEmployeeData(empID).addCallback(contentCallBack)
>>
>> output:
>>
>>{"result": [EMAIL PROTECTED],"id":1}
>>
>>
>> P.S: Here poc.employeedata.EmployeeData is the java bean
>>
>> Thanks & Regards
>> Ashwini Kumar Jeksani
>>
>>
>>  CAUTION - Disclaimer *
>> This e-mail contains PRIVILEGED AND CONFIDENTIAL INFORMATION intended
>> solely for the use of the addressee(s). If you are not the intended
>> recipient, please notify the sender by e-mail and delete the original
>> message. Further, you are not to copy, disclose, or distribute this
>> e-mail
>> or its contents to any other person and any such actions are unlawful.
>> This e-mail may contain viruses. Infosys has taken every reasonable
>> precaution to minimize this risk, but is not liable for any damage you
>> may
>> sustain as a result of any virus in this e-mail. You should carry out
>> your
>> own virus checks before opening the e-mail or attachment. Infosys
>> reserves
>> the right to monitor and review the content of all messages s

[SCA 1.2] RC3

2008-04-03 Thread Luciano Resende
I have uploaded stable distribution and possible candidate for our SCA
1.2 RC3 in my people.a.o space [1] (should be live in about 20 mins).
Please give it a try and help check the samples, while I finish
reviewing the license. Please report issues via JIRA. If everything
goes ok, I plan to start a vote in the morning.


[1] http://people.apache.org/~lresende/tuscany/sca-1.2-RC3/

-- 
Luciano Resende
Apache Tuscany Committer
http://people.apache.org/~lresende
http://lresende.blogspot.com/

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Reg: Bigbank account demo

2008-04-03 Thread haleh mahbod
What version are you using? Is this against the trunk  or one of the
releases?

On 4/3/08, Ashwini Kumar Jeksani <[EMAIL PROTECTED]> wrote:
>
>
> Hi,
>
> I tried deploying bigbank-account demo and when I click the
> getAccountReport("Dojo1234") request button I am getting the following error
> in the response, could anyone help me in this.
>
> {"error":java.lang.reflect.UndeclaredThrowableException,"id":1}
> Thanks & Regards
> Ashwini Kumar Jeksani
>
>
>
>  CAUTION - Disclaimer *
> This e-mail contains PRIVILEGED AND CONFIDENTIAL INFORMATION intended
> solely for the use of the addressee(s). If you are not the intended
> recipient, please notify the sender by e-mail and delete the original
> message. Further, you are not to copy, disclose, or distribute this e-mail
> or its contents to any other person and any such actions are unlawful. This
> e-mail may contain viruses. Infosys has taken every reasonable precaution to
> minimize this risk, but is not liable for any damage you may sustain as a
> result of any virus in this e-mail. You should carry out your own virus
> checks before opening the e-mail or attachment. Infosys reserves the right
> to monitor and review the content of all messages sent to or from this
> e-mail address. Messages sent to or from this e-mail address may be stored
> on the Infosys e-mail system.
> ***INFOSYS End of Disclaimer INFOSYS***


Re: Reg: passing Javaobject using a JSON binding

2008-04-03 Thread Raymond Feng

Hi,

Would you please open a JIRA [1] and attach your test case there? It will 
help us resolve the issue more effectively.


[1] https://issues.apache.org/jira/browse/TUSCANY

Thanks,
Raymond

--
From: "Ashwini Kumar Jeksani" <[EMAIL PROTECTED]>
Sent: Thursday, April 03, 2008 6:22 AM
To: 
Subject: RE: Reg: passing Javaobject using a JSON binding


Hi Raymond,

This might help you debugging.

http://localhost:8080/EmployeeService?smd
=

{"SMDVersion":".1","objectName":"EmployeeBOService","serviceType":"JSON-RPC","serviceURL":"http://localhost:8080/EmployeeService","methods":[{"name":"fetchEmployeeData","parameters":[{"name":"param0","type":"STRING"}]}]}


After browsing through my problem I came to an opinion that the java bean 
is not properly converted to jsonobject. Am I right here? could you please 
help me debug my issue?


My Console:

[java] Apr 3, 2008 6:15:12 PM 
org.apache.tuscany.sca.http.jetty.JettyServer addServletMapping
[java] INFO: Added Servlet mapping: 
http://hydhtc43236:8080/EmployeeService/*
[java] Apr 3, 2008 6:15:12 PM 
org.apache.tuscany.sca.http.jetty.JettyServer addServletMapping
[java] INFO: Added Servlet mapping: 
http://hydhtc43236:8080/EmployeeService
[java] Apr 3, 2008 6:15:12 PM 
org.apache.tuscany.sca.http.jetty.JettyServer addServletMapping
[java] INFO: Added Servlet mapping: 
http://hydhtc43236:8080/SCADomain/scaDomain.js
[java] Apr 3, 2008 6:15:12 PM 
org.apache.tuscany.sca.http.jetty.JettyServer addServletMapping

[java] INFO: Added Servlet mapping: http://hydhtc43236:8080/*
[java] Employee Details server started (press enter to shutdown)
[java] Name :admin
[java] DOJ :2006-06-26 00:00:00.0
[java] EMAIL :[EMAIL PROTECTED]
[java] Apr 3, 2008 6:15:28 PM com.metaparadigm.jsonrpc.BeanSerializer 
analyzeBean

[java] INFO: analyzing employeedata.EmployeeData


Thanks & Regards
Ashwini Kumar Jeksani


-Original Message-
From: Ashwini Kumar Jeksani [mailto:[EMAIL PROTECTED]
Sent: Thursday, April 03, 2008 6:17 PM
To: tuscany-user@ws.apache.org
Subject: RE: Reg: passing Javaobject using a JSON binding

Hi Raymond,

Thanx for the help but now I am getting [object Object] in the response 
could you tell me how to convert it?


Thanks & Regards
Ashwini Kumar Jeksani

-Original Message-
From: Raymond Feng [mailto:[EMAIL PROTECTED]
Sent: Wednesday, April 02, 2008 9:01 PM
To: tuscany-user@ws.apache.org
Subject: Re: Reg: passing Javaobject using a JSON binding

Hi,

It seem that the java bean has not been transformed into JSON. Do you have
the @Remotable annotation on the service interface exposed over
binding.jsonrpc?

Thanks,
Raymond
--
From: "Ashwini Kumar Jeksani" <[EMAIL PROTECTED]>
Sent: Wednesday, April 02, 2008 7:57 AM
To: 
Subject: Reg: passing Javaobject using a JSON binding



Hi,
I have a service which is exposed over JSON binding and will return a 
java
object as a response. I want the response data to be in an xml format 
when

I call it from the .html file using DOJO, but I am getting the output as
shown. Could anyone tell me how to convert the java object data to an xml
in my case? Any help would be appreciated.


Code used in html file:

   var employeeService = new 
dojo.rpc.JsonService("EmployeeJSON?smd");



employeeService.fetchEmployeeData(empID).addCallback(contentCallBack)

output:

   {"result": [EMAIL PROTECTED],"id":1}


P.S: Here poc.employeedata.EmployeeData is the java bean

Thanks & Regards
Ashwini Kumar Jeksani


 CAUTION - Disclaimer *
This e-mail contains PRIVILEGED AND CONFIDENTIAL INFORMATION intended
solely for the use of the addressee(s). If you are not the intended
recipient, please notify the sender by e-mail and delete the original
message. Further, you are not to copy, disclose, or distribute this 
e-mail

or its contents to any other person and any such actions are unlawful.
This e-mail may contain viruses. Infosys has taken every reasonable
precaution to minimize this risk, but is not liable for any damage you 
may
sustain as a result of any virus in this e-mail. You should carry out 
your
own virus checks before opening the e-mail or attachment. Infosys 
reserves

the right to monitor and review the content of all messages sent to or
from this e-mail address. Messages sent to or from this e-mail address 
may

be stored on the Infosys e-mail system.
***INFOSYS End of Disclaimer INFOSYS***



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Change the ws binding uri

2008-04-03 Thread Simon Nash

Pedro David Lopez wrote:

Hi, I have this reference in the composite file and works fine



http://192.168.1.254:8085/gwadmin"/>
 

But I need to change the binding ws uri in runtime. I am trying to do this:

List references =
scaDomain.getComponentManager().getComponent("AdminAccessServiceComponent").getReferences();

/* Setting the service url for binding */
for (ComponentReference ref : references) {
if (ref.getName().equals("AdminAccessService")) {
for (Binding b : ref.getBindings()) {
b.setURI(url+name);

}
}
}


This won't do what you expect, because the URI that used to make
WebService invocations is part of an Invoker object that's created
at deployment time from the binding information.  Tuscany does not
currently permit you to get to Invoker objects and update them
at runtime.

The SCA philosophy is that applications deal only with references
and don't control how those references are resolved to specific
service endpoints.  Making the kind of update you are describing
from within an application would be contrary to this philosophy
because it requires the application to know about binding types
and endpoint addresses.

However, there could be use cases where some admin or management
code would want to make changes like this.  I'm not sure whether
they should be applied to deployed components that are currently
running, or just to new deployments.

Can you say more about your application and why it needs this
capability?  In particular, does the URI change need to affect
a running application without redeployment?

  Simon


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Reg: passing Javaobject using a JSON binding

2008-04-03 Thread Ashwini Kumar Jeksani
Hi Raymond,

This might help you debugging.

http://localhost:8080/EmployeeService?smd
=

{"SMDVersion":".1","objectName":"EmployeeBOService","serviceType":"JSON-RPC","serviceURL":"http://localhost:8080/EmployeeService","methods":[{"name":"fetchEmployeeData","parameters":[{"name":"param0","type":"STRING"}]}]}


After browsing through my problem I came to an opinion that the java bean is 
not properly converted to jsonobject. Am I right here? could you please help me 
debug my issue?

My Console:

 [java] Apr 3, 2008 6:15:12 PM 
org.apache.tuscany.sca.http.jetty.JettyServer addServletMapping
 [java] INFO: Added Servlet mapping: 
http://hydhtc43236:8080/EmployeeService/*
 [java] Apr 3, 2008 6:15:12 PM 
org.apache.tuscany.sca.http.jetty.JettyServer addServletMapping
 [java] INFO: Added Servlet mapping: http://hydhtc43236:8080/EmployeeService
 [java] Apr 3, 2008 6:15:12 PM 
org.apache.tuscany.sca.http.jetty.JettyServer addServletMapping
 [java] INFO: Added Servlet mapping: 
http://hydhtc43236:8080/SCADomain/scaDomain.js
 [java] Apr 3, 2008 6:15:12 PM 
org.apache.tuscany.sca.http.jetty.JettyServer addServletMapping
 [java] INFO: Added Servlet mapping: http://hydhtc43236:8080/*
 [java] Employee Details server started (press enter to shutdown)
 [java] Name :admin
 [java] DOJ :2006-06-26 00:00:00.0
 [java] EMAIL :[EMAIL PROTECTED]
 [java] Apr 3, 2008 6:15:28 PM com.metaparadigm.jsonrpc.BeanSerializer 
analyzeBean
 [java] INFO: analyzing employeedata.EmployeeData


Thanks & Regards
Ashwini Kumar Jeksani


-Original Message-
From: Ashwini Kumar Jeksani [mailto:[EMAIL PROTECTED]
Sent: Thursday, April 03, 2008 6:17 PM
To: tuscany-user@ws.apache.org
Subject: RE: Reg: passing Javaobject using a JSON binding

Hi Raymond,

Thanx for the help but now I am getting [object Object] in the response could 
you tell me how to convert it?

Thanks & Regards
Ashwini Kumar Jeksani

-Original Message-
From: Raymond Feng [mailto:[EMAIL PROTECTED]
Sent: Wednesday, April 02, 2008 9:01 PM
To: tuscany-user@ws.apache.org
Subject: Re: Reg: passing Javaobject using a JSON binding

Hi,

It seem that the java bean has not been transformed into JSON. Do you have
the @Remotable annotation on the service interface exposed over
binding.jsonrpc?

Thanks,
Raymond
--
From: "Ashwini Kumar Jeksani" <[EMAIL PROTECTED]>
Sent: Wednesday, April 02, 2008 7:57 AM
To: 
Subject: Reg: passing Javaobject using a JSON binding

>
> Hi,
> I have a service which is exposed over JSON binding and will return a java
> object as a response. I want the response data to be in an xml format when
> I call it from the .html file using DOJO, but I am getting the output as
> shown. Could anyone tell me how to convert the java object data to an xml
> in my case? Any help would be appreciated.
>
>
> Code used in html file:
>
>var employeeService = new dojo.rpc.JsonService("EmployeeJSON?smd");
>
>
> employeeService.fetchEmployeeData(empID).addCallback(contentCallBack)
>
> output:
>
>{"result": [EMAIL PROTECTED],"id":1}
>
>
> P.S: Here poc.employeedata.EmployeeData is the java bean
>
> Thanks & Regards
> Ashwini Kumar Jeksani
>
>
>  CAUTION - Disclaimer *
> This e-mail contains PRIVILEGED AND CONFIDENTIAL INFORMATION intended
> solely for the use of the addressee(s). If you are not the intended
> recipient, please notify the sender by e-mail and delete the original
> message. Further, you are not to copy, disclose, or distribute this e-mail
> or its contents to any other person and any such actions are unlawful.
> This e-mail may contain viruses. Infosys has taken every reasonable
> precaution to minimize this risk, but is not liable for any damage you may
> sustain as a result of any virus in this e-mail. You should carry out your
> own virus checks before opening the e-mail or attachment. Infosys reserves
> the right to monitor and review the content of all messages sent to or
> from this e-mail address. Messages sent to or from this e-mail address may
> be stored on the Infosys e-mail system.
> ***INFOSYS End of Disclaimer INFOSYS***
>

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Reg: passing Javaobject using a JSON binding

2008-04-03 Thread Ashwini Kumar Jeksani
Hi Raymond,

Thanx for the help but now I am getting [object Object] in the response could 
you tell me how to convert it?

Thanks & Regards
Ashwini Kumar Jeksani

-Original Message-
From: Raymond Feng [mailto:[EMAIL PROTECTED]
Sent: Wednesday, April 02, 2008 9:01 PM
To: tuscany-user@ws.apache.org
Subject: Re: Reg: passing Javaobject using a JSON binding

Hi,

It seem that the java bean has not been transformed into JSON. Do you have
the @Remotable annotation on the service interface exposed over
binding.jsonrpc?

Thanks,
Raymond
--
From: "Ashwini Kumar Jeksani" <[EMAIL PROTECTED]>
Sent: Wednesday, April 02, 2008 7:57 AM
To: 
Subject: Reg: passing Javaobject using a JSON binding

>
> Hi,
> I have a service which is exposed over JSON binding and will return a java
> object as a response. I want the response data to be in an xml format when
> I call it from the .html file using DOJO, but I am getting the output as
> shown. Could anyone tell me how to convert the java object data to an xml
> in my case? Any help would be appreciated.
>
>
> Code used in html file:
>
>var employeeService = new dojo.rpc.JsonService("EmployeeJSON?smd");
>
>
> employeeService.fetchEmployeeData(empID).addCallback(contentCallBack)
>
> output:
>
>{"result": [EMAIL PROTECTED],"id":1}
>
>
> P.S: Here poc.employeedata.EmployeeData is the java bean
>
> Thanks & Regards
> Ashwini Kumar Jeksani
>
>
>  CAUTION - Disclaimer *
> This e-mail contains PRIVILEGED AND CONFIDENTIAL INFORMATION intended
> solely for the use of the addressee(s). If you are not the intended
> recipient, please notify the sender by e-mail and delete the original
> message. Further, you are not to copy, disclose, or distribute this e-mail
> or its contents to any other person and any such actions are unlawful.
> This e-mail may contain viruses. Infosys has taken every reasonable
> precaution to minimize this risk, but is not liable for any damage you may
> sustain as a result of any virus in this e-mail. You should carry out your
> own virus checks before opening the e-mail or attachment. Infosys reserves
> the right to monitor and review the content of all messages sent to or
> from this e-mail address. Messages sent to or from this e-mail address may
> be stored on the Infosys e-mail system.
> ***INFOSYS End of Disclaimer INFOSYS***
>

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Reg: Bigbank account demo

2008-04-03 Thread Ashwini Kumar Jeksani

Hi,

I tried deploying bigbank-account demo and when I click the 
getAccountReport("Dojo1234") request button I am getting the following error in 
the response, could anyone help me in this.

{"error":java.lang.reflect.UndeclaredThrowableException,"id":1}
Thanks & Regards
Ashwini Kumar Jeksani



 CAUTION - Disclaimer *
This e-mail contains PRIVILEGED AND CONFIDENTIAL INFORMATION intended solely 
for the use of the addressee(s). If you are not the intended recipient, please 
notify the sender by e-mail and delete the original message. Further, you are 
not to copy, disclose, or distribute this e-mail or its contents to any other 
person and any such actions are unlawful. This e-mail may contain viruses. 
Infosys has taken every reasonable precaution to minimize this risk, but is not 
liable for any damage you may sustain as a result of any virus in this e-mail. 
You should carry out your own virus checks before opening the e-mail or 
attachment. Infosys reserves the right to monitor and review the content of all 
messages sent to or from this e-mail address. Messages sent to or from this 
e-mail address may be stored on the Infosys e-mail system.
***INFOSYS End of Disclaimer INFOSYS***

Re: [Website] - Tooling for Java SCA

2008-04-03 Thread Stéphane Drapeau
Hi,

Thank Haleh.
I uploaded the image (SCACompositeDesigner.PNG).

Stephane Drapeau
Obeo

On Thu, Apr 3, 2008 at 6:38 AM, haleh mahbod <[EMAIL PROTECTED]> wrote:

> Hi Stephane,
>
> I added the text, but the image was dropped out of the mail you sent.
> Maybe you can post the image on the wiki and I can pick it up from there.
> Here is the link to a page where you can download the image.
> http://cwiki.apache.org/confluence/display/TUSCANYWIKI/SCA+Java+Tools
>
> Thanks for the information.
> Haleh
>
>
> On 4/1/08, Stéphane Drapeau <[EMAIL PROTECTED]> wrote:
> >
> > Hi Haleh,
> >
> > Below, you can find more information to put in the section "STP/SCA
> > subproject: SCA Composite Designer" of the web page "Tools for SCA".
> >
> > STP/SCA subproject: SCA Composite Designer
> > The SCA Composite Designer is an Eclipse graphical development
> environment
> > for the construction of SCA composite assemblies.
> > The designer supports Tuscany elements like RMI binding or Script
> > implementation. It works with Tuscany 1.1, and it's planned to support
> > Tuscany 1.2.
> >
> > [screenshot]
> >
> > In STP/SCA sub-project  web
> > page, you can find a tutorial named "First Steps with the SCA Composite
> > Designer". You will learn how to build and run your first SCA
> application in
> > 20 minutes! The tutorial addresses the following points:
> >
> >-
> >
> >How to install STP/SCA plugins and Apache Tuscany,
> >-
> >
> >How to define an SCA assembly with the SCA Composite Designer,
> >-
> >
> >How to refine properties in an SCA assembly,
> >-
> >
> >How to define an SCA assembly with different implementation
> >technologies,
> >-
> >
> >How to define an RMI binding,
> >-
> >
> >How to run and test SCA assemblies with Tuscany.
> >
> >
> >
> > Stéphane Drapeau
> > Obeo
> >
> >
> > On Mon, Mar 31, 2008 at 8:48 PM, haleh mahbod <[EMAIL PROTECTED]> wrote:
> >
> > > Hi,
> > >
> > > As a follow up to this thread, I have created a page on Tuscany
> website
> > > to
> > > host information about SCA tools [1]. Purpose of this page is to share
> > > information about available open source SCA tools.
> > >
> > > To start with, I have included some information about STP/SCA and
> would
> > > appreciate help to include more content about the SCA composite
> designer
> > > and
> > > how it works with Tuscany.
> > >
> > > [1]: http://cwiki.apache.org/confluence/display/TUSCANY/Java+SCA+Tools
> > >
> > > Note: it takes about an hour for the content to show up on the
> official
> > > website.
> > >
> > > Haleh
> > >
> > > On 3/26/08, haleh mahbod <[EMAIL PROTECTED]> wrote:
> > > >
> > > > Thanks for your feedback. I'll add this in.
> > > >
> > > > On 3/25/08, Fengxiang <[EMAIL PROTECTED]> wrote:
> > > > >
> > > > > yeah, I also think so.
> > > > >
> > > > > 2008/3/22, haleh mahbod <[EMAIL PROTECTED]>:
> > > > > >
> > > > > > Hi,
> > > > > > There has been questions about what tooling is available for SCA
> > > Java.
> > > > > It
> > > > > > would be good to share information about what tooling is
> available
> > > on
> > > > > the
> > > > > > Tuscany SCA Java page in response to these requests. It seems
> like
> > > STP
> > > > > has
> > > > > > tooling that is in sync with Tuscany[1]. On their page, under
> news
> > > > > section
> > > > > > I
> > > > > > found information that the new build on March 4th supports
> Tuscany
> > > and
> > > > > the
> > > > > > plugins allow you to run SCA Composite designer.
> > > > > >
> > > > > > We could provide a link on the SCA Java page for "Tools", under
> > > SCA
> > > > > Java
> > > > > > box, where information about any available open source SCA
> tooling
> > > can
> > > > > be
> > > > > > shared by the community.  Do you think this is useful?
> > > > > >
> > > > > >
> > > > > > [1]: http://www.eclipse.org/stp/sca/index.php
> > > > > >
> > > > > >
> > > > > > Haleh
> > > > > >
> > > > >
> > > >
> > > >
> > >
> > >
> >
> >
> > -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
>


Re: STP SCA Component -> STP SCA Tools sub project

2008-04-03 Thread Stéphane Drapeau
Haleh, Raymond,

Thank you for your answers.

Haleh, you're right. I make no distinction between tools for SCA developers
and tools for SCA users. The goal of the project is to develop tools to help
users of the SCA technology. I will modify my sentence.

Stéphane Drapeau
Obeo

On Thu, Apr 3, 2008 at 6:21 AM, haleh mahbod <[EMAIL PROTECTED]> wrote:

> Hi Stephan,
>
> This looks good since it looks like tools for SCA will get more focus :)
> I have a question.
>
> You mention "the goals of the new sub-project are to develop a set of
> tools for SCA developers and SCA users".
>
> What is the difference between SCA developer and SCA user in this context?
>
> Haleh
>
> On 4/2/08, Stéphane Drapeau <[EMAIL PROTECTED]> wrote:
> >
> > Hi Jean-Sebastien, Haleh, all,
> >
> > The proposal is a 3 pages document describing the scope/intent of the
> > proposed project.
> >
> > The outline is:
> > 1. Introduction: the proposition of the transformation of the STP/SCA
> > component into a sub-project named SCA Tools under the top level project
> > STP.
> > 2. Background: presentation of STP + presentation of the existing
> STP/SCA
> > component.
> > 3. Description: the goals of the new sub-project are to develop a set of
> > tools for SCA developers and SCA users. Another goal is also to link
> this
> > sub-project with other components of STP (Service Creation, Policy
> Editor)
> > 4. Proposed components: SCA Domain Model (SCA meta model), SCA Composite
> > Designer, SCA Composite Editors (tree, xml and form), SCA Integration
> > (integration with other STP components)
> > 5. Relationship with Other Eclipse Projects: STP, EMF, GMF, M2M, ...
> > 6. Organization: this sub-project will take place under the top level
> > project STP.
> > 7. A list of proposed initial committers.
> > 8. Code Contribution: the Eclipse STP/SCA component will be the initial
> > code.
> > 9. Interested parties: this section lists companies and communities that
> > support the creation of the project. They don't take other engagements.
> > 10. Tentative Plan for 2008 and 2009.
> >
> > Our goal is to identify formally the scope of the tools that we develop
> > around SCA. The new status will provide some advantages.
> > - I think that the SCA tools will be more visible in the Eclipse
> community
> > if we are identified as a sub-project.
> > - From the users point of view, it will not change anything.
> > - Concerning us, we should be more formal: clear roadmap, new features
> > described/discussed first in bugzilla, ...
> > - It will also present some advantages for Obeo by becoming a
> sub-project
> > leader.
> >
> > In the near future all STP components will become STP sub-projects. To
> > summarize, all of this is purely administrative.
> > I will send you the proposal document ASAP.
> > If you have any questions, don't hesitate.
> >
> > Haleh, yesterday I sent you more information about the SCA Composite
> > Designer on the thread named "[Website] - Tooling for Java SCA". You can
> > add
> > it on the web page. Tell me if you need more/different information.
> > My post describes what version of Tuscany can be used. I also introduce
> a
> > tutorial that I made. This tutorial is based on the SCA designer and
> > Tuscany
> > 1.1.
> >
> > Best regards,
> >
> > Stéphane Drapeau
> > Obeo
> >
> > On Wed, Apr 2, 2008 at 8:05 AM, haleh mahbod <[EMAIL PROTECTED]> wrote:
> >
> > > Hi Stephane,
> > >
> > > Welcome to Tuscany. How will changing the status of STP SCA from a
> > > component
> > > to a sub project change its future development and focus?
> > >
> > > Tuscany community had asked about tools for SCA and  because of that I
> > > recently added a website page [1] to collect more information about
> > > available open source tools. I added a link to STP there.  It would be
> > > great
> > > if you could provide more content about what is available and what
> > version
> > > of Tuscany it works with.
> > >
> > > [1]: http://incubator.apache.org/tuscany/java-sca-tools.html
> > >
> > >
> > > Haleh
> > >
> > > On 4/1/08, Jean-Sebastien Delfino <[EMAIL PROTECTED]> wrote:
> > > >
> > > > Stéphane Drapeau wrote:
> > > > > Hi,
> > > > >
> > > > > I'm Stéphane Drapeau from Obeo. I work on tools for SCA and I lead
> > the
> > > > > Eclipse SCA component which is a component of the STP project [1].
> > > > > Currently, I'm writing a proposal to change the status of the STP
> > SCA
> > > *
> > > > > component* to STP/SCA Tools *sub project*.
> > > > > I would like know if I can refer Tuscany community as interested
> > party
> > > > of
> > > > > our proposal. It's purely administrative.
> > > > > Jean Sebastien told me that the Tuscany community must vote on
> this
> > > > issue.
> > > > > So the discussion is open ;)
> > > > >
> > > > > Thanks very much.
> > > > >
> > > > > Best regards
> > > > >
> > > > > Stéphane Drapeau
> > > > > Obeo
> > > > >
> > > > >
> > > > > [1]: http://www.eclipse.org/stp/sca/index.php
> > > > >
> > > >
> > > > Hi Stephane,
> > > >