Re: org.apache.geronimo.system.main.Daemon and commons-cli

2007-03-20 Thread Jason Dillon
I briefly looked into adding this... but looks like a lot of the bootstrap plumbing has changed. I'm a bit bewildered as to why we are booting up a temporary kernel before we get to command-line option parsing. I'm also a bit mystified as to why option parsing is now spread over several

geronimo-axis2/src/main/generated?

2007-03-20 Thread Jason Dillon
Why on earth is there a src/main/generated tree checked in? If these are really generated... um... then they should be generated by the build, not checked in. None of these have the proper license headers either (which seems to be a common problem with the new axis2 stuff). :-( Folks,

Re: What is this doing here modules/geronimo-openejb-builder/geronimo-openejb.xml

2007-03-20 Thread Jason Dillon
What about src/test/resources? --jason On Mar 19, 2007, at 7:47 PM, Dain Sundstrom wrote: It is used when testing the openejb itests in G. This testing is done by hand and there isn't any where really better for it. -dain On Mar 19, 2007, at 4:00 PM, Jason Dillon wrote: Anyone know?

Version numbers starting to creep into module poms

2007-03-20 Thread Jason Dillon
I've been finding a few spots where folks are using version numbers in child poms. Please do not do this, it makes it difficult to manage the versions. The current policy for version numbers is: For external dependencies, define the dependency w/version in the top-level pom's

Where is the src for org.apache.geronimo.gjndi.GlobalContextGBean

2007-03-20 Thread Jason Dillon
The server/trunk build is picking this up in configs/rmi-naming... but from where? Need to update this to use java.util.concurrent... its using backport- concurrent-util at the moment. --jason

Re: [test] Cannot generate report

2007-03-20 Thread Sean Qiu
is there any difference between mvn test under trunk and mvn in trunk/testsuite? best regard. 2007/3/19, Prasad Kashyap [EMAIL PROTECTED]: You can/should generate the testsuite report from the trunk/testsuite directory. For the best results, change the distributionManagementsiteurl element to

[jira] Commented: (GERONIMO-2995) Weed out backport-util-concurrent usage for server/trunk

2007-03-20 Thread Jason Dillon (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-2995?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12482346 ] Jason Dillon commented on GERONIMO-2995: This is *mostly* done... we still need to include backport for

RE: Remote deployment of service assemblies

2007-03-20 Thread Rossmanith, Philipp
Hi, Once you have the JBIContainer, just retrieve the needed interface: JBIContainer container = dci.getContainer(); AdminCommandsServiceMBean admin = container.getAdminCommandsService(); Then, you can use it to deploy / undeploy, manage life cycle, etc .. admin.installComponent()

[jira] Commented: (GERONIMO-2995) Weed out backport-util-concurrent usage for server/trunk

2007-03-20 Thread Jason Dillon (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-2995?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12482348 ] Jason Dillon commented on GERONIMO-2995: There may be an issue with AMQ, TCK is puking up a bunch of

[jira] Commented: (GERONIMO-2995) Weed out backport-util-concurrent usage for server/trunk

2007-03-20 Thread Jason Dillon (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-2995?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12482350 ] Jason Dillon commented on GERONIMO-2995: It _may_ be unrelated... I can't tell at the moment. Weed out

Re: [test] Cannot generate report

2007-03-20 Thread Sean Qiu
testsuite is the integrate test and test under trunk is the unit test. Am i right? I want to get the unit test result, and there is *.txt and *.xml result in surefire directory. But the *.html is not there. 2007/3/20, Sean Qiu [EMAIL PROTECTED]: is there any difference between mvn test under

Re: Remote deployment of service assemblies

2007-03-20 Thread Guillaume Nodet
On 3/20/07, Rossmanith, Philipp [EMAIL PROTECTED] wrote: Hi, Once you have the JBIContainer, just retrieve the needed interface: JBIContainer container = dci.getContainer(); AdminCommandsServiceMBean admin = container.getAdminCommandsService(); Then, you can use it to deploy /

Re: org.apache.geronimo.system.main.Daemon and commons-cli

2007-03-20 Thread Gianny Damour
On 20/03/2007, at 6:12 PM, Jason Dillon wrote: I briefly looked into adding this... but looks like a lot of the bootstrap plumbing has changed. I'm a bit bewildered as to why we are booting up a temporary kernel before we get to command-line option parsing. I'm also a bit mystified as to

Re: Where is the src for org.apache.geronimo.gjndi.GlobalContextGBean

2007-03-20 Thread David Jencks
geronimo-naming jar I think you'll find you need to update xbean-naming. thanks david jencks On Mar 20, 2007, at 4:03 AM, Jason Dillon wrote: The server/trunk build is picking this up in configs/rmi-naming... but from where? Need to update this to use java.util.concurrent... its using

Re: svn commit: r520132 - in /geronimo/server/trunk: ./ applications/console/geronimo-console-standard/src/main/resources/ assemblies/geronimo-boilerplate-jee5/ configs/activemq/ maven-plugins/car-mav

2007-03-20 Thread David Jencks
We might need to watch out for windows path length problems as a result of this change -- they were the reason for the former peculiar name. thanks david jencks On Mar 19, 2007, at 6:35 PM, [EMAIL PROTECTED] wrote: Author: jdillon Date: Mon Mar 19 15:35:23 2007 New Revision: 520132 URL:

Re: What is a plugin? geronimo or maven?

2007-03-20 Thread Gianny Damour
On 20/03/2007, at 6:15 AM, Jason Dillon wrote: On Mar 19, 2007, at 6:52 AM, Gianny Damour wrote: And perhaps change the 'applications' groupId to simply 'apps'... anyways, we'd end up with ids like: testsupport/* org.apache.geronimo.server modules/*

Re: What is a plugin? geronimo or maven?

2007-03-20 Thread David Jencks
I don't think we've been specific enough about what goes where for jason's proposal to make sense yet, as gianni points out. I'm sure we don't want all 100K artifacts we produce all under o.a.g or o.a.g.server I was assuming that o.a.g.server would basically have the kernel and system

Re: [test] Cannot generate report

2007-03-20 Thread Prasad Kashyap
'mvn test' runs the test lifecycle for child modules under that pom. So it depends on where in the project tree you run that command. That being said, the testsuite pom is configured to skip tests in the 'test' phase and execute it in the 'integration-test' phase. So 'mvn test' in the testsuite

[ANNOUNCE] Welcome Jarek Gawor as our newest committer

2007-03-20 Thread Davanum Srinivas
All, Sorry Jarek! Mea Culpa! Folks, We're pleased to let you know that we have a new committer in our midst. Jarek Gawor has been active on the Web Services integration for Geronimo for quite some time and has recently accepted an invitation to join the Geronimo project as a committer. Welcome

Re: What is a plugin? geronimo or maven?

2007-03-20 Thread Anita Kulshreshtha
--- David Jencks [EMAIL PROTECTED] wrote: I don't think we've been specific enough about what goes where for jason's proposal to make sense yet, as gianni points out. I'm sure we don't want all 100K artifacts we produce all under o.a.g or o.a.g.server I do not see why

Re: [ANNOUNCE] Welcome Jarek Gawor as our newest committer

2007-03-20 Thread Prasad Kashyap
Awesome ! Congrats Jarek ! Cheers Prasad On 3/20/07, Davanum Srinivas [EMAIL PROTECTED] wrote: All, Sorry Jarek! Mea Culpa! Folks, We're pleased to let you know that we have a new committer in our midst. Jarek Gawor has been active on the Web Services integration for Geronimo for quite some

Re: [ANNOUNCE] Welcome Jarek Gawor as our newest committer

2007-03-20 Thread Paul McMahan
Congrats Jarek! On 3/20/07, Davanum Srinivas [EMAIL PROTECTED] wrote: All, Sorry Jarek! Mea Culpa! Folks, We're pleased to let you know that we have a new committer in our midst. Jarek Gawor has been active on the Web Services integration for Geronimo for quite some time and has recently

Re: [ANNOUNCE] Welcome Jarek Gawor as our newest committer

2007-03-20 Thread Manu George
Congrats Jarek On 3/20/07, Davanum Srinivas [EMAIL PROTECTED] wrote: All, Sorry Jarek! Mea Culpa! Folks, We're pleased to let you know that we have a new committer in our midst. Jarek Gawor has been active on the Web Services integration for Geronimo for quite some time and has recently

Re: [ANNOUNCE] Welcome Jarek Gawor as our newest committer

2007-03-20 Thread Jeff Genender
Congrats Jarek! Davanum Srinivas wrote: All, Sorry Jarek! Mea Culpa! Folks, We're pleased to let you know that we have a new committer in our midst. Jarek Gawor has been active on the Web Services integration for Geronimo for quite some time and has recently accepted an invitation to

Re: [ANNOUNCE] Welcome Jarek Gawor as our newest committer

2007-03-20 Thread Hernan Cunico
Congrats Jarek!!! Cheers! Hernan Davanum Srinivas wrote: All, Sorry Jarek! Mea Culpa! Folks, We're pleased to let you know that we have a new committer in our midst. Jarek Gawor has been active on the Web Services integration for Geronimo for quite some time and has recently accepted an

Re: [ANNOUNCE] Welcome Jarek Gawor as our newest committer

2007-03-20 Thread Vamsavardhana Reddy
Congratulations Jarek. Vamsi On 3/20/07, Davanum Srinivas [EMAIL PROTECTED] wrote: All, Sorry Jarek! Mea Culpa! Folks, We're pleased to let you know that we have a new committer in our midst. Jarek Gawor has been active on the Web Services integration for Geronimo for quite some time and has

Re: [ANNOUNCE] Welcome Jarek Gawor as our newest committer

2007-03-20 Thread Kevan Miller
Congrats Jarek! --kevan

Re: [ANNOUNCE] Welcome Jarek Gawor as our newest committer

2007-03-20 Thread Shiva Kumar H R
Congratulations Jarek. - Shiva On 3/20/07, Davanum Srinivas [EMAIL PROTECTED] wrote: All, Sorry Jarek! Mea Culpa! Folks, We're pleased to let you know that we have a new committer in our midst. Jarek Gawor has been active on the Web Services integration for Geronimo for quite some time and

Re: [ANNOUNCE] Welcome Jarek Gawor as our newest committer

2007-03-20 Thread Rick McGuire
Welcome aboard, Jarek! Davanum Srinivas wrote: All, Sorry Jarek! Mea Culpa! Folks, We're pleased to let you know that we have a new committer in our midst. Jarek Gawor has been active on the Web Services integration for Geronimo for quite some time and has recently accepted an invitation to

Re: [ANNOUNCE] Welcome Jarek Gawor as our newest committer

2007-03-20 Thread Lasantha Ranaweera
Many Congrats Jarek Lasantha Davanum Srinivas wrote: All, Sorry Jarek! Mea Culpa! Folks, We're pleased to let you know that we have a new committer in our midst. Jarek Gawor has been active on the Web Services integration for Geronimo for quite some time and has recently accepted an

Re: [ANNOUNCE] Welcome Jarek Gawor as our newest committer

2007-03-20 Thread Lin Sun
Congratulations Jarek!!! :) Davanum Srinivas wrote: All, Sorry Jarek! Mea Culpa! Folks, We're pleased to let you know that we have a new committer in our midst. Jarek Gawor has been active on the Web Services integration for Geronimo for quite some time and has recently accepted an invitation

