Draft of 2.0.2 Performance Report

2007-10-22 Thread Matt Hogstrom
I've been noodling on this for a bit and wanted to give y'all a  
gander at what I have for the performance report at this point.  This  
is based on 2.0.2 and uses DayTrader 2.0.  There are a few numbers  
that are missing.  I originally had planned on not producing them but  
the charts look odd with the missing numbers.  It includes a  
comparison of 1.1.1 and 2.0.2 using DayTrader 1.2 and 2.0.  Heh, we  
need to release those monsters.


This should be considered an alpha release but will move quickly to  
final by the end of the week :)


Please provide your feedback on content, what's interesting, not, etc.

Thanks for taking a few minutes to look at the draft.

Look at http://people.apache.org/~hogstrom/performance/geronimo/2.0/ 
Geronimo2.0.2PerformanceReport-v01draft.pdf


Thanks


Re: Integrating a third-party JTA

2007-10-22 Thread Guy Pardon

Thanks David,

That helps - I will have a look!

Guy

On 23-okt-07, at 00:21, David Jencks wrote:



On Oct 22, 2007, at 1:45 PM, Guy Pardon wrote:


Hi,

Thanks. Where can I see samples of this (how is it done now)? I  
couldn't find the right module so far... Or is it in a jar somewhere?


Our J2CA and JTA implementation is in https://svn.apache.org/repos/ 
asf/geronimo/components/txmanager/trunk.  You can see how we handle  
the J2CA transaction import using XATerminator and XAWork  
interfaces.  Also notice that in order to make transaction recovery  
work without necessarily all previously existing RMs starting up  
again we've named the RMs with NamedXAResource.  The idea is that  
when the tm starts up again it reads the log to find all the in- 
flight txs and as each RM starts up it registers with the TM and  
the outstanding in-flight txs in that RM are either rolled back or  
committed based on what's in the log.  In order to clear out txs  
where some or all RMs are actually committed before the tm logs  
"complete" we compare the names of the RM with the names stored  
with the xids in the log.


In the geronimo modules/geronimo-transaction module we have gbeans  
that start the actual TM components at runtime.  You will at least  
need to write some gbean wrappers for the Atomikos TM.  You'll  
probably want to write a replacement configs/transaction module to  
use instead of the standard one.  Then you can map uses of our tm  
module to yours with an entry in var/config/ 
artifact_aliases.properties.



Hope this helps
david jencks



Guy

On 22-okt-07, at 22:08, Dain Sundstrom wrote:

Other then code that attempts to cast the transaction manger to  
GeronimoTransactionManager (or other Geronimo transaction  
interfaces) it shouldn't be that difficult.  The biggest issue  
will be if you want to use the Geronimo connector implementation,  
then you will have to figure out how to adapt the JTA  
implementation to the  
org.apache.geronimo.transaction.manager.XAWork interface.  The  
second biggest issue, will be convincing G to correctly build the  
JTA implementation which will require a GBean wrapper of some kind.


-dain

On Oct 22, 2007, at 2:29 AM, Guy Pardon wrote:


Hi,

Does anybody have any useful pointers on how to integrate a  
third-party JTA (Atomikos) into Geronimo?


Thanks,
Guy












[jira] Commented: (GERONIMO-3541) monitoring plugin: collecting agent needs to use a database to store the snapshots instead of xml

2007-10-22 Thread Erik B. Craig (JIRA)

[ 
https://issues.apache.org/jira/browse/GERONIMO-3541?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12536881
 ] 

Erik B. Craig commented on GERONIMO-3541:
-

Viet - I might suggest a different approach to saving the information in the 
database. Currently you are using 1 row for every mbean/data element 
combination... with a default configuration on tomcat that is 46 rows - or 
roughly 8KB of data per snapshot with how your table is configured... with a 
default configuration snapshot interval of 5 minutes, that will result in 
significant memory usage rather quickly.

I might suggest an alternative approach, breaking apart the mbeans into a 
separate table so that the raw text of the mbean path isn't re-saved thousands 
of times, as it it particularly redundant. I would also suggest breaking away 
the data element names into this table, perhaps in the same row as the mbean 
names delimited by a comma or a colon... I have a few other ideas which will 
result in significantly less storage and memory usage over time that we can 
discuss in more detail if you wish.

> monitoring plugin: collecting agent needs to use a database to store the 
> snapshots instead of xml
> -
>
> Key: GERONIMO-3541
> URL: https://issues.apache.org/jira/browse/GERONIMO-3541
> Project: Geronimo
>  Issue Type: Improvement
>  Security Level: public(Regular issues) 
>  Components: monitoring
>Affects Versions: 2.1
> Environment: windows
>Reporter: Viet Hung Nguyen
> Attachments: geronimo-3541.patch
>
>
> The DB needs to be populated with snapshot statistics. Also, the functions 
> used to query snapshots needs to be migrated from reading from XML files to a 
> DB.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Resolved: (GERONIMO-3500) Upgrade to Derby 10.3.1.4

2007-10-22 Thread Jarek Gawor (JIRA)

 [ 
https://issues.apache.org/jira/browse/GERONIMO-3500?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jarek Gawor resolved GERONIMO-3500.
---

   Resolution: Duplicate
Fix Version/s: 2.1

Jacek took care of this: https://issues.apache.org/jira/browse/GERONIMO-3545


> Upgrade to Derby 10.3.1.4
> -
>
> Key: GERONIMO-3500
> URL: https://issues.apache.org/jira/browse/GERONIMO-3500
> Project: Geronimo
>  Issue Type: Improvement
>  Security Level: public(Regular issues) 
>  Components: databases, dependencies
>Affects Versions: 2.1
>Reporter: Donald Woods
> Fix For: 2.1
>
>
> http://db.apache.org/derby/releases/release-10.3.1.4.cgi

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



Re: MDB with JPA in JTA mode fails - looking for help

2007-10-22 Thread David Jencks
I would guess that you haven't defined a non-jta-datasource and  
specified it in the persistence.xml.  My experience, while only with  
derby, is that openjpa's sequences don't work without a separate non- 
transactional datasource.


Hope this helps :-)
david jencks

On Oct 22, 2007, at 3:49 PM, Jacek Laskowski wrote:


Hi,

I can't get my simple transacted mdb to run with jpa in jta mode. I'm
getting the following error message. Does it mean I'm struggling with
an incorrect datasource definition? I thought I'd ask here before
digging in more. The sample application to reproduce it is at [1].

I deploy a datasource with the following command:

./bin/deploy.sh -u system -p manager deploy
TicketServiceCfg\src\geronimo-postgresql-datasource-plan.xml
repository/org/tranql/tranql-connector-postgresql-xa/1.1/tranql- 
connector-postgresql-xa-1.1.rar


and the application itself as follows:

./bin/deploy.sh -u system -p manager deploy TicketServiceEAR.ear

I haven't tested out whether the connection has worked fine yet. The
MDB is indeed run, but when the entity is persisted (once tx commits
in CMTD) the exception's thrown.

Any help greatly appreciated.

00:35:55,000 INFO  [Transaction] TX Required: Committing transaction
[EMAIL PROTECTED]
00:35:55,000 WARN  [Transaction] Unexpected exception from
beforeCompletion; transaction will roll back

org.apache.openjpa.persistence.PersistenceException: null
at  
org.apache.openjpa.jdbc.kernel.AbstractJDBCSeq.getConnection 
(AbstractJDBCSeq.java:162)
at  
org.apache.openjpa.jdbc.kernel.TableJDBCSeq.allocateSequence 
(TableJDBCSeq.java:341)
at org.apache.openjpa.jdbc.kernel.TableJDBCSeq.nextInternal 
(TableJDBCSeq.java:247)
at org.apache.openjpa.jdbc.kernel.AbstractJDBCSeq.next 
(AbstractJDBCSeq.java:60)
at org.apache.openjpa.util.ImplHelper.generateValue 
(ImplHelper.java:160)
at org.apache.openjpa.util.ImplHelper.generateFieldValue 
(ImplHelper.java:144)
at  
org.apache.openjpa.jdbc.kernel.JDBCStoreManager.assignField 
(JDBCStoreManager.java:557)
at org.apache.openjpa.util.ApplicationIds.assign 
(ApplicationIds.java:450)
at org.apache.openjpa.util.ApplicationIds.assign 
(ApplicationIds.java:426)
at  
org.apache.openjpa.jdbc.kernel.JDBCStoreManager.assignObjectId 
(JDBCStoreManager.java:541)
at  
org.apache.openjpa.kernel.DelegatingStoreManager.assignObjectId 
(DelegatingStoreManager.java:134)
at org.apache.openjpa.kernel.StateManagerImpl.assignObjectId 
(StateManagerImpl.java:501)
at org.apache.openjpa.kernel.StateManagerImpl.preFlush 
(StateManagerImpl.java:2770)
at org.apache.openjpa.kernel.PNewState.beforeFlush 
(PNewState.java:39)
at org.apache.openjpa.kernel.StateManagerImpl.beforeFlush 
(StateManagerImpl.java:940)
at org.apache.openjpa.kernel.BrokerImpl.flush 
(BrokerImpl.java:1884)
at org.apache.openjpa.kernel.BrokerImpl.flushSafe 
(BrokerImpl.java:1844)
at org.apache.openjpa.kernel.BrokerImpl.beforeCompletion 
(BrokerImpl.java:1762)
at  
org.apache.geronimo.transaction.manager.TransactionImpl.beforeCompleti 
on(TransactionImpl.java:514)
at  
org.apache.geronimo.transaction.manager.TransactionImpl.beforeCompleti 
on(TransactionImpl.java:499)
at  
org.apache.geronimo.transaction.manager.TransactionImpl.beforePrepare( 
TransactionImpl.java:400)
at  
org.apache.geronimo.transaction.manager.TransactionImpl.commit 
(TransactionImpl.java:257)
at  
org.apache.geronimo.transaction.manager.TransactionManagerImpl.commit( 
TransactionManagerImpl.java:245)
at  
org.apache.openejb.core.transaction.TransactionPolicy.commitTransactio 
n(TransactionPolicy.java:140)
at  
org.apache.openejb.core.transaction.TxRequired.afterInvoke 
(TxRequired.java:75)
at org.apache.openejb.core.mdb.MdbContainer.afterDelivery 
(MdbContainer.java:376)
at org.apache.openejb.core.mdb.EndpointHandler.afterDelivery 
(EndpointHandler.java:274)
at org.apache.openejb.core.mdb.EndpointHandler.invoke 
(EndpointHandler.java:164)

at $Proxy43.afterDelivery(Unknown Source)
at org.apache.activemq.ra.MessageEndpointProxy 
$MessageEndpointAlive.afterDelivery(MessageEndpointProxy.java:126)
at org.apache.activemq.ra.MessageEndpointProxy.afterDelivery 
(MessageEndpointProxy.java:65)
at org.apache.activemq.ra.ServerSessionImpl.afterDelivery 
(ServerSessionImpl.java:216)
at org.apache.activemq.ActiveMQSession.run 
(ActiveMQSession.java:751)
at org.apache.activemq.ra.ServerSessionImpl.run 
(ServerSessionImpl.java:165)
at org.apache.geronimo.connector.work.WorkerContext.run 
(WorkerContext.java:290)
at org.apache.geronimo.connector.work.pool.NamedRunnable.run 
(NamedRunnable.java:32)
at org.apache.geronimo.pool.ThreadPool$1.run 
(ThreadPool.java:214)
at org.apache.geronimo.pool.ThreadPool 
$ContextClassLoaderRunnable.run(

Re: Interested in Contributing

2007-10-22 Thread Jacek Laskowski
On 10/22/07, Joseph Leong <[EMAIL PROTECTED]> wrote:
> Thanks for all the pointers, I'll see what i can do. I may go with working
> on that implementation and more into gshell since David said sh/bat scripts
> will be phased out.  Also my Jira ID: jleong

You're in geronimo-contributor group so you should be able to assign
the issue to yourself. Report troubles as soon as they surface along
the way.

Jacek

-- 
Jacek Laskowski
http://www.JacekLaskowski.pl


MDB with JPA in JTA mode fails - looking for help

2007-10-22 Thread Jacek Laskowski
Hi,

I can't get my simple transacted mdb to run with jpa in jta mode. I'm
getting the following error message. Does it mean I'm struggling with
an incorrect datasource definition? I thought I'd ask here before
digging in more. The sample application to reproduce it is at [1].

I deploy a datasource with the following command:

./bin/deploy.sh -u system -p manager deploy
TicketServiceCfg\src\geronimo-postgresql-datasource-plan.xml
repository/org/tranql/tranql-connector-postgresql-xa/1.1/tranql-connector-postgresql-xa-1.1.rar

and the application itself as follows:

./bin/deploy.sh -u system -p manager deploy TicketServiceEAR.ear

I haven't tested out whether the connection has worked fine yet. The
MDB is indeed run, but when the entity is persisted (once tx commits
in CMTD) the exception's thrown.

Any help greatly appreciated.

00:35:55,000 INFO  [Transaction] TX Required: Committing transaction
[EMAIL PROTECTED]
00:35:55,000 WARN  [Transaction] Unexpected exception from
beforeCompletion; transaction will roll back

org.apache.openjpa.persistence.PersistenceException: null
at 
org.apache.openjpa.jdbc.kernel.AbstractJDBCSeq.getConnection(AbstractJDBCSeq.java:162)
at 
org.apache.openjpa.jdbc.kernel.TableJDBCSeq.allocateSequence(TableJDBCSeq.java:341)
at 
org.apache.openjpa.jdbc.kernel.TableJDBCSeq.nextInternal(TableJDBCSeq.java:247)
at 
org.apache.openjpa.jdbc.kernel.AbstractJDBCSeq.next(AbstractJDBCSeq.java:60)
at org.apache.openjpa.util.ImplHelper.generateValue(ImplHelper.java:160)
at 
org.apache.openjpa.util.ImplHelper.generateFieldValue(ImplHelper.java:144)
at 
org.apache.openjpa.jdbc.kernel.JDBCStoreManager.assignField(JDBCStoreManager.java:557)
at 
org.apache.openjpa.util.ApplicationIds.assign(ApplicationIds.java:450)
at 
org.apache.openjpa.util.ApplicationIds.assign(ApplicationIds.java:426)
at 
org.apache.openjpa.jdbc.kernel.JDBCStoreManager.assignObjectId(JDBCStoreManager.java:541)
at 
org.apache.openjpa.kernel.DelegatingStoreManager.assignObjectId(DelegatingStoreManager.java:134)
at 
org.apache.openjpa.kernel.StateManagerImpl.assignObjectId(StateManagerImpl.java:501)
at 
org.apache.openjpa.kernel.StateManagerImpl.preFlush(StateManagerImpl.java:2770)
at org.apache.openjpa.kernel.PNewState.beforeFlush(PNewState.java:39)
at 
org.apache.openjpa.kernel.StateManagerImpl.beforeFlush(StateManagerImpl.java:940)
at org.apache.openjpa.kernel.BrokerImpl.flush(BrokerImpl.java:1884)
at org.apache.openjpa.kernel.BrokerImpl.flushSafe(BrokerImpl.java:1844)
at 
org.apache.openjpa.kernel.BrokerImpl.beforeCompletion(BrokerImpl.java:1762)
at 
org.apache.geronimo.transaction.manager.TransactionImpl.beforeCompletion(TransactionImpl.java:514)
at 
org.apache.geronimo.transaction.manager.TransactionImpl.beforeCompletion(TransactionImpl.java:499)
at 
org.apache.geronimo.transaction.manager.TransactionImpl.beforePrepare(TransactionImpl.java:400)
at 
org.apache.geronimo.transaction.manager.TransactionImpl.commit(TransactionImpl.java:257)
at 
org.apache.geronimo.transaction.manager.TransactionManagerImpl.commit(TransactionManagerImpl.java:245)
at 
org.apache.openejb.core.transaction.TransactionPolicy.commitTransaction(TransactionPolicy.java:140)
at 
org.apache.openejb.core.transaction.TxRequired.afterInvoke(TxRequired.java:75)
at 
org.apache.openejb.core.mdb.MdbContainer.afterDelivery(MdbContainer.java:376)
at 
org.apache.openejb.core.mdb.EndpointHandler.afterDelivery(EndpointHandler.java:274)
at 
org.apache.openejb.core.mdb.EndpointHandler.invoke(EndpointHandler.java:164)
at $Proxy43.afterDelivery(Unknown Source)
at 
org.apache.activemq.ra.MessageEndpointProxy$MessageEndpointAlive.afterDelivery(MessageEndpointProxy.java:126)
at 
org.apache.activemq.ra.MessageEndpointProxy.afterDelivery(MessageEndpointProxy.java:65)
at 
org.apache.activemq.ra.ServerSessionImpl.afterDelivery(ServerSessionImpl.java:216)
at org.apache.activemq.ActiveMQSession.run(ActiveMQSession.java:751)
at 
org.apache.activemq.ra.ServerSessionImpl.run(ServerSessionImpl.java:165)
at 
org.apache.geronimo.connector.work.WorkerContext.run(WorkerContext.java:290)
at 
org.apache.geronimo.connector.work.pool.NamedRunnable.run(NamedRunnable.java:32)
at org.apache.geronimo.pool.ThreadPool$1.run(ThreadPool.java:214)
at 
org.apache.geronimo.pool.ThreadPool$ContextClassLoaderRunnable.run(ThreadPool.java:344)
at 
java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:650)
at 
java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:675)
at java.lang.Thread.run(Thread.java:595)
Caused by: javax.transaction.SystemException
at 
org.apache.openjpa.ee.RegistryManagedRuntime$TransactionManagerRegistryFacade.su

