Re: [VOTE] 3rd try: Release Tuscany SCA Java 1.0.1-incubating (RC4)

2007-11-06 Thread Jean-Sebastien Delfino

Raymond Feng wrote:

Hi,

Please review and vote on the 1.0.1-incubating release artifacts of 
Tuscany

SCA for Java.

The RC4 contains a few fixes to issues discovered in RC3. Thank you for
reporting and fixing the issues promptly.

SVN Tag:
http://svn.apache.org/repos/asf/incubator/tuscany/tags/java/sca/1.0.1-RC4/ 



Stage maven repo: http://people.apache.org/~rfeng/tuscany/maven/

RAT report:
http://people.apache.org/~rfeng/tuscany/1.0.1-RC4/1.0.1-RC4.rat.txt

Distros (zip/gz/asc/md5) :
http://people.apache.org/~rfeng/tuscany/1.0.1-RC4/

Thanks,
Raymond

PS: I posted this message on Friday and it was only sent to myself :-(

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




I reviewed and tested the distro on Linux RHEL5.

- Webapp samples worked OK on Tomcat.

- All standalone samples with ant scripts worked except the 
binding-notification-* ones as I didn't know in which order I was 
supposed to start them. Just one minor issue: the nodes in 
calculator-distributed did not exit after pressing enter, but ctrl+C 
worked :)


The WSDL at 
https://svn.apache.org/repos/asf/incubator/tuscany/tags/java/sca/1.0.1-RC4/demos/xml-bigbank/src/main/resources/wsdl/StockQuotes.wsdl 
is missing a license header. What's its status and do we need that WSDL?


--
Jean-Sebastien


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



Re: [VOTE] 3rd try: Release Tuscany SCA Java 1.0.1-incubating (RC4)

2007-11-06 Thread Ignacio Silva-Lepe
Hi JS,

The binding-notification-* samples can be run in isolation via ant run.
But also to run them from the command line, they assume that the
ntm runs on port 8083 and so the sample that is started first needs
to use that port. The sample command in the README for the
producer does that, so if you use it you should run the producer first.
Otherwise, just make sure that the first one you run uses
-Dnotification.httpPort=8083. The sample overview in the READMEs
tries to describe this.


On 11/6/07, Jean-Sebastien Delfino [EMAIL PROTECTED] wrote:

 Raymond Feng wrote:
  Hi,
 
  Please review and vote on the 1.0.1-incubating release artifacts of
  Tuscany
  SCA for Java.
 
  The RC4 contains a few fixes to issues discovered in RC3. Thank you for
  reporting and fixing the issues promptly.
 
  SVN Tag:
 
 http://svn.apache.org/repos/asf/incubator/tuscany/tags/java/sca/1.0.1-RC4/
 
 
  Stage maven repo: http://people.apache.org/~rfeng/tuscany/maven/
 
  RAT report:
  http://people.apache.org/~rfeng/tuscany/1.0.1-RC4/1.0.1-RC4.rat.txt
 
  Distros (zip/gz/asc/md5) :
  http://people.apache.org/~rfeng/tuscany/1.0.1-RC4/
 
  Thanks,
  Raymond
 
  PS: I posted this message on Friday and it was only sent to myself :-(
 
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 

 I reviewed and tested the distro on Linux RHEL5.

 - Webapp samples worked OK on Tomcat.

 - All standalone samples with ant scripts worked except the
 binding-notification-* ones as I didn't know in which order I was
 supposed to start them. Just one minor issue: the nodes in
 calculator-distributed did not exit after pressing enter, but ctrl+C
 worked :)

 The WSDL at

 https://svn.apache.org/repos/asf/incubator/tuscany/tags/java/sca/1.0.1-RC4/demos/xml-bigbank/src/main/resources/wsdl/StockQuotes.wsdl
 is missing a license header. What's its status and do we need that WSDL?

 --
 Jean-Sebastien


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




Re: [VOTE] 3rd try: Release Tuscany SCA Java 1.0.1-incubating (RC4)

2007-11-06 Thread Jean-Sebastien Delfino

Ignacio Silva-Lepe wrote:

Hi JS,

