[jira] Closed: (TUSCANY-522) Build fails during copyout - The system cannot find the path specified.

2006-08-08 Thread Pete Robbins (JIRA)
[ http://issues.apache.org/jira/browse/TUSCANY-522?page=all ] Pete Robbins closed TUSCANY-522. Fix Version/s: Cpp-M1 Resolution: Fixed Build fails during copyout - The system cannot find the path specified

[jira] Closed: (TUSCANY-523) Breakpoints already set in SDO source

2006-08-08 Thread Pete Robbins (JIRA)
[ http://issues.apache.org/jira/browse/TUSCANY-523?page=all ] Pete Robbins closed TUSCANY-523. Fix Version/s: Cpp-M1 Resolution: Fixed Breakpoints already set in SDO source - Key: TUSCANY

[jira] Closed: (TUSCANY-529) Access violation in XMLHelperImpl::save

2006-08-08 Thread Pete Robbins (JIRA)
[ http://issues.apache.org/jira/browse/TUSCANY-529?page=all ] Pete Robbins closed TUSCANY-529. Fix Version/s: Cpp-M1 Resolution: Fixed Access violation in XMLHelperImpl::save --- Key

Re: [C++] Do we need SDO annotations in the SCDL XSDs?

2006-08-08 Thread Pete Robbins
Not sure without looking at the code. Ed wrote the XPath stuff. Cheers, On 08/08/06, Jean-Sebastien Delfino [EMAIL PROTECTED] wrote: Pete Robbins wrote: I think the problem is that you can define an elements in a type such as: element name=myElem type=xs:string maxOccurs=unbounded

Re: [C++] Debugging and printing SDO data structures

2006-08-08 Thread Pete Robbins
Good idea! Do you think you could put your ostream operator back in? I'm looking at this. I'ts fairly simple. I will add the method to RefCountingPointer so you can do: DataObjectPtr myDO = ...(); ... cout myDO; DataFactoryPtr mydf = ... ... cout mydf; It is up to the implementation

Re: [C++] Debugging and printing SDO data structures

2006-08-08 Thread Pete Robbins
Sebastien, try this patch and see if you think it's worth putting in to SDO code. This basically allows you to use ostream operator for any RefCountingPointer. Only DataObjectPtr does anything other than print the refcount for this patch. TODO: - improve the output for DataObject(I have a better

Re: [C++] Debugging and printing SDO data structures

2006-08-08 Thread Pete Robbins
and this time WITH the patch :-( On 08/08/06, Pete Robbins [EMAIL PROTECTED] wrote: Sebastien, try this patch and see if you think it's worth putting in to SDO code. This basically allows you to use ostream operator for any RefCountingPointer. Only DataObjectPtr does anything other than print

Re: [jira] Commented: (TUSCANY-587) WSDL XSD is read incorrectly.

2006-08-07 Thread Pete Robbins
OK. I've taken a look at this and may have a fix. It also uncovered a couple of other issues with the SDO Implementation. I will raise separate Jiras for those for clarity. Cheers, On 04/08/06, Geoff Winn (JIRA) tuscany-dev@ws.apache.org wrote: [

[jira] Created: (TUSCANY-602) choice maxOccurs=unbounded does not create correct many-valued properties

2006-08-07 Thread Pete Robbins (JIRA)
Issue Type: Bug Components: C++ SDO Reporter: Pete Robbins According to the SDO spec maxOccurs on a choice or sequence should result in SDO properties for the enclosed elements being many-valued. -- This message is automatically generated by JIRA. - If you think

[jira] Created: (TUSCANY-603) Attributes specified in xml instance doc are not validated against the schema definition

2006-08-07 Thread Pete Robbins (JIRA)
Project: Tuscany Issue Type: Bug Components: C++ SDO Affects Versions: Cpp-current Reporter: Pete Robbins When an instance document is loaded attributes on a type are set as attributes even if the schema specifies that the property is an element

[VOTE] Andy Borley for Tuscany Committer

2006-08-07 Thread Pete Robbins
I would like to nominate Andy Borley to become a committer. He has provided excellent functional patches for C++ such as the Axis2C EntryPoint Binding. He has also provided much needed documentation patches and has been a great help in getting the C++ milestone released. Here's my +1. Cheers,

[jira] Created: (TUSCANY-604) Exception thrown when sequenced type inherits from non-sequenced type

2006-08-07 Thread Pete Robbins (JIRA)
: Bug Components: C++ SDO Affects Versions: Cpp-current Reporter: Pete Robbins The SDO spec states that the isSequenced should be the same on a base type and it's descendents. In the C++ implementation an exception is thrown when e.g. a sequenced type extends a non

[jira] Assigned: (TUSCANY-604) Exception thrown when sequenced type inherits from non-sequenced type

2006-08-07 Thread Pete Robbins (JIRA)
[ http://issues.apache.org/jira/browse/TUSCANY-604?page=all ] Pete Robbins reassigned TUSCANY-604: Assignee: Pete Robbins Exception thrown when sequenced type inherits from non-sequenced type

[jira] Assigned: (TUSCANY-603) Attributes specified in xml instance doc are not validated against the schema definition

2006-08-07 Thread Pete Robbins (JIRA)
[ http://issues.apache.org/jira/browse/TUSCANY-603?page=all ] Pete Robbins reassigned TUSCANY-603: Assignee: Pete Robbins Attributes specified in xml instance doc are not validated against the schema definition

[jira] Assigned: (TUSCANY-587) WSDL XSD is read incorrectly.

2006-08-07 Thread Pete Robbins (JIRA)
[ http://issues.apache.org/jira/browse/TUSCANY-587?page=all ] Pete Robbins reassigned TUSCANY-587: Assignee: Pete Robbins WSDL XSD is read incorrectly. - Key: TUSCANY-587 URL: http

[jira] Assigned: (TUSCANY-602) choice maxOccurs=unbounded does not create correct many-valued properties

2006-08-07 Thread Pete Robbins (JIRA)
[ http://issues.apache.org/jira/browse/TUSCANY-602?page=all ] Pete Robbins reassigned TUSCANY-602: Assignee: Pete Robbins choice maxOccurs=unbounded does not create correct many-valued properties

Re: [C++] How to create an SDO DataObject representing an XSD element

2006-08-07 Thread Pete Robbins
do? Cheers, On 07/08/06, Jean-Sebastien Delfino [EMAIL PROTECTED] wrote: Pete Robbins wrote: In your example below the complexType is anonymous (does not specify name=) therefore the SDO Type takes the name of the enclosing element. So the SDO Type will have Uri=http://www.bigbank.com

Re: [C++] Debugging and printing SDO data structures

2006-08-07 Thread Pete Robbins
I think the SDOUtils method is the way to go. Maintaining a serialized form in the DO would killl performance as it would have to be re-serialized on every change. I have a printDataObject and printTypes methods in SCA which I think are better than the ones in SDOUtil ;-) Maybe we should add the

Re: [C++] Do we need SDO annotations in the SCDL XSDs?

2006-08-07 Thread Pete Robbins
The annotations are there to cope with the cases where, according to the SDO spec, we would create properties or types with .s in. For example element name=interface.cpp type=sca:CPPInterface substitutionGroup=sca:interface sdo:name=interfaceCpp/ Without sdo:name= we would generate a property

Re: [C++] Do we need SDO annotations in the SCDL XSDs?

2006-08-07 Thread Pete Robbins
Ok, I guess we're not going to use XPath on SCDL right away :) so I'm not going to worry about the annotations now then. I'm still curious though, it is valid in XSD to have a dot in an element name, and I would expect XPath to be able to deal with that... Isn't there a way to escape these

Re: [C++] Do we need SDO annotations in the SCDL XSDs?

2006-08-07 Thread Pete Robbins
special characters? On 07/08/06, Jean-Sebastien Delfino [EMAIL PROTECTED] wrote: Pete Robbins wrote: Ok, I guess we're not going to use XPath on SCDL right away :) so I'm not going to worry about the annotations now then. I'm still curious though, it is valid in XSD to have a dot

Re: [C++] Switching C++ runtime to new composite model

2006-08-07 Thread Pete Robbins
So are you changing the loader to load the schema from xsd/new instead of xsd? Personally I would just go for it and check in the new xsds as we need to get this working anyway. Cheers, On 07/08/06, Jean-Sebastien Delfino [EMAIL PROTECTED] wrote: I've started to work on switching the C++

Re: [SDO for C++} Review of JIRA status

2006-08-04 Thread Pete Robbins
Geoff, I'll go through, verify, then close the Jiras that are fixed. I'll take a look at the patches that have not been applied as well. Cheers, On 04/08/06, Geoffrey Winn [EMAIL PROTECTED] wrote: We currently have 48 JIRAs for SDO for C++ marked as unresolved. I've looked through the list

Re: [C++] Making implementation.cpp dll=... portable

2006-08-04 Thread Pete Robbins
Sebastien, I have raised a Jira for this and have also raised it in the spec group. http://issues.apache.org/jira/browse/TUSCANY-494 My solution also adds an optional path= attribute which is a relative path (from the module root) to the dll. Cheers, On 04/08/06, Jean-Sebastien Delfino

Re: [C++] Setting svn:ignore properties

2006-08-04 Thread Pete Robbins
I'll start with a clean extract, build and svn ignore the artifacts on Windows. Probably have to be on Monday now though. Thanks for sorting the linux stuff! I think running some of the sdo (and maybe sca) tests actually dumps files into the src tree so that is someting else to look out for!

Re: [C++] How to create an SDO DataObject representing an XSD element

2006-08-04 Thread Pete Robbins
In your example below the complexType is anonymous (does not specify name=) therefore the SDO Type takes the name of the enclosing element. So the SDO Type will have Uri=http://www.bigbank.com/AccountService and Name=getAccountReportResponse Cheers, On 05/08/06, Jean-Sebastien Delfino [EMAIL

[jira] Closed: (TUSCANY-567) SCA Calculator Sample build.cmd cannot find mspdb71.dll

2006-08-03 Thread Pete Robbins (JIRA)
[ http://issues.apache.org/jira/browse/TUSCANY-567?page=all ] Pete Robbins closed TUSCANY-567. Fix Version/s: Cpp-M1 Resolution: Fixed SCA Calculator Sample build.cmd cannot find mspdb71.dll

[jira] Closed: (TUSCANY-548) Add SDO samples to distribution builds

2006-08-03 Thread Pete Robbins (JIRA)
[ http://issues.apache.org/jira/browse/TUSCANY-548?page=all ] Pete Robbins closed TUSCANY-548. Resolution: Fixed Add SDO samples to distribution builds -- Key: TUSCANY-548 URL

Re: [VOTE] Meeraj Kunnumpurath for Tuscany committer

2006-08-03 Thread Pete Robbins
+1, welcome aboard! -- Pete

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

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

Re: sdo website update

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

Re: sdo website update

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

[ANNOUNCE] Tuscany C++ Milestone 1 Release

2006-08-02 Thread Pete Robbins
The Apache Tuscany community is pleased to announce its first C++ milestone release.You can download binary and source distributions from: http://incubator.apache.org/tuscany/downloads.htmlFor further information, visit our web site at: http://incubator.apache.org/tuscanyIntroduction

Re: Karma for Brent

2006-08-01 Thread Pete Robbins
+1 -- Pete

[jira] Created: (TUSCANY-588) Update site for C++ M1 release

2006-08-01 Thread Pete Robbins (JIRA)
Reporter: Pete Robbins Assigned To: Pete Robbins Fix For: Cpp-M1 -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more

[ANNOUNCE] Tuscany C++ Milestone 1 Release

2006-08-01 Thread Pete Robbins
The Apache Tuscany community is pleased to announce its first C++ milestone release. You can download binary and source distributions from: http://incubator.apache.org/tuscany/downloads.html For further information, visit our web site at: http://incubator.apache.org/tuscany Introduction

Re: [VOTE] Request to release Tuscany C++ M1

2006-07-31 Thread Pete Robbins
I think this vote is passed with +1's from Robert Burrell Donkin, Dims, Bill Stoddard and Sanjiva. No -1's Thank you. -- Pete

Re: [VOTE] Request to release Tuscany C++ M1

2006-07-26 Thread Pete Robbins
On 25/07/06, robert burrell donkin [EMAIL PROTECTED] wrote: i've never cut C++ releases - and having read about your battles, i'm now glad about that. Yeah! There may be mileage in that write-once-run-anywhere Java thingy ;-) once you've smoothed out the process, it'd be great if you could

Re: [C++] Using KDE Kdevelop with Tuscany C++?

2006-07-25 Thread Pete Robbins
I have been using eclipse for svn access and editting but building via the command line (as I was trying to get a working command line build!). I started off using CDT and will probably go back to that. Any tool to help with the automake/conf would be great!! so I will take a look at KDevelop.

Re: [C++] Configuring an Eclipse C++ IDE for Tuscany Development

2006-07-25 Thread Pete Robbins
Great stuff. I will go back to using CDT now the automake is kind of stable ;-) At one point I checked in cdt project files into svn. Do you think this is worthwhile? Cheers, On 21/07/06, Jean-Sebastien Delfino [EMAIL PROTECTED] wrote: I just finished configuring a Tuscany C++ development

Re: [C++] Building the Bigbank scenario

2006-07-25 Thread Pete Robbins
On 25/07/06, Jean-Sebastien Delfino [EMAIL PROTECTED] wrote: I'm trying to get Bigbank to build and work on Linux and experiencing minor pain :) I'd like to help fix it so I have a few questions: - Do we have any tool to help create the Makefile.am files. These files are a little tricky to

Re: [C++] Building the Bigbank scenario

2006-07-25 Thread Pete Robbins
On 25/07/06, Jean-Sebastien Delfino [EMAIL PROTECTED] wrote: Hehe, for a moment I couldn't believe my eyes, but I finally found what's wrong with AccountServiceImpl.componenttype... It should be named AccountServiceImpl.componentType. This was probably working on Windows but on Linux case

Re: [C++] Are subsystem files used by the C++ runtime?

2006-07-25 Thread Pete Robbins
On 25/07/06, Jean-Sebastien Delfino [EMAIL PROTECTED] wrote: Are sca.subsystem files actually used by the C++ SCA runtime? Yes Calculator packages sca.subsystem in a CalculatorSubsystem directory, the other samples and test cases seem to follow a similar pattern, but BigBank places it in

Re: [VOTE] Request to release Tuscany C++ M1

2006-07-25 Thread Pete Robbins
A reminder: We would appreciate folk reviewing and voting on the proposed release. Cheers, On 21/07/06, Pete Robbins [EMAIL PROTECTED] wrote: We have held a vote on tuscany-dev@ws.apache.org to publish a release of the Tuscany C++ implementation. The vote email thread is available here

Re: [VOTE] Release Tuscany C++ Milestone 1 (candidate #3)

2006-07-21 Thread Pete Robbins
With more than 72hrs since the refreshed distro and 4 +1 votes I have asked the incubator PMC to vote for this release. Cheers, Pete

Re: [C++] Assembly class diagram

2006-07-20 Thread Pete Robbins
Looks interesting. One quick comment: what is Object in C++ terms? ;-) On 20/07/06, Jean-Sebastien Delfino [EMAIL PROTECTED] wrote: I checked in a first attempt at a class diagram representing the recursive assembly model:

Chianti

2006-07-20 Thread Pete Robbins
a passable wine, sometimes exceptional. Anyho... as the sandbox code has moved to trunk I think it should no longer be referred to as Chianti. It's Tuscany ... maybe qualified with Java. So, discussions on Chianti spi should just be [Tuscany] [Java] spi [delete as appropriate] So if everyone

[jira] Created: (TUSCANY-565) Windows Debug build of Calculator sample incorrect

2006-07-19 Thread Pete Robbins (JIRA)
Affects Versions: Cpp-M1 Reporter: Pete Robbins Fix For: Cpp-M1 1. Debug build on VC6 builds Calc.exe instead of Client.exe 2. deploy.cmd and wsdeploy.cmd copy Release versions of exes 3. VC7 debug builds Client.exe bu Calc.pdb -- This message is automatically generated

Re: [VOTE] Release Tuscany C++ Milestone 1 (candidate #3)

2006-07-19 Thread Pete Robbins
+1 from me -- Pete

[jira] Assigned: (TUSCANY-565) Windows Debug build of Calculator sample incorrect

2006-07-19 Thread Pete Robbins (JIRA)
[ http://issues.apache.org/jira/browse/TUSCANY-565?page=all ] Pete Robbins reassigned TUSCANY-565: Assignee: Pete Robbins Windows Debug build of Calculator sample incorrect -- Key

[jira] Assigned: (TUSCANY-567) SCA Calculator Sample build.cmd cannot find mspdb71.dll

2006-07-19 Thread Pete Robbins (JIRA)
[ http://issues.apache.org/jira/browse/TUSCANY-567?page=all ] Pete Robbins reassigned TUSCANY-567: Assignee: Pete Robbins SCA Calculator Sample build.cmd cannot find mspdb71.dll

[jira] Commented: (TUSCANY-564) BigBank tomcat test integration POM points to BEA jar file download

2006-07-19 Thread Pete Robbins (JIRA)
[ http://issues.apache.org/jira/browse/TUSCANY-564?page=comments#action_12422237 ] Pete Robbins commented on TUSCANY-564: -- Gaah!!! So I typed in the wrong Jira number in my log message on a commit. Please ignore the svn commits

Please review Tuscany C++ M1 release candidate

2006-07-19 Thread Pete Robbins
I have initiated a vote on tuscany-dev@ws.apache.org to publish a release of the Tuscany C++ implementation. The vote email thread is available here: http://www.mail-archive.com/tuscany-dev%40ws.apache.org/msg05134.html As this is the first time that we are attempting a C++ incubation release

[jira] Resolved: (TUSCANY-532) M1 documentation improvements

2006-07-18 Thread Pete Robbins (JIRA)
[ http://issues.apache.org/jira/browse/TUSCANY-532?page=all ] Pete Robbins resolved TUSCANY-532. -- Fix Version/s: Cpp-current Resolution: Fixed M1 documentation improvements - Key: TUSCANY-532

[jira] Resolved: (TUSCANY-534) Windows binary release should not be debug version

2006-07-18 Thread Pete Robbins (JIRA)
[ http://issues.apache.org/jira/browse/TUSCANY-534?page=all ] Pete Robbins resolved TUSCANY-534. -- Resolution: Fixed Windows binary release should not be debug version -- Key: TUSCANY

[jira] Assigned: (TUSCANY-524) ant for building scagen not run on windows

2006-07-18 Thread Pete Robbins (JIRA)
[ http://issues.apache.org/jira/browse/TUSCANY-524?page=all ] Pete Robbins reassigned TUSCANY-524: Assignee: Pete Robbins ant for building scagen not run on windows -- Key: TUSCANY-524

[jira] Closed: (TUSCANY-525) INSTALL of calculator doesnt say where the build.cmd is located.

2006-07-18 Thread Pete Robbins (JIRA)
[ http://issues.apache.org/jira/browse/TUSCANY-525?page=all ] Pete Robbins closed TUSCANY-525. Fix Version/s: Cpp-current Resolution: Fixed INSTALL of calculator doesnt say where the build.cmd is located

[jira] Closed: (TUSCANY-540) WSEntrypoint code has return pointer scoping problem

2006-07-18 Thread Pete Robbins (JIRA)
[ http://issues.apache.org/jira/browse/TUSCANY-540?page=all ] Pete Robbins closed TUSCANY-540. Fix Version/s: Cpp-current Resolution: Fixed WSEntrypoint code has return pointer scoping problem

[jira] Closed: (TUSCANY-517) Show component-to-component invocation in Calculator sample

2006-07-18 Thread Pete Robbins (JIRA)
[ http://issues.apache.org/jira/browse/TUSCANY-517?page=all ] Pete Robbins closed TUSCANY-517. Fix Version/s: Cpp-current Resolution: Fixed Show component-to-component invocation in Calculator sample

Re: [VOTE] Release Tuscany C++ Milestone 1 (candidate #3)

2006-07-18 Thread Pete Robbins
know I'll put a patch up, otherwise not worth bothering with. +1 for this release Andy On 7/18/06, Pete Robbins [EMAIL PROTECTED] wrote: I have posted a 3rd candidate for the first C++ release here: http://people.apache.org/~robbinspg/RC-3 Please vote to publish the Milestone 1 release

Re: [VOTE] Release Tuscany C++ Milestone 1 (candidate #3)

2006-07-18 Thread Pete Robbins
this. ... not a show stopper but thought I mentioned it. BTW once I added those the sample did run. Pete Robbins wrote: I am going to refresh the distro zips in about 1 hrs time to include the fix that Sebastien found. Also some script errors. Cheers

Re: [VOTE] Release Tuscany C++ Milestone 1 (candidate #3)

2006-07-18 Thread Pete Robbins
DOH! minor problem with the Windows src distro where a directory structure is missing from the sample :-( Re-creating distro and will update in 1hr. -- Pete

Re: [VOTE] Release Tuscany C++ Milestone 1 (candidate #3)

2006-07-18 Thread Pete Robbins
I have refreshed the distros. Please vote on the release candidate available here: http://people.apache.org/~robbinspg/RC-3b Apologies for any inconvenience. Cheers, -- Pete

[jira] Resolved: (TUSCANY-561) SDO Sample build.cmd cannot find mspdb71.dll

2006-07-18 Thread Pete Robbins (JIRA)
[ http://issues.apache.org/jira/browse/TUSCANY-561?page=all ] Pete Robbins resolved TUSCANY-561. -- Fix Version/s: Cpp-current Resolution: Fixed patch applied SDO Sample build.cmd cannot find mspdb71.dll

[jira] Closed: (TUSCANY-524) ant for building scagen not run on windows

2006-07-18 Thread Pete Robbins (JIRA)
[ http://issues.apache.org/jira/browse/TUSCANY-524?page=all ] Pete Robbins closed TUSCANY-524. Fix Version/s: Cpp-current Resolution: Fixed ant for building scagen not run on windows

Re: [C++] Fwd: xmlbeanscxx proposal

2006-07-18 Thread Pete Robbins
Thanks for bringing this to our attention. I'll certainly look into seeing how we can use this in Tuscany. Cheers, -- Pete

Re: Contributing to C++ implementation

2006-07-17 Thread Pete Robbins
Sebastien, good to have you on board! Please feel free to update the doc if you see anything that needs doing. I hope to have an RC3 available today which has (hopefully) better doc and also samples added in to the SDO distribution. I think the only thing missing is the doc on running the SDO

Re: C++ Some inconsistencies in the prereqs in several files.

2006-07-17 Thread Pete Robbins
thanks. I'll correct those Cheers, On 17/07/06, Rick [EMAIL PROTECTED] wrote: cpp\sdo\projects\tuscany_sdo\build_instructions.txt The versions required are these: libxml2-2.6.20.win32 iconv-1.9.1.win32 zlib-1.2.2.win32 cpp/sdo/GettingStarted.html has libxml2

Re: [C++] Should the deploy directory be under version control

2006-07-17 Thread Pete Robbins
I think they were added as we had problems with the windows build so I'd leave them there for now. We can re-check after we get the release done. Cheers, On 17/07/06, Jean-Sebastien Delfino [EMAIL PROTECTED] wrote: I'm adjusting the svn:ignore properties in the C++ source tree and just

Re: [C++] Visual C++ Express Edition compiling SDO

2006-07-17 Thread Pete Robbins
I've applied this patch. It works fine in VC6. Cheers, On 17/07/06, Rick [EMAIL PROTECTED] wrote: Tried compiling the Tuscany SDO CPP with MS Visual C++ 2005 Express Edition http://msdn.microsoft.com/vstudio/express/visualC/default.aspx which you can download for free, but need to

Re: [C++] Copying over of samples Gettingstarted.html

2006-07-17 Thread Pete Robbins
Just checked. Looks like it is misisng from SCA samples bin distro. Looks ok in the src distro? Cheers, On 17/07/06, Rick [EMAIL PROTECTED] wrote: The windows cpp build doesn't seem to be doing this... note GettingStarted.html in the root is there... the samples one is not there.

Re: [C++] Copying over of samples Gettingstarted.html

2006-07-17 Thread Pete Robbins
... and the linux src and bin distros for sdo and sca I'm on the case! On 17/07/06, Pete Robbins [EMAIL PROTECTED] wrote: Just checked. Looks like it is misisng from SCA samples bin distro. Looks ok in the src distro? Cheers, On 17/07/06, Rick [EMAIL PROTECTED] wrote: The windows

[VOTE] Release Tuscany C++ Milestone 1 (candidate #3)

2006-07-17 Thread Pete Robbins
I have posted a 3rd candidate for the first C++ release here: http://people.apache.org/~robbinspg/RC-3 Please vote to publish the Milestone 1 release distributions. Please take some time to download the distributions, review them and test them in your environment before voting. The vote is

Re: [VOTE] Release Tuscany C++ Milestone 1

2006-07-14 Thread Pete Robbins
comments inline: On 14/07/06, Jean-Sebastien Delfino [EMAIL PROTECTED] wrote: I tried the RC2 binary distribution, and was able to run the Calculator samples including the Calculator Web Service. The binary distributions look pretty good to me, I just found a few minor issues that should be

Re: Subject: [VOTE] promote Chianti revolution to main trunk

2006-07-14 Thread Pete Robbins
+1 The trunk is dead. Long live the trunk! -- Pete

Re: [VOTE] Release Tuscany C++ Milestone 1

2006-07-13 Thread Pete Robbins
was asked to vote on this. And yes as committer I can vote if this is really is ready as a separate distro ? Hmm, a package without a single sample, a single smoke test ? How do I or even you know if it even works? Pete Robbins wrote: I have posted a 2nd candidate for the first C++ release

Re: [VOTE] Release Tuscany C++ Milestone 1

2006-07-13 Thread Pete Robbins
On 13/07/06, Rick [EMAIL PROTECTED] wrote: Yep - go for it. You have committer access? Make us some. Well I was asked to vote on this. And yes as committer I can vote if this is really is ready as a separate distro ? Hmm, a package without a single sample, a single smoke test ? How do I or

Fwd: tuSCAny talk at BeJUG

2006-07-13 Thread Pete Robbins
In case anyone hasn't picked this up from the usr list... I'm assuming JUG is Java User Group -- Forwarded message -- From: Stephan Janssen [EMAIL PROTECTED] Date: 07-Jul-2006 16:04 Subject: tuSCAny talk at BeJUG To: tuscany-user@ws.apache.org Hi, Is there anybody out there who

Re: tuSCAny talk at BeJUG

2006-07-13 Thread Pete Robbins
On Jul 13, 2006, at 8:50 AM, Pete Robbins wrote: In case anyone hasn't picked this up from the usr list... I'm assuming JUG is Java User Group -- Forwarded message -- From: Stephan Janssen [EMAIL PROTECTED] Date: 07-Jul-2006 16:04 Subject: tuSCAny talk at BeJUG To: tuscany-user

Re: C++ can't get Calculator sample to run

2006-07-12 Thread Pete Robbins
with ASF incompatible licenses then that's a compelling reason not to so they should be listed out in the install notes. Do you have a list of these dependencies with incompatible licenses? Not sure if I've downloaded them so maybe that's why I can't get it to work. ,...ant On 7/12/06, Pete Robbins

[jira] Assigned: (TUSCANY-113) Provide Windows batch file to run SCA C++ test

2006-07-12 Thread Pete Robbins (JIRA)
[ http://issues.apache.org/jira/browse/TUSCANY-113?page=all ] Pete Robbins reassigned TUSCANY-113: Assign To: Pete Robbins Provide Windows batch file to run SCA C++ test -- Key: TUSCANY-113

[jira] Closed: (TUSCANY-113) Provide Windows batch file to run SCA C++ test

2006-07-12 Thread Pete Robbins (JIRA)
[ http://issues.apache.org/jira/browse/TUSCANY-113?page=all ] Pete Robbins closed TUSCANY-113: Resolution: Fixed Provide Windows batch file to run SCA C++ test -- Key: TUSCANY-113

[VOTE] Release Tuscany C++ Milestone 1

2006-07-12 Thread Pete Robbins
I have posted a 2nd candidate for the first C++ release here: http://people.apache.org/~robbinspg/RC-2 Please vote to publish the Milestone 1 release distributions. Please take some time to download the distributions, review them and test them in your environment before voting. The vote is

[jira] Resolved: (TUSCANY-458) Create cpp distribution builds

2006-07-11 Thread Pete Robbins (JIRA)
[ http://issues.apache.org/jira/browse/TUSCANY-458?page=all ] Pete Robbins resolved TUSCANY-458: -- Resolution: Fixed Create cpp distribution builds -- Key: TUSCANY-458 URL: http://issues.apache.org

[jira] Created: (TUSCANY-534) Windows binary release should not be debug version

2006-07-11 Thread Pete Robbins (JIRA)
Reporter: Pete Robbins Assigned to: Pete Robbins Fix For: Cpp-current Change the distribution binary build of windows to be non-debug -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http

Re: [C++] M1 release documentation

2006-07-11 Thread Pete Robbins
Many thanks Andy. It looks good. I'll apply the patches later today. On 11/07/06, Andrew Borley [EMAIL PROTECTED] wrote: I've just added a further patch on that jira that adds a document which explains how to create, build and run a Tuscany SCA C++ component. Cheers Andy On 7/10/06, Andrew

Re: C++ can't get Calculator sample to run

2006-07-10 Thread Pete Robbins
On 10/07/06, Edward Slattery [EMAIL PROTECTED] wrote: Not sure I agree with that. The dlls appear in the bin directory - thats what is required on the PATH. You are of course correct. (Note to self: drink coffee before reading mail and replying) -- Pete

[C++] binary release debug?

2006-07-10 Thread Pete Robbins
I am going to change the windows binary distribution to a Release build rather than Debug The MS debug dlls may not be available for all users. A debug build will still be possible using the source release. -- Pete

Re: Problem with C++ web service sample, was: [VOTE] Publish Tuscany C++ M1 release

2006-07-10 Thread Pete Robbins
Thanks for trying this out. We will add the prereq info to the documentation. Andy, as you are working on the doc ... ;-) Cheers, -- Pete

Re: C++ can't get Calculator sample to run

2006-07-09 Thread Pete Robbins
The reference to xmlTextReaderConstEncoding is from Axis2C. Have you tried an axis2C sample to see if you have that installed correctly? What version of libxml2 do you have? Can you post what is on your PATH environment here. We'll re-work the doc and rebuild the release in the next couple of

Re: C++ can't get Calculator sample to run

2006-07-09 Thread Pete Robbins
to use isn't very clear in the INSTALL doc), but still get the xmlTextReaderConstEncoding could not be located error. Could you list out exactly what environment variables I should have set and what should be in my PATH? ...ant On 7/8/06, Pete Robbins [EMAIL PROTECTED] wrote: Axis2\lib

Re: C++ can't get Calculator sample to run

2006-07-08 Thread Pete Robbins
Axis2\lib should definitely be on the path. Do you have libxml2 on your path? On wiindows you also need iconv and zlib on the path. Here'w what the Axis2C doc says: You also need the following dlls - libxml2.dll [http://www.xmlsoft.org - download the version = libxml2-2.6.20.win32] -

Re: [VOTE] Publish Tuscany C++ M1 release

2006-07-08 Thread Pete Robbins
There are obviously some problems in the install and run doc + some bugs so I thinke we need to fix these problems and re-spin the candidate. Please continue to find problems... it is much appreciated. Cheers, -- Pete

Re: C++ M1 Release Candidate

2006-07-07 Thread Pete Robbins
. -- Luciano *Pete Robbins [EMAIL PROTECTED]* 07/05/2006 08:02 PM Please respond to tuscany-dev@ws.apache.org To tuscany-dev@ws.apache.org cc Subject C++ M1 Release Candidate I have posted a candidate for the first C++ release here. http://people.apache.org/~robbinspg/RC1

Re: C++ M1 Release Candidate

2006-07-07 Thread Pete Robbins
That looks like output from the visual studio build. Did you try the command line? Cheers, On 07/07/06, Geoffrey Winn [EMAIL PROTECTED] wrote: Hi Pete, I found one issue. I used VC6 to attempt to build SDO and I get some problems during the copyout. I'll raise a JIRA for this. Linking...

Re: [VOTE] Publish Tuscany C++ M1 release

2006-07-07 Thread Pete Robbins
be great if some of you C++ guys could be around on the mailing list and IRC to answer any questions about C++ setup I may have. Thanks, ...ant On 7/6/06, Pete Robbins [EMAIL PROTECTED] wrote: I have posted a candidate for the first C++ release here: http://people.apache.org/~robbinspg/RC1

Re: [VOTE] Publish Tuscany C++ M1 release

2006-07-07 Thread Pete Robbins
On 07/07/06, Luciano Resende [EMAIL PROTECTED] wrote: Just one quick question... are we going to make the final C++ M1 Release as a non-debug build ? I think we probably should ultimately make the bin release a non-debug build. For this release I'm not sure. If enough folk think it's

Re: C++ M1 Release Candidate

2006-07-07 Thread Pete Robbins
From the source distro on linux you should be able to just run ./sdotest.sh from the top level folder. We should write a sdotest.cmd to do the same on win. On 07/07/06, Edward Slattery [EMAIL PROTECTED] wrote: Good point, you should raise a JIRA that the build.cmd doesnt run it automatically.

Re: Problem with C++ web service sample, was: [VOTE] Publish Tuscany C++ M1 release

2006-07-07 Thread Pete Robbins
It looks like the ws call is getting into the component and that is working fine. The error is when we are trying to convert the dataobject returned from the calculator sample to an axiom object before returning it over the wire. I haven't seen this behaviour before. Before starting the axis

Re: C++ M1 Release Candidate

2006-07-06 Thread Pete Robbins
There is a problem with the Windows src zip for sca to do with filename lengths. I will fix it and re-post a new zip. On 06/07/06, Pete Robbins [EMAIL PROTECTED] wrote: I have posted a candidate for the first C++ release here. http://people.apache.org/~robbinspg/RC1 Would all interested

<    4   5   6   7   8   9   10   11   >