Re: Integrating a third-party JTA

2007-10-22 Thread David Jencks


On Oct 22, 2007, at 1:45 PM, Guy Pardon wrote:


Hi,

Thanks. Where can I see samples of this (how is it done now)? I  
couldn't find the right module so far... Or is it in a jar somewhere?


Our J2CA and JTA implementation is in https://svn.apache.org/repos/ 
asf/geronimo/components/txmanager/trunk.  You can see how we handle  
the J2CA transaction import using XATerminator and XAWork  
interfaces.  Also notice that in order to make transaction recovery  
work without necessarily all previously existing RMs starting up  
again we've named the RMs with NamedXAResource.  The idea is that  
when the tm starts up again it reads the log to find all the in- 
flight txs and as each RM starts up it registers with the TM and the  
outstanding in-flight txs in that RM are either rolled back or  
committed based on what's in the log.  In order to clear out txs  
where some or all RMs are actually committed before the tm logs  
"complete" we compare the names of the RM with the names stored with  
the xids in the log.


In the geronimo modules/geronimo-transaction module we have gbeans  
that start the actual TM components at runtime.  You will at least  
need to write some gbean wrappers for the Atomikos TM.  You'll  
probably want to write a replacement configs/transaction module to  
use instead of the standard one.  Then you can map uses of our tm  
module to yours with an entry in var/config/artifact_aliases.properties.



Hope this helps
david jencks



Guy

On 22-okt-07, at 22:08, Dain Sundstrom wrote:

Other then code that attempts to cast the transaction manger to  
GeronimoTransactionManager (or other Geronimo transaction  
interfaces) it shouldn't be that difficult.  The biggest issue  
will be if you want to use the Geronimo connector implementation,  
then you will have to figure out how to adapt the JTA  
implementation to the  
org.apache.geronimo.transaction.manager.XAWork interface.  The  
second biggest issue, will be convincing G to correctly build the  
JTA implementation which will require a GBean wrapper of some kind.


-dain

On Oct 22, 2007, at 2:29 AM, Guy Pardon wrote:


Hi,

Does anybody have any useful pointers on how to integrate a third- 
party JTA (Atomikos) into Geronimo?


Thanks,
Guy









[jira] Resolved: (GERONIMO-3545) Upgrade Apache Derby to 10.3.1.4