The binding-notification-* samples can be run in isolation via ant run.
But also to run them from the command line, they assume that the
ntm runs on port 8083 and so the sample that is started first needs
to use that port. The sample command in the README for the
producer does that, so if you use it you should run the producer first.
Otherwise, just make sure that the first one you run uses
-Dnotification.httpPort=8083. The sample overview in the READMEs
tries to describe this.


  

[snip]

- All standalone samples with ant scripts worked except the
binding-notification-* ones as I didn't know in which order I was
supposed to start them. Just one minor issue: the nodes in
calculator-distributed did not exit after pressing enter, but ctrl+C
worked :)


OK, I got the binding-notification producer and consumer working, using 
the java... command lines described in the READMEs. However the ant 
scripts seem to just start + stop each sample without giving the 
opportunity to send messages. This is not a blocker though, they can be 
fixed in the next release.


--
Jean-Sebastien


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



Re: [VOTE] 3rd try: Release Tuscany SCA Java 1.0.1-incubating (RC4)

2007-11-06 Thread Ignacio Silva-Lepe
The ant scripts were written to just start and stop. To send messages
they would need to run concurrently and on different ports, which would
then break if they were run in isolation. I tried to keep the whole simple
enough so ant run does unit test and java command does system test.
But we can 'fix' this in the next release if necessary.


On 11/6/07, Jean-Sebastien Delfino [EMAIL PROTECTED] wrote:

 Ignacio Silva-Lepe wrote:
  Hi JS,
 
  The binding-notification-* samples can be run in isolation via ant run.
  But also to run them from the command line, they assume that the
  ntm runs on port 8083 and so the sample that is started first needs
  to use that port. The sample command in the README for the
  producer does that, so if you use it you should run the producer first.
  Otherwise, just make sure that the first one you run uses
  -Dnotification.httpPort=8083. The sample overview in the READMEs
  tries to describe this.
 
 
 
 [snip]
  - All standalone samples with ant scripts worked except the
  binding-notification-* ones as I didn't know in which order I was
  supposed to start them. Just one minor issue: the nodes in
  calculator-distributed did not exit after pressing enter, but ctrl+C
  worked :)
 
 
 OK, I got the binding-notification producer and consumer working, using
 the java... command lines described in the READMEs. However the ant
 scripts seem to just start + stop each sample without giving the
 opportunity to send messages. This is not a blocker though, they can be
 fixed in the next release.

 --
 Jean-Sebastien


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




Re: [VOTE] 3rd try: Release Tuscany SCA Java 1.0.1-incubating (RC4)

2007-11-06 Thread Jean-Sebastien Delfino

Raymond Feng wrote:
The WSDL is used to access a live StockQuote web service: 
http://www.xmethods.net/ve2/ViewListing.po?key=uuid:52A2D109-F37A-7DE1-E66B-C477BC8FF764. 



Unfortunately I cannot find any license information about the WSDL. We 
need to figure out a better way to handle these situtations (to access 
a live web service without shipping the WSDL/XSDs locally).


Thanks,
Raymond



Yeah I checked that Web site too and couldn't find its license, that's 
why I asked. For this release, can we just remove it or replace it with 
another local WSDL that imports the remote WSDL?


What do others think?

--
Jean-Sebastien


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



Re: [VOTE] 3rd try: Release Tuscany SCA Java 1.0.1-incubating (RC4)

2007-11-06 Thread Jean-Sebastien Delfino

Raymond Feng wrote:

Hi,

I have to fix a few classes to get the wsdl:import working (with 
some limitations) for remote URLs. I'm not sure if we should rush this 
into 1.0.1.


Should we just remove the WSDL and document how to get it from the 
internet?


Thanks,
Raymond


+1 to not rush and just remove the WSDL and document how to get it.

--
Jean-Sebastien


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



Re: [VOTE] 3rd try: Release Tuscany SCA Java 1.0.1-incubating (RC4)

2007-11-06 Thread Raymond Feng

Let me try the wsdl:import to see if it works.

Thanks,
Raymond

- Original Message - 
From: Jean-Sebastien Delfino [EMAIL PROTECTED]

To: tuscany-dev@ws.apache.org
Sent: Tuesday, November 06, 2007 12:54 PM
Subject: Re: [VOTE] 3rd try: Release Tuscany SCA Java 1.0.1-incubating (RC4)