Re: [ANNOUNCE] Welcome Jarek Gawor as our newest committer

2007-03-20 Thread Sachin Patel
belated congrats -sachin On Mar 20, 2007, at 9:48 AM, Davanum Srinivas wrote: All, Sorry Jarek! Mea Culpa! Folks, We're pleased to let you know that we have a new committer in our midst. Jarek Gawor has been active on the Web Services integration for Geronimo for quite some time and has

Re: What is a plugin? geronimo or maven?

2007-03-20 Thread Prasad Kashyap
On 3/20/07, David Jencks [EMAIL PROTECTED] wrote: I don't think we've been specific enough about what goes where for jason's proposal to make sense yet, as gianni points out. I'm sure we don't want all 100K artifacts we produce all under o.a.g or o.a.g.server I mostly definitely agree. In

Re: [ANNOUNCE] Welcome Jarek Gawor as our newest committer

2007-03-20 Thread Joe Bohn
Congratulations Jarek!!! Joe Davanum Srinivas wrote: All, Sorry Jarek! Mea Culpa! Folks, We're pleased to let you know that we have a new committer in our midst. Jarek Gawor has been active on the Web Services integration for Geronimo for quite some time and has recently accepted an

[jira] Created: (GERONIMO-2997) jaxws-war test: axis2 no longer need the jaxb generated files