2007-10-22 Thread Jacek Laskowski (JIRA)

 [ 
https://issues.apache.org/jira/browse/GERONIMO-3545?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jacek Laskowski resolved GERONIMO-3545.
---

   Resolution: Fixed
Fix Version/s: 2.1

$ svn ci -m 'GERONIMO-3545 Upgrade Apache Derby to 10.3.1.4' pom.xml
Sendingpom.xml
Transmitting file data .
Committed revision 587261.

Previous version (10.1.2.1, 10.2.2.0) are still dragged by deps. It'd be nice 
to exclude them if possible.

> Upgrade Apache Derby to 10.3.1.4
> 
>
> Key: GERONIMO-3545
> URL: https://issues.apache.org/jira/browse/GERONIMO-3545
> Project: Geronimo
>  Issue Type: Task
>  Security Level: public(Regular issues) 
>  Components: databases
>Affects Versions: 2.1
>Reporter: Jacek Laskowski
>Assignee: Jacek Laskowski
> Fix For: 2.1
>
>
> Upgrade Derby to 10.3.1.4

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Closed: (GERONIMO-3545) Upgrade Apache Derby to 10.3.1.4

2007-10-22 Thread Jacek Laskowski (JIRA)

 [ 
https://issues.apache.org/jira/browse/GERONIMO-3545?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jacek Laskowski closed GERONIMO-3545.
-


> Upgrade Apache Derby to 10.3.1.4
> 
>
> Key: GERONIMO-3545
> URL: https://issues.apache.org/jira/browse/GERONIMO-3545
> Project: Geronimo
>  Issue Type: Task
>  Security Level: public(Regular issues) 
>  Components: databases
>Affects Versions: 2.1
>Reporter: Jacek Laskowski
>Assignee: Jacek Laskowski
> Fix For: 2.1
>
>
> Upgrade Derby to 10.3.1.4

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Created: (GERONIMO-3545) Upgrade Apache Derby to 10.3.1.4

2007-10-22 Thread Jacek Laskowski (JIRA)
Upgrade Apache Derby to 10.3.1.4


 Key: GERONIMO-3545
 URL: https://issues.apache.org/jira/browse/GERONIMO-3545
 Project: Geronimo
  Issue Type: Task
  Security Level: public (Regular issues)
  Components: databases
Affects Versions: 2.1
Reporter: Jacek Laskowski
Assignee: Jacek Laskowski


Upgrade Derby to 10.3.1.4

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



Re: Interested in Contributing

2007-10-22 Thread Joseph Leong
Thanks for all the pointers, I'll see what i can do. I may go with working
on that implementation and more into gshell since David said sh/bat scripts
will be phased out.  Also my Jira ID: jleong

Thanks,

-Joseph Leong

On 10/22/07, Jay McHugh <[EMAIL PROTECTED]> wrote:
>
> Welcome Joseph,
>
> If you see a Jira that you are interested in and it is not assigned - you
> can just email the list to let them know that you would like to work on it.
>
> If you see one that is assigned but no recent work appears to have been
> done on it then you could email the list to ask whether or not it is being
> worked on and offer help.
>
> I think that I would probably skip this particular Jira (someone else may
> disagree) only because there is very little (or no) active work being done
> on version 1.
>
> Versions 2.0.x and trunk (version 2.1.x) are where most of the attention
> is being placed.
>
> Also, send in your Jira ID so that you can be set up to have Jiras
> assigned to you.
>
> Jay
>
> *Joseph Leong <[EMAIL PROTECTED]>* wrote:
>
> I'm really interested in contributing to this project, and i saw Jira
> GERONIMO-2251 was available.  Seems like a good one to get my feet wet.  I'm
> not too familiar with what the etiquette is in the geronimo community... is
> it free game for me to take a stab at it?
>
> Thanks,
> Joseph Leong
>
>
>


Re: Integrating a third-party JTA

2007-10-22 Thread Guy Pardon

Hi,

Thanks. Where can I see samples of this (how is it done now)? I  
couldn't find the right module so far... Or is it in a jar somewhere?


Guy

On 22-okt-07, at 22:08, Dain Sundstrom wrote:

Other then code that attempts to cast the transaction manger to  
GeronimoTransactionManager (or other Geronimo transaction  
interfaces) it shouldn't be that difficult.  The biggest issue will  
be if you want to use the Geronimo connector implementation, then  
you will have to figure out how to adapt the JTA implementation to  
the org.apache.geronimo.transaction.manager.XAWork interface.  The  
second biggest issue, will be convincing G to correctly build the  
JTA implementation which will require a GBean wrapper of some kind.


-dain

On Oct 22, 2007, at 2:29 AM, Guy Pardon wrote:


Hi,

Does anybody have any useful pointers on how to integrate a third- 
party JTA (Atomikos) into Geronimo?


Thanks,
Guy







Re: Integrating a third-party JTA

2007-10-22 Thread Dain Sundstrom
Other then code that attempts to cast the transaction manger to  
GeronimoTransactionManager (or other Geronimo transaction interfaces)  
it shouldn't be that difficult.  The biggest issue will be if you  
want to use the Geronimo connector implementation, then you will have  
to figure out how to adapt the JTA implementation to the  
org.apache.geronimo.transaction.manager.XAWork interface.  The second  
biggest issue, will be convincing G to correctly build the JTA  
implementation which will require a GBean wrapper of some kind.


-dain

On Oct 22, 2007, at 2:29 AM, Guy Pardon wrote:


Hi,

Does anybody have any useful pointers on how to integrate a third- 
party JTA (Atomikos) into Geronimo?


Thanks,
Guy




Re: [BUILD] 2.0: Failed for Revision: 587047

2007-10-22 Thread Peter Petersson

:) Good to here, I missed that one, thanks for the head up.
Cheers
 Peter

Prasad Kashyap wrote:

The problem occurred b'coz one of the remote repos
(ws.zones.apache.org) used by the axis2-kernel was down.

This problem has now been fixed with help from Dims and ASF Infra.

Cheers
Prasad

On 10/22/07, Peter Petersson <[EMAIL PROTECTED]> wrote:
  

Thank you for the information!

I am a bit surprised by this error as I would expect to be able to build
a svn tagged version of Geronimo at any time with no changes what so
ever compared to the original packaging as long as all maven repos is up
and running even (especially) if I have a clean local geronimo/ maven
repository.

Changing  the version property
1.0-incubating-M7b
to
1.0-incubating--SNAPSHOT
in axis2-parent-1.3.pom in my local repo
dose NOT fixed the problem, as I guess it would.

I am obviously doing something wrong here. And btw should I really get a
SNAPSHOT as I am trying to build from the v2.0.2 tag of the svn tree?

Cheers
   Peter Petersson



Prasad Kashyap wrote:


The org.apache.axis2:axis2-kernel:jar:1.3 which depends on this
artifact should have it's woden dependency set to
1.0-incubating-SNAPSHOT. This can then be found at

http://people.apache.org/repo/m2-snapshot-repository/org/apache/woden/woden/1.0-incubating-SNAPSHOT/

Cheers
Prasad


On 10/22/07, Peter Petersson <[EMAIL PROTECTED]> wrote:

  

Anybody else seeing this ?  I am trying to do a clean build of the 2.0.2
tag but it seems that org.apache.woden:woden:jar:1.0-incubating-M7b has
been revoked from the maven repos (Its now version M7). It seem to me
that this artifact is implicitly pulled in by some web services artifact
so I guess wait and see if it getting resolved by some 3rd party is what
I can do at the moment.

regards
   Peter Petersson

[EMAIL PROTECTED] wrote:



Geronimo Revision: 587047 built with tests included

See the full build-0600.log file at 
http://people.apache.org/~prasad/binaries/2.0/20071022/build-0600.log

[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:compile]
[INFO] Nothing to compile - all classes are up to date
[INFO] [resources:testResources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:testCompile]
[INFO] Nothing to compile - all classes are up to date
[INFO] [surefire:test]
[INFO] Surefire report directory: 
/home/prasad/geronimo/2.0/modules/geronimo-activemq/target/surefire-reports

---
 T E S T S
---
Running org.apache.geronimo.activemq.ConnectorTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.218 sec

Results :
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0

[INFO] [jar:jar]
[INFO] [tools:verify-legal-files {execution: verify-legal-files}]
[INFO] Checking legal files in: geronimo-activemq-2.0.3-SNAPSHOT.jar
[INFO] [install:install]
[INFO] Installing 
/home/prasad/geronimo/2.0/modules/geronimo-activemq/target/geronimo-activemq-2.0.3-SNAPSHOT.jar
 to 
/home/prasad/.m2/repository/org/apache/geronimo/modules/geronimo-activemq/2.0.3-SNAPSHOT/geronimo-activemq-2.0.3-SNAPSHOT.jar
[INFO] 

[INFO] Building Geronimo :: Web Services
[INFO]task-segment: [install]
[INFO] 

[INFO] [enforcer:enforce {execution: default}]
[INFO] [tools:copy-legal-files {execution: install-legal-files}]
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
Downloading: http://download.java.net/maven/1//axis/poms/axis-jaxrpc-1.4.pom
Downloading: 
http://people.apache.org/repo/m2-incubating-repository//axis/axis-jaxrpc/1.4/axis-jaxrpc-1.4.pom
Downloading: 
http://repo1.maven.org/maven2/axis/axis-jaxrpc/1.4/axis-jaxrpc-1.4.pom
Downloading: http://download.java.net/maven/1//jaxen/poms/jaxen-1.1-beta-10.pom
Downloading: 
http://people.apache.org/repo/m2-incubating-repository//jaxen/jaxen/1.1-beta-10/jaxen-1.1-beta-10.pom
Downloading: 
http://repo1.maven.org/maven2/jaxen/jaxen/1.1-beta-10/jaxen-1.1-beta-10.pom
Downloading: 
http://download.java.net/maven/1//org.apache.woden/poms/woden-1.0-incubating-M7b.pom
Downloading: 
http://people.apache.org/repo/m2-incubating-repository//org/apache/woden/woden/1.0-incubating-M7b/woden-1.0-incubating-M7b.pom
Downloading: 
http://repo1.maven.org/maven2/org/apache/woden/woden/1.0-incubating-M7b/woden-1.0-incubating-M7b.pom
Downloading: 
http://download.java.net/maven/1//org.apache.neethi/poms/neethi-2.0.pom
Downloading: 
http://people.apache.org/repo/m2-incubating-repository//org/apache/neethi/neethi/2.0/neethi-2.0.pom
Downloading: 
http://repo1.maven.org/maven2/org/apache/neethi/neethi/2.0/neethi-2.0.pom
Downloading: 
http://download.java.net/maven/1//org.apache.woden/jars/woden-1.0-incubating-M7b.jar
Downloading: 
http://people.apache.

Re: [BUILD] 2.0: Failed for Revision: 587047

2007-10-22 Thread Prasad Kashyap
The problem occurred b'coz one of the remote repos
(ws.zones.apache.org) used by the axis2-kernel was down.

This problem has now been fixed with help from Dims and ASF Infra.

Cheers
Prasad

On 10/22/07, Peter Petersson <[EMAIL PROTECTED]> wrote:
> Thank you for the information!
>
> I am a bit surprised by this error as I would expect to be able to build
> a svn tagged version of Geronimo at any time with no changes what so
> ever compared to the original packaging as long as all maven repos is up
> and running even (especially) if I have a clean local geronimo/ maven
> repository.
>
> Changing  the version property
> 1.0-incubating-M7b
> to
> 1.0-incubating--SNAPSHOT
> in axis2-parent-1.3.pom in my local repo
> dose NOT fixed the problem, as I guess it would.
>
> I am obviously doing something wrong here. And btw should I really get a
> SNAPSHOT as I am trying to build from the v2.0.2 tag of the svn tree?
>
> Cheers
>Peter Petersson
>
>
>
> Prasad Kashyap wrote:
> > The org.apache.axis2:axis2-kernel:jar:1.3 which depends on this
> > artifact should have it's woden dependency set to
> > 1.0-incubating-SNAPSHOT. This can then be found at
> >
> > http://people.apache.org/repo/m2-snapshot-repository/org/apache/woden/woden/1.0-incubating-SNAPSHOT/
> >
> > Cheers
> > Prasad
> >
> >
> > On 10/22/07, Peter Petersson <[EMAIL PROTECTED]> wrote:
> >
> >> Anybody else seeing this ?  I am trying to do a clean build of the 2.0.2
> >> tag but it seems that org.apache.woden:woden:jar:1.0-incubating-M7b has
> >> been revoked from the maven repos (Its now version M7). It seem to me
> >> that this artifact is implicitly pulled in by some web services artifact
> >> so I guess wait and see if it getting resolved by some 3rd party is what
> >> I can do at the moment.
> >>
> >> regards
> >>Peter Petersson
> >>
> >> [EMAIL PROTECTED] wrote:
> >>
> >>> Geronimo Revision: 587047 built with tests included
> >>>
> >>> See the full build-0600.log file at 
> >>> http://people.apache.org/~prasad/binaries/2.0/20071022/build-0600.log
> >>>
> >>> [INFO] Using default encoding to copy filtered resources.
> >>> [INFO] [compiler:compile]
> >>> [INFO] Nothing to compile - all classes are up to date
> >>> [INFO] [resources:testResources]
> >>> [INFO] Using default encoding to copy filtered resources.
> >>> [INFO] [compiler:testCompile]
> >>> [INFO] Nothing to compile - all classes are up to date
> >>> [INFO] [surefire:test]
> >>> [INFO] Surefire report directory: 
> >>> /home/prasad/geronimo/2.0/modules/geronimo-activemq/target/surefire-reports
> >>>
> >>> ---
> >>>  T E S T S
> >>> ---
> >>> Running org.apache.geronimo.activemq.ConnectorTest
> >>> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.218 sec
> >>>
> >>> Results :
> >>> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0
> >>>
> >>> [INFO] [jar:jar]
> >>> [INFO] [tools:verify-legal-files {execution: verify-legal-files}]
> >>> [INFO] Checking legal files in: geronimo-activemq-2.0.3-SNAPSHOT.jar
> >>> [INFO] [install:install]
> >>> [INFO] Installing 
> >>> /home/prasad/geronimo/2.0/modules/geronimo-activemq/target/geronimo-activemq-2.0.3-SNAPSHOT.jar
> >>>  to 
> >>> /home/prasad/.m2/repository/org/apache/geronimo/modules/geronimo-activemq/2.0.3-SNAPSHOT/geronimo-activemq-2.0.3-SNAPSHOT.jar
> >>> [INFO] 
> >>> 
> >>> [INFO] Building Geronimo :: Web Services
> >>> [INFO]task-segment: [install]
> >>> [INFO] 
> >>> 
> >>> [INFO] [enforcer:enforce {execution: default}]
> >>> [INFO] [tools:copy-legal-files {execution: install-legal-files}]
> >>> [INFO] [resources:resources]
> >>> [INFO] Using default encoding to copy filtered resources.
> >>> Downloading: 
> >>> http://download.java.net/maven/1//axis/poms/axis-jaxrpc-1.4.pom
> >>> Downloading: 
> >>> http://people.apache.org/repo/m2-incubating-repository//axis/axis-jaxrpc/1.4/axis-jaxrpc-1.4.pom
> >>> Downloading: 

Re: [BUILD] 2.0: Failed for Revision: 587047

2007-10-22 Thread Peter Petersson

Thank you for the information!

I am a bit surprised by this error as I would expect to be able to build 
a svn tagged version of Geronimo at any time with no changes what so 
ever compared to the original packaging as long as all maven repos is up 
and running even (especially) if I have a clean local geronimo/ maven 
repository.


Changing  the version property
1.0-incubating-M7b
to
1.0-incubating--SNAPSHOT
in axis2-parent-1.3.pom in my local repo
dose NOT fixed the problem, as I guess it would.

I am obviously doing something wrong here. And btw should I really get a 
SNAPSHOT as I am trying to build from the v2.0.2 tag of the svn tree?


Cheers
  Peter Petersson



Prasad Kashyap wrote:

The org.apache.axis2:axis2-kernel:jar:1.3 which depends on this
artifact should have it's woden dependency set to
1.0-incubating-SNAPSHOT. This can then be found at

http://people.apache.org/repo/m2-snapshot-repository/org/apache/woden/woden/1.0-incubating-SNAPSHOT/

Cheers
Prasad


On 10/22/07, Peter Petersson <[EMAIL PROTECTED]> wrote:
  

Anybody else seeing this ?  I am trying to do a clean build of the 2.0.2
tag but it seems that org.apache.woden:woden:jar:1.0-incubating-M7b has
been revoked from the maven repos (Its now version M7). It seem to me
that this artifact is implicitly pulled in by some web services artifact
so I guess wait and see if it getting resolved by some 3rd party is what
I can do at the moment.

regards
   Peter Petersson

[EMAIL PROTECTED] wrote:


Geronimo Revision: 587047 built with tests included

See the full build-0600.log file at 
http://people.apache.org/~prasad/binaries/2.0/20071022/build-0600.log

[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:compile]
[INFO] Nothing to compile - all classes are up to date
[INFO] [resources:testResources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:testCompile]
[INFO] Nothing to compile - all classes are up to date
[INFO] [surefire:test]
[INFO] Surefire report directory: 
/home/prasad/geronimo/2.0/modules/geronimo-activemq/target/surefire-reports

---
 T E S T S
---
Running org.apache.geronimo.activemq.ConnectorTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.218 sec

Results :
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0

[INFO] [jar:jar]
[INFO] [tools:verify-legal-files {execution: verify-legal-files}]
[INFO] Checking legal files in: geronimo-activemq-2.0.3-SNAPSHOT.jar
[INFO] [install:install]
[INFO] Installing 
/home/prasad/geronimo/2.0/modules/geronimo-activemq/target/geronimo-activemq-2.0.3-SNAPSHOT.jar
 to 
/home/prasad/.m2/repository/org/apache/geronimo/modules/geronimo-activemq/2.0.3-SNAPSHOT/geronimo-activemq-2.0.3-SNAPSHOT.jar
[INFO] 

[INFO] Building Geronimo :: Web Services
[INFO]task-segment: [install]
[INFO] 

[INFO] [enforcer:enforce {execution: default}]
[INFO] [tools:copy-legal-files {execution: install-legal-files}]
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
Downloading: http://download.java.net/maven/1//axis/poms/axis-jaxrpc-1.4.pom
Downloading: 
http://people.apache.org/repo/m2-incubating-repository//axis/axis-jaxrpc/1.4/axis-jaxrpc-1.4.pom
Downloading: 
http://repo1.maven.org/maven2/axis/axis-jaxrpc/1.4/axis-jaxrpc-1.4.pom
Downloading: http://download.java.net/maven/1//jaxen/poms/jaxen-1.1-beta-10.pom
Downloading: 
http://people.apache.org/repo/m2-incubating-repository//jaxen/jaxen/1.1-beta-10/jaxen-1.1-beta-10.pom
Downloading: 
http://repo1.maven.org/maven2/jaxen/jaxen/1.1-beta-10/jaxen-1.1-beta-10.pom
Downloading: 
http://download.java.net/maven/1//org.apache.woden/poms/woden-1.0-incubating-M7b.pom
Downloading: 
http://people.apache.org/repo/m2-incubating-repository//org/apache/woden/woden/1.0-incubating-M7b/woden-1.0-incubating-M7b.pom
Downloading: 
http://repo1.maven.org/maven2/org/apache/woden/woden/1.0-incubating-M7b/woden-1.0-incubating-M7b.pom
Downloading: 
http://download.java.net/maven/1//org.apache.neethi/poms/neethi-2.0.pom
Downloading: 
http://people.apache.org/repo/m2-incubating-repository//org/apache/neethi/neethi/2.0/neethi-2.0.pom
Downloading: 
http://repo1.maven.org/maven2/org/apache/neethi/neethi/2.0/neethi-2.0.pom
Downloading: 
http://download.java.net/maven/1//org.apache.woden/jars/woden-1.0-incubating-M7b.jar
Downloading: 
http://people.apache.org/repo/m2-incubating-repository//org/apache/woden/woden/1.0-incubating-M7b/woden-1.0-incubating-M7b.jar
Downloading: 
http://ws.zones.apache.org/repository2/org/apache/woden/woden/1.0-incubating-M7b/woden-1.0-incubating-M7b.jar
Downloading: 
http://tomcat.apache.org/dev/dist/m2-repository/org/apache/woden/woden/1.0-incubating-M7b/woden-1.0-incubating-M7b.jar
Downloa

Re: Interested in Contributing

2007-10-22 Thread David Jencks


On Oct 22, 2007, at 10:16 AM, Joseph Leong wrote:

I'm really interested in contributing to this project, and i saw  
Jira GERONIMO-2251 was available.  Seems like a good one to get my  
feet wet.  I'm not too familiar with what the etiquette is in the  
geronimo community... is it free game for me to take a stab at it?


Sure, however since the plan is to eliminate the sh/bat scripts in  
favor of gshell it would be much more useful to figure out how to  
implement the functionality in gshell.  There are also a lot of other  
gshell enhancements that should be very easy once you figure out  
where to do them such as running geronimo under a debugger but so far  
no one has had a minute to actually do them so this could be an  
introduction to putting in some very useful enhancements.


thanks
david jencks



Thanks,
Joseph Leong




Re: Interested in Contributing

2007-10-22 Thread Viet Nguyen
Hey Joe,

You can contribute all you want. Just make sure that jira is actually still
valid though, since it was opened a while back.

Regards,
Viet

On 10/22/07, Joseph Leong <[EMAIL PROTECTED]> wrote:
>
> I'm really interested in contributing to this project, and i saw Jira
> GERONIMO-2251 was available.  Seems like a good one to get my feet wet.  I'm
> not too familiar with what the etiquette is in the geronimo community... is
> it free game for me to take a stab at it?
>
> Thanks,
> Joseph Leong
>


[jira] Resolved: (SM-944) IllegalStateException between servicemix-jms and servicemix-bean

2007-10-22 Thread Guillaume Nodet (JIRA)

 [ 
https://issues.apache.org/activemq/browse/SM-944?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Guillaume Nodet resolved SM-944.


   Resolution: Fixed
Fix Version/s: 3.2
   3.1.3

> IllegalStateException between servicemix-jms and servicemix-bean
> 
>
> Key: SM-944
> URL: https://issues.apache.org/activemq/browse/SM-944
> Project: ServiceMix
>  Issue Type: Bug
>  Components: servicemix-bean
>Affects Versions: 3.1.1
> Environment: Linux Redhat 4
>Reporter: Noseda Anne
> Fix For: 3.1.3, 3.2
>
> Attachments: servicemix-bean.BeanEndpoint.java.diff
>
>
> 08:11:11,840 | ERROR | pool-flow.seda.servicemix-jms-thread-2 | BeanComponent 
>| ervicemix.common.BaseLifeCycle   48 | Error processing exchange 
> InOnly[
>   id: ID:127.0.0.1-111e98f3e46-5:3
>   status: Done
>   role: consumer
>   service: {http://www.etnic.be/janus}JmsIn
>   endpoint: endpoint
>   in:  xmlns="http://www.etnic.be/janus";>c5b55899-e985-11db-abd1-9dbf85725783http://www.etnic.be/janus/OrchestrationAsync/AsyncOrchestrationhttp://www.etnic.be/simulate/clientasync0WSJanusTEST_LDU1  
> xmlns:ns2="http://www.etnic.be/janus";>cfwb.enseignement.fase.poxx.vwfromns_po_id24cfwb.enseignement.fase.etabxx.vwfromns_etab_id196cfwb.enseignement.janus.test.wss  xmlns="http://www.etnic.be/janus/fase";>
>   
>   PO
>   100
>   
>   FICHE
>   
> ]
> java.lang.IllegalStateException: Receiving unknown consumer exchange: InOnly[
>   id: ID:127.0.0.1-111e98f3e46-5:3
>   status: Done
>   role: consumer
>   service: {http://www.etnic.be/janus}JmsIn
>   endpoint: endpoint
>   in:  xmlns="http://www.etnic.be/janus";>c5b55899-e985-11db-abd1-9dbf85725783http://www.etnic.be/janus/OrchestrationAsync/AsyncOrchestrationhttp://www.etnic.be/simulate/clientasync0WSJanusTEST_LDU1  
> xmlns:ns2="http://www.etnic.be/janus";>cfwb.enseignement.fase.poxx.vwfromns_po_id24cfwb.enseignement.fase.etabxx.vwfromns_etab_id196cfwb.enseignement.janus.test.wss  xmlns="http://www.etnic.be/janus/fase";>
>   
>   PO
>   100
>   
>   FICHE
>   
> ]
>   at 
> org.apache.servicemix.bean.BeanEndpoint.onConsumerExchange(BeanEndpoint.java:268)
>   at 
> org.apache.servicemix.bean.BeanEndpoint.process(BeanEndpoint.java:198)
>   at 
> org.apache.servicemix.common.AsyncBaseLifeCycle.doProcess(AsyncBaseLifeCycle.java:489)
>   at 
> org.apache.servicemix.common.AsyncBaseLifeCycle.processExchange(AsyncBaseLifeCycle.java:463)
>   at 
> org.apache.servicemix.common.BaseLifeCycle.onMessageExchange(BaseLifeCycle.java:46)
>   at 
> org.apache.servicemix.jbi.messaging.DeliveryChannelImpl.processInBound(DeliveryChannelImpl.java:595)
>   at 
> org.apache.servicemix.jbi.nmr.flow.AbstractFlow.doRouting(AbstractFlow.java:174)
>   at 
> org.apache.servicemix.jbi.nmr.flow.seda.SedaFlow.doRouting(SedaFlow.java:176)
>   at 
> org.apache.servicemix.jbi.nmr.flow.seda.SedaQueue$1.run(SedaQueue.java:134)
>   at 
> edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:665)
>   at 
> edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:690)
>   at java.lang.Thread.run(Thread.java:595)
> 08:11:11,845 | ERROR | pool-flow.seda.servicemix-jms-thread-2 | BeanComponent 
>| ervicemix.common.BaseLifeCycle   60 | Error setting exchange 
> status to ERROR
> javax.jbi.messaging.MessagingException: illegal call to send / sendSync
>   at 
> org.apache.servicemix.jbi.messaging.MessageExchangeImpl.handleSend(MessageExchangeImpl.java:571)
>   at 
> org.apache.servicemix.jbi.messaging.DeliveryChannelImpl.doSend(DeliveryChannelImpl.java:372)
>   at 
> org.apache.servicemix.jbi.messaging.DeliveryChannelImpl.send(DeliveryChannelImpl.java:419)
>   at 
> org.apache.servicemix.common.BaseLifeCycle.onMessageExchange(BaseLifeCycle.java:58)
>   at 
> org.apache.servicemix.jbi.messaging.DeliveryChannelImpl.processInBound(DeliveryChannelImpl.java:595)
>   at 
> org.apache.servicemix.jbi.nmr.flow.AbstractFlow.doRouting(AbstractFlow.java:174)
>   at 
> org.apache.servicemix.jbi.nmr.flow.seda.SedaFlow.doRouting(SedaFlow.java:176)
>   at 
> org.apache.servicemix.jbi.nmr.flow.seda.SedaQueue$1.run(SedaQueue.java:134)
>   at 
> edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:665)
>   at 
> edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:690)
> 