Raymond Feng wrote:
The WSDL is used to access a live StockQuote web service: 
http://www.xmethods.net/ve2/ViewListing.po?key=uuid:52A2D109-F37A-7DE1-E66B-C477BC8FF764.


Unfortunately I cannot find any license information about the WSDL. We 
need to figure out a better way to handle these situtations (to access a 
live web service without shipping the WSDL/XSDs locally).


Thanks,
Raymond



Yeah I checked that Web site too and couldn't find its license, that's why 
I asked. For this release, can we just remove it or replace it with 
another local WSDL that imports the remote WSDL?


What do others think?

--
Jean-Sebastien


-
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: [VOTE] 3rd try: Release Tuscany SCA Java 1.0.1-incubating (RC4)

2007-11-06 Thread Raymond Feng

Hi,

I have to fix a few classes to get the wsdl:import working (with some 
limitations) for remote URLs. I'm not sure if we should rush this into 
1.0.1.


Should we just remove the WSDL and document how to get it from the internet?

Thanks,
Raymond

- Original Message - 
From: Raymond Feng [EMAIL PROTECTED]

To: tuscany-dev@ws.apache.org
Sent: Tuesday, November 06, 2007 1:26 PM
Subject: Re: [VOTE] 3rd try: Release Tuscany SCA Java 1.0.1-incubating (RC4)



Let me try the wsdl:import to see if it works.

Thanks,
Raymond

- Original Message - 
From: Jean-Sebastien Delfino [EMAIL PROTECTED]

To: tuscany-dev@ws.apache.org
Sent: Tuesday, November 06, 2007 12:54 PM
Subject: Re: [VOTE] 3rd try: Release Tuscany SCA Java 1.0.1-incubating 
(RC4)




Raymond Feng wrote:
The WSDL is used to access a live StockQuote web service: 
http://www.xmethods.net/ve2/ViewListing.po?key=uuid:52A2D109-F37A-7DE1-E66B-C477BC8FF764.


Unfortunately I cannot find any license information about the WSDL. We 
need to figure out a better way to handle these situtations (to access a 
live web service without shipping the WSDL/XSDs locally).


Thanks,
Raymond



Yeah I checked that Web site too and couldn't find its license, that's 
why I asked. For this release, can we just remove it or replace it with 
another local WSDL that imports the remote WSDL?


What do others think?

--
Jean-Sebastien


-
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: [VOTE] 3rd try: Release Tuscany SCA Java 1.0.1-incubating (RC4)

2007-11-06 Thread Jean-Sebastien Delfino

[snip]
Simon Laws wrote:

I just went through the samples that I had problems with before and they
look good now. The only issue I have is that  helloworld-ws-reference-jms is
still in there but that's not a blocker as we can ask people to ignore it.
  


I missed this one, +1 to remove it if we're going to respin a distro.

I agree though that the WSDL license issue that's been found does need to be
fixed and without an obvious license we'll have to remove it. Shall we fix
some of the issues that Mark found at the same time?
  


+1

--
Jean-Sebastien


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



Re: [VOTE] 3rd try: Release Tuscany SCA Java 1.0.1-incubating (RC4)

2007-11-06 Thread Luciano Resende
On 11/6/07, Jean-Sebastien Delfino [EMAIL PROTECTED] wrote:
 Raymond Feng wrote:
  Hi,
 
  I have to fix a few classes to get the wsdl:import working (with
  some limitations) for remote URLs. I'm not sure if we should rush this
  into 1.0.1.
 
  Should we just remove the WSDL and document how to get it from the
  internet?
 
  Thanks,
  Raymond

 +1 to not rush and just remove the WSDL and document how to get it.


+1, and if we fix this, we should also fix the SDO license I mentioned
before as well.

 --
 Jean-Sebastien


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




-- 
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: [VOTE] 3rd try: Release Tuscany SCA Java 1.0.1-incubating (RC4)

2007-11-05 Thread Ignacio Silva-Lepe
When I try to follow

Distros (zip/gz/asc/md5) :
http://people.apache.org/~rfeng/tuscany/1.0.1-RC4/

to download the distro, I get a 403 Forbidden, is anyone
else able to follow the link?