2007-03-20 Thread Lin Sun (JIRA)
jaxws-war test: axis2 no longer need the jaxb generated files -- Key: GERONIMO-2997 URL: https://issues.apache.org/jira/browse/GERONIMO-2997 Project: Geronimo Issue Type: Bug

[jira] Updated: (GERONIMO-2997) jaxws-war test: axis2 no longer need the jaxb generated files

2007-03-20 Thread Lin Sun (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-2997?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Lin Sun updated GERONIMO-2997: -- Attachment: G2997.patch jaxws-war test: axis2 no longer need the jaxb generated files

Re: [ANNOUNCE] Welcome Jarek Gawor as our newest committer

2007-03-20 Thread Christopher Blythe
Welcome and congrats Jarek!!! Chris On 3/20/07, Joe Bohn [EMAIL PROTECTED] wrote: Congratulations Jarek!!! Joe Davanum Srinivas wrote: All, Sorry Jarek! Mea Culpa! Folks, We're pleased to let you know that we have a new committer in our midst. Jarek Gawor has been active on the Web

Re: [ANNOUNCE] Welcome Jarek Gawor as our newest committer

2007-03-20 Thread Tim McConnell
Congratulations Jarek !! Well-deserved Thanks, Tim McConnell Davanum Srinivas wrote: All, Sorry Jarek! Mea Culpa! Folks, We're pleased to let you know that we have a new committer in our midst. Jarek Gawor has been active on the Web Services integration for Geronimo for quite some time

[jira] Commented: (GERONIMO-2818) In-Place deployment does not interpret Manifest Class-Path entries correctly in JAR files

2007-03-20 Thread Sachin Patel (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-2818?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12482419 ] Sachin Patel commented on GERONIMO-2818: I tried to reproduce this on 1.2 with your attached ears. With

[jira] Closed: (GERONIMO-2818) In-Place deployment does not interpret Manifest Class-Path entries correctly in JAR files

2007-03-20 Thread Sachin Patel (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-2818?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sachin Patel closed GERONIMO-2818. -- Resolution: Cannot Reproduce Closing this as this seems to work for me. Try to reproduce

[jira] Created: (GERONIMO-2998) Geronimo Axis2 Adding Fault Handling for WSDL Provided

2007-03-20 Thread Lasantha Ranaweera (JIRA)
Geronimo Axis2 Adding Fault Handling for WSDL Provided -- Key: GERONIMO-2998 URL: https://issues.apache.org/jira/browse/GERONIMO-2998 Project: Geronimo Issue Type: New Feature

[jira] Updated: (GERONIMO-2998) Geronimo Axis2 Adding Fault Handling for WSDL Provided

2007-03-20 Thread Lasantha Ranaweera (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-2998?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Lasantha Ranaweera updated GERONIMO-2998: - Attachment: GERONIMO-2898.patch More than adding fault handling capability to

[jira] Commented: (GERONIMO-2997) jaxws-war test: axis2 no longer need the jaxb generated files

2007-03-20 Thread Lasantha Ranaweera (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-2997?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12482427 ] Lasantha Ranaweera commented on GERONIMO-2997: -- I removed the JAXB file generation from main pom.xml

Re: [ANNOUNCE] Welcome Jarek Gawor as our newest committer

2007-03-20 Thread Christopher M. Cardona
Congratulations Jarek !! chris Davanum Srinivas wrote: All, Sorry Jarek! Mea Culpa! Folks, We're pleased to let you know that we have a new committer in our midst. Jarek Gawor has been active on the Web Services integration for Geronimo for quite some time and has recently accepted an

[jira] Assigned: (GERONIMO-2989) in place deployment failure

2007-03-20 Thread Sachin Patel (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-2989?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sachin Patel reassigned GERONIMO-2989: -- Assignee: Sachin Patel in place deployment failure ---

[jira] Closed: (GERONIMO-2989) in place deployment failure

2007-03-20 Thread Sachin Patel (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-2989?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sachin Patel closed GERONIMO-2989. -- Resolution: Fixed Fixed with revision#520407 in place deployment failure

[jira] Commented: (GERONIMO-2986) There might be prob with tomcat with optional web.xml, needs a testcase

2007-03-20 Thread Sachin Patel (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-2986?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12482430 ] Sachin Patel commented on GERONIMO-2986: Don't think there is an issue anymore with this after the fix

[jira] Updated: (GERONIMO-2986) Provide a testcase to test optional web.xml with WebServices.

2007-03-20 Thread Sachin Patel (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-2986?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sachin Patel updated GERONIMO-2986: --- Description: Need a test case using a jaxws-war file with no web.xml was: Optional

Differences between jetty6-jee5 and tomcat6-jee5 config.xml files?

2007-03-20 Thread Donald Woods
Just noticed 2 differences between the current jetty6-jee5 and tomcat6-jee5 config.xml files and wondered if this was intended? 1) jetty6-jee5 has load=false for the axis car, while tomcat6-jee5 doesn't 2) jetty6-jee5 include the dojo-jetty6 car, but tomcat6-jee5 doesn't include the

[jira] Created: (GERONIMO-2999) when issing .wsdl request, the content-type isn't set

2007-03-20 Thread Lin Sun (JIRA)
when issing .wsdl request, the content-type isn't set - Key: GERONIMO-2999 URL: https://issues.apache.org/jira/browse/GERONIMO-2999 Project: Geronimo Issue Type: Bug Security Level:

[jira] Updated: (GERONIMO-2999) when issuing .wsdl request, the content-type isn't set

2007-03-20 Thread Lin Sun (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-2999?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Lin Sun updated GERONIMO-2999: -- Summary: when issuing .wsdl request, the content-type isn't set (was: when issing .wsdl request,

Re: [test] Cannot generate report

2007-03-20 Thread Sean Qiu
it is more clear to me now. Thanks so much. 2007/3/20, Prasad Kashyap [EMAIL PROTECTED]: 'mvn test' runs the test lifecycle for child modules under that pom. So it depends on where in the project tree you run that command. That being said, the testsuite pom is configured to skip tests in the

[jira] Updated: (SM-884) New exchanges should have a lesser priority compared to older exchanges

2007-03-20 Thread Guillaume Nodet (JIRA)
[ https://issues.apache.org/activemq/browse/SM-884?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Guillaume Nodet updated SM-884: --- Summary: New exchanges should have a lesser priority compared to older exchanges (was: New

[jira] Commented: (GERONIMO-2999) when issuing .wsdl request, the content-type isn't set

2007-03-20 Thread Davanum Srinivas (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-2999?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12482436 ] Davanum Srinivas commented on GERONIMO-2999: Fixed for tomcat only in svn revision 520467 -- dims

[jira] Assigned: (SM-876) jmx.xml should use the jmx.url property

2007-03-20 Thread Guillaume Nodet (JIRA)
[ https://issues.apache.org/activemq/browse/SM-876?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Guillaume Nodet reassigned SM-876: -- Assignee: Thomas Termin jmx.xml should use the jmx.url property

[jira] Created: (SM-886) Upgrade to saxon 9.9

2007-03-20 Thread Guillaume Nodet (JIRA)
Upgrade to saxon 9.9 Key: SM-886 URL: https://issues.apache.org/activemq/browse/SM-886 Project: ServiceMix Issue Type: Improvement Components: servicemix-saxon Reporter: Guillaume Nodet

[jira] Created: (SM-887) The default value for the result property should be set back to 'dom'

2007-03-20 Thread Guillaume Nodet (JIRA)
The default value for the result property should be set back to 'dom' - Key: SM-887 URL: https://issues.apache.org/activemq/browse/SM-887 Project: ServiceMix Issue Type:

Re: [test] Cannot generate report

2007-03-20 Thread Sean Qiu
There still remains one thing puzzling me. IMHO, the test should keep pace with src code. For example, all the test should be passed when the src code and test code is within the same revision. But as you told me before, the testsuite for integrated testing must keep latest to make it work.I am

Web Services Release train for Geronimo 2.0

2007-03-20 Thread Davanum Srinivas
Team, Here's the list of projects/jars that we will/may need fresh releases of for our Web Services integration. Please chime in if i missed something. Direct dependencies of Geronimo: Axis 1.5 (with saal CXF 2.0 (or 2.1 if G2.0 gets delayed or 2.0 is not enough) Axis2 1.2 (or 1.3 if G2.0 gets

Re: Differences between jetty6-jee5 and tomcat6-jee5 config.xml files?

2007-03-20 Thread David Jencks
I have it fixed locally also...along with a bunch of whitespace changes and an attempt to hook up myfaces. Was hoping to check it in later today but am running into some jetty issues. Did you try hooking up myfaces? thanks david jencks On Mar 20, 2007, at 12:33 PM, Donald Woods wrote:

Re: Web Services Release train for Geronimo 2.0

2007-03-20 Thread Lin Sun
One tiny correction - Axis2 1.2 (or 1.3 if G2.0 gets delayed or 1.2 is not enough) Lin Davanum Srinivas wrote: Team, Here's the list of projects/jars that we will/may need fresh releases of for our Web Services integration. Please chime in if i missed something. Direct dependencies of

Re: Web Services Release train for Geronimo 2.0

2007-03-20 Thread Davanum Srinivas
Sorry :) On 3/20/07, Lin Sun [EMAIL PROTECTED] wrote: One tiny correction - Axis2 1.2 (or 1.3 if G2.0 gets delayed or 1.2 is not enough) Lin Davanum Srinivas wrote: Team, Here's the list of projects/jars that we will/may need fresh releases of for our Web Services integration. Please

[jira] Created: (GERONIMO-3000) Jetty integration needs default locale mappings and default mime-type mappings

2007-03-20 Thread David Jencks (JIRA)
Jetty integration needs default locale mappings and default mime-type mappings -- Key: GERONIMO-3000 URL: https://issues.apache.org/jira/browse/GERONIMO-3000 Project:

[jira] Created: (SM-888) In the Drool 3.1 component is not possible to specify a default target service

2007-03-20 Thread Andrea Zoppello (JIRA)
In the Drool 3.1 component is not possible to specify a default target service -- Key: SM-888 URL: https://issues.apache.org/activemq/browse/SM-888 Project: ServiceMix

Re: eip filter extension

2007-03-20 Thread Thomas TERMIN
Guillaume Nodet wrote: Yeah, it should work. Even if not embedded in servicemix, though I would prefer to avoid hard dependencies on internal classes. The other solution is to do it with reflection, as done in AsyncBaseLifeCycle#findExecutorFactory If you can try to hide this hideous cast

Re: [test] Cannot generate report

2007-03-20 Thread Prasad Kashyap
I'm sorry. I quite didn't understand your question. The tests in testsuite run against the functionalities in the Geronimo server. So you need to start the G server to tun these tests. When you check out M2, you will always get the latest src and tests and they will (should) always be in sync.

Re: Differences between jetty6-jee5 and tomcat6-jee5 config.xml files?

2007-03-20 Thread Paul McMahan
On 3/20/07, Donald Woods [EMAIL PROTECTED] wrote: Just noticed 2 differences between the current jetty6-jee5 and tomcat6-jee5 config.xml files and wondered if this was intended? 1) jetty6-jee5 has load=false for the axis car, while tomcat6-jee5 doesn't 2) jetty6-jee5 include the dojo-jetty6

[jira] Commented: (GERONIMO-2960) test for MyFaces 1.2 in Geronimo

2007-03-20 Thread Paul McMahan (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-2960?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12482465 ] Paul McMahan commented on GERONIMO-2960: adding injection-target to the env-entry in web.xml made the

Re: Differences between jetty6-jee5 and tomcat6-jee5 config.xml files?

2007-03-20 Thread Donald Woods
But if we add it to the tomcat6-jee5 config.xml, wouldn't that allow a user to set load=false on it if they also disabled the webconsole? Also, shouldn't we list all installed configurations by default, so users can better understand which ones are being provided by the assembly, like users

[jira] Assigned: (GERONIMO-1076) Deployment of an unpacked EAR defining an unpacked nested module does not work

2007-03-20 Thread Sachin Patel (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-1076?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sachin Patel reassigned GERONIMO-1076: -- Assignee: Sachin Patel (was: Gianny Damour) Deployment of an unpacked EAR

[jira] Closed: (GERONIMO-1076) Deployment of an unpacked EAR defining an unpacked nested module does not work

2007-03-20 Thread Sachin Patel (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-1076?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sachin Patel closed GERONIMO-1076. -- Resolution: Fixed Fix Version/s: (was: Wish List) 2.0

[jira] Closed: (GERONIMO-1454) Deploy tool/API running on 1.5 jre fails against Geronimo 1.0 running in 1.4

2007-03-20 Thread Sachin Patel (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-1454?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sachin Patel closed GERONIMO-1454. -- Resolution: Fixed Fix Version/s: (was: Verification Required)

webservice axis2: jaxws-tools from sun

2007-03-20 Thread Lin Sun
I tried to use the jaxws-tools from sun last week (we decided to use this to generate wsdl file when the user doesn't provide a wsdl file) and was able to get the wsgen tool from jaxws-tools-2.1.jar to generate the wsdl file based on SEI. However, this jar requires a newer version of jaxb

[jira] Created: (SM-889) Add possibility to rename files after FTP upload

2007-03-20 Thread Gert Vanthienen (JIRA)
Add possibility to rename files after FTP upload Key: SM-889 URL: https://issues.apache.org/activemq/browse/SM-889 Project: ServiceMix Issue Type: Improvement Components:

[jira] Updated: (SM-889) Add possibility to rename files after FTP upload

2007-03-20 Thread Gert Vanthienen (JIRA)
[ https://issues.apache.org/activemq/browse/SM-889?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gert Vanthienen updated SM-889: --- Attachment: SM-889.patch This patch allows users to specify an attribute uploadSuffix=... on the

[jira] Commented: (GERONIMO-2995) Weed out backport-util-concurrent usage for server/trunk

2007-03-20 Thread Jason Dillon (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-2995?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12482516 ] Jason Dillon commented on GERONIMO-2995: Ah, looks like AMQ isn't happy with backport 3.0, so we *have*

Anybody successful with ServiceMix under LogicBlaze Fuse 1.3

2007-03-20 Thread Randy H
I've been trying to get the simple ServiceMix ServiceEngine example running that's illustrated in the the LogicBlaze FUSE Eclipse IDE tutorial (version 1.3). I can't figure out how to deploy a ServiceUnit to the server or get a simple client consumer to communicate with the service (using

[jira] Closed: (GERONIMO-1594) deployment of a simple (only one jsp) web project failed

2007-03-20 Thread Sachin Patel (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-1594?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sachin Patel closed GERONIMO-1594. -- Resolution: Fixed The Geronimo Eclipse Plugin works with Eclipse being launched with either

[jira] Closed: (GERONIMO-2638) Improve ModuleBuilder and ConfigurationBuilder interfaces to replace use of JarFile

2007-03-20 Thread Sachin Patel (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-2638?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sachin Patel closed GERONIMO-2638. -- Resolution: Later After reflecting on this solution, it does not fit in nicely with the

Memory control

2007-03-20 Thread Endrigo Antonini
Hi, I'm new to the list, and for the Service Mix too. I have to maintenance a program that use Service Mix to communicate, but when I profile it (Java program), it had showed me that the problem was in Service Mix. My problem is that the Service Mix, it isn't clearing the memory, it read

Re: Differences between jetty6-jee5 and tomcat6-jee5 config.xml files?

2007-03-20 Thread Paul McMahan
On 3/20/07, Donald Woods [EMAIL PROTECTED] wrote: But if we add it to the tomcat6-jee5 config.xml, wouldn't that allow a user to set load=false on it if they also disabled the webconsole? Currently if a user disables webconsole in the tomcat assembly then the dojo module will no longer start

Re: org.apache.geronimo.system.main.Daemon and commons-cli

2007-03-20 Thread Jason Dillon
On Mar 20, 2007, at 4:42 AM, Gianny Damour wrote: In the meantime... can anyone tell me why we are booting up a kernel before cli parsing? From what has congealed in my head so far... this is for access to the repository for classloading of bootstrap classes. Is there any other reason why

Re: Where is the src for org.apache.geronimo.gjndi.GlobalContextGBean

2007-03-20 Thread Jason Dillon
Doh... aight... my search skills must have been on crack the other day... cause I couldn't find this ;-) --jason On Mar 20, 2007, at 5:14 AM, David Jencks wrote: geronimo-naming jar I think you'll find you need to update xbean-naming. thanks david jencks On Mar 20, 2007, at 4:03 AM,

Re: svn commit: r520132 - in /geronimo/server/trunk: ./ applications/console/geronimo-console-standard/src/main/resources/ assemblies/geronimo-boilerplate-jee5/ configs/activemq/ maven-plugins/car-mav

2007-03-20 Thread Jason Dillon
If there is an issue, I would rather look into fixing the cause not pollute the name. Why exactly would the name of this artifact cause path issues for windows? --jason On Mar 20, 2007, at 5:20 AM, David Jencks wrote: We might need to watch out for windows path length problems as a

Re: svn commit: r520132 - in /geronimo/server/trunk: ./ applications/console/geronimo-console-standard/src/main/resources/ assemblies/geronimo-boilerplate-jee5/ configs/activemq/ maven-plugins/car-mav

2007-03-20 Thread Paul McMahan
It's been a while but as I recall the module name was shortened because after being deployed into the repository the path name to some of its resources exceeded the maximum path length on windows. Best wishes, Paul On 3/20/07, Jason Dillon [EMAIL PROTECTED] wrote: If there is an issue, I would

Re: svn commit: r520132 - in /geronimo/server/trunk: ./ applications/console/geronimo-console-standard/src/main/resources/ assemblies/geronimo-boilerplate-jee5/ configs/activemq/ maven-plugins/car-mav

2007-03-20 Thread Jason Dillon
Do you know specifically when this happens? Is this because of including it in the car, and since cars are unpacked in the repo that it makes a horribly long path? --jason On Mar 20, 2007, at 2:17 PM, Paul McMahan wrote: It's been a while but as I recall the module name was shortened

Re: What is a plugin? geronimo or maven?

2007-03-20 Thread Jason Dillon
On Mar 20, 2007, at 5:39 AM, Gianny Damour wrote: Also, I believe that losing the geronimo- prefixes contributes to the potential confusion. How exactly? Let's illustrate: When we loose the modules part and keep the geronimo- prefix in the artifactId, a maven repo looks like this from the

Re: What is a plugin? geronimo or maven?

2007-03-20 Thread Jason Dillon
On Mar 20, 2007, at 6:00 AM, David Jencks wrote: I don't think we've been specific enough about what goes where for jason's proposal to make sense yet, as gianni points out. I'm sure we don't want all 100K artifacts we produce all under o.a.g or o.a.g.server I was assuming that

Re: What is a plugin? geronimo or maven?

2007-03-20 Thread Jason Dillon
On Mar 20, 2007, at 6:53 AM, Anita Kulshreshtha wrote: I'm sure we don't want all 100K artifacts we produce all under o.a.g or o.a.g.server I do not see why testsupport/* should clutter the directory that will contain modules and configs. We could have testsupport/* as: o.a.g.testsupport

Re: What is a plugin? geronimo or maven?

2007-03-20 Thread Jason Dillon
On Mar 20, 2007, at 7:39 AM, Prasad Kashyap wrote: On 3/20/07, David Jencks [EMAIL PROTECTED] wrote: I don't think we've been specific enough about what goes where for jason's proposal to make sense yet, as gianni points out. I'm sure we don't want all 100K artifacts we produce all under o.a.g

Re: svn commit: r520610 - /geronimo/server/trunk/modules/geronimo-axis2/pom.xml

2007-03-20 Thread Jason Dillon
Why? --jason On Mar 20, 2007, at 2:41 PM, [EMAIL PROTECTED] wrote: Author: gawor Date: Tue Mar 20 14:41:51 2007 New Revision: 520610 URL: http://svn.apache.org/viewvc?view=revrev=520610 Log: a hack to disable axis2 tests Modified: geronimo/server/trunk/modules/geronimo-axis2/pom.xml

Re: svn commit: r520132 - in /geronimo/server/trunk: ./ applications/console/geronimo-console-standard/src/main/resources/ assemblies/geronimo-boilerplate-jee5/ configs/activemq/ maven-plugins/car-mav

2007-03-20 Thread David Jencks
On Mar 20, 2007, at 5:24 PM, Jason Dillon wrote: Do you know specifically when this happens? Is this because of including it in the car, and since cars are unpacked in the repo that it makes a horribly long path? dunno when, but that's the problem david jencks --jason On Mar 20,

Re: svn commit: r520132 - in /geronimo/server/trunk: ./ applications/console/geronimo-console-standard/src/main/resources/ assemblies/geronimo-boilerplate-jee5/ configs/activemq/ maven-plugins/car-mav

2007-03-20 Thread Paul McMahan
yes -- due to cars being unpacked in the repo. I think that the assembly would build ok but when G tried to start the component something threw a FileNotFoundException due to the path length restriction in windows. Best wishes, Paul On 3/20/07, Jason Dillon [EMAIL PROTECTED] wrote: Do you

Re: svn commit: r520551 - in /geronimo/server/trunk/modules: geronimo-axis2-builder/ geronimo-axis2/ geronimo-axis2/src/main/generated/ geronimo-axis2/src/main/java/org/apache/geronimo/axis2/ geronimo

2007-03-20 Thread Jason Dillon
You removed the src/main/generated bits, but you did not remove the pom configuration which hooked this up. Also, the Axis2HandlerResolverTest is currently broken as its trying to reference org.apache.axis2.jaxws.javaee.HandlerChainsType --jason On Mar 20, 2007, at 1:15 PM, [EMAIL

Re: svn commit: r520610 - /geronimo/server/trunk/modules/geronimo-axis2/pom.xml

2007-03-20 Thread David Jencks
I think dims committed something to switch from jaxb to xmlbeans and didn't check that the tests passed seconds before jumping on a plane. thanks david jencks On Mar 20, 2007, at 5:58 PM, Jason Dillon wrote: Why? --jason On Mar 20, 2007, at 2:41 PM, [EMAIL PROTECTED] wrote: Author:

Re: svn commit: r520610 - /geronimo/server/trunk/modules/geronimo-axis2/pom.xml

2007-03-20 Thread Jason Dillon
IMO, this is *not* a suitable hack. I've updated the class to compile and disabled the test. Though I could have just excluded the src from being compiled too. In the future... please don't add any _hacks_ like this. And... your indent is still off. I would really appreciate it if you

Re: svn commit: r520610 - /geronimo/server/trunk/modules/geronimo-axis2/pom.xml

2007-03-20 Thread Jason Dillon
Yup... I noticed that... I've applied a better fix... Dims will need to fix this when he is online again though. --jason On Mar 20, 2007, at 3:23 PM, David Jencks wrote: I think dims committed something to switch from jaxb to xmlbeans and didn't check that the tests passed seconds before

Re: svn commit: r520132 - in /geronimo/server/trunk: ./ applications/console/geronimo-console-standard/src/main/resources/ assemblies/geronimo-boilerplate-jee5/ configs/activemq/ maven-plugins/car-mav

2007-03-20 Thread Jason Dillon
I think is high time that this problem was just fixed... we should not have cars unpacked in the repo. If an app needs its car unpacked, then it should be done on the fly in a temporary directory with a *much* shorter name. --jason On Mar 20, 2007, at 3:20 PM, Paul McMahan wrote: yes

Re: What is a plugin? geronimo or maven?

2007-03-20 Thread Jason Dillon
On Mar 20, 2007, at 2:57 PM, Jason Dillon wrote: On Mar 20, 2007, at 7:39 AM, Prasad Kashyap wrote: On 3/20/07, David Jencks [EMAIL PROTECTED] wrote: I don't think we've been specific enough about what goes where for jason's proposal to make sense yet, as gianni points out. I'm sure we don't

Empty .java file: geronimo-axis2/src/test/java/org/apache/geronimo/axis2/testdata/HelloWorld.java

2007-03-20 Thread Jason Dillon
Why is this here? --jason

  1   2   >