Re: Interested in Contributing

2007-10-22 Thread Jay McHugh
Welcome Joseph,

If you see a Jira that you are interested in and it is not assigned - you can 
just email the list to let them know that you would like to work on it.

If you see one that is assigned but no recent work appears to have been done on 
it then you could email the list to ask whether or not it is being worked on 
and offer help.

I think that I would probably skip this particular Jira (someone else may 
disagree) only because there is very little (or no) active work being done on 
version 1. 

Versions 2.0.x and trunk (version 2.1.x) are where most of the attention is 
being placed.

Also, send in your Jira ID so that you can be set up to have Jiras assigned to 
you.

Jay

Joseph Leong <[EMAIL PROTECTED]> wrote: I'm really interested in contributing 
to this project, and i saw Jira GERONIMO-2251 was available.  Seems like a good 
one to get my feet wet.  I'm not too familiar with what the etiquette is in the 
geronimo community... is it free game for me to take a stab at it? 

Thanks,
Joseph Leong
 


Re: Interested in Contributing

2007-10-22 Thread Jacek Laskowski
On 10/22/07, Joseph Leong <[EMAIL PROTECTED]> wrote:
> I'm really interested in contributing to this project, and i saw Jira
> GERONIMO-2251 was available.  Seems like a good one to get my feet wet.  I'm
> not too familiar with what the etiquette is in the geronimo community... is
> it free game for me to take a stab at it?

Welcome! Attach a patch when you're done so it can get committed. Do
you have a jira account? When you're in geronimo-contributors you can
assign issues to yourself and others will know it's worked on.

Jacek

-- 
Jacek Laskowski
http://www.JacekLaskowski.pl


Interested in Contributing

2007-10-22 Thread Joseph Leong
I'm really interested in contributing to this project, and i saw Jira
GERONIMO-2251 was available.  Seems like a good one to get my feet wet.  I'm
not too familiar with what the etiquette is in the geronimo community... is
it free game for me to take a stab at it?

Thanks,
Joseph Leong


Re: [BUILD] 2.1: Failed for Revision: 587014

2007-10-22 Thread Jacek Laskowski
On 10/22/07, Prasad Kashyap <[EMAIL PROTECTED]> wrote:
> The woden artifact is being pulled in as a transitive dependency of
> axis-2. The fix should go there. A temporary fix would be to exclude
> this from our geronimo-webservices module. But I am not sure how
> important woden is for us and what else it will break.

I can't understand why it doesn't fail for me if woden's an issue?
Hmmm, I must be missing something obvious. If it *is* the issue I'll
find out it soon as I'm building Geronimo in a couple of hours.

Jacek

-- 
Jacek Laskowski
http://www.JacekLaskowski.pl


[jira] Updated: (GERONIMO-3544) Offline deployer busted when adding sharedlib reference into offline-deployer-config.xml

2007-10-22 Thread Aman Nanner (JIRA)

 [ 
https://issues.apache.org/jira/browse/GERONIMO-3544?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Aman Nanner updated GERONIMO-3544:
--

Description: 
For EAR applications that have references shared libraries and depend upon the 
sharedlib config, the offline-deployer-config.xml needs to be modified to add 
the following line:



This allows for the EAR application to be deployed offline.  If this line were 
not to be added, the offline deployment would fail.

This was working in Geronimo 2.0.1.  As of Geronimo 2.0.2, it seems that adding 
this line causes the offline deployment process to hang with the following 
error:


Exception in thread "main" java.lang.NullPointerException
at 
org.apache.geronimo.deployment.cli.CommandDistribute.executeOnline(CommandDistribute.java:138)
at 
org.apache.geronimo.deployment.cli.CommandDistribute.execute(CommandDistribute.java:114)
at 
org.apache.geronimo.deployment.cli.DeployTool.execute(DeployTool.java:161)
at 
org.apache.geronimo.kernel.util.MainConfigurationBootstrapper.main(MainConfigurationBootstrapper.java:45)
at org.apache.geronimo.cli.AbstractCLI.executeMain(AbstractCLI.java:67)
at 
org.apache.geronimo.cli.deployer.DeployerCLI.main(DeployerCLI.java:31)
Deployer operation failed: Module Apache/TestingJMS/1/rar already exists in the 
server.  Try to undeploy it first or use
 the redeploy command.
org.apache.geronimo.common.DeploymentException: Module Apache/TestingJMS/1/rar 
already exists in the server.  Try to und
eploy it first or use the redeploy command.
at org.apache.geronimo.deployment.Deployer.deploy(Deployer.java:256)
at org.apache.geronimo.deployment.Deployer.deploy(Deployer.java:126)
at 
org.apache.geronimo.deployment.Deployer$$FastClassByCGLIB$$734a235d.invoke()
at net.sf.cglib.reflect.FastMethod.invoke(FastMethod.java:53)
at 
org.apache.geronimo.gbean.runtime.FastMethodInvoker.invoke(FastMethodInvoker.java:38)
at 
org.apache.geronimo.gbean.runtime.GBeanOperation.invoke(GBeanOperation.java:124)
at 
org.apache.geronimo.gbean.runtime.GBeanInstance.invoke(GBeanInstance.java:865)
at 
org.apache.geronimo.kernel.basic.BasicKernel.invoke(BasicKernel.java:239)
at 
org.apache.geronimo.deployment.plugin.local.AbstractDeployCommand.doDeploy(AbstractDeployCommand.java:116)
at 
org.apache.geronimo.deployment.plugin.local.DistributeCommand.run(DistributeCommand.java:61)
at java.lang.Thread.run(Thread.java:595)
Completed with id Apache/TestingJMS/1/rar


Checking the repository and the config.xml shows that the deployment actually 
succeeds, but then the process hangs with the "already deployed" error above.  
This error is strange because the specified resource was NOT already deployed.

I've attached a very simple test case that can reproduce the error.

1) Unzip the contents into your top-level Geronimo folder
2) Modify the offline-deployer-config.xml to add the "" configuration.
3) Execute offline deployment with the following command:

java -jar bin\deployer.jar --user system --password manager --offline deploy 
geronimo-activemq-ra-2.0.2.rar jms-dest.xml

This should reproduce the error.

  was:
For EAR applications that have references shared libraries and depend upon the 
sharedlib config, the offline-deployer-config.xml needs to be modified to add 
the following line:



This allows for the EAR application to be deployed offline.  If this line were 
not to be added, the offline deployment would fail.

This was working in Geronimo 2.0.1.  As of Geronimo 2.0.2, it seems that adding 
this line causes the offline deployment process to hang with the following 
error:




Checking the repository and the config.xml shows that the deployment actually 
succeeds, but then the process hangs with the "already deployed" error above.  
This error is strange because the specified resource was NOT already deployed.

I've attached a very simple test case that can reproduce the error.

1) Unzip the contents into your top-level Geronimo folder
2) Modify the offline-deployer-config.xml to add the "" configuration.
3) Execute offline deployment with the following command:

java -jar bin\deployer.jar --user system --password manager --offline deploy 
geronimo-activemq-ra-2.0.2.rar jms-dest.xml

This should reproduce the error.


> Offline deployer busted when adding sharedlib reference into 
> offline-deployer-config.xml
> 
>
> Key: GERONIMO-3544
> URL: https://issues.apache.org/jira/browse/GERONIMO-3544
> Project: Geronimo
>  Issue Type: Bug
>  Security Level: public(Regular issues) 
>  Components: deployment
>Affects Versions: 2.0.2
> Environment: Windows XP SP2
>Reporter: Aman Nann

[jira] Updated: (GERONIMO-3544) Offline deployer busted when adding sharedlib reference into offline-deployer-config.xml

2007-10-22 Thread Aman Nanner (JIRA)

 [ 
https://issues.apache.org/jira/browse/GERONIMO-3544?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Aman Nanner updated GERONIMO-3544:
--

Attachment: offline-deployer-bug.zip

> Offline deployer busted when adding sharedlib reference into 
> offline-deployer-config.xml
> 
>
> Key: GERONIMO-3544
> URL: https://issues.apache.org/jira/browse/GERONIMO-3544
> Project: Geronimo
>  Issue Type: Bug
>  Security Level: public(Regular issues) 
>  Components: deployment
>Affects Versions: 2.0.2
> Environment: Windows XP SP2
>Reporter: Aman Nanner
> Fix For: 2.0.x
>
> Attachments: offline-deployer-bug.zip
>
>
> For EAR applications that have references shared libraries and depend upon 
> the sharedlib config, the offline-deployer-config.xml needs to be modified to 
> add the following line:
> 
> This allows for the EAR application to be deployed offline.  If this line 
> were not to be added, the offline deployment would fail.
> This was working in Geronimo 2.0.1.  As of Geronimo 2.0.2, it seems that 
> adding this line causes the offline deployment process to hang with the 
> following error:
> 
> 
> Checking the repository and the config.xml shows that the deployment actually 
> succeeds, but then the process hangs with the "already deployed" error above. 
>  This error is strange because the specified resource was NOT already 
> deployed.
> I've attached a very simple test case that can reproduce the error.
> 1) Unzip the contents into your top-level Geronimo folder
> 2) Modify the offline-deployer-config.xml to add the " name="org.apache.geronimo.configs/sharedlib/2.0.2/car"/>" configuration.
> 3) Execute offline deployment with the following command:
> java -jar bin\deployer.jar --user system --password manager --offline deploy 
> geronimo-activemq-ra-2.0.2.rar jms-dest.xml
> This should reproduce the error.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Created: (GERONIMO-3544) Offline deployer busted when adding sharedlib reference into offline-deployer-config.xml

2007-10-22 Thread Aman Nanner (JIRA)
Offline deployer busted when adding sharedlib reference into 
offline-deployer-config.xml


 Key: GERONIMO-3544
 URL: https://issues.apache.org/jira/browse/GERONIMO-3544
 Project: Geronimo
  Issue Type: Bug
  Security Level: public (Regular issues)
  Components: deployment
Affects Versions: 2.0.2
 Environment: Windows XP SP2
Reporter: Aman Nanner
 Fix For: 2.0.x


For EAR applications that have references shared libraries and depend upon the 
sharedlib config, the offline-deployer-config.xml needs to be modified to add 
the following line:



This allows for the EAR application to be deployed offline.  If this line were 
not to be added, the offline deployment would fail.

This was working in Geronimo 2.0.1.  As of Geronimo 2.0.2, it seems that adding 
this line causes the offline deployment process to hang with the following 
error:




Checking the repository and the config.xml shows that the deployment actually 
succeeds, but then the process hangs with the "already deployed" error above.  
This error is strange because the specified resource was NOT already deployed.

I've attached a very simple test case that can reproduce the error.

1) Unzip the contents into your top-level Geronimo folder
2) Modify the offline-deployer-config.xml to add the "" configuration.
3) Execute offline deployment with the following command:

java -jar bin\deployer.jar --user system --password manager --offline deploy 
geronimo-activemq-ra-2.0.2.rar jms-dest.xml

This should reproduce the error.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Issue Comment Edited: (GERONIMO-3451) "Restricted listeners property file not found" error logged during Tomcat server startup

2007-10-22 Thread Paul McMahan (JIRA)

[ 
https://issues.apache.org/jira/browse/GERONIMO-3451?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12536355
 ] 

pmcmahan edited comment on GERONIMO-3451 at 10/22/07 8:18 AM:
--

It's not clear to me that this error message is actually harmless.  Tomcat uses 
RestrictedServlet.properties and RestrictedFilters.properties files as a sort 
of internalized/proprietary security mechanism to limit access to certain types 
of servlets and filters.  The instance manager patch that is applied to 
Geronimo's build of tomcat (see GERONIMO-3010 and GERONIMO-3206) introduced a 
new type of security check in DefaultInstanceManager for restricted Listeners :

{code:title=DefaultInstanceManager.java|borderStyle=solid}
private void checkAccess(Class clazz)
{
if(privileged)
return;
if(clazz.isAssignableFrom(javax/servlet/Filter))
checkAccess(clazz, restrictedFilters);
else
if(clazz.isAssignableFrom(javax/servlet/Servlet))
checkAccess(clazz, restrictedServlets);
else
checkAccess(clazz, restrictedListeners);
}
{code}

