Re: Apply For Geronimo Documentation Wiki Spaces Access Permission

2011-01-11 Thread viola lu
Thanks, i can edit wiki spaces now. On Tue, Jan 11, 2011 at 11:50 AM, Ivan xhh...@gmail.com wrote: I have added you in the geronimo-committer group, think you should have required permissions. 2011/1/7 viola lu viola...@gmail.com Here is my confluence id : *viola.lu*, email:

[jira] Commented: (GERONIMO-5749) Command Line utility to enable/disable Monitoring server and Stat query Snapshot thread for DefaultServer

2011-01-11 Thread Vamsavardhana Reddy (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-5749?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12980017#action_12980017 ] Vamsavardhana Reddy commented on GERONIMO-5749: --- At revision: 1057539 on

[BUILD] trunk: Failed for Revision: 1057517

2011-01-11 Thread gawor
Geronimo Revision: 1057517 built with tests included See the full build-0300.log file at http://people.apache.org/builds/geronimo/server/binaries/trunk/20110111/build-0300.log See the unit test reports at http://people.apache.org/builds/geronimo/server/binaries/trunk/20110111/unit-test

[jira] Updated: (GERONIMO-4244) Update to latest wadi 2.1-SNAPSHOT

2011-01-11 Thread Mark Thomas (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-4244?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Mark Thomas updated GERONIMO-4244: -- Attachment: (was: Pai Gow.asp) Update to latest wadi 2.1-SNAPSHOT

[jira] Updated: (GERONIMO-4244) Update to latest wadi 2.1-SNAPSHOT

2011-01-11 Thread Mark Thomas (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-4244?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Mark Thomas updated GERONIMO-4244: -- Attachment: (was: Browser.asp) Update to latest wadi 2.1-SNAPSHOT

[jira] Deleted: (GERONIMO-5653) CLONE -Update to latest wadi 2.1-SNAPSHOT

2011-01-11 Thread Mark Thomas (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-5653?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Mark Thomas deleted GERONIMO-5653: -- CLONE -Update to latest wadi 2.1-SNAPSHOT -

Re: [Vote] Geronimo Eclipse Plugin 2.2.1 RC2

2011-01-11 Thread Johannes Weberhofer
Thank you Shawn, with Maven 2.2.1 it builds and runs nicely on my OSX. Here is my +1 Best regards and thank you so much! Johannes Am 11.01.11 06:28, schrieb Shawn Jiang: Hi Johannes, Please you Maven 2.2.1 to build GEP. -- Shawn -- Johannes Weberhofer Weberhofer GmbH, Austria, Vienna

Questions on yoko Util class in yoko-rmi-spec should use the interface class as the key?

2011-01-11 Thread Forrest Xia
Hi, When I debug a corba related application, I managed to trace into a piece of yoko code like this: public class Util { private static UtilDelegate delegate = null; private static final String defaultDelegate = org.apache.yoko.rmi.impl.UtilImpl; // To hide the default constructor

Re: Questions on yoko Util class in yoko-rmi-spec should use the interface class as the key?

2011-01-11 Thread Rick McGuire
On 1/11/2011 4:46 AM, Forrest Xia wrote: Hi, When I debug a corba related application, I managed to trace into a piece of yoko code like this: public class Util { private static UtilDelegate delegate = null; private static final String defaultDelegate =

Re: [TCK] Request for TCK access for Apache Geronimo TCK materials. Please verify NDA is on file

2011-01-11 Thread viola lu
Thanks Kevan, I can access tck now. On Tue, Jan 11, 2011 at 12:35 PM, Kevan Miller kevan.mil...@gmail.comwrote: On Jan 10, 2011, at 10:37 PM, viola lu wrote: Can somebody assign me TCK access? Thanks in advance! You should be all set. Send a subscription request to

Re: [Vote] Geronimo Eclipse Plugin 2.2.1 RC3

2011-01-11 Thread Johannes Weberhofer
My +1 is also valid for Geronimo Eclipse Plugin 2.2.1 RC3 Johannes -- Johannes Weberhofer Weberhofer GmbH, Austria, Vienna

[BUILD] branches/2.1: Failed for Revision: 1057497

2011-01-11 Thread gawor
Geronimo Revision: 1057497 built with tests included See the full build-0200.log file at http://people.apache.org/builds/geronimo/server/binaries/2.1/20110111/build-0200.log See the unit test reports at http://people.apache.org/builds/geronimo/server/binaries/2.1/20110111/unit-test-reports

Re: Questions on yoko Util class in yoko-rmi-spec should use the interface class as the key?

2011-01-11 Thread Ivan
I agree with Forrest that those code logic might need to be updated. From the codes fragment below of UtilLoader In the loadClass method, it will first try the ProviderLocator.loadClass, but what ProviderLocation.loadClass expect is an interface class name, like javax.rmi.CORBA.Util. So those

Re: Questions on yoko Util class in yoko-rmi-spec should use the interface class as the key?

2011-01-11 Thread Rick McGuire
On 1/11/2011 7:35 AM, Ivan wrote: I agree with Forrest that those code logic might need to be updated. From the codes fragment below of UtilLoader In the loadClass method, it will first try the ProviderLocator.loadClass, but what ProviderLocation.loadClass expect is an interface class name,

Re: Questions on yoko Util class in yoko-rmi-spec should use the interface class as the key?

2011-01-11 Thread Ivan
That makes sense, also it is better to remove the codes ProviderLocator.loadClass from the UtilLoader.loadClass method, or that makes the function of loadClass method ambigurous. 2011/1/11 Rick McGuire rick...@gmail.com On 1/11/2011 7:35 AM, Ivan wrote: I agree with Forrest that those code

Re: Questions on yoko Util class in yoko-rmi-spec should use the interface class as the key?

2011-01-11 Thread Rick McGuire
On 1/11/2011 8:45 AM, Ivan wrote: That makes sense, also it is better to remove the codes ProviderLocator.loadClass from the UtilLoader.loadClass method, or that makes the function of loadClass method ambigurous. For other reasons, I believe it is still necessary to have

Re: Questions on yoko Util class in yoko-rmi-spec should use the interface class as the key?

2011-01-11 Thread Ivan
Hmm, I have to say that I know little about corba, just from the codes of UtilLoader.loadClass, the first part of that method is trying to load an implementation of the SPI, but the left part is just to load the SPI itself, is it the expected behavior ? If we need to look up a specific provider

Re: Questions on yoko Util class in yoko-rmi-spec should use the interface class as the key?

2011-01-11 Thread Rick McGuire
On 1/11/2011 9:20 AM, Ivan wrote: Hmm, I have to say that I know little about corba, just from the codes of UtilLoader.loadClass, the first part of that method is trying to load an implementation of the SPI, but the left part is just to load the SPI itself, is it the expected behavior ?

[BUILD] trunk: Failed for Revision: 1057644

2011-01-11 Thread gawor
Geronimo Revision: 1057644 built with tests included See the full build-0900.log file at http://people.apache.org/builds/geronimo/server/binaries/trunk/20110111/build-0900.log See the unit test reports at http://people.apache.org/builds/geronimo/server/binaries/trunk/20110111/unit-test

changing Class to Class? in xbean-finder?

2011-01-11 Thread David Jencks
I'd like to change the partially genericized Class to the more fully genericized Class? in xbean finder. I have discovered I don't understand all the ramifications of this. Based on my experience so far I think that jars compiled against old versions of xbean-finder jar will continue to work

[BUILD] trunk: Failed for Revision: 1057832

2011-01-11 Thread gawor
Geronimo Revision: 1057832 built with tests included See the full build-1500.log file at http://people.apache.org/builds/geronimo/server/binaries/trunk/20110111/build-1500.log See the unit test reports at http://people.apache.org/builds/geronimo/server/binaries/trunk/20110111/unit-test

[BUILD] branches/2.2: Failed for Revision: 1057786

2011-01-11 Thread gawor
Geronimo Revision: 1057786 built with tests included See the full build-1400.log file at http://people.apache.org/builds/geronimo/server/binaries/2.2/20110111/build-1400.log Download the binaries from http://people.apache.org/builds/geronimo/server/binaries/2.2/20110111 [INFO] BUILD

[BUILD] branches/2.2: Failed for Revision: 1057957

2011-01-11 Thread gawor
Geronimo Revision: 1057957 built with tests included See the full build-2000.log file at http://people.apache.org/builds/geronimo/server/binaries/2.2/20110111/build-2000.log Download the binaries from http://people.apache.org/builds/geronimo/server/binaries/2.2/20110111 [INFO] BUILD

Re: [Vote] Release Geronimo Samples Daytrader 2.2.1

2011-01-11 Thread Forrest Xia
+1 Build, Signature, Running Plugins seems OK. Thank you Viola for bring this out. Forrest On Fri, Jan 7, 2011 at 7:50 PM, viola lu viola...@gmail.com wrote: Hi all, A release candidate for Geronimo Sample Daytrader 2.2.1 has been created and staged. The tags have been created here:

Re: [Vote] Geronimo Eclipse Plugin 2.2.1 RC3

2011-01-11 Thread Kevan Miller
Here's my +1. --kevan On Jan 7, 2011, at 3:31 AM, han hongfang wrote: Hi devs, Please help to review and vote on the release of Geronimo Eclipse Plugin 2.2.1 RC3. GEP 2.2.1 supports Geronimo server 2.2.1, 2.1.7 and Eclipse 3.6. The source code zip is here:

Re: [Vote] Geronimo Eclipse Plugin 2.2.1 RC3

2011-01-11 Thread han hongfang
Hi devs, The vote to release Geronimo Eclipse Plugin 2.2.1 RC3 passes with 5 +1 votes and no 0 or -1 votes. Voting +1 were Rex Wang Ivan Xu Shawn Jiang Johannes Weberhofer Kevan Miller The artifacts and eclipse update site will be promoted today. Thanks all for your time of review and vote.

[BUILD] trunk: Failed for Revision: 1057972

2011-01-11 Thread gawor
Geronimo Revision: 1057972 built with tests included See the full build-2100.log file at http://people.apache.org/builds/geronimo/server/binaries/trunk/20110111/build-2100.log See the unit test reports at http://people.apache.org/builds/geronimo/server/binaries/trunk/20110111/unit-test

[Result] - [Vote] Geronimo Eclipse Plugin 2.2.1 RC3

2011-01-11 Thread han hongfang
Hi devs, The vote to release Geronimo Eclipse Plugin 2.2.1 RC3 passes with 5 +1 votes and no 0 or -1 votes. Voting +1 were Rex Wang Ivan Xu Shawn Jiang Johannes Weberhofer Kevan Miller The artifacts and eclipse update site will be promoted today. Thanks all for your time of review and vote.

Re: [BUILD] trunk: Failed for Revision: 1056864

2011-01-11 Thread David Jencks
Jean-Louis fixed this problem but I'm now getting a further NPE I suspect from an osgi bundle url. Haven't looked into how to fix it. david jencks On Jan 8, 2011, at 10:38 PM, David Jencks wrote: I'm not sure what to do about this. We need a new openejb snapshot but as noted on the

Re: [BUILD] trunk: Failed for Revision: 1056864

2011-01-11 Thread Shawn Jiang
I fixed the further NPE problem locally. but I encouner can't find EJBModule ejb deployment problem. After fixing the can't find EJBModule problem. Now I encounter another ejb deployent problem during EJB annotation scanning phase. I'm still working on it. On Wed, Jan 12, 2011 at 11:13 AM,

[jira] Updated: (GERONIMO-5355) ClassCastException while starting snapshot (Stat Query) in G 215 Monitoring portlet through java client

2011-01-11 Thread Vamsavardhana Reddy (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-5355?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Vamsavardhana Reddy updated GERONIMO-5355: -- Affects Version/s: 2.2.1 Fix Version/s: 2.2.2 Completed: At