On 11/5/07, Raymond Feng [EMAIL PROTECTED] wrote:

 Hi,

 Please review and vote on the 1.0.1-incubating release artifacts of
 Tuscany
 SCA for Java.

 The RC4 contains a few fixes to issues discovered in RC3. Thank you for
 reporting and fixing the issues promptly.

 SVN Tag:
 http://svn.apache.org/repos/asf/incubator/tuscany/tags/java/sca/1.0.1-RC4/

 Stage maven repo: http://people.apache.org/~rfeng/tuscany/maven/

 RAT report:
 http://people.apache.org/~rfeng/tuscany/1.0.1-RC4/1.0.1-RC4.rat.txt

 Distros (zip/gz/asc/md5) :
 http://people.apache.org/~rfeng/tuscany/1.0.1-RC4/

 Thanks,
 Raymond

 PS: I posted this message on Friday and it was only sent to myself :-(


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




Re: [VOTE] 3rd try: Release Tuscany SCA Java 1.0.1-incubating (RC4)

2007-11-05 Thread Ignacio Silva-Lepe
I meant to say I get 403 Forbidden when I try to follow

http://people.apache.org/~rfeng/tuscany/1.0.1-RC4/apache-tuscany-sca-1.0.1-incubating.zip

from

Distros (zip/gz/asc/md5) :
http://people.apache.org/~rfeng/tuscany/1.0.1-RC4/

sorry about the confusion


On 11/5/07, Ignacio Silva-Lepe [EMAIL PROTECTED] wrote:

 When I try to follow

 Distros (zip/gz/asc/md5) :
 http://people.apache.org/~rfeng/tuscany/1.0.1-RC4/

 to download the distro, I get a 403 Forbidden, is anyone
 else able to follow the link?


  On 11/5/07, Raymond Feng [EMAIL PROTECTED] wrote:
 
  Hi,
 
  Please review and vote on the 1.0.1-incubating release artifacts of
  Tuscany
  SCA for Java.
 
  The RC4 contains a few fixes to issues discovered in RC3. Thank you for
  reporting and fixing the issues promptly.
 
  SVN Tag:
 
  http://svn.apache.org/repos/asf/incubator/tuscany/tags/java/sca/1.0.1-RC4/
 
  Stage maven repo: http://people.apache.org/~rfeng/tuscany/maven/
 
  RAT report:
  http://people.apache.org/~rfeng/tuscany/1.0.1-RC4/1.0.1-RC4.rat.txt
 
  Distros (zip/gz/asc/md5) :
  http://people.apache.org/~rfeng/tuscany/1.0.1-RC4/
 
  Thanks,
  Raymond
 
  PS: I posted this message on Friday and it was only sent to myself :-(
 
 
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 



Re: [VOTE] 3rd try: Release Tuscany SCA Java 1.0.1-incubating (RC4)

2007-11-05 Thread Raymond Feng

Hi,

I just fixed the permission issue. The files were copied to the 
people.apache.org site using scp command which doesn't set the read.


Thanks,
Raymond

- Original Message - 
From: Ignacio Silva-Lepe [EMAIL PROTECTED]

To: tuscany-dev@ws.apache.org
Sent: Monday, November 05, 2007 10:16 AM
Subject: Re: [VOTE] 3rd try: Release Tuscany SCA Java 1.0.1-incubating (RC4)



When I try to follow

Distros (zip/gz/asc/md5) :
http://people.apache.org/~rfeng/tuscany/1.0.1-RC4/

to download the distro, I get a 403 Forbidden, is anyone
else able to follow the link?


On 11/5/07, Raymond Feng [EMAIL PROTECTED] wrote:


Hi,

Please review and vote on the 1.0.1-incubating release artifacts of
Tuscany
SCA for Java.

The RC4 contains a few fixes to issues discovered in RC3. Thank you for
reporting and fixing the issues promptly.

SVN Tag:
http://svn.apache.org/repos/asf/incubator/tuscany/tags/java/sca/1.0.1-RC4/

Stage maven repo: http://people.apache.org/~rfeng/tuscany/maven/

RAT report:
http://people.apache.org/~rfeng/tuscany/1.0.1-RC4/1.0.1-RC4.rat.txt

Distros (zip/gz/asc/md5) :
http://people.apache.org/~rfeng/tuscany/1.0.1-RC4/

Thanks,
Raymond

PS: I posted this message on Friday and it was only sent to myself :-(


-
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: [VOTE] 3rd try: Release Tuscany SCA Java 1.0.1-incubating (RC4)

2007-11-05 Thread Ignacio Silva-Lepe
Great, thanks, I can download now.

On 11/5/07, Raymond Feng [EMAIL PROTECTED] wrote:

 Hi,

 I just fixed the permission issue. The files were copied to the
 people.apache.org site using scp command which doesn't set the read.

 Thanks,
 Raymond

 - Original Message -
 From: Ignacio Silva-Lepe [EMAIL PROTECTED]
 To: tuscany-dev@ws.apache.org
 Sent: Monday, November 05, 2007 10:16 AM
 Subject: Re: [VOTE] 3rd try: Release Tuscany SCA Java 1.0.1-incubating(RC4)


  When I try to follow
 
  Distros (zip/gz/asc/md5) :
  http://people.apache.org/~rfeng/tuscany/1.0.1-RC4/
 
  to download the distro, I get a 403 Forbidden, is anyone
  else able to follow the link?
 
 
  On 11/5/07, Raymond Feng [EMAIL PROTECTED] wrote:
 
  Hi,
 
  Please review and vote on the 1.0.1-incubating release artifacts of
  Tuscany
  SCA for Java.
 
  The RC4 contains a few fixes to issues discovered in RC3. Thank you for
  reporting and fixing the issues promptly.
 
  SVN Tag:
 
 http://svn.apache.org/repos/asf/incubator/tuscany/tags/java/sca/1.0.1-RC4/
 
  Stage maven repo: http://people.apache.org/~rfeng/tuscany/maven/
 
  RAT report:
  http://people.apache.org/~rfeng/tuscany/1.0.1-RC4/1.0.1-RC4.rat.txt
 
  Distros (zip/gz/asc/md5) :
  http://people.apache.org/~rfeng/tuscany/1.0.1-RC4/
 
  Thanks,
  Raymond
 
  PS: I posted this message on Friday and it was only sent to myself :-(
 
 
  -
  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: [VOTE] 3rd try: Release Tuscany SCA Java 1.0.1-incubating (RC4)

2007-11-05 Thread Mark Combellack
Raymond Feng [EMAIL PROTECTED] writes:

 
 Hi,
 
 Please review and vote on the 1.0.1-incubating release artifacts of Tuscany
 SCA for Java.
 
 The RC4 contains a few fixes to issues discovered in RC3. Thank you for
 reporting and fixing the issues promptly.
 
 SVN Tag:
 http://svn.apache.org/repos/asf/incubator/tuscany/tags/java/sca/1.0.1-RC4/
 
 Stage maven repo: http://people.apache.org/~rfeng/tuscany/maven/
 
 RAT report:
 http://people.apache.org/~rfeng/tuscany/1.0.1-RC4/1.0.1-RC4.rat.txt
 
 Distros (zip/gz/asc/md5) :
 http://people.apache.org/~rfeng/tuscany/1.0.1-RC4/
 
 Thanks,
 Raymond
 
 PS: I posted this message on Friday and it was only sent to myself  
 



First of all, thanks Raymond for doing the builds for the next release.

I've not had time to run all the samples but I have tried some of the samples 
using the binary distribution on Linux for the testing.

Generally, the release looks good. I would give it a +0.5 as it has some minor 
issues but possibly not enough to prevent it's release.


My review comments are below:





Medium - perhaps needs investigation?
=

Can't get mvn to build sample projects
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-

This might simply be because the artefacts are not published to the Maven 
repository yet.

Cannot build with Maven. When I run the mvn command, I get the following
output:

[INFO] Scanning for projects...
Downloading: http://repo1.maven.org/maven2/org/apache/tuscany/sca/tuscany-sca/1.
0.1-incubating/tuscany-sca-1.0.1-incubating.pom
[INFO] 
[ERROR] FATAL ERROR
[INFO] 
[INFO] Failed to resolve artifact.

GroupId: org.apache.tuscany.sca
ArtifactId: tuscany-sca
Version: 1.0.1-incubating

Reason: Unable to download the artifact from any repository

  org.apache.tuscany.sca:tuscany-sca:pom:1.0.1-incubating

from the specified remote repositories:
  central (http://repo1.maven.org/maven2)


[INFO] 
[INFO] Trace
org.apache.maven.reactor.MavenExecutionException: Cannot find parent: org.apache
.tuscany.sca:tuscany-sca for project: null:sample-osgi-supplychain:jar:null for 
project null:sample-osgi-supplychain:jar:null
at org.apache.maven.DefaultMaven.getProjects(DefaultMaven.java:378)
at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:290)
at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:125)
at org.apache.maven.cli.MavenCli.main(MavenCli.java:280)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
sorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at org.codehaus.classworlds.Launcher.launchEnhanced(Launcher.java:315)
at org.codehaus.classworlds.Launcher.launch(Launcher.java:255)
at org.codehaus.classworlds.Launcher.mainWithExitCode(Launcher.java:430)
at org.codehaus.classworlds.Launcher.main(Launcher.java:375)
Caused by: org.apache.maven.project.ProjectBuildingException: Cannot find parent
: org.apache.tuscany.sca:tuscany-sca for project: null:sample-osgi-supplychain:j
ar:null for project null:sample-osgi-supplychain:jar:null
at org.apache.maven.project.DefaultMavenProjectBuilder.assembleLineage(D
efaultMavenProjectBuilder.java:1261)
at org.apache.maven.project.DefaultMavenProjectBuilder.buildInternal(Def
aultMavenProjectBuilder.java:747)
at org.apache.maven.project.DefaultMavenProjectBuilder.buildFromSourceFi
leInternal(DefaultMavenProjectBuilder.java:479)
at org.apache.maven.project.DefaultMavenProjectBuilder.build(DefaultMave
nProjectBuilder.java:200)
at org.apache.maven.DefaultMaven.getProject(DefaultMaven.java:553)
at org.apache.maven.DefaultMaven.collectProjects(DefaultMaven.java:467)
at org.apache.maven.DefaultMaven.getProjects(DefaultMaven.java:364)
... 11 more
Caused by: org.apache.maven.project.ProjectBuildingException: POM 'org.apache.tu
scany.sca:tuscany-sca' not found in repository: Unable to download the artifact
from any repository

  org.apache.tuscany.sca:tuscany-sca:pom:1.0.1-incubating

from the specified remote repositories:
  central (http://repo1.maven.org/maven2)
 for project org.apache.tuscany.sca:tuscany-sca
at org.apache.maven.project.DefaultMavenProjectBuilder.findModelFromRepo
sitory(DefaultMavenProjectBuilder.java:573)
at org.apache.maven.project.DefaultMavenProjectBuilder.assembleLineage(D
efaultMavenProjectBuilder.java:1257)
... 17 more
Caused by: org.apache.maven.artifact.resolver.ArtifactNotFoundException: Unable 
to download the artifact from any repository

  

How to build with stage maven repo? was: Re: [VOTE] 3rd try: Release Tuscany SCA Java 1.0.1-incubating (RC4)

2007-11-05 Thread Raymond Feng

Hi, Mark.

Thank you for reviewing the release. Without using the stage maven repo, you 
cannot build the samepls from src. Here is an option to try:


To build the source distro from the stage maven repo, you can add the 
profiles element below to your maven settings.xml and run mvn -Pstaging 
clean install.


settings
   ...
   profiles
   profile
   idstaging/id
   activation
   activeByDefaultfalse/activeByDefault
   /activation
   repositories
   repository
   idtuscany.staging/id
   urlhttp://people.apache.org/~rfeng/tuscany/maven/url
   /repository
   /repositories
   pluginRepositories
   pluginRepository
   idtuscany.staging/id
   urlhttp://people.apache.org/~rfeng/tuscany/maven/url
   /pluginRepository
   /pluginRepositories
   /profile
   /profiles
   ...
/settings

Thanks,
Raymond

- Original Message - 
From: Mark Combellack [EMAIL PROTECTED]

To: tuscany-dev@ws.apache.org
Sent: Monday, November 05, 2007 1:51 PM
Subject: Re: [VOTE] 3rd try: Release Tuscany SCA Java 1.0.1-incubating (RC4)



Raymond Feng [EMAIL PROTECTED] writes:



Hi,

Please review and vote on the 1.0.1-incubating release artifacts of 
Tuscany

SCA for Java.

The RC4 contains a few fixes to issues discovered in RC3. Thank you for
reporting and fixing the issues promptly.

SVN Tag:
http://svn.apache.org/repos/asf/incubator/tuscany/tags/java/sca/1.0.1-RC4/

Stage maven repo: http://people.apache.org/~rfeng/tuscany/maven/

RAT report:
http://people.apache.org/~rfeng/tuscany/1.0.1-RC4/1.0.1-RC4.rat.txt

Distros (zip/gz/asc/md5) :
http://people.apache.org/~rfeng/tuscany/1.0.1-RC4/

Thanks,
Raymond

PS: I posted this message on Friday and it was only sent to myself





First of all, thanks Raymond for doing the builds for the next release.

I've not had time to run all the samples but I have tried some of the 
samples

using the binary distribution on Linux for the testing.

Generally, the release looks good. I would give it a +0.5 as it has some 
minor

issues but possibly not enough to prevent it's release.


My review comments are below:





Medium - perhaps needs investigation?
=

Can't get mvn to build sample projects
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-

This might simply be because the artefacts are not published to the Maven
repository yet.

Cannot build with Maven. When I run the mvn command, I get the following
output:

[INFO] Scanning for projects...
Downloading: 
http://repo1.maven.org/maven2/org/apache/tuscany/sca/tuscany-sca/1.

0.1-incubating/tuscany-sca-1.0.1-incubating.pom
[INFO] 
[ERROR] FATAL ERROR
[INFO] 
[INFO] Failed to resolve artifact.

GroupId: org.apache.tuscany.sca
ArtifactId: tuscany-sca
Version: 1.0.1-incubating

Reason: Unable to download the artifact from any repository

 org.apache.tuscany.sca:tuscany-sca:pom:1.0.1-incubating

from the specified remote repositories:
 central (http://repo1.maven.org/maven2)


[INFO] 
[INFO] Trace
org.apache.maven.reactor.MavenExecutionException: Cannot find parent: 
org.apache
.tuscany.sca:tuscany-sca for project: 
null:sample-osgi-supplychain:jar:null for

project null:sample-osgi-supplychain:jar:null
   at org.apache.maven.DefaultMaven.getProjects(DefaultMaven.java:378)
   at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:290)
   at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:125)
   at org.apache.maven.cli.MavenCli.main(MavenCli.java:280)
   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
   at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.

java:39)
   at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces

sorImpl.java:25)
   at java.lang.reflect.Method.invoke(Method.java:585)
   at 
org.codehaus.classworlds.Launcher.launchEnhanced(Launcher.java:315)

   at org.codehaus.classworlds.Launcher.launch(Launcher.java:255)
   at 
org.codehaus.classworlds.Launcher.mainWithExitCode(Launcher.java:430)

   at org.codehaus.classworlds.Launcher.main(Launcher.java:375)
Caused by: org.apache.maven.project.ProjectBuildingException: Cannot find 
parent
: org.apache.tuscany.sca:tuscany-sca for project: 
null:sample-osgi-supplychain:j

ar:null for project null:sample-osgi-supplychain:jar:null
   at 
org.apache.maven.project.DefaultMavenProjectBuilder.assembleLineage(D

efaultMavenProjectBuilder.java:1261)
   at 
org.apache.maven.project.DefaultMavenProjectBuilder.buildInternal(Def

aultMavenProjectBuilder.java:747)
   at 
org.apache.maven.project.DefaultMavenProjectBuilder.buildFromSourceFi

Re: [VOTE] 3rd try: Release Tuscany SCA Java 1.0.1-incubating (RC4)

2007-11-05 Thread Luciano Resende
+1

Compiled source distro with a clean maven repo OK
Tested webapp samples using Tomcat and they are all working fine
Tested couple samples, including BPEL, and couple others, and found no issues.

One minor issue, is that the LICENSE file has wrong license for SDO
API, looks like only some files are released under ASF 2.0 and other
files have OSOA license, see[1]. I would suggest fixing that in trunk
and in the release branch.

[1]https://svn.apache.org/repos/asf/incubator/tuscany/java/sdo/distribution/src/main/release/bin/LICENSE


On 11/5/07, Mark Combellack [EMAIL PROTECTED] wrote:
 Raymond Feng [EMAIL PROTECTED] writes:

 
  Hi,
 
  Please review and vote on the 1.0.1-incubating release artifacts of Tuscany
  SCA for Java.
 
  The RC4 contains a few fixes to issues discovered in RC3. Thank you for
  reporting and fixing the issues promptly.
 
  SVN Tag:
  http://svn.apache.org/repos/asf/incubator/tuscany/tags/java/sca/1.0.1-RC4/
 
  Stage maven repo: http://people.apache.org/~rfeng/tuscany/maven/
 
  RAT report:
  http://people.apache.org/~rfeng/tuscany/1.0.1-RC4/1.0.1-RC4.rat.txt
 
  Distros (zip/gz/asc/md5) :
  http://people.apache.org/~rfeng/tuscany/1.0.1-RC4/
 
  Thanks,
  Raymond
 
  PS: I posted this message on Friday and it was only sent to myself
 



 First of all, thanks Raymond for doing the builds for the next release.

 I've not had time to run all the samples but I have tried some of the samples
 using the binary distribution on Linux for the testing.

 Generally, the release looks good. I would give it a +0.5 as it has some minor
 issues but possibly not enough to prevent it's release.


 My review comments are below:





 Medium - perhaps needs investigation?
 =

 Can't get mvn to build sample projects
 -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-

 This might simply be because the artefacts are not published to the Maven
 repository yet.

 Cannot build with Maven. When I run the mvn command, I get the following
 output:

 [INFO] Scanning for projects...
 Downloading: 
 http://repo1.maven.org/maven2/org/apache/tuscany/sca/tuscany-sca/1.
 0.1-incubating/tuscany-sca-1.0.1-incubating.pom
 [INFO] 
 
 [ERROR] FATAL ERROR
 [INFO] 
 
 [INFO] Failed to resolve artifact.

 GroupId: org.apache.tuscany.sca
 ArtifactId: tuscany-sca
 Version: 1.0.1-incubating

 Reason: Unable to download the artifact from any repository

   org.apache.tuscany.sca:tuscany-sca:pom:1.0.1-incubating

 from the specified remote repositories:
   central (http://repo1.maven.org/maven2)


 [INFO] 
 
 [INFO] Trace
 org.apache.maven.reactor.MavenExecutionException: Cannot find parent: 
 org.apache
 .tuscany.sca:tuscany-sca for project: null:sample-osgi-supplychain:jar:null 
 for
 project null:sample-osgi-supplychain:jar:null
 at org.apache.maven.DefaultMaven.getProjects(DefaultMaven.java:378)
 at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:290)
 at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:125)
 at org.apache.maven.cli.MavenCli.main(MavenCli.java:280)
 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
 at 
 sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
 java:39)
 at 
 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
 sorImpl.java:25)
 at java.lang.reflect.Method.invoke(Method.java:585)
 at org.codehaus.classworlds.Launcher.launchEnhanced(Launcher.java:315)
 at org.codehaus.classworlds.Launcher.launch(Launcher.java:255)
 at 
 org.codehaus.classworlds.Launcher.mainWithExitCode(Launcher.java:430)
 at org.codehaus.classworlds.Launcher.main(Launcher.java:375)
 Caused by: org.apache.maven.project.ProjectBuildingException: Cannot find 
 parent
 : org.apache.tuscany.sca:tuscany-sca for project: 
 null:sample-osgi-supplychain:j
 ar:null for project null:sample-osgi-supplychain:jar:null
 at 
 org.apache.maven.project.DefaultMavenProjectBuilder.assembleLineage(D
 efaultMavenProjectBuilder.java:1261)
 at 
 org.apache.maven.project.DefaultMavenProjectBuilder.buildInternal(Def
 aultMavenProjectBuilder.java:747)
 at 
 org.apache.maven.project.DefaultMavenProjectBuilder.buildFromSourceFi
 leInternal(DefaultMavenProjectBuilder.java:479)
 at 
 org.apache.maven.project.DefaultMavenProjectBuilder.build(DefaultMave
 nProjectBuilder.java:200)
 at org.apache.maven.DefaultMaven.getProject(DefaultMaven.java:553)
 at 
 org.apache.maven.DefaultMaven.collectProjects(DefaultMaven.java:467)
 at org.apache.maven.DefaultMaven.getProjects(DefaultMaven.java:364)
 ... 11 more
 Caused by: org.apache.maven.project.ProjectBuildingException: POM 
 'org.apache.tu