However, that class also has a bug in the place where the 
RestrictedListeners.properties is read in,  adding its contents to the 
restrictedFilters list instead of the restrictedListeners list :

{code:title=DefaultInstanceManager.java|borderStyle=solid}
java.io.InputStream is = 
getClass().getClassLoader().getResourceAsStream("org/apache/catalina/core/RestrictedListeners.properties");
if(is != null)
*restrictedFilters.load(is);* //   < should be 
restrictedListeners.load(is)
else

catalinaContext.getLogger().error(sm.getString("defaultInstanceManager.restrictedListenersResources"));
{code}

So addressing this issue will involve :
# determine if the DefaultInstanceManager really needs to check for restricted 
listeners
# if so, determine which listeners should be restricted (what to put in the 
RestrictedListeners.properties)
# add RestrictedListeners.properties to Geronimo's catalina.jar
# fix the bug in DefaultInstanceManager mentioned above

  was (Author: pmcmahan):
It's not clear to me that this error message is actually harmless.  Tomcat 
uses RestrictedServlet.properties and RestrictedFilters.properties files as a 
sort of internalized/proprietary security mechanism to limit access to certain 
types of servlets and filters.  The instance manager patch that is applied to 
Geronimo's build of tomcat (see GERONIMO-3010 and GERONIMO-3206) introduced a 
new type of security check in DefaultInstanceManager for restricted Listeners :
{{
private void checkAccess(Class clazz)
{
if(privileged)
return;
if(clazz.isAssignableFrom(javax/servlet/Filter))
checkAccess(clazz, restrictedFilters);
else
if(clazz.isAssignableFrom(javax/servlet/Servlet))
checkAccess(clazz, restrictedServlets);
else
checkAccess(clazz, restrictedListeners);
}
}}

However, that class also has a bug in the place where the 
RestrictedListeners.properties is read in,  adding its contents to the 
restrictedFilters list instead of the restrictedListeners list.
{{
java.io.InputStream is = 
getClass().getClassLoader().getResourceAsStream("org/apache/catalina/core/RestrictedListeners.properties");
if(is != null)
*restrictedFilters.load(is);*
else

catalinaContext.getLogger().error(sm.getString("defaultInstanceManager.restrictedListenersResources"));
}}

So addressing this issue will involve :
# determine if the DefaultInstanceManager really needs to check for restricted 
listeners
# if so, determine which listeners should be restricted (what to put in the 
RestrictedListeners.properties)
# add RestrictedListeners.properties to Geronimo's catalina.jar
# fix the bug in DefaultInstanceManager mentioned above
  
> "Restricted listeners property file not found" error logged during Tomcat 
> server startup
> 
>
> Key: GERONIMO-3451
> URL: https://issues.apache.org/jira/browse/GERONIMO-3451
> Project: Geronimo
>  Issue Type: Bug
>  Security Level: public(Regular issues) 
>  Components: Tomcat
>Affects Versions: 2.0, 2.0.x
>Reporter: Kevan Miller
> Fix For: 2.0.x
>
>
> During Tomcat server startup, the following log error is displayed on the 
> console:
> 12:57:32,559 ERROR [[/]] "Restricted listeners property file not found
> Althgough the log message can be ignored, users assume that something is 
> broken...

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Updated: (GERONIMO-3541) monitoring plugin: collecting agent needs to use a database to store the snapshots instead of xml

2007-10-22 Thread Viet Hung Nguyen (JIRA)

 [ 
https://issues.apache.org/jira/browse/GERONIMO-3541?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Viet Hung Nguyen updated GERONIMO-3541:
---

Attachment: geronimo-3541.patch

This patch differs from the previous patch. I changed the data type of 
snapshot_time (the number of seconds since 1970) to be of type BIGINT in the db 
instead of a String.

> monitoring plugin: collecting agent needs to use a database to store the 
> snapshots instead of xml
> -
>
> Key: GERONIMO-3541
> URL: https://issues.apache.org/jira/browse/GERONIMO-3541
> Project: Geronimo
>  Issue Type: Improvement
>  Security Level: public(Regular issues) 
>  Components: monitoring
>Affects Versions: 2.1
> Environment: windows
>Reporter: Viet Hung Nguyen
> Attachments: geronimo-3541.patch
>
>
> The DB needs to be populated with snapshot statistics. Also, the functions 
> used to query snapshots needs to be migrated from reading from XML files to a 
> DB.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Updated: (GERONIMO-3541) monitoring plugin: collecting agent needs to use a database to store the snapshots instead of xml

2007-10-22 Thread Viet Hung Nguyen (JIRA)

 [ 
https://issues.apache.org/jira/browse/GERONIMO-3541?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Viet Hung Nguyen updated GERONIMO-3541:
---

Attachment: (was: geronimo-3541.patch)

> monitoring plugin: collecting agent needs to use a database to store the 
> snapshots instead of xml
> -
>
> Key: GERONIMO-3541
> URL: https://issues.apache.org/jira/browse/GERONIMO-3541
> Project: Geronimo
>  Issue Type: Improvement
>  Security Level: public(Regular issues) 
>  Components: monitoring
>Affects Versions: 2.1
> Environment: windows
>Reporter: Viet Hung Nguyen
>
> The DB needs to be populated with snapshot statistics. Also, the functions 
> used to query snapshots needs to be migrated from reading from XML files to a 
> DB.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Closed: (GERONIMO-3539) Can not override providers using META-INF/javamail.providers file

2007-10-22 Thread Rick McGuire (JIRA)

 [ 
https://issues.apache.org/jira/browse/GERONIMO-3539?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Rick McGuire closed GERONIMO-3539.
--

Resolution: Fixed

Committed revision 587072.

> Can not override providers using META-INF/javamail.providers file
> -
>
> Key: GERONIMO-3539
> URL: https://issues.apache.org/jira/browse/GERONIMO-3539
> Project: Geronimo
>  Issue Type: Bug
>  Security Level: public(Regular issues) 
>  Components: mail
>Affects Versions: 2.0, 2.0.1, 2.0.2
>Reporter: Dain Sundstrom
>Assignee: Rick McGuire
>
> The Session.loadProviders(ClassLoader cl) loads provider files from:
> META-INF/javamail.default.providers
> ${java.home}/lib/javamail.providers
> META-INF/javamail.providers
> but should be 
> ${java.home}/lib/javamail.providers
> META-INF/javamail.providers
> META-INF/javamail.default.providers

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



Re: [BUILD] 2.0: Failed for Revision: 587047

2007-10-22 Thread Prasad Kashyap
The org.apache.axis2:axis2-kernel:jar:1.3 which depends on this
artifact should have it's woden dependency set to
1.0-incubating-SNAPSHOT. This can then be found at

http://people.apache.org/repo/m2-snapshot-repository/org/apache/woden/woden/1.0-incubating-SNAPSHOT/

Cheers
Prasad


On 10/22/07, Peter Petersson <[EMAIL PROTECTED]> wrote:
> Anybody else seeing this ?  I am trying to do a clean build of the 2.0.2
> tag but it seems that org.apache.woden:woden:jar:1.0-incubating-M7b has
> been revoked from the maven repos (Its now version M7). It seem to me
> that this artifact is implicitly pulled in by some web services artifact
> so I guess wait and see if it getting resolved by some 3rd party is what
> I can do at the moment.
>
> regards
>Peter Petersson
>
> [EMAIL PROTECTED] wrote:
> > Geronimo Revision: 587047 built with tests included
> >
> > See the full build-0600.log file at 
> > http://people.apache.org/~prasad/binaries/2.0/20071022/build-0600.log
> >
> > [INFO] Using default encoding to copy filtered resources.
> > [INFO] [compiler:compile]
> > [INFO] Nothing to compile - all classes are up to date
> > [INFO] [resources:testResources]
> > [INFO] Using default encoding to copy filtered resources.
> > [INFO] [compiler:testCompile]
> > [INFO] Nothing to compile - all classes are up to date
> > [INFO] [surefire:test]
> > [INFO] Surefire report directory: 
> > /home/prasad/geronimo/2.0/modules/geronimo-activemq/target/surefire-reports
> >
> > ---
> >  T E S T S
> > ---
> > Running org.apache.geronimo.activemq.ConnectorTest
> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.218 sec
> >
> > Results :
> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0
> >
> > [INFO] [jar:jar]
> > [INFO] [tools:verify-legal-files {execution: verify-legal-files}]
> > [INFO] Checking legal files in: geronimo-activemq-2.0.3-SNAPSHOT.jar
> > [INFO] [install:install]
> > [INFO] Installing 
> > /home/prasad/geronimo/2.0/modules/geronimo-activemq/target/geronimo-activemq-2.0.3-SNAPSHOT.jar
> >  to 
> > /home/prasad/.m2/repository/org/apache/geronimo/modules/geronimo-activemq/2.0.3-SNAPSHOT/geronimo-activemq-2.0.3-SNAPSHOT.jar
> > [INFO] 
> > 
> > [INFO] Building Geronimo :: Web Services
> > [INFO]task-segment: [install]
> > [INFO] 
> > 
> > [INFO] [enforcer:enforce {execution: default}]
> > [INFO] [tools:copy-legal-files {execution: install-legal-files}]
> > [INFO] [resources:resources]
> > [INFO] Using default encoding to copy filtered resources.
> > Downloading: http://download.java.net/maven/1//axis/poms/axis-jaxrpc-1.4.pom
> > Downloading: 
> > http://people.apache.org/repo/m2-incubating-repository//axis/axis-jaxrpc/1.4/axis-jaxrpc-1.4.pom
> > Downloading: 
> > http://repo1.maven.org/maven2/axis/axis-jaxrpc/1.4/axis-jaxrpc-1.4.pom
> > Downloading: 
> > http://download.java.net/maven/1//jaxen/poms/jaxen-1.1-beta-10.pom
> > Downloading: 
> > http://people.apache.org/repo/m2-incubating-repository//jaxen/jaxen/1.1-beta-10/jaxen-1.1-beta-10.pom
> > Downloading: 
> > http://repo1.maven.org/maven2/jaxen/jaxen/1.1-beta-10/jaxen-1.1-beta-10.pom
> > Downloading: 
> > http://download.java.net/maven/1//org.apache.woden/poms/woden-1.0-incubating-M7b.pom
> > Downloading: 
> > http://people.apache.org/repo/m2-incubating-repository//org/apache/woden/woden/1.0-incubating-M7b/woden-1.0-incubating-M7b.pom
> > Downloading: 
> > http://repo1.maven.org/maven2/org/apache/woden/woden/1.0-incubating-M7b/woden-1.0-incubating-M7b.pom
> > Downloading: 
> > http://download.java.net/maven/1//org.apache.neethi/poms/neethi-2.0.pom
> > Downloading: 
> > http://people.apache.org/repo/m2-incubating-repository//org/apache/neethi/neethi/2.0/neethi-2.0.pom
> > Downloading: 
> > http://repo1.maven.org/maven2/org/apache/neethi/neethi/2.0/neethi-2.0.pom
> > Downloading: 
> > http://download.java.net/maven/1//org.apache.woden/jars/woden-1.0-incubating-M7b.jar
> > Downloading: 
> > http://people.apache.org/repo/m2-incubating-repository//org/apache/woden/woden/1.0-incubating-M7b/woden-1.0-incubating-M7b.jar
> > Downloading: 
> > http://ws.zones.apache.org/repository2/org/apache/woden/woden/1.0-incubating-M7b/woden-1.0-incubating-M7b.jar
> > Downloading: 
> > http://tomcat.apache.org/dev/dist/m2-reposit

Re: [BUILD] 2.1: Failed for Revision: 587014

2007-10-22 Thread Prasad Kashyap
The woden artifact is being pulled in as a transitive dependency of
axis-2. The fix should go there. A temporary fix would be to exclude
this from our geronimo-webservices module. But I am not sure how
important woden is for us and what else it will break.

Cheers
Prasad

On 10/22/07, Jacek Laskowski <[EMAIL PROTECTED]> wrote:
> Hi,
>
> Is anyone working on fixing the build/the build script or should we
> disregard it (and the whole point of sending failed builds
> announcements)? I could build Geronimo trunk 2-3 days ago fine.
>
> Jacek
>
> On 22 Oct 2007 08:14:15 -, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
> > OpenEJB trunk at 586981
> > Geronimo Revision: 587014 built with tests included
> >
> > See the full build-0300.log file at 
> > http://people.apache.org/~prasad/binaries/trunk/20071022/build-0300.log
> >
> > [INFO] [enforcer:enforce {execution: default}]
> > [INFO] [tools:copy-legal-files {execution: install-legal-files}]
> > [INFO] [resources:resources]
> > [INFO] Using default encoding to copy filtered resources.
> > [INFO] [compiler:compile]
> > [INFO] Nothing to compile - all classes are up to date
> > [INFO] [resources:testResources]
> > [INFO] Using default encoding to copy filtered resources.
> > [INFO] [compiler:testCompile]
> > [INFO] Nothing to compile - all classes are up to date
> > [INFO] [surefire:test]
> > [INFO] Surefire report directory: 
> > /home/prasad/geronimo/trunk/modules/geronimo-activemq/target/surefire-reports
> >
> > ---
> >  T E S T S
> > ---
> > Running org.apache.geronimo.activemq.ConnectorTest
> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.168 sec
> >
> > Results :
> >
> > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0
> >
> > [INFO] [jar:jar]
> > [INFO] [tools:verify-legal-files {execution: verify-legal-files}]
> > [INFO] Checking legal files in: geronimo-activemq-2.1-SNAPSHOT.jar
> > [INFO] [install:install]
> > [INFO] Installing 
> > /home/prasad/geronimo/trunk/modules/geronimo-activemq/target/geronimo-activemq-2.1-SNAPSHOT.jar
> >  to 
> > /home/prasad/.m2/repository/org/apache/geronimo/modules/geronimo-activemq/2.1-SNAPSHOT/geronimo-activemq-2.1-SNAPSHOT.jar
> > [INFO] 
> > 
> > [INFO] Building Geronimo :: Web Services
> > [INFO]task-segment: [install]
> > [INFO] 
> > 
> > Downloading: http://download.java.net/maven/1//axis/poms/axis-jaxrpc-1.4.pom
> > Downloading: 
> > http://people.apache.org/repo/m2-incubating-repository//axis/axis-jaxrpc/1.4/axis-jaxrpc-1.4.pom
> > Downloading: 
> > http://repo1.maven.org/maven2/axis/axis-jaxrpc/1.4/axis-jaxrpc-1.4.pom
> > Downloading: 
> > http://download.java.net/maven/1//jaxen/poms/jaxen-1.1-beta-10.pom
> > Downloading: 
> > http://people.apache.org/repo/m2-incubating-repository//jaxen/jaxen/1.1-beta-10/jaxen-1.1-beta-10.pom
> > Downloading: 
> > http://repo1.maven.org/maven2/jaxen/jaxen/1.1-beta-10/jaxen-1.1-beta-10.pom
> > Downloading: 
> > http://download.java.net/maven/1//org.apache.woden/poms/woden-1.0-incubating-M7b.pom
> > Downloading: 
> > http://people.apache.org/repo/m2-incubating-repository//org/apache/woden/woden/1.0-incubating-M7b/woden-1.0-incubating-M7b.pom
> > Downloading: 
> > http://repo1.maven.org/maven2/org/apache/woden/woden/1.0-incubating-M7b/woden-1.0-incubating-M7b.pom
> > Downloading: 
> > http://download.java.net/maven/1//org.apache.neethi/poms/neethi-2.0.pom
> > Downloading: 
> > http://people.apache.org/repo/m2-incubating-repository//org/apache/neethi/neethi/2.0/neethi-2.0.pom
> > Downloading: 
> > http://repo1.maven.org/maven2/org/apache/neethi/neethi/2.0/neethi-2.0.pom
> > Downloading: 
> > http://download.java.net/maven/1//org.apache.woden/jars/woden-1.0-incubating-M7b.jar
> > Downloading: 
> > http://people.apache.org/repo/m2-incubating-repository//org/apache/woden/woden/1.0-incubating-M7b/woden-1.0-incubating-M7b.jar
> > Downloading: 
> > http://ws.zones.apache.org/repository2/org/apache/woden/woden/1.0-incubating-M7b/woden-1.0-incubating-M7b.jar
> > Downloading: 
> > http://tomcat.apache.org/dev/dist/m2-repository/org/apache/woden/woden/1.0-incubating-M7b/woden-1.0-incubating-M7b.jar
> > Downloading: 
> > http://people.apache.org/repo/m2-incubating-repository/org/apache/woden/woden/1.0-incubating-M7b/wode

[BUILD] 2.1: Failed for Revision: 587078

2007-10-22 Thread prasad
OpenEJB trunk at 587014
Geronimo Revision: 587078 built with tests included
 
See the full build-0900.log file at 
http://people.apache.org/~prasad/binaries/trunk/20071022/build-0900.log
 
[INFO] [enforcer:enforce {execution: default}]
[INFO] [tools:copy-legal-files {execution: install-legal-files}]
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:compile]
[INFO] Nothing to compile - all classes are up to date
[INFO] [resources:testResources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:testCompile]
[INFO] Nothing to compile - all classes are up to date
[INFO] [surefire:test]
[INFO] Surefire report directory: 
/home/prasad/geronimo/trunk/modules/geronimo-activemq/target/surefire-reports

---
 T E S T S
---
Running org.apache.geronimo.activemq.ConnectorTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.159 sec

Results :

Tests run: 1, Failures: 0, Errors: 0, Skipped: 0

[INFO] [jar:jar]
[INFO] [tools:verify-legal-files {execution: verify-legal-files}]
[INFO] Checking legal files in: geronimo-activemq-2.1-SNAPSHOT.jar
[INFO] [install:install]
[INFO] Installing 
/home/prasad/geronimo/trunk/modules/geronimo-activemq/target/geronimo-activemq-2.1-SNAPSHOT.jar
 to 
/home/prasad/.m2/repository/org/apache/geronimo/modules/geronimo-activemq/2.1-SNAPSHOT/geronimo-activemq-2.1-SNAPSHOT.jar
[INFO] 

[INFO] Building Geronimo :: Web Services
[INFO]task-segment: [install]
[INFO] 

Downloading: http://download.java.net/maven/1//axis/poms/axis-jaxrpc-1.4.pom
Downloading: 
http://people.apache.org/repo/m2-incubating-repository//axis/axis-jaxrpc/1.4/axis-jaxrpc-1.4.pom
Downloading: 
http://repo1.maven.org/maven2/axis/axis-jaxrpc/1.4/axis-jaxrpc-1.4.pom
Downloading: http://download.java.net/maven/1//jaxen/poms/jaxen-1.1-beta-10.pom
Downloading: 
http://people.apache.org/repo/m2-incubating-repository//jaxen/jaxen/1.1-beta-10/jaxen-1.1-beta-10.pom
Downloading: 
http://repo1.maven.org/maven2/jaxen/jaxen/1.1-beta-10/jaxen-1.1-beta-10.pom
Downloading: 
http://download.java.net/maven/1//org.apache.woden/poms/woden-1.0-incubating-M7b.pom
Downloading: 
http://people.apache.org/repo/m2-incubating-repository//org/apache/woden/woden/1.0-incubating-M7b/woden-1.0-incubating-M7b.pom
Downloading: 
http://repo1.maven.org/maven2/org/apache/woden/woden/1.0-incubating-M7b/woden-1.0-incubating-M7b.pom
Downloading: 
http://download.java.net/maven/1//org.apache.neethi/poms/neethi-2.0.pom
Downloading: 
http://people.apache.org/repo/m2-incubating-repository//org/apache/neethi/neethi/2.0/neethi-2.0.pom
Downloading: 
http://repo1.maven.org/maven2/org/apache/neethi/neethi/2.0/neethi-2.0.pom
Downloading: 
http://download.java.net/maven/1//org.apache.woden/jars/woden-1.0-incubating-M7b.jar
Downloading: 
http://people.apache.org/repo/m2-incubating-repository//org/apache/woden/woden/1.0-incubating-M7b/woden-1.0-incubating-M7b.jar
Downloading: 
http://ws.zones.apache.org/repository2/org/apache/woden/woden/1.0-incubating-M7b/woden-1.0-incubating-M7b.jar
Downloading: 
http://tomcat.apache.org/dev/dist/m2-repository/org/apache/woden/woden/1.0-incubating-M7b/woden-1.0-incubating-M7b.jar
Downloading: 
http://people.apache.org/repo/m2-incubating-repository/org/apache/woden/woden/1.0-incubating-M7b/woden-1.0-incubating-M7b.jar
Downloading: 
http://repo1.maven.org/eclipse/org/apache/woden/woden/1.0-incubating-M7b/woden-1.0-incubating-M7b.jar
Downloading: 
http://jibx.sourceforge.net/maven/org.apache.woden/jars/woden-1.0-incubating-M7b.jar
Downloading: 
http://repo1.maven.org/maven2/org/apache/woden/woden/1.0-incubating-M7b/woden-1.0-incubating-M7b.jar
[INFO] 
[ERROR] BUILD ERROR
[INFO] 
[INFO] Failed to resolve artifact.

Missing:
--
1) org.apache.woden:woden:jar:1.0-incubating-M7b

  Try downloading the file manually from the project website.

  Then, install it using the command: 
  mvn install:install-file -DgroupId=org.apache.woden -DartifactId=woden \
  -Dversion=1.0-incubating-M7b -Dpackaging=jar -Dfile=/path/to/file
Alternatively, if you host your own repository you can deploy the file there:   
mvn deploy:deploy-file -DgroupId=org.apache.woden -DartifactId=woden \
  -Dversion=1.0-incubating-M7b -Dpackaging=jar -Dfile=/path/to/file \
   -Durl=[url] -DrepositoryId=[id]

  Path to dependency: 
1) org.apache.geronimo.modules:geronimo-webservices:jar:2.1-SNAPSHOT
2) org.apache.ws.scout:scout:jar:1.0rc1
3) org.apache.ws.scout:jaxr-api:jar:SNAPSHOT
4) org.apache.juddi:juddi:jar:SNAPSHOT

Re: How to compile without Checkstyle

2007-10-22 Thread Guillaume Nodet
I agree it may be a pain from time to time :-(
Though it helps consistency a bit but I suppose we could only include
a few rules (like no tabs, no star imports) and relax most of pure
coding style related rules (spaces, braces, etc...)

On 10/20/07, Andreas Schaefer <[EMAIL PROTECTED]> wrote:
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
>
> Hi Geeks
>
> I tried to change some stuff in the ServiceMix trunk in order to
> resolve a problem. For now I cannot contribute and so I don't care
> about the layout of my changes. Sure enough I have a quite different
> opinion on how good code should look like and the compilation fails
> therefore. So I was wondering if there is a way to compile the trunk
> without have to bother with Checkstyle making the compilation fail.
>
> 
> Personally, I have to say that I hate Checkstyle for most part
> because if a developer cannot read some else's code then he/she
> should look for another job. Every open-source project has a little
> bit different format and so one should better deal with it.
> Checkstyle can be used to prevent coding practices that are prone to
> cause problems like a single line block without curly brackets but
> layout is a waste of time, IMHO.
> 
>
> I am not a contributor and so you, the contributors, can do whatever
> you want but I would appreciate if you wouldn't bug me as long as I
> am not contributing code.
>
> Thank you - Andy
> -BEGIN PGP SIGNATURE-
> Version: GnuPG v1.4.7 (Darwin)
>
> iD8DBQFHGk3zs4gPTNnP0gkRApWXAJ9bbBTfn56GS/44uFzqDcNu7OVxXQCcDQua
> ArQ9dIhCJuq1k6txHhReUEY=
> =NnBB
> -END PGP SIGNATURE-
>


-- 
Cheers,
Guillaume Nodet

Blog: http://gnodet.blogspot.com/


Re: [Announcement] SOA Stack based on Apache Geronimo - GASwerk

2007-10-22 Thread Prasad Kashyap
Interesting ! Yet another SOA choice, along with Apache Tuscany.

Cheers
Prasad

On 10/22/07, Kristian Köhler <[EMAIL PROTECTED]> wrote:
> Hi
>
> we developed a OpenSource SOA Stack based on Apache Geronimo. The stack 
> includes an Enterprise Service Bus (Apache ServiceMix), a Business Process 
> Execution Engine (Apache ODE), Rule Based Routing (Apache Camel) and of 
> course JavaEE feature support (Apache Geronimo).
>
> The idea is to prevent companies to 'reinvent the OpenSource SOA wheel' when 
> building SOA solutions. ;-)
>
> The first release is avaliable from our Sourceforge Web Site:
> http://gaswerk.sourceforge.net
>
> The stack is called "GASwerk SOA Stack". A simple sample is also available as 
> download to see GASwerk SOA Stack in action.
>
> Kristian
>
> ---
> http://gaswerk.sourceforge.net
>


[jira] Commented: (SM-944) IllegalStateException between servicemix-jms and servicemix-bean

2007-10-22 Thread Guillaume Nodet (JIRA)

[ 
https://issues.apache.org/activemq/browse/SM-944?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_40455
 ] 

Guillaume Nodet commented on SM-944:


Andreas, is this one fixed by having fixed SM-1110 ?

> IllegalStateException between servicemix-jms and servicemix-bean
> 
>
> Key: SM-944
> URL: https://issues.apache.org/activemq/browse/SM-944
> Project: ServiceMix
>  Issue Type: Bug
>  Components: servicemix-bean
>Affects Versions: 3.1.1
> Environment: Linux Redhat 4
>Reporter: Noseda Anne
> Attachments: servicemix-bean.BeanEndpoint.java.diff
>
>
> 08:11:11,840 | ERROR | pool-flow.seda.servicemix-jms-thread-2 | BeanComponent 
>| ervicemix.common.BaseLifeCycle   48 | Error processing exchange 
> InOnly[
>   id: ID:127.0.0.1-111e98f3e46-5:3
>   status: Done
>   role: consumer
>   service: {http://www.etnic.be/janus}JmsIn
>   endpoint: endpoint
>   in:  xmlns="http://www.etnic.be/janus";>c5b55899-e985-11db-abd1-9dbf85725783http://www.etnic.be/janus/OrchestrationAsync/AsyncOrchestrationhttp://www.etnic.be/simulate/clientasync0WSJanusTEST_LDU1  
> xmlns:ns2="http://www.etnic.be/janus";>cfwb.enseignement.fase.poxx.vwfromns_po_id24cfwb.enseignement.fase.etabxx.vwfromns_etab_id196cfwb.enseignement.janus.test.wss  xmlns="http://www.etnic.be/janus/fase";>
>   
>   PO
>   100
>   
>   FICHE
>   
> ]
> java.lang.IllegalStateException: Receiving unknown consumer exchange: InOnly[
>   id: ID:127.0.0.1-111e98f3e46-5:3
>   status: Done
>   role: consumer
>   service: {http://www.etnic.be/janus}JmsIn
>   endpoint: endpoint
>   in:  xmlns="http://www.etnic.be/janus";>c5b55899-e985-11db-abd1-9dbf85725783http://www.etnic.be/janus/OrchestrationAsync/AsyncOrchestrationhttp://www.etnic.be/simulate/clientasync0WSJanusTEST_LDU1  
> xmlns:ns2="http://www.etnic.be/janus";>cfwb.enseignement.fase.poxx.vwfromns_po_id24cfwb.enseignement.fase.etabxx.vwfromns_etab_id196cfwb.enseignement.janus.test.wss  xmlns="http://www.etnic.be/janus/fase";>
>   
>   PO
>   100
>   
>   FICHE
>   
> ]
>   at 
> org.apache.servicemix.bean.BeanEndpoint.onConsumerExchange(BeanEndpoint.java:268)
>   at 
> org.apache.servicemix.bean.BeanEndpoint.process(BeanEndpoint.java:198)
>   at 
> org.apache.servicemix.common.AsyncBaseLifeCycle.doProcess(AsyncBaseLifeCycle.java:489)
>   at 
> org.apache.servicemix.common.AsyncBaseLifeCycle.processExchange(AsyncBaseLifeCycle.java:463)
>   at 
> org.apache.servicemix.common.BaseLifeCycle.onMessageExchange(BaseLifeCycle.java:46)
>   at 
> org.apache.servicemix.jbi.messaging.DeliveryChannelImpl.processInBound(DeliveryChannelImpl.java:595)
>   at 
> org.apache.servicemix.jbi.nmr.flow.AbstractFlow.doRouting(AbstractFlow.java:174)
>   at 
> org.apache.servicemix.jbi.nmr.flow.seda.SedaFlow.doRouting(SedaFlow.java:176)
>   at 
> org.apache.servicemix.jbi.nmr.flow.seda.SedaQueue$1.run(SedaQueue.java:134)
>   at 
> edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:665)
>   at 
> edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:690)
>   at java.lang.Thread.run(Thread.java:595)
> 08:11:11,845 | ERROR | pool-flow.seda.servicemix-jms-thread-2 | BeanComponent 
>| ervicemix.common.BaseLifeCycle   60 | Error setting exchange 
> status to ERROR
> javax.jbi.messaging.MessagingException: illegal call to send / sendSync
>   at 
> org.apache.servicemix.jbi.messaging.MessageExchangeImpl.handleSend(MessageExchangeImpl.java:571)
>   at 
> org.apache.servicemix.jbi.messaging.DeliveryChannelImpl.doSend(DeliveryChannelImpl.java:372)
>   at 
> org.apache.servicemix.jbi.messaging.DeliveryChannelImpl.send(DeliveryChannelImpl.java:419)
>   at 
> org.apache.servicemix.common.BaseLifeCycle.onMessageExchange(BaseLifeCycle.java:58)
>   at 
> org.apache.servicemix.jbi.messaging.DeliveryChannelImpl.processInBound(DeliveryChannelImpl.java:595)
>   at 
> org.apache.servicemix.jbi.nmr.flow.AbstractFlow.doRouting(AbstractFlow.java:174)
>   at 
> org.apache.servicemix.jbi.nmr.flow.seda.SedaFlow.doRouting(SedaFlow.java:176)
>   at 
> org.apache.servicemix.jbi.nmr.flow.seda.SedaQueue$1.run(SedaQueue.java:134)
>   at 
> edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:665)
>   at 
> edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:690)
>   at java.lang.Thread.run(Threa

Re: [BUILD] 2.0: Failed for Revision: 587047

2007-10-22 Thread Peter Petersson
Anybody else seeing this ?  I am trying to do a clean build of the 2.0.2 
tag but it seems that org.apache.woden:woden:jar:1.0-incubating-M7b has 
been revoked from the maven repos (Its now version M7). It seem to me 
that this artifact is implicitly pulled in by some web services artifact 
so I guess wait and see if it getting resolved by some 3rd party is what 
I can do at the moment.


regards
  Peter Petersson

[EMAIL PROTECTED] wrote:

Geronimo Revision: 587047 built with tests included
 
See the full build-0600.log file at http://people.apache.org/~prasad/binaries/2.0/20071022/build-0600.log
 
[INFO] Using default encoding to copy filtered resources.

[INFO] [compiler:compile]
[INFO] Nothing to compile - all classes are up to date
[INFO] [resources:testResources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:testCompile]
[INFO] Nothing to compile - all classes are up to date
[INFO] [surefire:test]
[INFO] Surefire report directory: 
/home/prasad/geronimo/2.0/modules/geronimo-activemq/target/surefire-reports

---
 T E S T S
---
Running org.apache.geronimo.activemq.ConnectorTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.218 sec

Results :
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0

[INFO] [jar:jar]
[INFO] [tools:verify-legal-files {execution: verify-legal-files}]
[INFO] Checking legal files in: geronimo-activemq-2.0.3-SNAPSHOT.jar
[INFO] [install:install]
[INFO] Installing 
/home/prasad/geronimo/2.0/modules/geronimo-activemq/target/geronimo-activemq-2.0.3-SNAPSHOT.jar
 to 
/home/prasad/.m2/repository/org/apache/geronimo/modules/geronimo-activemq/2.0.3-SNAPSHOT/geronimo-activemq-2.0.3-SNAPSHOT.jar
[INFO] 

[INFO] Building Geronimo :: Web Services
[INFO]task-segment: [install]
[INFO] 

[INFO] [enforcer:enforce {execution: default}]
[INFO] [tools:copy-legal-files {execution: install-legal-files}]
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
Downloading: http://download.java.net/maven/1//axis/poms/axis-jaxrpc-1.4.pom
Downloading: 
http://people.apache.org/repo/m2-incubating-repository//axis/axis-jaxrpc/1.4/axis-jaxrpc-1.4.pom
Downloading: 
http://repo1.maven.org/maven2/axis/axis-jaxrpc/1.4/axis-jaxrpc-1.4.pom
Downloading: http://download.java.net/maven/1//jaxen/poms/jaxen-1.1-beta-10.pom
Downloading: 
http://people.apache.org/repo/m2-incubating-repository//jaxen/jaxen/1.1-beta-10/jaxen-1.1-beta-10.pom
Downloading: 
http://repo1.maven.org/maven2/jaxen/jaxen/1.1-beta-10/jaxen-1.1-beta-10.pom
Downloading: 
http://download.java.net/maven/1//org.apache.woden/poms/woden-1.0-incubating-M7b.pom
Downloading: 
http://people.apache.org/repo/m2-incubating-repository//org/apache/woden/woden/1.0-incubating-M7b/woden-1.0-incubating-M7b.pom
Downloading: 
http://repo1.maven.org/maven2/org/apache/woden/woden/1.0-incubating-M7b/woden-1.0-incubating-M7b.pom
Downloading: 
http://download.java.net/maven/1//org.apache.neethi/poms/neethi-2.0.pom
Downloading: 
http://people.apache.org/repo/m2-incubating-repository//org/apache/neethi/neethi/2.0/neethi-2.0.pom
Downloading: 
http://repo1.maven.org/maven2/org/apache/neethi/neethi/2.0/neethi-2.0.pom
Downloading: 
http://download.java.net/maven/1//org.apache.woden/jars/woden-1.0-incubating-M7b.jar
Downloading: 
http://people.apache.org/repo/m2-incubating-repository//org/apache/woden/woden/1.0-incubating-M7b/woden-1.0-incubating-M7b.jar
Downloading: 
http://ws.zones.apache.org/repository2/org/apache/woden/woden/1.0-incubating-M7b/woden-1.0-incubating-M7b.jar
Downloading: 
http://tomcat.apache.org/dev/dist/m2-repository/org/apache/woden/woden/1.0-incubating-M7b/woden-1.0-incubating-M7b.jar
Downloading: 
http://people.apache.org/repo/m2-incubating-repository/org/apache/woden/woden/1.0-incubating-M7b/woden-1.0-incubating-M7b.jar
Downloading: 
http://repo1.maven.org/eclipse/org/apache/woden/woden/1.0-incubating-M7b/woden-1.0-incubating-M7b.jar
Downloading: 
http://jibx.sourceforge.net/maven/org.apache.woden/jars/woden-1.0-incubating-M7b.jar
Downloading: 
http://repo1.maven.org/maven2/org/apache/woden/woden/1.0-incubating-M7b/woden-1.0-incubating-M7b.jar
[INFO] 
[ERROR] BUILD ERROR
[INFO] 
[INFO] Failed to resolve artifact.

Missing:
--
1) org.apache.woden:woden:jar:1.0-incubating-M7b

  Try downloading the file manually from the project website.

  Then, install it using the command: 
  mvn install:install-file -DgroupId=org.apache.woden -DartifactId=woden \

  -Dversion=1.0-incubating-M7b -Dpackaging=jar -Dfile=/path/to/file
Alternatively, if you host your own repository you

[jira] Closed: (GERONIMO-3540) Session.loadProviders(ProviderInfo info, InputStream is) doesn't seem to handle comments correctly

2007-10-22 Thread Rick McGuire (JIRA)

 [ 
https://issues.apache.org/jira/browse/GERONIMO-3540?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Rick McGuire closed GERONIMO-3540.
--

Resolution: Fixed

Committed revision 587059.

> Session.loadProviders(ProviderInfo info, InputStream is) doesn't seem to 
> handle comments correctly
> --
>
> Key: GERONIMO-3540
> URL: https://issues.apache.org/jira/browse/GERONIMO-3540
> Project: Geronimo
>  Issue Type: Bug
>  Security Level: public(Regular issues) 
>  Components: mail
>Affects Versions: 2.0, 2.0.1, 2.0.2
>Reporter: Dain Sundstrom
>Assignee: Rick McGuire
>
> After reviewing the Session code, it doesn't appear that loadProviders is 
> checking for comments.  I believe that if you have an entry like this:
> # foo=bar; protocol=imap; type=store; class=com.sun.mail.imap.IMAPStore; 
> vendor=Sun Microsystems, Inc.;
> it would process the entry.  I have not tested this, so I could be wrong.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



Re: ServiceMix and Geronimo

2007-10-22 Thread Guillaume Nodet
On 10/22/07, Kristian Köhler <[EMAIL PROTECTED]> wrote:
> Hi
>
> > > * Better configuration of ServiceMix Service within Geronimo
> >
> > This is always something I wanted to do, but never quite got the time
> > to get into it.  We also have a few portlets that I developped using
> > pluto which could be integrated into Geronimo console, but i never
> > really finished those :-(
>
> Is it available somewhere?

trunk/web/servicemix-console

>
> > > * Better integration of the HTTP transport (currently jetty
> > is started within SM)
> >
> > Yeah, I solved the problem when deploying ServiceMix as a web
> > application, but not that way.
>
> My idea is to deploy the HTTP binding component as simple web application 
> which is
> communicating with servicemix service. So ServiceMix could run as service 
> within Geronimo
> and it could be managed without HTTP binding or the need for a web container.

Yeah, I suppose it won't be too difficult to do it that way.

>
> Kristian
>


-- 
Cheers,
Guillaume Nodet

Blog: http://gnodet.blogspot.com/


[BUILD] 2.0: Failed for Revision: 587047

2007-10-22 Thread prasad
Geronimo Revision: 587047 built with tests included
 
See the full build-0600.log file at 
http://people.apache.org/~prasad/binaries/2.0/20071022/build-0600.log
 
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:compile]
[INFO] Nothing to compile - all classes are up to date
[INFO] [resources:testResources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:testCompile]
[INFO] Nothing to compile - all classes are up to date
[INFO] [surefire:test]
[INFO] Surefire report directory: 
/home/prasad/geronimo/2.0/modules/geronimo-activemq/target/surefire-reports

---
 T E S T S
---
Running org.apache.geronimo.activemq.ConnectorTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.218 sec

Results :
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0

[INFO] [jar:jar]
[INFO] [tools:verify-legal-files {execution: verify-legal-files}]
[INFO] Checking legal files in: geronimo-activemq-2.0.3-SNAPSHOT.jar
[INFO] [install:install]
[INFO] Installing 
/home/prasad/geronimo/2.0/modules/geronimo-activemq/target/geronimo-activemq-2.0.3-SNAPSHOT.jar
 to 
/home/prasad/.m2/repository/org/apache/geronimo/modules/geronimo-activemq/2.0.3-SNAPSHOT/geronimo-activemq-2.0.3-SNAPSHOT.jar
[INFO] 

[INFO] Building Geronimo :: Web Services
[INFO]task-segment: [install]
[INFO] 

[INFO] [enforcer:enforce {execution: default}]
[INFO] [tools:copy-legal-files {execution: install-legal-files}]
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
Downloading: http://download.java.net/maven/1//axis/poms/axis-jaxrpc-1.4.pom
Downloading: 
http://people.apache.org/repo/m2-incubating-repository//axis/axis-jaxrpc/1.4/axis-jaxrpc-1.4.pom
Downloading: 
http://repo1.maven.org/maven2/axis/axis-jaxrpc/1.4/axis-jaxrpc-1.4.pom
Downloading: http://download.java.net/maven/1//jaxen/poms/jaxen-1.1-beta-10.pom
Downloading: 
http://people.apache.org/repo/m2-incubating-repository//jaxen/jaxen/1.1-beta-10/jaxen-1.1-beta-10.pom
Downloading: 
http://repo1.maven.org/maven2/jaxen/jaxen/1.1-beta-10/jaxen-1.1-beta-10.pom
Downloading: 
http://download.java.net/maven/1//org.apache.woden/poms/woden-1.0-incubating-M7b.pom
Downloading: 
http://people.apache.org/repo/m2-incubating-repository//org/apache/woden/woden/1.0-incubating-M7b/woden-1.0-incubating-M7b.pom
Downloading: 
http://repo1.maven.org/maven2/org/apache/woden/woden/1.0-incubating-M7b/woden-1.0-incubating-M7b.pom
Downloading: 
http://download.java.net/maven/1//org.apache.neethi/poms/neethi-2.0.pom
Downloading: 
http://people.apache.org/repo/m2-incubating-repository//org/apache/neethi/neethi/2.0/neethi-2.0.pom
Downloading: 
http://repo1.maven.org/maven2/org/apache/neethi/neethi/2.0/neethi-2.0.pom
Downloading: 
http://download.java.net/maven/1//org.apache.woden/jars/woden-1.0-incubating-M7b.jar
Downloading: 
http://people.apache.org/repo/m2-incubating-repository//org/apache/woden/woden/1.0-incubating-M7b/woden-1.0-incubating-M7b.jar
Downloading: 
http://ws.zones.apache.org/repository2/org/apache/woden/woden/1.0-incubating-M7b/woden-1.0-incubating-M7b.jar
Downloading: 
http://tomcat.apache.org/dev/dist/m2-repository/org/apache/woden/woden/1.0-incubating-M7b/woden-1.0-incubating-M7b.jar
Downloading: 
http://people.apache.org/repo/m2-incubating-repository/org/apache/woden/woden/1.0-incubating-M7b/woden-1.0-incubating-M7b.jar
Downloading: 
http://repo1.maven.org/eclipse/org/apache/woden/woden/1.0-incubating-M7b/woden-1.0-incubating-M7b.jar
Downloading: 
http://jibx.sourceforge.net/maven/org.apache.woden/jars/woden-1.0-incubating-M7b.jar
Downloading: 
http://repo1.maven.org/maven2/org/apache/woden/woden/1.0-incubating-M7b/woden-1.0-incubating-M7b.jar
[INFO] 
[ERROR] BUILD ERROR
[INFO] 
[INFO] Failed to resolve artifact.

Missing:
--
1) org.apache.woden:woden:jar:1.0-incubating-M7b

  Try downloading the file manually from the project website.

  Then, install it using the command: 
  mvn install:install-file -DgroupId=org.apache.woden -DartifactId=woden \
  -Dversion=1.0-incubating-M7b -Dpackaging=jar -Dfile=/path/to/file
Alternatively, if you host your own repository you can deploy the file there:   
mvn deploy:deploy-file -DgroupId=org.apache.woden -DartifactId=woden \
  -Dversion=1.0-incubating-M7b -Dpackaging=jar -Dfile=/path/to/file \
   -Durl=[url] -DrepositoryId=[id]

  Path to dependency: 
1) org.apache.geronimo.modules:geronimo-webservices:jar:2.0.3-SNAPSHOT
2) org.apache.ws.scout:scout:jar:1.0rc1
3) org.apache.ws.scout:jaxr-api:jar:SNAPSHOT
4

Re: ServiceMix and Geronimo

2007-10-22 Thread Guillaume Nodet
On 10/22/07, Kristian Köhler <[EMAIL PROTECTED]> wrote:
> Hi
>
> no not yet. Sounds good ;-) I will look into this...
>
> Next steps I want to take are:
> * Better configuration of ServiceMix Service within Geronimo

This is always something I wanted to do, but never quite got the time
to get into it.  We also have a few portlets that I developped using
pluto which could be integrated into Geronimo console, but i never
really finished those :-(

> * Better integration of the HTTP transport (currently jetty is started within 
> SM)

Yeah, I solved the problem when deploying ServiceMix as a web
application, but not that way.

> * and of course add more functionality...
>
> Any help is welcome ;-)

I wish days were way longer than they are ;-)

>
> Kristian
>
> > Btw, we should really provide more JEE oriented features in ServiceMix
> > / Geronimo to our users.
> > Kinda what Open ESB JEE SE provides for glassfish
> > (http://download.java.net/general/open-esb/docs/jbi-components
> > /jee-se.html).
> >We already have a JAX-WS JBI transport in CXF, so I'm sure we could
> > find a way to use it from EJB to access JBI for example...  Have you
> > already thought about such things ?
> >
> >
> > On 10/20/07, Kristian Köhler <[EMAIL PROTECTED]> wrote:
> > > Hi all
> > >
> > > yesterday I finally realeased the first version of my
> > > ServiveMix/Geronimo distribution. You can find it here:
> > >
> > > http://gaswerk.sourceforge.net
> > >
> > > and it's called "GASwerk SOA Stack"
> > >
> > > Kristian
> > >
>


-- 
Cheers,
Guillaume Nodet

Blog: http://gnodet.blogspot.com/


Integrating a third-party JTA

2007-10-22 Thread Guy Pardon

Hi,

Does anybody have any useful pointers on how to integrate a third- 
party JTA (Atomikos) into Geronimo?


Thanks,
Guy


Re: svn commit: r587026 - /incubator/servicemix/trunk/deployables/serviceengines/servicemix-lwcontainer/pom.xml

2007-10-22 Thread Guillaume Nodet
Actually, it seems you're right and there is a dependency to
servicemix-quartz at test level (I missed the scope in your commit).
So feel free to keep the change if it works better (and sorry about
that)

On 10/22/07, Freeman Fang <[EMAIL PROTECTED]> wrote:
> Hi Guillaume,
>
> This is my fault, I already revert it.
>
> The reason I change it is I get test failure for servicemix-lwcontainer,
> testEndpoints() failed when try to deploy servicemix-quartz component,
> I thought the reason is that miss the dependency to servicemix-quartz,
> but now I realize the reason is that this test is based on the
> assumption that my local maven repository should be ~/.m2/repository,
> but I point it to another folder in my settings.xml, I change it back so
> the test pass.
>
> Best Regards
>
> Freeman
> Guillaume Nodet wrote:
> > Any particular reason for this change ? I don't see why the
> > lwcontainer would depend on servicemix-quartz (though I don't really
> > see why it would depend on quartz either)
> >
> > On 10/22/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
> >
> >> Author: ffang
> >> Date: Mon Oct 22 01:12:50 2007
> >> New Revision: 587026
> >>
> >> URL: http://svn.apache.org/viewvc?rev=587026&view=rev
> >> Log:
> >> correct servicemix-lwcontainer dependency
> >>
> >> Modified:
> >> 
> >> incubator/servicemix/trunk/deployables/serviceengines/servicemix-lwcontainer/pom.xml
> >>
> >> Modified: 
> >> incubator/servicemix/trunk/deployables/serviceengines/servicemix-lwcontainer/pom.xml
> >> URL: 
> >> http://svn.apache.org/viewvc/incubator/servicemix/trunk/deployables/serviceengines/servicemix-lwcontainer/pom.xml?rev=587026&r1=587025&r2=587026&view=diff
> >> ==
> >> --- 
> >> incubator/servicemix/trunk/deployables/serviceengines/servicemix-lwcontainer/pom.xml
> >>  (original)
> >> +++ 
> >> incubator/servicemix/trunk/deployables/serviceengines/servicemix-lwcontainer/pom.xml
> >>  Mon Oct 22 01:12:50 2007
> >> @@ -49,8 +49,8 @@
> >>provided
> >>  
> >>  
> >> -  quartz
> >> -  quartz
> >> +  org.apache.servicemix
> >> +  servicemix-quartz
> >>test
> >>  
> >>
> >>
> >>
> >>
> >>
> >
> >
> >
>


-- 
Cheers,
Guillaume Nodet

Blog: http://gnodet.blogspot.com/


Re: [BUILD] 2.1: Failed for Revision: 587014

2007-10-22 Thread Jacek Laskowski
Hi,

Is anyone working on fixing the build/the build script or should we
disregard it (and the whole point of sending failed builds
announcements)? I could build Geronimo trunk 2-3 days ago fine.

Jacek

On 22 Oct 2007 08:14:15 -, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
> OpenEJB trunk at 586981
> Geronimo Revision: 587014 built with tests included
>
> See the full build-0300.log file at 
> http://people.apache.org/~prasad/binaries/trunk/20071022/build-0300.log
>
> [INFO] [enforcer:enforce {execution: default}]
> [INFO] [tools:copy-legal-files {execution: install-legal-files}]
> [INFO] [resources:resources]
> [INFO] Using default encoding to copy filtered resources.
> [INFO] [compiler:compile]
> [INFO] Nothing to compile - all classes are up to date
> [INFO] [resources:testResources]
> [INFO] Using default encoding to copy filtered resources.
> [INFO] [compiler:testCompile]
> [INFO] Nothing to compile - all classes are up to date
> [INFO] [surefire:test]
> [INFO] Surefire report directory: 
> /home/prasad/geronimo/trunk/modules/geronimo-activemq/target/surefire-reports
>
> ---
>  T E S T S
> ---
> Running org.apache.geronimo.activemq.ConnectorTest
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.168 sec
>
> Results :
>
> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0
>
> [INFO] [jar:jar]
> [INFO] [tools:verify-legal-files {execution: verify-legal-files}]
> [INFO] Checking legal files in: geronimo-activemq-2.1-SNAPSHOT.jar
> [INFO] [install:install]
> [INFO] Installing 
> /home/prasad/geronimo/trunk/modules/geronimo-activemq/target/geronimo-activemq-2.1-SNAPSHOT.jar
>  to 
> /home/prasad/.m2/repository/org/apache/geronimo/modules/geronimo-activemq/2.1-SNAPSHOT/geronimo-activemq-2.1-SNAPSHOT.jar
> [INFO] 
> 
> [INFO] Building Geronimo :: Web Services
> [INFO]task-segment: [install]
> [INFO] 
> 
> Downloading: http://download.java.net/maven/1//axis/poms/axis-jaxrpc-1.4.pom
> Downloading: 
> http://people.apache.org/repo/m2-incubating-repository//axis/axis-jaxrpc/1.4/axis-jaxrpc-1.4.pom
> Downloading: 
> http://repo1.maven.org/maven2/axis/axis-jaxrpc/1.4/axis-jaxrpc-1.4.pom
> Downloading: 
> http://download.java.net/maven/1//jaxen/poms/jaxen-1.1-beta-10.pom
> Downloading: 
> http://people.apache.org/repo/m2-incubating-repository//jaxen/jaxen/1.1-beta-10/jaxen-1.1-beta-10.pom
> Downloading: 
> http://repo1.maven.org/maven2/jaxen/jaxen/1.1-beta-10/jaxen-1.1-beta-10.pom
> Downloading: 
> http://download.java.net/maven/1//org.apache.woden/poms/woden-1.0-incubating-M7b.pom
> Downloading: 
> http://people.apache.org/repo/m2-incubating-repository//org/apache/woden/woden/1.0-incubating-M7b/woden-1.0-incubating-M7b.pom
> Downloading: 
> http://repo1.maven.org/maven2/org/apache/woden/woden/1.0-incubating-M7b/woden-1.0-incubating-M7b.pom
> Downloading: 
> http://download.java.net/maven/1//org.apache.neethi/poms/neethi-2.0.pom
> Downloading: 
> http://people.apache.org/repo/m2-incubating-repository//org/apache/neethi/neethi/2.0/neethi-2.0.pom
> Downloading: 
> http://repo1.maven.org/maven2/org/apache/neethi/neethi/2.0/neethi-2.0.pom
> Downloading: 
> http://download.java.net/maven/1//org.apache.woden/jars/woden-1.0-incubating-M7b.jar
> Downloading: 
> http://people.apache.org/repo/m2-incubating-repository//org/apache/woden/woden/1.0-incubating-M7b/woden-1.0-incubating-M7b.jar
> Downloading: 
> http://ws.zones.apache.org/repository2/org/apache/woden/woden/1.0-incubating-M7b/woden-1.0-incubating-M7b.jar
> Downloading: 
> http://tomcat.apache.org/dev/dist/m2-repository/org/apache/woden/woden/1.0-incubating-M7b/woden-1.0-incubating-M7b.jar
> Downloading: 
> http://people.apache.org/repo/m2-incubating-repository/org/apache/woden/woden/1.0-incubating-M7b/woden-1.0-incubating-M7b.jar
> Downloading: 
> http://repo1.maven.org/eclipse/org/apache/woden/woden/1.0-incubating-M7b/woden-1.0-incubating-M7b.jar
> Downloading: 
> http://jibx.sourceforge.net/maven/org.apache.woden/jars/woden-1.0-incubating-M7b.jar
> Downloading: 
> http://repo1.maven.org/maven2/org/apache/woden/woden/1.0-incubating-M7b/woden-1.0-incubating-M7b.jar
> [INFO] 
> 
> [ERROR] BUILD ERROR
> [INFO] 
> 
> [INFO] Failed to resolve artifact.
>
> Missing:
> --
> 1) org.apache.woden:woden:jar:1.0-incubating-M7b
>
>   Try downloading the file manually

[BUILD] 2.1: Failed for Revision: 587014

2007-10-22 Thread prasad
OpenEJB trunk at 586981
Geronimo Revision: 587014 built with tests included
 
See the full build-0300.log file at 
http://people.apache.org/~prasad/binaries/trunk/20071022/build-0300.log
 
[INFO] [enforcer:enforce {execution: default}]
[INFO] [tools:copy-legal-files {execution: install-legal-files}]
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:compile]
[INFO] Nothing to compile - all classes are up to date
[INFO] [resources:testResources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:testCompile]
[INFO] Nothing to compile - all classes are up to date
[INFO] [surefire:test]
[INFO] Surefire report directory: 
/home/prasad/geronimo/trunk/modules/geronimo-activemq/target/surefire-reports

---
 T E S T S
---
Running org.apache.geronimo.activemq.ConnectorTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.168 sec

Results :

Tests run: 1, Failures: 0, Errors: 0, Skipped: 0

[INFO] [jar:jar]
[INFO] [tools:verify-legal-files {execution: verify-legal-files}]
[INFO] Checking legal files in: geronimo-activemq-2.1-SNAPSHOT.jar
[INFO] [install:install]
[INFO] Installing 
/home/prasad/geronimo/trunk/modules/geronimo-activemq/target/geronimo-activemq-2.1-SNAPSHOT.jar
 to 
/home/prasad/.m2/repository/org/apache/geronimo/modules/geronimo-activemq/2.1-SNAPSHOT/geronimo-activemq-2.1-SNAPSHOT.jar
[INFO] 

[INFO] Building Geronimo :: Web Services
[INFO]task-segment: [install]
[INFO] 

Downloading: http://download.java.net/maven/1//axis/poms/axis-jaxrpc-1.4.pom
Downloading: 
http://people.apache.org/repo/m2-incubating-repository//axis/axis-jaxrpc/1.4/axis-jaxrpc-1.4.pom
Downloading: 
http://repo1.maven.org/maven2/axis/axis-jaxrpc/1.4/axis-jaxrpc-1.4.pom
Downloading: http://download.java.net/maven/1//jaxen/poms/jaxen-1.1-beta-10.pom
Downloading: 
http://people.apache.org/repo/m2-incubating-repository//jaxen/jaxen/1.1-beta-10/jaxen-1.1-beta-10.pom
Downloading: 
http://repo1.maven.org/maven2/jaxen/jaxen/1.1-beta-10/jaxen-1.1-beta-10.pom
Downloading: 
http://download.java.net/maven/1//org.apache.woden/poms/woden-1.0-incubating-M7b.pom
Downloading: 
http://people.apache.org/repo/m2-incubating-repository//org/apache/woden/woden/1.0-incubating-M7b/woden-1.0-incubating-M7b.pom
Downloading: 
http://repo1.maven.org/maven2/org/apache/woden/woden/1.0-incubating-M7b/woden-1.0-incubating-M7b.pom
Downloading: 
http://download.java.net/maven/1//org.apache.neethi/poms/neethi-2.0.pom
Downloading: 
http://people.apache.org/repo/m2-incubating-repository//org/apache/neethi/neethi/2.0/neethi-2.0.pom
Downloading: 
http://repo1.maven.org/maven2/org/apache/neethi/neethi/2.0/neethi-2.0.pom
Downloading: 
http://download.java.net/maven/1//org.apache.woden/jars/woden-1.0-incubating-M7b.jar
Downloading: 
http://people.apache.org/repo/m2-incubating-repository//org/apache/woden/woden/1.0-incubating-M7b/woden-1.0-incubating-M7b.jar
Downloading: 
http://ws.zones.apache.org/repository2/org/apache/woden/woden/1.0-incubating-M7b/woden-1.0-incubating-M7b.jar
Downloading: 
http://tomcat.apache.org/dev/dist/m2-repository/org/apache/woden/woden/1.0-incubating-M7b/woden-1.0-incubating-M7b.jar
Downloading: 
http://people.apache.org/repo/m2-incubating-repository/org/apache/woden/woden/1.0-incubating-M7b/woden-1.0-incubating-M7b.jar
Downloading: 
http://repo1.maven.org/eclipse/org/apache/woden/woden/1.0-incubating-M7b/woden-1.0-incubating-M7b.jar
Downloading: 
http://jibx.sourceforge.net/maven/org.apache.woden/jars/woden-1.0-incubating-M7b.jar
Downloading: 
http://repo1.maven.org/maven2/org/apache/woden/woden/1.0-incubating-M7b/woden-1.0-incubating-M7b.jar
[INFO] 
[ERROR] BUILD ERROR
[INFO] 
[INFO] Failed to resolve artifact.

Missing:
--
1) org.apache.woden:woden:jar:1.0-incubating-M7b

  Try downloading the file manually from the project website.

  Then, install it using the command: 
  mvn install:install-file -DgroupId=org.apache.woden -DartifactId=woden \
  -Dversion=1.0-incubating-M7b -Dpackaging=jar -Dfile=/path/to/file
Alternatively, if you host your own repository you can deploy the file there:   
mvn deploy:deploy-file -DgroupId=org.apache.woden -DartifactId=woden \
  -Dversion=1.0-incubating-M7b -Dpackaging=jar -Dfile=/path/to/file \
   -Durl=[url] -DrepositoryId=[id]

  Path to dependency: 
1) org.apache.geronimo.modules:geronimo-webservices:jar:2.1-SNAPSHOT
2) org.apache.ws.scout:scout:jar:1.0rc1
3) org.apache.ws.scout:jaxr-api:jar:SNAPSHOT
4) org.apache.juddi:juddi:jar:SNAPSHOT

SQLLoginModule Security alert in Geronimo 2.0.2 and 2.0.1

2007-10-22 Thread Vamsavardhana Reddy
Hi,

One of our committers, Jarek Gawor, has identified a security issue with
SQLLoginModule.  See the related JIRA
https://issues.apache.org/jira/browse/GERONIMO-3543 .  Authentication
succeeds with SQLLoginModule if logging in with an username that does not
exist in the database.  The issue affects the use of only Database (SQL)
Realms in released versions 2.0.1 and 2.0.2.  The issue has already been
fixed in the codebase and we will be available in the next release expected
soon.

++Vamsi