[jira] Closed: (GERONIMO-5572) fail to show DOJO script in welcome page of AdminConsole , when use an external Apache HTTP server through AdminConsole

2010-09-08 Thread Zhen Zhang (JIRA)

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

Zhen Zhang closed GERONIMO-5572.


Resolution: Not A Problem

> fail to  show DOJO script in welcome page of AdminConsole , when use  an 
> external Apache HTTP server through AdminConsole
> -
>
> Key: GERONIMO-5572
> URL: https://issues.apache.org/jira/browse/GERONIMO-5572
> Project: Geronimo
>  Issue Type: Bug
>  Security Level: public(Regular issues) 
>  Components: console
>Affects Versions: 3.0
> Environment: OS:Windows XP SP3
> Java Version: 1.6.0_20
> Server:Geronimo 3.0-SNAPSHOT
>Reporter: Zhen Zhang
>Priority: Minor
> Fix For: 3.0
>
>
> setps to recur:
> 1. Install Apache HTTP from http://httpd.apache.org/download.cgi
> 2. Start server
> 3. Open Apache mod_jk Configuration portlet by clicking Server --> Apache 
> HTTP in Admin Console
> 4. Follow the wizard to config Admin Console to Apache HTTP
> (when you follow the wizard  step 4: configure apache , add the following 
> info into  [Apache Server Home]/conf/httpd.conf
> 
> JkWorkersFile 
> D:\server\geronimo-tomcat7-javaee6-web-3.0-SNAPSHOT\var\config\workers.properties
> JkLogFile 
> D:\server\geronimo-tomcat7-javaee6-web-3.0-SNAPSHOT\var\log\apache_mod_jk.log
> JkLogLevel error
>
> JkMount //* geronimo_ajp13
> JkMount /console/* geronimo_ajp13
> 
> ) instead of the info that the wizard shows
> 5. Access Admin Console via : http://localhost/console/
> you will find the Admin Console only show a small part compared to access 
> Admin Console via http://localhost:8080/console/
> Reference:
> 1. mod_jk howto: 
> http://tomcat.apache.org/connectors-doc/webserver_howto/apache.html
> 2. Download binaries of mod_jk: 
> http://www.apache.org/dist/tomcat/tomcat-connectors/jk/binaries/

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



[jira] Updated: (GERONIMO-5581) Add test case for programmatic access control on servlet

2010-09-08 Thread Han Hong Fang (JIRA)

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

Han Hong Fang updated GERONIMO-5581:


Attachment: GERONIMO-5581.patch

Patch is ready with following test cases.

1. Test @ServletSecurity when servlet is added using ServletCotext.addServet ()

   - servlet is added via servlet instance which is created using 
ServletContext.createServlet()
  - servlet is added via servlet instance which is NOT created using 
ServletContext.createServlet() [...@servletsecurity will not take effect in 
this case]
 - servlet is added 

2. Test setServletSecurity of ServletRegistration.Dynamic
  - set servletSecurity on URL which is already configured in web.xml  

  - set servletSecurity on URL which is NOT configured in web.xml
  -  add URL mapping after servletSecurity 

Please help to review, thanks!

BTW, the test case will success only when 
https://issues.apache.org/jira/browse/GERONIMO-5577 is implemented.

> Add test case for programmatic access control on servlet
> 
>
> Key: GERONIMO-5581
> URL: https://issues.apache.org/jira/browse/GERONIMO-5581
> Project: Geronimo
>  Issue Type: Test
>  Security Level: public(Regular issues) 
>  Components: testsuite
>Affects Versions: 3.0
>Reporter: Han Hong Fang
>Assignee: Han Hong Fang
>Priority: Minor
> Attachments: GERONIMO-5581.patch
>
>
> Servlet 3.0 provides annotations and apis provided to programmatically 
> configure the security constraints enforced by the Servlet Container.  Need 
> test case for this feature.

-- 
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-5581) Add test case for programmatic access control on servlet

2010-09-08 Thread Han Hong Fang (JIRA)

[ 
https://issues.apache.org/jira/browse/GERONIMO-5581?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12907115#action_12907115
 ] 

Han Hong Fang edited comment on GERONIMO-5581 at 9/8/10 3:05 AM:
-

Patch is ready with following test cases.

1. Test @ServletSecurity when servlet is added using ServletCotext.addServet ()

   - servlet is added via servlet instance which is created using 
ServletContext.createServlet()
  - servlet is added via servlet instance which is NOT created using 
ServletContext.createServlet() [...@servletsecurity will not take effect in 
this case]
 - servlet is added 

2. Test setServletSecurity of ServletRegistration.Dynamic
  - set servletSecurity on URL which is already configured in web.xml  

  - set servletSecurity on URL which is NOT configured in web.xml
  -  add URL mapping after servletSecurity 

Please help to review, thanks!

BTW, the test case will succeed only when 
https://issues.apache.org/jira/browse/GERONIMO-5577 is implemented.

  was (Author: hanhongfang):
Patch is ready with following test cases.

1. Test @ServletSecurity when servlet is added using ServletCotext.addServet ()

   - servlet is added via servlet instance which is created using 
ServletContext.createServlet()
  - servlet is added via servlet instance which is NOT created using 
ServletContext.createServlet() [...@servletsecurity will not take effect in 
this case]
 - servlet is added 

2. Test setServletSecurity of ServletRegistration.Dynamic
  - set servletSecurity on URL which is already configured in web.xml  

  - set servletSecurity on URL which is NOT configured in web.xml
  -  add URL mapping after servletSecurity 

Please help to review, thanks!

BTW, the test case will success only when 
https://issues.apache.org/jira/browse/GERONIMO-5577 is implemented.
  
> Add test case for programmatic access control on servlet
> 
>
> Key: GERONIMO-5581
> URL: https://issues.apache.org/jira/browse/GERONIMO-5581
> Project: Geronimo
>  Issue Type: Test
>  Security Level: public(Regular issues) 
>  Components: testsuite
>Affects Versions: 3.0
>Reporter: Han Hong Fang
>Assignee: Han Hong Fang
>Priority: Minor
> Attachments: GERONIMO-5581.patch
>
>
> Servlet 3.0 provides annotations and apis provided to programmatically 
> configure the security constraints enforced by the Servlet Container.  Need 
> test case for this feature.

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



[jira] Commented: (GERONIMO-5577) Support ServeltSecurity annotation when the servlets are added by ServletContext.addServlet methods

2010-09-08 Thread Han Hong Fang (JIRA)

[ 
https://issues.apache.org/jira/browse/GERONIMO-5577?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12907116#action_12907116
 ] 

Han Hong Fang commented on GERONIMO-5577:
-

Automatic test case is provided to test the implementation: 
https://issues.apache.org/jira/browse/GERONIMO-5581

> Support ServeltSecurity annotation when the servlets are added by 
> ServletContext.addServlet methods
> ---
>
> Key: GERONIMO-5577
> URL: https://issues.apache.org/jira/browse/GERONIMO-5577
> Project: Geronimo
>  Issue Type: New Feature
>  Security Level: public(Regular issues) 
>  Components: web
>Affects Versions: 3.0
>Reporter: Han Hong Fang
>Assignee: Han Hong Fang
>
> Servlet 3.0 spec has following statements in chapter 13.4.1.
> The @ServletSecurity annotation provides an alternative mechanism for
> defining access control constraints equivalent to those that could otherwise 
> have
> been expressed declaratively via security-constraint elements in the portable
> deployment descriptor or programmatically via the setServletSecurity method
> of the ServletRegistration interface. Servlet containers MUST support the use
> of the @ServletSecurity annotation on classes (and subclasses thereof) that
> implement the javax.servlet.Servlet interface.

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



[jira] Updated: (GERONIMO-5569) fail to log in with the encoding options based on other properties file in login modular

2010-09-08 Thread Zhen Zhang (JIRA)

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

Zhen Zhang updated GERONIMO-5569:
-

Summary: fail to log in with the encoding options based on other properties 
file in login modular  (was: fail to log in with the encoding options of 
properties file in login modular)

> fail to log in with the encoding options based on other properties file in 
> login modular
> 
>
> Key: GERONIMO-5569
> URL: https://issues.apache.org/jira/browse/GERONIMO-5569
> Project: Geronimo
>  Issue Type: Bug
>  Security Level: public(Regular issues) 
>  Components: deployment, security
>Affects Versions: 3.0
> Environment:  
> « Hide
> OS:Windows XP SP3
> Java Version: 1.6.0_20
> Server:Geronimo 3.0-SNAPSHOT
>Reporter: Zhen Zhang
>Priority: Minor
> Fix For: 3.0
>
> Attachments: 
> VerifyDigestAndEncodingOptionsOfPropertiesFileLoginModule.zip
>
>
> setps to recur:
> 1.Start the server
> 2.Copy users-sha1-hex.properties users-md5-base64.properties to 
> /var/security directory
> 3.Deploy the plan.  Note: This does not require an archive.For v2.1 or later, 
> using this plan prop-md5-base64_v2.1.xml instead.
> 4.Deploy realm-md5-test-webapp.war using realm-md5-test-plan.xml.
> 5.Open a browser window and access 
> http://localhost:8080/prop-md5-test/secure/secure.jsp using UID/PWD: 
> system/manager
> 6.Deploy the plan prop-sha1-hex_v1.0.xml  Note: This does not require an 
> archive.For v2.1 or later, using this plan prop-sha1-hex_v2.1.xml instead.
> 7.Deploy realm-sha1-test-webapp.war using realm-sha1-test-plan.xml
> 8.Open a new browser window and access 
> http://localhost:8080/prop-sha1-test/secure/secure.jsp using UID/PWD: 
> system/manager
> when  you execute step4 and step7, you will find this log info:
> 2010-09-02 15:58:25,109 INFO  [RedirectByHashFilter] Hash value for 
> page:/portal/2-1/Applications/Deployer/__acplugin0x2Deployment!-2135677113|0/__pmplugin0x2Deployment!-2135677113|0_view/__wsplugin0x2Deployment!-2135677113|0_normal
>  is:-2346983809162886094
> 2010-09-02 15:58:25,109 INFO  [RedirectByHashFilter] no redirect 
> for:http://localhost:8080/console/portal/2-1/Applications/Deployer/__acplugin0x2Deployment!-2135677113%7C0/__pmplugin0x2Deployment!-2135677113%7C0_view/__wsplugin0x2Deployment!-2135677113%7C0_normal
> 2010-09-02 15:58:27,578 INFO  [RedirectByHashFilter] Hash value for 
> page:/portal/2-1/Applications/Deployer/__pmplugin0x2Deployment!-2135677113|0_view/__wsplugin0x2Deployment!-2135677113|0_normal
>  is:861610605766878
> 2010-09-02 15:58:27,578 INFO  [RedirectByHashFilter] no redirect 
> for:http://localhost:8080/console/portal/2-1/Applications/Deployer/__pmplugin0x2Deployment!-2135677113%7C0_view/__wsplugin0x2Deployment!-2135677113%7C0_normal
> 2010-09-02 15:58:27,578 INFO  [SupportedModesServiceImpl] Portlet mode 'edit' 
> not found for portletId: 'plugin.Deployment!-2135677113|0'
> 2010-09-02 15:58:36,843 WARN  [Parameters] Parameters: Invalid chunk '' 
> ignored.
> 2010-09-02 15:58:36,843 INFO  [RedirectByHashFilter] Hash value for 
> page:/portal/2-1/Applications/Deployer/__acplugin0x2Deployment!-2135677113|0/__pmplugin0x2Deployment!-2135677113|0_view/__wsplugin0x2Deployment!-2135677113|0_normal
>  is:-2346983809162886094
> 2010-09-02 15:58:36,843 INFO  [RedirectByHashFilter] no redirect 
> for:http://localhost:8080/console/portal/2-1/Applications/Deployer/__acplugin0x2Deployment!-2135677113%7C0/__pmplugin0x2Deployment!-2135677113%7C0_view/__wsplugin0x2Deployment!-2135677113%7C0_normal
> 2010-09-02 15:58:37,515 INFO  [config] Extracting jar: 
> D:\server\geronimo-tomcat7-javaee6-web-3.0-SNAPSHOT\var\temp\geronimo-deployer949419437165653088.tmpdir\realm-md5-test-webapp.war
> 2010-09-02 15:58:37,531 INFO  [config] Extracted path: 
> D:\server\geronimo-tomcat7-javaee6-web-3.0-SNAPSHOT\var\temp\geronimo-deployer949419437165653088.tmpdir\realm-md5-test-webapp
> 2010-09-02 15:58:49,218 ERROR [DeploymentPortlet] 
> Unable to resolve reference "ConfigurationFactory"
> in gbean 
> tests/prop-md5-test/1.0/war?J2EEApplication=null,j2eeType=WebModule,name=tests/prop-md5-test/1.0/war
> to a gbean matching the pattern 
> [?name=prop-md5-base64#org.apache.geronimo.security.jaas.ConfigurationFactory]
> due to: No matches for referencePatterns: 
> [?name=prop-md5-base64#org.apache.geronimo.security.jaas.ConfigurationFactory]
> org.apache.geronimo.common.DeploymentException: Unable to resolve reference 
> "ConfigurationFactory"
> in gbean 
> tests/prop-md5-test/1.0/war?J2EEApplication=null,j2eeType=WebModule,name=tests/prop-md5-test/1.0/war
> to a gbean matching the pattern 
> [?name=prop-md5-base64#org.apache.geronimo.security.jaas.ConfigurationFactory]
> 

[jira] Updated: (GERONIMO-5569) fail to log in with the encoding options based on another properties file in login modular

2010-09-08 Thread Zhen Zhang (JIRA)

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

Zhen Zhang updated GERONIMO-5569:
-

Summary: fail to log in with the encoding options based on another 
properties file in login modular  (was: fail to log in with the encoding 
options based on other properties file in login modular)

> fail to log in with the encoding options based on another properties file in 
> login modular
> --
>
> Key: GERONIMO-5569
> URL: https://issues.apache.org/jira/browse/GERONIMO-5569
> Project: Geronimo
>  Issue Type: Bug
>  Security Level: public(Regular issues) 
>  Components: deployment, security
>Affects Versions: 3.0
> Environment:  
> « Hide
> OS:Windows XP SP3
> Java Version: 1.6.0_20
> Server:Geronimo 3.0-SNAPSHOT
>Reporter: Zhen Zhang
>Priority: Minor
> Fix For: 3.0
>
> Attachments: 
> VerifyDigestAndEncodingOptionsOfPropertiesFileLoginModule.zip
>
>
> setps to recur:
> 1.Start the server
> 2.Copy users-sha1-hex.properties users-md5-base64.properties to 
> /var/security directory
> 3.Deploy the plan.  Note: This does not require an archive.For v2.1 or later, 
> using this plan prop-md5-base64_v2.1.xml instead.
> 4.Deploy realm-md5-test-webapp.war using realm-md5-test-plan.xml.
> 5.Open a browser window and access 
> http://localhost:8080/prop-md5-test/secure/secure.jsp using UID/PWD: 
> system/manager
> 6.Deploy the plan prop-sha1-hex_v1.0.xml  Note: This does not require an 
> archive.For v2.1 or later, using this plan prop-sha1-hex_v2.1.xml instead.
> 7.Deploy realm-sha1-test-webapp.war using realm-sha1-test-plan.xml
> 8.Open a new browser window and access 
> http://localhost:8080/prop-sha1-test/secure/secure.jsp using UID/PWD: 
> system/manager
> when  you execute step4 and step7, you will find this log info:
> 2010-09-02 15:58:25,109 INFO  [RedirectByHashFilter] Hash value for 
> page:/portal/2-1/Applications/Deployer/__acplugin0x2Deployment!-2135677113|0/__pmplugin0x2Deployment!-2135677113|0_view/__wsplugin0x2Deployment!-2135677113|0_normal
>  is:-2346983809162886094
> 2010-09-02 15:58:25,109 INFO  [RedirectByHashFilter] no redirect 
> for:http://localhost:8080/console/portal/2-1/Applications/Deployer/__acplugin0x2Deployment!-2135677113%7C0/__pmplugin0x2Deployment!-2135677113%7C0_view/__wsplugin0x2Deployment!-2135677113%7C0_normal
> 2010-09-02 15:58:27,578 INFO  [RedirectByHashFilter] Hash value for 
> page:/portal/2-1/Applications/Deployer/__pmplugin0x2Deployment!-2135677113|0_view/__wsplugin0x2Deployment!-2135677113|0_normal
>  is:861610605766878
> 2010-09-02 15:58:27,578 INFO  [RedirectByHashFilter] no redirect 
> for:http://localhost:8080/console/portal/2-1/Applications/Deployer/__pmplugin0x2Deployment!-2135677113%7C0_view/__wsplugin0x2Deployment!-2135677113%7C0_normal
> 2010-09-02 15:58:27,578 INFO  [SupportedModesServiceImpl] Portlet mode 'edit' 
> not found for portletId: 'plugin.Deployment!-2135677113|0'
> 2010-09-02 15:58:36,843 WARN  [Parameters] Parameters: Invalid chunk '' 
> ignored.
> 2010-09-02 15:58:36,843 INFO  [RedirectByHashFilter] Hash value for 
> page:/portal/2-1/Applications/Deployer/__acplugin0x2Deployment!-2135677113|0/__pmplugin0x2Deployment!-2135677113|0_view/__wsplugin0x2Deployment!-2135677113|0_normal
>  is:-2346983809162886094
> 2010-09-02 15:58:36,843 INFO  [RedirectByHashFilter] no redirect 
> for:http://localhost:8080/console/portal/2-1/Applications/Deployer/__acplugin0x2Deployment!-2135677113%7C0/__pmplugin0x2Deployment!-2135677113%7C0_view/__wsplugin0x2Deployment!-2135677113%7C0_normal
> 2010-09-02 15:58:37,515 INFO  [config] Extracting jar: 
> D:\server\geronimo-tomcat7-javaee6-web-3.0-SNAPSHOT\var\temp\geronimo-deployer949419437165653088.tmpdir\realm-md5-test-webapp.war
> 2010-09-02 15:58:37,531 INFO  [config] Extracted path: 
> D:\server\geronimo-tomcat7-javaee6-web-3.0-SNAPSHOT\var\temp\geronimo-deployer949419437165653088.tmpdir\realm-md5-test-webapp
> 2010-09-02 15:58:49,218 ERROR [DeploymentPortlet] 
> Unable to resolve reference "ConfigurationFactory"
> in gbean 
> tests/prop-md5-test/1.0/war?J2EEApplication=null,j2eeType=WebModule,name=tests/prop-md5-test/1.0/war
> to a gbean matching the pattern 
> [?name=prop-md5-base64#org.apache.geronimo.security.jaas.ConfigurationFactory]
> due to: No matches for referencePatterns: 
> [?name=prop-md5-base64#org.apache.geronimo.security.jaas.ConfigurationFactory]
> org.apache.geronimo.common.DeploymentException: Unable to resolve reference 
> "ConfigurationFactory"
> in gbean 
> tests/prop-md5-test/1.0/war?J2EEApplication=null,j2eeType=WebModule,name=tests/prop-md5-test/1.0/war
> to a gbean matching the pattern 
> [?name=prop-md5-base64#org.apache.geronimo.security.jaas.Config

[jira] Updated: (GERONIMO-5577) Support ServeltSecurity annotation when the servlets are added by ServletContext.addServlet methods

2010-09-08 Thread Han Hong Fang (JIRA)

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

Han Hong Fang updated GERONIMO-5577:


Attachment: GERONIMO-5577.patch

Highlight some important statements in the spec for this topic.

- setServletSecurity of ServletRegistation.Dynamic:  this method applies the 
security constraint to all mappings added to this ServletRegistration up until 
the point that the ServletContext from which it was obtained has been 
initialized. 

- The @ServletSecurity annotation is not applied to the url-patterns of a 
ServletRegistration created using the addServlet(String, Servlet) method of the 
ServletContext interface, unless the Servlet was constructed by the 
createServlet method of the ServletContext interface.

- The @ServletSecurity annoation applies to the url-patterns of a 
ServletRegistration created using the addServlet(String, String) and 
addServlet(String, Class) method of the ServletContext interface

- Security constraints on URLs has following priority from high to low: 
web.xml, ServletRegistration.Dynamic.setServletSecurity(), @ServletSecurity


BTW, the patch is for tomcat only. For jetty it is a todo item.

Please help to review. Thanks!



> Support ServeltSecurity annotation when the servlets are added by 
> ServletContext.addServlet methods
> ---
>
> Key: GERONIMO-5577
> URL: https://issues.apache.org/jira/browse/GERONIMO-5577
> Project: Geronimo
>  Issue Type: New Feature
>  Security Level: public(Regular issues) 
>  Components: web
>Affects Versions: 3.0
>Reporter: Han Hong Fang
>Assignee: Han Hong Fang
> Attachments: GERONIMO-5577.patch
>
>
> Servlet 3.0 spec has following statements in chapter 13.4.1.
> The @ServletSecurity annotation provides an alternative mechanism for
> defining access control constraints equivalent to those that could otherwise 
> have
> been expressed declaratively via security-constraint elements in the portable
> deployment descriptor or programmatically via the setServletSecurity method
> of the ServletRegistration interface. Servlet containers MUST support the use
> of the @ServletSecurity annotation on classes (and subclasses thereof) that
> implement the javax.servlet.Servlet interface.

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



[jira] Created: (GERONIMO-5582) No Web Access URL Displayed next to applications after depploy an EBA

2010-09-08 Thread viola.lu (JIRA)
No Web Access URL Displayed next to applications after depploy an EBA
-

 Key: GERONIMO-5582
 URL: https://issues.apache.org/jira/browse/GERONIMO-5582
 Project: Geronimo
  Issue Type: Bug
  Security Level: public (Regular issues)
  Components: console
Affects Versions: 3.0
 Environment: OS: WinXp
JDK: 1.6.0_21

Reporter: viola.lu
 Fix For: 3.0


1.Deploy Aries Sample JPA EBA in testsuite/Aries-Testsuite/JPA or blog sample 
org.apache.aries.samples.blog.jdbc.eba-0.2-incubating-SNAPSHOT.eba from Aries 
source code
2.It's successfully deployed, but no Access URL is display next to application, 
have to open web jar file, open its manifest file, getting Web-ContextPath: 
/blog, and then 
access this application:http://localhost:8080/blog/ViewBlog or 
http://localhost:8080/jpa



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



[BUILD] trunk: Failed for Revision: 993635

2010-09-08 Thread gawor
Geronimo Revision: 993635 built with tests included
 
See the full build-0300.log file at 
http://people.apache.org/builds/geronimo/server/binaries/trunk/20100908/build-0300.log
 
 
See the unit test reports at 
http://people.apache.org/builds/geronimo/server/binaries/trunk/20100908/unit-test-reports
 
Downloading: 
http://nexus.openqa.org/content/repositories/releases/org/apache/bval/bval-parent/0.2-incubating/bval-parent-0.2-incubating.pom
[INFO] Unable to find resource 'org.apache.bval:bval-parent:pom:0.2-incubating' 
in repository openqa-releases 
(http://nexus.openqa.org/content/repositories/releases)
Downloading: 
http://maven.rtp.raleigh.ibm.com/nexus-proxy//org/apache/bval/bval-parent/0.2-incubating/bval-parent-0.2-incubating.pom
24K downloaded  (bval-parent-0.2-incubating.pom)
Downloading: 
file:///home/geronimo/.m2/jtidy.repository/org/apache/bval/org.apache.bval.bundle/0.2-incubating/org.apache.bval.bundle-0.2-incubating.jar
[INFO] Unable to find resource 
'org.apache.bval:org.apache.bval.bundle:jar:0.2-incubating' in repository local 
(file:///home/geronimo/.m2/jtidy.repository)
Downloading: 
http://oss.sonatype.org/content/repositories/jetty//org/apache/bval/org.apache.bval.bundle/0.2-incubating/org.apache.bval.bundle-0.2-incubating.jar
Downloading: 
file:///home/geronimo/.m2/jtidy.repository/commons-beanutils/commons-beanutils/1.8.3/commons-beanutils-1.8.3.jar
[INFO] Unable to find resource 'commons-beanutils:commons-beanutils:jar:1.8.3' 
in repository local (file:///home/geronimo/.m2/jtidy.repository)
Downloading: 
http://oss.sonatype.org/content/repositories/jetty//commons-beanutils/commons-beanutils/1.8.3/commons-beanutils-1.8.3.jar
Downloading: 
file:///home/geronimo/.m2/jtidy.repository/org/apache/geronimo/specs/geronimo-validation_1.0_spec/1.1/geronimo-validation_1.0_spec-1.1.jar
[INFO] Unable to find resource 
'org.apache.geronimo.specs:geronimo-validation_1.0_spec:jar:1.1' in repository 
local (file:///home/geronimo/.m2/jtidy.repository)
Downloading: 
http://oss.sonatype.org/content/repositories/jetty//org/apache/geronimo/specs/geronimo-validation_1.0_spec/1.1/geronimo-validation_1.0_spec-1.1.jar
[INFO] Unable to find resource 'commons-beanutils:commons-beanutils:jar:1.8.3' 
in repository jetty.oss.sonatype.org 
(http://oss.sonatype.org/content/repositories/jetty/)
Downloading: 
http://svn.apache.org/repos/asf/servicemix/m2-repo//commons-beanutils/commons-beanutils/1.8.3/commons-beanutils-1.8.3.jar
[INFO] Unable to find resource 
'org.apache.geronimo.specs:geronimo-validation_1.0_spec:jar:1.1' in repository 
jetty.oss.sonatype.org (http://oss.sonatype.org/content/repositories/jetty/)
Downloading: 
http://svn.apache.org/repos/asf/servicemix/m2-repo//org/apache/geronimo/specs/geronimo-validation_1.0_spec/1.1/geronimo-validation_1.0_spec-1.1.jar
[INFO] Unable to find resource 
'org.apache.bval:org.apache.bval.bundle:jar:0.2-incubating' in repository 
jetty.oss.sonatype.org (http://oss.sonatype.org/content/repositories/jetty/)
Downloading: 
http://svn.apache.org/repos/asf/servicemix/m2-repo//org/apache/bval/org.apache.bval.bundle/0.2-incubating/org.apache.bval.bundle-0.2-incubating.jar
[INFO] Unable to find resource 'commons-beanutils:commons-beanutils:jar:1.8.3' 
in repository smx.svn (http://svn.apache.org/repos/asf/servicemix/m2-repo/)
Downloading: 
http://download.java.net/maven/1//commons-beanutils/jars/commons-beanutils-1.8.3.jar
[INFO] Unable to find resource 
'org.apache.geronimo.specs:geronimo-validation_1.0_spec:jar:1.1' in repository 
smx.svn (http://svn.apache.org/repos/asf/servicemix/m2-repo/)
Downloading: 
http://download.java.net/maven/1//org.apache.geronimo.specs/jars/geronimo-validation_1.0_spec-1.1.jar
[INFO] Unable to find resource 
'org.apache.bval:org.apache.bval.bundle:jar:0.2-incubating' in repository 
smx.svn (http://svn.apache.org/repos/asf/servicemix/m2-repo/)
Downloading: 
http://download.java.net/maven/1//org.apache.bval/jars/org.apache.bval.bundle-0.2-incubating.jar
[INFO] Unable to find resource 'commons-beanutils:commons-beanutils:jar:1.8.3' 
in repository java.net (http://download.java.net/maven/1/)
Downloading: 
http://nexus.openqa.org/content/repositories/releases/commons-beanutils/commons-beanutils/1.8.3/commons-beanutils-1.8.3.jar
[INFO] Unable to find resource 
'org.apache.geronimo.specs:geronimo-validation_1.0_spec:jar:1.1' in repository 
java.net (http://download.java.net/maven/1/)
Downloading: 
http://nexus.openqa.org/content/repositories/releases/org/apache/geronimo/specs/geronimo-validation_1.0_spec/1.1/geronimo-validation_1.0_spec-1.1.jar
[INFO] Unable to find resource 
'org.apache.bval:org.apache.bval.bundle:jar:0.2-incubating' in repository 
java.net (http://download.java.net/maven/1/)
Downloading: 
http://nexus.openqa.org/content/repositories/releases/org/apache/bval/org.apache.bval.bundle/0.2-incubating/org.a

[jira] Created: (GERONIMO-5583) Same Web Context-Paths in two EBA don't conflict after deployment

2010-09-08 Thread viola.lu (JIRA)
Same Web Context-Paths in two EBA don't conflict after deployment
-

 Key: GERONIMO-5583
 URL: https://issues.apache.org/jira/browse/GERONIMO-5583
 Project: Geronimo
  Issue Type: Bug
  Security Level: public (Regular issues)
  Components: Aries
Affects Versions: 3.0
 Environment: OS:winXP
JDK: 1.6.0_21

Reporter: viola.lu
Priority: Minor
 Fix For: 3.0


1.Build Aries sample, deploy its blog sample EBA: blog-jdbc-eba, and 
blog-jpa-eba to server, 
2.Both ebas contains the sample web.jar file, same Web-ContextPath: /blog, but 
no conflict error, and i can access the app via http://localhost:8080/blog/.
Not sure which one is called. There should web-contextpath check, if one 
already exists, should report errors.

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



[jira] Created: (GERONIMO-5584) identify basic set of navigation items

2010-09-08 Thread Chi Runhua (JIRA)
identify basic set of navigation items
--

 Key: GERONIMO-5584
 URL: https://issues.apache.org/jira/browse/GERONIMO-5584
 Project: Geronimo
  Issue Type: Sub-task
  Security Level: public (Regular issues)
  Components: console
Affects Versions: 3.0
Reporter: Chi Runhua
Assignee: Chi Runhua
Priority: Trivial


Based on Geronimo-5516,  we can set 2 groups of navigation items in G3.0.  
Basic for the frequently used ones and Advance for the full set.

We should identify the items in the basic set, which might be from my 
perspective:

0/Welcome
1-1-1/Application Server/System Information/Server Information
2-1/Applications/Deployer
2-2-1/Applications/User Assets/Web App WARs

Any other comments?


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



[jira] Created: (GERONIMO-5585) OpenJPA Fatal Error when access blog-jpa-eba

2010-09-08 Thread viola.lu (JIRA)
OpenJPA Fatal Error when access blog-jpa-eba


 Key: GERONIMO-5585
 URL: https://issues.apache.org/jira/browse/GERONIMO-5585
 Project: Geronimo
  Issue Type: Bug
  Security Level: public (Regular issues)
  Components: Aries
Affects Versions: 3.0
 Environment: OS:winxp
JDK:1.6.0_20
Reporter: viola.lu
 Fix For: 3.0


1.Deloy blog-jpa-eba sample to server
2.Access http://localhost:8080/blog/ViewBlog, but got errors below:
 
org.apache.openjpa.persistence.PersistenceException: There were errors 
initializing your configuration:  org.apache.openjpa.util.UserException: A connection could not be 
obtained for driver class "null" and URL "null".  You may have specified an 
invalid URL.
at 
org.apache.openjpa.jdbc.schema.DataSourceFactory.newConnectException(DataSourceFactory.java:261)
at 
org.apache.openjpa.jdbc.schema.DataSourceFactory.installDBDictionary(DataSourceFactory.java:247)
at 
org.apache.openjpa.jdbc.conf.JDBCConfigurationImpl.getConnectionFactory(JDBCConfigurationImpl.java:728)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at 
org.apache.openjpa.lib.conf.ConfigurationImpl.instantiateAll(ConfigurationImpl.java:294)
at 
org.apache.openjpa.conf.OpenJPAConfigurationImpl.instantiateAll(OpenJPAConfigurationImpl.java:1602)
at 
org.apache.openjpa.kernel.AbstractBrokerFactory.makeReadOnly(AbstractBrokerFactory.java:647)
at 
org.apache.openjpa.kernel.AbstractBrokerFactory.newBroker(AbstractBrokerFactory.java:206)
at 
org.apache.openjpa.kernel.DelegatingBrokerFactory.newBroker(DelegatingBrokerFactory.java:156)
at 
org.apache.openjpa.persistence.EntityManagerFactoryImpl.createEntityManager(EntityManagerFactoryImpl.java:227)
at 
org.apache.openjpa.persistence.EntityManagerFactoryImpl.createEntityManager(EntityManagerFactoryImpl.java:60)
at 
org.apache.aries.jpa.container.impl.CountingEntityManagerFactory.createEntityManager(CountingEntityManagerFactory.java:70)
at 
org.apache.aries.jpa.container.context.transaction.impl.JTAPersistenceContextRegistry.getCurrentPersistenceContext(JTAPersistenceContextRegistry.java:131)
at 
org.apache.aries.jpa.container.context.transaction.impl.JTAEntityManager.getPersistenceContext(JTAEntityManager.java:86)
at 
org.apache.aries.jpa.container.context.transaction.impl.JTAEntityManager.createQuery(JTAEntityManager.java:163)
at 
org.apache.aries.samples.blog.persistence.jpa.BlogPersistenceServiceImpl.getNoOfBlogEntries(BlogPersistenceServiceImpl.java:119)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at 
org.apache.aries.blueprint.proxy.Collaborator$1.invoke(Collaborator.java:66)
at 
org.apache.aries.blueprint.proxy.Collaborator.invoke(Collaborator.java:151)
at 
org.apache.aries.samples.blog.persistence.jpa.$BlogPersistenceServiceImpl25233972.getNoOfBlogEntries(Unknown
 Source)
at 
org.apache.aries.samples.blog.api.persistence.BlogPersistenceService$$EnhancerByCGLIB$$b610020c.getNoOfBlogEntries()
at 
org.apache.aries.samples.blog.biz.BlogEntryManagerImpl.getNoOfPosts(BlogEntryManagerImpl.java:89)
at 
org.apache.aries.samples.blog.biz.BloggingServiceImpl.getNoOfEntries(BloggingServiceImpl.java:98)
at 
org.apache.aries.samples.blog.api.BloggingService$$EnhancerByCGLIB$$b334d7e9.getNoOfEntries()
at org.apache.aries.samples.blog.web.ViewBlog.doGet(ViewBlog.java:66)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:575)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:668)
at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:303)
at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at 
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:243)
at 
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:201)
at 
org.apache.geronimo.tomcat.GeronimoStandardContext$SystemMethodValve.invoke(GeronimoStandardContext.java:719)
at 
org.apache.geronimo.tomcat.valve.GeronimoBeforeAfterValve.invoke(GeronimoBeforeAfterValve.java:47)
at 
org.apache.geronimo.tomcat.valve.ProtectedTargetValve.invoke(ProtectedTargetValve.java:53)
 

[jira] Updated: (GERONIMO-5585) OpenJPA Fatal Error when access blog-jpa-eba

2010-09-08 Thread viola.lu (JIRA)

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

viola.lu updated GERONIMO-5585:
---

Attachment: 
org.apache.aries.samples.blog.jpa.eba-0.2-incubating-SNAPSHOT.eba

Sample Application

> OpenJPA Fatal Error when access blog-jpa-eba
> 
>
> Key: GERONIMO-5585
> URL: https://issues.apache.org/jira/browse/GERONIMO-5585
> Project: Geronimo
>  Issue Type: Bug
>  Security Level: public(Regular issues) 
>  Components: Aries
>Affects Versions: 3.0
> Environment: OS:winxp
> JDK:1.6.0_20
>Reporter: viola.lu
> Fix For: 3.0
>
> Attachments: 
> org.apache.aries.samples.blog.jpa.eba-0.2-incubating-SNAPSHOT.eba
>
>
> 1.Deloy blog-jpa-eba sample to server
> 2.Access http://localhost:8080/blog/ViewBlog, but got errors below:
>  
> org.apache.openjpa.persistence.PersistenceException: There were errors 
> initializing your configuration:  error> org.apache.openjpa.util.UserException: A connection could not be 
> obtained for driver class "null" and URL "null".  You may have specified an 
> invalid URL.
>   at 
> org.apache.openjpa.jdbc.schema.DataSourceFactory.newConnectException(DataSourceFactory.java:261)
>   at 
> org.apache.openjpa.jdbc.schema.DataSourceFactory.installDBDictionary(DataSourceFactory.java:247)
>   at 
> org.apache.openjpa.jdbc.conf.JDBCConfigurationImpl.getConnectionFactory(JDBCConfigurationImpl.java:728)
>   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
>   at 
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
>   at 
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
>   at java.lang.reflect.Method.invoke(Method.java:597)
>   at 
> org.apache.openjpa.lib.conf.ConfigurationImpl.instantiateAll(ConfigurationImpl.java:294)
>   at 
> org.apache.openjpa.conf.OpenJPAConfigurationImpl.instantiateAll(OpenJPAConfigurationImpl.java:1602)
>   at 
> org.apache.openjpa.kernel.AbstractBrokerFactory.makeReadOnly(AbstractBrokerFactory.java:647)
>   at 
> org.apache.openjpa.kernel.AbstractBrokerFactory.newBroker(AbstractBrokerFactory.java:206)
>   at 
> org.apache.openjpa.kernel.DelegatingBrokerFactory.newBroker(DelegatingBrokerFactory.java:156)
>   at 
> org.apache.openjpa.persistence.EntityManagerFactoryImpl.createEntityManager(EntityManagerFactoryImpl.java:227)
>   at 
> org.apache.openjpa.persistence.EntityManagerFactoryImpl.createEntityManager(EntityManagerFactoryImpl.java:60)
>   at 
> org.apache.aries.jpa.container.impl.CountingEntityManagerFactory.createEntityManager(CountingEntityManagerFactory.java:70)
>   at 
> org.apache.aries.jpa.container.context.transaction.impl.JTAPersistenceContextRegistry.getCurrentPersistenceContext(JTAPersistenceContextRegistry.java:131)
>   at 
> org.apache.aries.jpa.container.context.transaction.impl.JTAEntityManager.getPersistenceContext(JTAEntityManager.java:86)
>   at 
> org.apache.aries.jpa.container.context.transaction.impl.JTAEntityManager.createQuery(JTAEntityManager.java:163)
>   at 
> org.apache.aries.samples.blog.persistence.jpa.BlogPersistenceServiceImpl.getNoOfBlogEntries(BlogPersistenceServiceImpl.java:119)
>   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
>   at 
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
>   at 
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
>   at java.lang.reflect.Method.invoke(Method.java:597)
>   at 
> org.apache.aries.blueprint.proxy.Collaborator$1.invoke(Collaborator.java:66)
>   at 
> org.apache.aries.blueprint.proxy.Collaborator.invoke(Collaborator.java:151)
>   at 
> org.apache.aries.samples.blog.persistence.jpa.$BlogPersistenceServiceImpl25233972.getNoOfBlogEntries(Unknown
>  Source)
>   at 
> org.apache.aries.samples.blog.api.persistence.BlogPersistenceService$$EnhancerByCGLIB$$b610020c.getNoOfBlogEntries()
>   at 
> org.apache.aries.samples.blog.biz.BlogEntryManagerImpl.getNoOfPosts(BlogEntryManagerImpl.java:89)
>   at 
> org.apache.aries.samples.blog.biz.BloggingServiceImpl.getNoOfEntries(BloggingServiceImpl.java:98)
>   at 
> org.apache.aries.samples.blog.api.BloggingService$$EnhancerByCGLIB$$b334d7e9.getNoOfEntries()
>   at org.apache.aries.samples.blog.web.ViewBlog.doGet(ViewBlog.java:66)
>   at javax.servlet.http.HttpServlet.service(HttpServlet.java:575)
>   at javax.servlet.http.HttpServlet.service(HttpServlet.java:668)
>   at 
> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:303)
>   at 
> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
>   at 
> org.apache.catalina.cor

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

2010-09-08 Thread gawor
Geronimo Revision: 993608 built with tests included
 
See the full build-0200.log file at 
http://people.apache.org/builds/geronimo/server/binaries/2.1/20100908/build-0200.log
 
Download the binaries from 
http://people.apache.org/builds/geronimo/server/binaries/2.1/20100908
[INFO] BUILD SUCCESSFUL
[INFO] 
[INFO] Total time: 43 minutes 31 seconds
[INFO] Finished at: Wed Sep 08 02:52:14 EDT 2010
[INFO] Final Memory: 276M/941M
[INFO] 
 
TESTSUITE RESULTS (Failures only)
=
 
Assembly: tomcat
=
See full test results and logs at 
http://people.apache.org/builds/geronimo/server/binaries/2.1/20100908/logs-0200-tomcat/
 
[INFO] Running security-testsuite.security
[INFO] Tests run: 36, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 61.815 
sec <<< FAILURE!
 
Assembly: jetty
=
See full test results and logs at 
http://people.apache.org/builds/geronimo/server/binaries/2.1/20100908/logs-0200-jetty/
 
 
Samples: branches/2.1
=
Log: 
http://people.apache.org/builds/geronimo/server/binaries/2.1/20100908/samples-0200.log
 
Build status: FAILED
 


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

2010-09-08 Thread gawor
Geronimo Revision: 994998 built with tests included
 
See the full build-0800.log file at 
http://people.apache.org/builds/geronimo/server/binaries/2.2/20100908/build-0800.log
 
 
See the unit test reports at 
http://people.apache.org/builds/geronimo/server/binaries/2.2/20100908/unit-test-reports
 
[INFO] [enforcer:enforce {execution: default}]
[INFO] [remote-resources:process {execution: default}]
[INFO] [resources:resources {execution: default-resources}]
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory 
/home/geronimo/geronimo/2.2/plugins/activemq/geronimo-activemq/src/main/resources
[INFO] skip non existing resourceDirectory 
/home/geronimo/geronimo/2.2/plugins/activemq/geronimo-activemq/src/main/filtered-resources
[INFO] Copying 3 resources
[INFO] [compiler:compile {execution: default-compile}]
[INFO] Compiling 6 source files to 
/home/geronimo/geronimo/2.2/plugins/activemq/geronimo-activemq/target/classes
[INFO] [resources:testResources {execution: default-testResources}]
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory 
/home/geronimo/geronimo/2.2/plugins/activemq/geronimo-activemq/src/test/resources
[INFO] skip non existing resourceDirectory 
/home/geronimo/geronimo/2.2/plugins/activemq/geronimo-activemq/src/test/filtered-resources
[INFO] Copying 3 resources
[INFO] [compiler:testCompile {execution: default-testCompile}]
[INFO] Compiling 1 source file to 
/home/geronimo/geronimo/2.2/plugins/activemq/geronimo-activemq/target/test-classes
[INFO] [surefire:test {execution: default-test}]
[INFO] Surefire report directory: 
/home/geronimo/geronimo/2.2/plugins/activemq/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.059 sec

Results :

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

[INFO] [jar:jar {execution: default-jar}]
[INFO] Building jar: 
/home/geronimo/geronimo/2.2/plugins/activemq/geronimo-activemq/target/geronimo-activemq-2.2.2-SNAPSHOT.jar
[INFO] [ianal:verify-legal-files {execution: default}]
[INFO] Checking legal files in: geronimo-activemq-2.2.2-SNAPSHOT.jar
[INFO] [install:install {execution: default-install}]
[INFO] Installing 
/home/geronimo/geronimo/2.2/plugins/activemq/geronimo-activemq/target/geronimo-activemq-2.2.2-SNAPSHOT.jar
 to 
/home/geronimo/.m2/repository/org/apache/geronimo/modules/geronimo-activemq/2.2.2-SNAPSHOT/geronimo-activemq-2.2.2-SNAPSHOT.jar
[INFO] 
[INFO] Building Geronimo Plugins, ActiveMQ v5 :: Broker
[INFO]task-segment: [install]
[INFO] 
[INFO] [genesis:validate-configuration {execution: default}]
Downloading: 
http://maven.rtp.raleigh.ibm.com/nexus-proxy//backport-util-concurrent/backport-util-concurrent/2.2/backport-util-concurrent-2.2.pom
909b downloaded  (backport-util-concurrent-2.2.pom)
Downloading: 
http://maven.rtp.raleigh.ibm.com/nexus-proxy//backport-util-concurrent/backport-util-concurrent/2.2/backport-util-concurrent-2.2.jar
318K downloaded  (backport-util-concurrent-2.2.jar)
[INFO] [enforcer:enforce {execution: default}]
[INFO] [remote-resources:process {execution: default}]
[INFO] [resources:resources {execution: default-resources}]
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 2 resources
[INFO] skip non existing resourceDirectory 
/home/geronimo/geronimo/2.2/plugins/activemq/activemq-broker/src/main/filtered-resources
[INFO] Copying 3 resources
[INFO] [car:validate-configuration {execution: default-validate-configuration}]
[INFO] [car:prepare-plan {execution: default-prepare-plan}]
[INFO] Generated: 
/home/geronimo/geronimo/2.2/plugins/activemq/activemq-broker/target/work/plan.xml
[INFO] [car:verify-no-dependency-change {execution: 
default-verify-no-dependency-change}]
[INFO] 
[ERROR] BUILD FAILURE
[INFO] 
[INFO] Dependencies have changed:
Added dependencies are saved here: 
/home/geronimo/geronimo/2.2/plugins/activemq/activemq-broker/src/main/history/dependencies.added.xml
Tree listing is saved here: 
/home/geronimo/geronimo/2.2/plugins/activemq/activemq-broker/src/main/history/treeListing.txt
Delete 
/home/geronimo/geronimo/2.2/plugins/activemq/activemq-broker/src/main/history/dependencies.xml
 if you are happy with the dependency changes.
[INFO] 
[INFO] Trace
org.apache.maven.BuildFailureException: Dependencies have changed:
Added dependencies are saved here: 
/home

[BUILD] trunk: Failed for Revision: 995040

2010-09-08 Thread gawor
Geronimo Revision: 995040 built with tests included
 
See the full build-0900.log file at 
http://people.apache.org/builds/geronimo/server/binaries/trunk/20100908/build-0900.log
 
 
See the unit test reports at 
http://people.apache.org/builds/geronimo/server/binaries/trunk/20100908/unit-test-reports
 
Downloading: 
http://nexus.openqa.org/content/repositories/releases/org/apache/bval/bval-parent/0.2-incubating/bval-parent-0.2-incubating.pom
[INFO] Unable to find resource 'org.apache.bval:bval-parent:pom:0.2-incubating' 
in repository openqa-releases 
(http://nexus.openqa.org/content/repositories/releases)
Downloading: 
http://maven.rtp.raleigh.ibm.com/nexus-proxy//org/apache/bval/bval-parent/0.2-incubating/bval-parent-0.2-incubating.pom
24K downloaded  (bval-parent-0.2-incubating.pom)
Downloading: 
file:///home/geronimo/.m2/jtidy.repository/org/apache/bval/org.apache.bval.bundle/0.2-incubating/org.apache.bval.bundle-0.2-incubating.jar
[INFO] Unable to find resource 
'org.apache.bval:org.apache.bval.bundle:jar:0.2-incubating' in repository local 
(file:///home/geronimo/.m2/jtidy.repository)
Downloading: 
http://oss.sonatype.org/content/repositories/jetty//org/apache/bval/org.apache.bval.bundle/0.2-incubating/org.apache.bval.bundle-0.2-incubating.jar
Downloading: 
file:///home/geronimo/.m2/jtidy.repository/commons-beanutils/commons-beanutils/1.8.3/commons-beanutils-1.8.3.jar
[INFO] Unable to find resource 'commons-beanutils:commons-beanutils:jar:1.8.3' 
in repository local (file:///home/geronimo/.m2/jtidy.repository)
Downloading: 
http://oss.sonatype.org/content/repositories/jetty//commons-beanutils/commons-beanutils/1.8.3/commons-beanutils-1.8.3.jar
Downloading: 
file:///home/geronimo/.m2/jtidy.repository/org/apache/geronimo/specs/geronimo-validation_1.0_spec/1.1/geronimo-validation_1.0_spec-1.1.jar
[INFO] Unable to find resource 
'org.apache.geronimo.specs:geronimo-validation_1.0_spec:jar:1.1' in repository 
local (file:///home/geronimo/.m2/jtidy.repository)
Downloading: 
http://oss.sonatype.org/content/repositories/jetty//org/apache/geronimo/specs/geronimo-validation_1.0_spec/1.1/geronimo-validation_1.0_spec-1.1.jar
[INFO] Unable to find resource 
'org.apache.geronimo.specs:geronimo-validation_1.0_spec:jar:1.1' in repository 
jetty.oss.sonatype.org (http://oss.sonatype.org/content/repositories/jetty/)
Downloading: 
http://svn.apache.org/repos/asf/servicemix/m2-repo//org/apache/geronimo/specs/geronimo-validation_1.0_spec/1.1/geronimo-validation_1.0_spec-1.1.jar
[INFO] Unable to find resource 'commons-beanutils:commons-beanutils:jar:1.8.3' 
in repository jetty.oss.sonatype.org 
(http://oss.sonatype.org/content/repositories/jetty/)
Downloading: 
http://svn.apache.org/repos/asf/servicemix/m2-repo//commons-beanutils/commons-beanutils/1.8.3/commons-beanutils-1.8.3.jar
[INFO] Unable to find resource 
'org.apache.bval:org.apache.bval.bundle:jar:0.2-incubating' in repository 
jetty.oss.sonatype.org (http://oss.sonatype.org/content/repositories/jetty/)
Downloading: 
http://svn.apache.org/repos/asf/servicemix/m2-repo//org/apache/bval/org.apache.bval.bundle/0.2-incubating/org.apache.bval.bundle-0.2-incubating.jar
[INFO] Unable to find resource 
'org.apache.geronimo.specs:geronimo-validation_1.0_spec:jar:1.1' in repository 
smx.svn (http://svn.apache.org/repos/asf/servicemix/m2-repo/)
Downloading: 
http://download.java.net/maven/1//org.apache.geronimo.specs/jars/geronimo-validation_1.0_spec-1.1.jar
[INFO] Unable to find resource 'commons-beanutils:commons-beanutils:jar:1.8.3' 
in repository smx.svn (http://svn.apache.org/repos/asf/servicemix/m2-repo/)
Downloading: 
http://download.java.net/maven/1//commons-beanutils/jars/commons-beanutils-1.8.3.jar
[INFO] Unable to find resource 
'org.apache.bval:org.apache.bval.bundle:jar:0.2-incubating' in repository 
smx.svn (http://svn.apache.org/repos/asf/servicemix/m2-repo/)
Downloading: 
http://download.java.net/maven/1//org.apache.bval/jars/org.apache.bval.bundle-0.2-incubating.jar
[INFO] Unable to find resource 
'org.apache.geronimo.specs:geronimo-validation_1.0_spec:jar:1.1' in repository 
java.net (http://download.java.net/maven/1/)
Downloading: 
http://nexus.openqa.org/content/repositories/releases/org/apache/geronimo/specs/geronimo-validation_1.0_spec/1.1/geronimo-validation_1.0_spec-1.1.jar
[INFO] Unable to find resource 'commons-beanutils:commons-beanutils:jar:1.8.3' 
in repository java.net (http://download.java.net/maven/1/)
Downloading: 
http://nexus.openqa.org/content/repositories/releases/commons-beanutils/commons-beanutils/1.8.3/commons-beanutils-1.8.3.jar
[INFO] Unable to find resource 
'org.apache.bval:org.apache.bval.bundle:jar:0.2-incubating' in repository 
java.net (http://download.java.net/maven/1/)
Downloading: 
http://nexus.openqa.org/content/repositories/releases/org/apache/bval/org.apache.bval.bundle/0.2-incubating/org.apa

[jira] Created: (GERONIMO-5586) Provide a way to transform traditional jar to OSGi bundle when user install the jar into G repository.

2010-09-08 Thread Forrest Xia (JIRA)
Provide a way to transform traditional jar to OSGi bundle when user install the 
jar into G repository.
--

 Key: GERONIMO-5586
 URL: https://issues.apache.org/jira/browse/GERONIMO-5586
 Project: Geronimo
  Issue Type: Improvement
  Security Level: public (Regular issues)
Affects Versions: 3.0
Reporter: Forrest Xia


As G server fundamentally turn into an OSGi based java ee application server, 
all libraries are required to be a OSGi bundle. But this may not work friendly 
to popular Java EE user.

Let's say a simple scenario that deploys a data source to G server:
1. User uses install-library command or admin console to install the jdbc 
driver into G repository
2. User prepare a datasource deployment plan that depends on the installed jdbc 
driver
3. User uses deploy command or admin console to deploy the datasource

The deployer will report a ClassNotFound exception saying jdbc driver class is 
not found. Java EE user may confuse around here, since they know they've 
installed the jdbc libraries into the repository, but why encounter the CNF 
exception?

>From user-friendly aspect, G server is better to provide a way to transform 
>traditional jar into a OSGi bundle transparently.

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



[jira] Created: (GERONIMO-5587) SMTP is including bcc header in sent email

2010-09-08 Thread Rick McGuire (JIRA)
SMTP is including bcc header in sent email 
---

 Key: GERONIMO-5587
 URL: https://issues.apache.org/jira/browse/GERONIMO-5587
 Project: Geronimo
  Issue Type: Bug
  Security Level: public (Regular issues)
  Components: mail
Reporter: Rick McGuire
Assignee: Rick McGuire
Priority: Minor


If BCC recipients are added to a MimeMessage, the BCC header is sent along with 
the message, negating the effect of making these blind.  The BCC header needs 
to be excluded from the actual sent message. 

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



[jira] Resolved: (GERONIMO-5587) SMTP is including bcc header in sent email

2010-09-08 Thread Rick McGuire (JIRA)

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

Rick McGuire resolved GERONIMO-5587.


Resolution: Fixed

Committed revision 995094.

> SMTP is including bcc header in sent email 
> ---
>
> Key: GERONIMO-5587
> URL: https://issues.apache.org/jira/browse/GERONIMO-5587
> Project: Geronimo
>  Issue Type: Bug
>  Security Level: public(Regular issues) 
>  Components: mail
>Reporter: Rick McGuire
>Assignee: Rick McGuire
>Priority: Minor
>
> If BCC recipients are added to a MimeMessage, the BCC header is sent along 
> with the message, negating the effect of making these blind.  The BCC header 
> needs to be excluded from the actual sent message. 

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



[jira] Commented: (GERONIMO-5551) Failing to start the server with the error "Main not found"

2010-09-08 Thread Kevan Miller (JIRA)

[ 
https://issues.apache.org/jira/browse/GERONIMO-5551?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12907339#action_12907339
 ] 

Kevan Miller commented on GERONIMO-5551:


Bootstrapper.getMain() will only wait 60 seconds for Geronimo main to be 
loaded. If that time expires, you'll get that message. 

I've only seen this error once, when I was profiling a server. Normally, main 
loads for me in a matter of a few seconds. 

We could bump this timeout, but it seems pretty long to me, already. So, would 
like to understand your environment and how long the server startup normally 
takes...


> Failing to start the server with the error "Main not found" 
> 
>
> Key: GERONIMO-5551
> URL: https://issues.apache.org/jira/browse/GERONIMO-5551
> Project: Geronimo
>  Issue Type: Bug
>  Security Level: public(Regular issues) 
>  Components: startup/shutdown
>Affects Versions: 3.0
> Environment: OS: Windows XP SP3
> JDK: SUN JDK 1.6.0_20
>Reporter: Wang Guang Zhe
> Fix For: 3.0
>
>
> Sometimes the Geronimo 3.0 server fails to start with the only error message 
> "Main not found".

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



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

2010-09-08 Thread gawor
Geronimo Revision: 995166 built with tests included
 
See the full build-1400.log file at 
http://people.apache.org/builds/geronimo/server/binaries/2.2/20100908/build-1400.log
 
 
See the unit test reports at 
http://people.apache.org/builds/geronimo/server/binaries/2.2/20100908/unit-test-reports
 
[INFO] [enforcer:enforce {execution: default}]
[INFO] [remote-resources:process {execution: default}]
[INFO] [resources:resources {execution: default-resources}]
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory 
/home/geronimo/geronimo/2.2/plugins/activemq/geronimo-activemq/src/main/resources
[INFO] skip non existing resourceDirectory 
/home/geronimo/geronimo/2.2/plugins/activemq/geronimo-activemq/src/main/filtered-resources
[INFO] Copying 3 resources
[INFO] [compiler:compile {execution: default-compile}]
[INFO] Compiling 6 source files to 
/home/geronimo/geronimo/2.2/plugins/activemq/geronimo-activemq/target/classes
[INFO] [resources:testResources {execution: default-testResources}]
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory 
/home/geronimo/geronimo/2.2/plugins/activemq/geronimo-activemq/src/test/resources
[INFO] skip non existing resourceDirectory 
/home/geronimo/geronimo/2.2/plugins/activemq/geronimo-activemq/src/test/filtered-resources
[INFO] Copying 3 resources
[INFO] [compiler:testCompile {execution: default-testCompile}]
[INFO] Compiling 1 source file to 
/home/geronimo/geronimo/2.2/plugins/activemq/geronimo-activemq/target/test-classes
[INFO] [surefire:test {execution: default-test}]
[INFO] Surefire report directory: 
/home/geronimo/geronimo/2.2/plugins/activemq/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.062 sec

Results :

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

[INFO] [jar:jar {execution: default-jar}]
[INFO] Building jar: 
/home/geronimo/geronimo/2.2/plugins/activemq/geronimo-activemq/target/geronimo-activemq-2.2.2-SNAPSHOT.jar
[INFO] [ianal:verify-legal-files {execution: default}]
[INFO] Checking legal files in: geronimo-activemq-2.2.2-SNAPSHOT.jar
[INFO] [install:install {execution: default-install}]
[INFO] Installing 
/home/geronimo/geronimo/2.2/plugins/activemq/geronimo-activemq/target/geronimo-activemq-2.2.2-SNAPSHOT.jar
 to 
/home/geronimo/.m2/repository/org/apache/geronimo/modules/geronimo-activemq/2.2.2-SNAPSHOT/geronimo-activemq-2.2.2-SNAPSHOT.jar
[INFO] 
[INFO] Building Geronimo Plugins, ActiveMQ v5 :: Broker
[INFO]task-segment: [install]
[INFO] 
[INFO] [genesis:validate-configuration {execution: default}]
Downloading: 
http://maven.rtp.raleigh.ibm.com/nexus-proxy//backport-util-concurrent/backport-util-concurrent/2.2/backport-util-concurrent-2.2.pom
909b downloaded  (backport-util-concurrent-2.2.pom)
Downloading: 
http://maven.rtp.raleigh.ibm.com/nexus-proxy//backport-util-concurrent/backport-util-concurrent/2.2/backport-util-concurrent-2.2.jar
318K downloaded  (backport-util-concurrent-2.2.jar)
[INFO] [enforcer:enforce {execution: default}]
[INFO] [remote-resources:process {execution: default}]
[INFO] [resources:resources {execution: default-resources}]
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 2 resources
[INFO] skip non existing resourceDirectory 
/home/geronimo/geronimo/2.2/plugins/activemq/activemq-broker/src/main/filtered-resources
[INFO] Copying 3 resources
[INFO] [car:validate-configuration {execution: default-validate-configuration}]
[INFO] [car:prepare-plan {execution: default-prepare-plan}]
[INFO] Generated: 
/home/geronimo/geronimo/2.2/plugins/activemq/activemq-broker/target/work/plan.xml
[INFO] [car:verify-no-dependency-change {execution: 
default-verify-no-dependency-change}]
[INFO] 
[ERROR] BUILD FAILURE
[INFO] 
[INFO] Dependencies have changed:
Added dependencies are saved here: 
/home/geronimo/geronimo/2.2/plugins/activemq/activemq-broker/src/main/history/dependencies.added.xml
Tree listing is saved here: 
/home/geronimo/geronimo/2.2/plugins/activemq/activemq-broker/src/main/history/treeListing.txt
Delete 
/home/geronimo/geronimo/2.2/plugins/activemq/activemq-broker/src/main/history/dependencies.xml
 if you are happy with the dependency changes.
[INFO] 
[INFO] Trace
org.apache.maven.BuildFailureException: Dependencies have changed:
Added dependencies are saved here: 
/home

[BUILD] trunk: Failed for Revision: 995208

2010-09-08 Thread gawor
Geronimo Revision: 995208 built with tests included
 
See the full build-1500.log file at 
http://people.apache.org/builds/geronimo/server/binaries/trunk/20100908/build-1500.log
 
 
See the unit test reports at 
http://people.apache.org/builds/geronimo/server/binaries/trunk/20100908/unit-test-reports
 
Downloading: 
http://nexus.openqa.org/content/repositories/releases/org/apache/bval/bval-parent/0.2-incubating/bval-parent-0.2-incubating.pom
[INFO] Unable to find resource 'org.apache.bval:bval-parent:pom:0.2-incubating' 
in repository openqa-releases 
(http://nexus.openqa.org/content/repositories/releases)
Downloading: 
http://maven.rtp.raleigh.ibm.com/nexus-proxy//org/apache/bval/bval-parent/0.2-incubating/bval-parent-0.2-incubating.pom
24K downloaded  (bval-parent-0.2-incubating.pom)
Downloading: 
file:///home/geronimo/.m2/jtidy.repository/org/apache/bval/org.apache.bval.bundle/0.2-incubating/org.apache.bval.bundle-0.2-incubating.jar
[INFO] Unable to find resource 
'org.apache.bval:org.apache.bval.bundle:jar:0.2-incubating' in repository local 
(file:///home/geronimo/.m2/jtidy.repository)
Downloading: 
http://oss.sonatype.org/content/repositories/jetty//org/apache/bval/org.apache.bval.bundle/0.2-incubating/org.apache.bval.bundle-0.2-incubating.jar
Downloading: 
file:///home/geronimo/.m2/jtidy.repository/commons-beanutils/commons-beanutils/1.8.3/commons-beanutils-1.8.3.jar
[INFO] Unable to find resource 'commons-beanutils:commons-beanutils:jar:1.8.3' 
in repository local (file:///home/geronimo/.m2/jtidy.repository)
Downloading: 
http://oss.sonatype.org/content/repositories/jetty//commons-beanutils/commons-beanutils/1.8.3/commons-beanutils-1.8.3.jar
Downloading: 
file:///home/geronimo/.m2/jtidy.repository/org/apache/geronimo/specs/geronimo-validation_1.0_spec/1.1/geronimo-validation_1.0_spec-1.1.jar
[INFO] Unable to find resource 
'org.apache.geronimo.specs:geronimo-validation_1.0_spec:jar:1.1' in repository 
local (file:///home/geronimo/.m2/jtidy.repository)
Downloading: 
http://oss.sonatype.org/content/repositories/jetty//org/apache/geronimo/specs/geronimo-validation_1.0_spec/1.1/geronimo-validation_1.0_spec-1.1.jar
[INFO] Unable to find resource 
'org.apache.bval:org.apache.bval.bundle:jar:0.2-incubating' in repository 
jetty.oss.sonatype.org (http://oss.sonatype.org/content/repositories/jetty/)
Downloading: 
http://svn.apache.org/repos/asf/servicemix/m2-repo//org/apache/bval/org.apache.bval.bundle/0.2-incubating/org.apache.bval.bundle-0.2-incubating.jar
[INFO] Unable to find resource 'commons-beanutils:commons-beanutils:jar:1.8.3' 
in repository jetty.oss.sonatype.org 
(http://oss.sonatype.org/content/repositories/jetty/)
Downloading: 
http://svn.apache.org/repos/asf/servicemix/m2-repo//commons-beanutils/commons-beanutils/1.8.3/commons-beanutils-1.8.3.jar
[INFO] Unable to find resource 
'org.apache.geronimo.specs:geronimo-validation_1.0_spec:jar:1.1' in repository 
jetty.oss.sonatype.org (http://oss.sonatype.org/content/repositories/jetty/)
Downloading: 
http://svn.apache.org/repos/asf/servicemix/m2-repo//org/apache/geronimo/specs/geronimo-validation_1.0_spec/1.1/geronimo-validation_1.0_spec-1.1.jar
[INFO] Unable to find resource 
'org.apache.bval:org.apache.bval.bundle:jar:0.2-incubating' in repository 
smx.svn (http://svn.apache.org/repos/asf/servicemix/m2-repo/)
Downloading: 
http://download.java.net/maven/1//org.apache.bval/jars/org.apache.bval.bundle-0.2-incubating.jar
[INFO] Unable to find resource 'commons-beanutils:commons-beanutils:jar:1.8.3' 
in repository smx.svn (http://svn.apache.org/repos/asf/servicemix/m2-repo/)
Downloading: 
http://download.java.net/maven/1//commons-beanutils/jars/commons-beanutils-1.8.3.jar
[INFO] Unable to find resource 
'org.apache.geronimo.specs:geronimo-validation_1.0_spec:jar:1.1' in repository 
smx.svn (http://svn.apache.org/repos/asf/servicemix/m2-repo/)
Downloading: 
http://download.java.net/maven/1//org.apache.geronimo.specs/jars/geronimo-validation_1.0_spec-1.1.jar
[INFO] Unable to find resource 
'org.apache.bval:org.apache.bval.bundle:jar:0.2-incubating' in repository 
java.net (http://download.java.net/maven/1/)
Downloading: 
http://nexus.openqa.org/content/repositories/releases/org/apache/bval/org.apache.bval.bundle/0.2-incubating/org.apache.bval.bundle-0.2-incubating.jar
[INFO] Unable to find resource 'commons-beanutils:commons-beanutils:jar:1.8.3' 
in repository java.net (http://download.java.net/maven/1/)
Downloading: 
http://nexus.openqa.org/content/repositories/releases/commons-beanutils/commons-beanutils/1.8.3/commons-beanutils-1.8.3.jar
[INFO] Unable to find resource 
'org.apache.geronimo.specs:geronimo-validation_1.0_spec:jar:1.1' in repository 
java.net (http://download.java.net/maven/1/)
Downloading: 
http://nexus.openqa.org/content/repositories/releases/org/apache/geronimo/specs/geronimo-validation_1.0_spec/1.1/g

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

2010-09-08 Thread gawor
Geronimo Revision: 995285 built with tests included
 
See the full build-2000.log file at 
http://people.apache.org/builds/geronimo/server/binaries/2.2/20100908/build-2000.log
 
 
See the unit test reports at 
http://people.apache.org/builds/geronimo/server/binaries/2.2/20100908/unit-test-reports
 
[INFO] skip non existing resourceDirectory 
/home/geronimo/geronimo/2.2/plugins/activemq/geronimo-activemq/src/test/filtered-resources
[INFO] Copying 3 resources
[INFO] [compiler:testCompile {execution: default-testCompile}]
[INFO] Compiling 1 source file to 
/home/geronimo/geronimo/2.2/plugins/activemq/geronimo-activemq/target/test-classes
[INFO] [surefire:test {execution: default-test}]
[WARNING] Component returned which is not the same manager. Ignored. 
component=org.apache.maven.profiles.activation.systempropertyprofileactiva...@7f3a7f3a
[WARNING] Component returned which is not the same manager. Ignored. 
component=org.apache.maven.profiles.activation.jdkprefixprofileactiva...@7f3a7f3a
[WARNING] Component returned which is not the same manager. Ignored. 
component=org.apache.maven.profiles.activation.operatingsystemprofileactiva...@7f3a7f3a
[INFO] Surefire report directory: 
/home/geronimo/geronimo/2.2/plugins/activemq/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.082 sec

Results :

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

[INFO] [jar:jar {execution: default-jar}]
[INFO] Building jar: 
/home/geronimo/geronimo/2.2/plugins/activemq/geronimo-activemq/target/geronimo-activemq-2.2.2-SNAPSHOT.jar
[INFO] [ianal:verify-legal-files {execution: default}]
[INFO] Checking legal files in: geronimo-activemq-2.2.2-SNAPSHOT.jar
[INFO] [install:install {execution: default-install}]
[INFO] Installing 
/home/geronimo/geronimo/2.2/plugins/activemq/geronimo-activemq/target/geronimo-activemq-2.2.2-SNAPSHOT.jar
 to 
/home/geronimo/.m2/repository/org/apache/geronimo/modules/geronimo-activemq/2.2.2-SNAPSHOT/geronimo-activemq-2.2.2-SNAPSHOT.jar
[INFO] 
[INFO] Building Geronimo Plugins, ActiveMQ v5 :: Broker
[INFO]task-segment: [install]
[INFO] 
[INFO] [genesis:validate-configuration {execution: default}]
Downloading: 
http://maven.rtp.raleigh.ibm.com/nexus-proxy//backport-util-concurrent/backport-util-concurrent/2.2/backport-util-concurrent-2.2.pom
909b downloaded  (backport-util-concurrent-2.2.pom)
[WARNING] Component returned which is not the same manager. Ignored. 
component=org.apache.maven.profiles.activation.systempropertyprofileactiva...@7f3a7f3a
[WARNING] Component returned which is not the same manager. Ignored. 
component=org.apache.maven.profiles.activation.jdkprefixprofileactiva...@7f3a7f3a
[WARNING] Component returned which is not the same manager. Ignored. 
component=org.apache.maven.profiles.activation.operatingsystemprofileactiva...@7f3a7f3a
Downloading: 
http://maven.rtp.raleigh.ibm.com/nexus-proxy//backport-util-concurrent/backport-util-concurrent/2.2/backport-util-concurrent-2.2.jar
318K downloaded  (backport-util-concurrent-2.2.jar)
[INFO] [enforcer:enforce {execution: default}]
[INFO] [remote-resources:process {execution: default}]
[INFO] [resources:resources {execution: default-resources}]
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 2 resources
[INFO] skip non existing resourceDirectory 
/home/geronimo/geronimo/2.2/plugins/activemq/activemq-broker/src/main/filtered-resources
[INFO] Copying 3 resources
[INFO] [car:validate-configuration {execution: default-validate-configuration}]
[INFO] [car:prepare-plan {execution: default-prepare-plan}]
[WARNING] Component returned which is not the same manager. Ignored. 
component=org.apache.maven.profiles.activation.systempropertyprofileactiva...@7f3a7f3a
[WARNING] Component returned which is not the same manager. Ignored. 
component=org.apache.maven.profiles.activation.jdkprefixprofileactiva...@7f3a7f3a
[WARNING] Component returned which is not the same manager. Ignored. 
component=org.apache.maven.profiles.activation.operatingsystemprofileactiva...@7f3a7f3a
[INFO] Generated: 
/home/geronimo/geronimo/2.2/plugins/activemq/activemq-broker/target/work/plan.xml
[INFO] [car:verify-no-dependency-change {execution: 
default-verify-no-dependency-change}]
[WARNING] Component returned which is not the same manager. Ignored. 
component=org.apache.maven.profiles.activation.systempropertyprofileactiva...@7f3a7f3a
[WARNING] Component returned which is not the same manager. Ignored. 
component=org.apache.maven.profiles.activation.jdkprefixprofileactiva...@7f3a7f3a
[WARNING] Component returned which is not the same manager. Ignored. 

[BUILD] trunk: Failed for Revision: 995289

2010-09-08 Thread gawor
Geronimo Revision: 995289 built with tests included
 
See the full build-2100.log file at 
http://people.apache.org/builds/geronimo/server/binaries/trunk/20100908/build-2100.log
 
 
See the unit test reports at 
http://people.apache.org/builds/geronimo/server/binaries/trunk/20100908/unit-test-reports
 
Downloading: 
http://nexus.openqa.org/content/repositories/releases/org/apache/bval/bval-parent/0.2-incubating/bval-parent-0.2-incubating.pom
[INFO] Unable to find resource 'org.apache.bval:bval-parent:pom:0.2-incubating' 
in repository openqa-releases 
(http://nexus.openqa.org/content/repositories/releases)
Downloading: 
http://maven.rtp.raleigh.ibm.com/nexus-proxy//org/apache/bval/bval-parent/0.2-incubating/bval-parent-0.2-incubating.pom
24K downloaded  (bval-parent-0.2-incubating.pom)
Downloading: 
file:///home/geronimo/.m2/jtidy.repository/org/apache/bval/org.apache.bval.bundle/0.2-incubating/org.apache.bval.bundle-0.2-incubating.jar
[INFO] Unable to find resource 
'org.apache.bval:org.apache.bval.bundle:jar:0.2-incubating' in repository local 
(file:///home/geronimo/.m2/jtidy.repository)
Downloading: 
http://oss.sonatype.org/content/repositories/jetty//org/apache/bval/org.apache.bval.bundle/0.2-incubating/org.apache.bval.bundle-0.2-incubating.jar
Downloading: 
file:///home/geronimo/.m2/jtidy.repository/commons-beanutils/commons-beanutils/1.8.3/commons-beanutils-1.8.3.jar
[INFO] Unable to find resource 'commons-beanutils:commons-beanutils:jar:1.8.3' 
in repository local (file:///home/geronimo/.m2/jtidy.repository)
Downloading: 
http://oss.sonatype.org/content/repositories/jetty//commons-beanutils/commons-beanutils/1.8.3/commons-beanutils-1.8.3.jar
Downloading: 
file:///home/geronimo/.m2/jtidy.repository/org/apache/geronimo/specs/geronimo-validation_1.0_spec/1.1/geronimo-validation_1.0_spec-1.1.jar
[INFO] Unable to find resource 
'org.apache.geronimo.specs:geronimo-validation_1.0_spec:jar:1.1' in repository 
local (file:///home/geronimo/.m2/jtidy.repository)
Downloading: 
http://oss.sonatype.org/content/repositories/jetty//org/apache/geronimo/specs/geronimo-validation_1.0_spec/1.1/geronimo-validation_1.0_spec-1.1.jar
[INFO] Unable to find resource 
'org.apache.geronimo.specs:geronimo-validation_1.0_spec:jar:1.1' in repository 
jetty.oss.sonatype.org (http://oss.sonatype.org/content/repositories/jetty/)
[INFO] Unable to find resource 'commons-beanutils:commons-beanutils:jar:1.8.3' 
in repository jetty.oss.sonatype.org 
(http://oss.sonatype.org/content/repositories/jetty/)
[INFO] Unable to find resource 
'org.apache.bval:org.apache.bval.bundle:jar:0.2-incubating' in repository 
jetty.oss.sonatype.org (http://oss.sonatype.org/content/repositories/jetty/)
Downloading: 
http://svn.apache.org/repos/asf/servicemix/m2-repo//org/apache/bval/org.apache.bval.bundle/0.2-incubating/org.apache.bval.bundle-0.2-incubating.jar
Downloading: 
http://svn.apache.org/repos/asf/servicemix/m2-repo//commons-beanutils/commons-beanutils/1.8.3/commons-beanutils-1.8.3.jar
Downloading: 
http://svn.apache.org/repos/asf/servicemix/m2-repo//org/apache/geronimo/specs/geronimo-validation_1.0_spec/1.1/geronimo-validation_1.0_spec-1.1.jar
[INFO] Unable to find resource 'commons-beanutils:commons-beanutils:jar:1.8.3' 
in repository smx.svn (http://svn.apache.org/repos/asf/servicemix/m2-repo/)
Downloading: 
http://download.java.net/maven/1//commons-beanutils/jars/commons-beanutils-1.8.3.jar
[INFO] Unable to find resource 
'org.apache.bval:org.apache.bval.bundle:jar:0.2-incubating' in repository 
smx.svn (http://svn.apache.org/repos/asf/servicemix/m2-repo/)
Downloading: 
http://download.java.net/maven/1//org.apache.bval/jars/org.apache.bval.bundle-0.2-incubating.jar
[INFO] Unable to find resource 
'org.apache.geronimo.specs:geronimo-validation_1.0_spec:jar:1.1' in repository 
smx.svn (http://svn.apache.org/repos/asf/servicemix/m2-repo/)
Downloading: 
http://download.java.net/maven/1//org.apache.geronimo.specs/jars/geronimo-validation_1.0_spec-1.1.jar
[INFO] Unable to find resource 'commons-beanutils:commons-beanutils:jar:1.8.3' 
in repository java.net (http://download.java.net/maven/1/)
Downloading: 
http://nexus.openqa.org/content/repositories/releases/commons-beanutils/commons-beanutils/1.8.3/commons-beanutils-1.8.3.jar
[INFO] Unable to find resource 
'org.apache.geronimo.specs:geronimo-validation_1.0_spec:jar:1.1' in repository 
java.net (http://download.java.net/maven/1/)
Downloading: 
http://nexus.openqa.org/content/repositories/releases/org/apache/geronimo/specs/geronimo-validation_1.0_spec/1.1/geronimo-validation_1.0_spec-1.1.jar
[INFO] Unable to find resource 
'org.apache.bval:org.apache.bval.bundle:jar:0.2-incubating' in repository 
java.net (http://download.java.net/maven/1/)
Downloading: 
http://nexus.openqa.org/content/repositories/releases/org/apache/bval/org.apache.bval.bundle/0.2-incubating/org.a

Re: [ANNOUNCE] Welcome Ming Xai "Forrest" as a new Geronimo PMC member

2010-09-08 Thread Ivan
Congrats, Forrest !

2010/9/8 viola lu 

> Congrats!
>
>
> On Wed, Sep 8, 2010 at 12:10 PM, chi runhua  wrote:
>
>> Congrats, Forrest~!
>>
>> Jeff
>>
>> On Wed, Sep 8, 2010 at 11:17 AM, han hongfang wrote:
>>
>>> Congrats! Forrest,
>>>
>>>
>>> On Wed, Sep 8, 2010 at 9:36 AM, Forrest Xia  wrote:
>>>
 Thank you all for your recognition and trust, I will continue the
 journey on the Geronimo exciting road :-)

 Forrest


 On Wed, Sep 8, 2010 at 4:33 AM, Jarek Gawor  wrote:

> Congrats!
>
> Jarek
>
> On Tue, Sep 7, 2010 at 3:34 PM, Donald Woods 
> wrote:
> > Please join us in congratulating Forrest as a new member of the
> Geronimo
> > PMC.  In addition to all his work on Samples,  Forrest also has
> > demonstrated a clear commitment to Geronimo in numerous other areas.
> > We're very glad that he has accepted our invitation to join us in
> > providing oversight of the Geronimo project.
> >
> > Congratulation Forrest !!!
> >
> > The Apache Geronimo PMC
> >
>


>>>
>>>
>>> --
>>> Best regards,
>>>
>>> Han Hong Fang
>>>
>>
>>
>
>
> --
> viola
>



-- 
Ivan


Re: [ANNOUNCE] Welcome Rex Wang as a new member of the Geronimo PMC

2010-09-08 Thread Ivan
Congrats, Rex !

2010/9/8 viola lu 

> Congrats!
>
>
> On Wed, Sep 8, 2010 at 12:11 PM, chi runhua  wrote:
>
>> Congrats, Rex~!
>>
>> Jeff
>>
>>
>> On Wed, Sep 8, 2010 at 12:09 PM, Jack Cai  wrote:
>>
>>> Congratulations!
>>>
>>> -Jack
>>>
>>>
>>> On Wed, Sep 8, 2010 at 9:37 AM, Forrest Xia  wrote:
>>>
 Congrats!!!


 On Wed, Sep 8, 2010 at 4:56 AM, Vamsavardhana Reddy <
 c1vams...@gmail.com> wrote:

> Congrats!!
>
>
> On Tue, Sep 7, 2010 at 6:30 PM, Rick McGuire wrote:
>
>>  Please join us in congratulating  as a new member of the Geronimo
>> PMC.  In addition to serving as a release manager for the Geronimo 2.1.5
>> server release,  Rex also has demonstrated a clear commitment to 
>> Geronimo in
>> numerous other areas.   We're very glad that he has accepted our 
>> invitation
>> to join us in providing oversight of the Geronimo project.
>>
>> Congratuatlons Rex !!!
>>
>> The Apache Geronimo PMC
>>
>
>
>
> --
> Vamsi
>


>>>
>>
>
>
> --
> viola
>



-- 
Ivan


Re: [ANNOUNCE] Welcome Xuan Dai "Delos" as a new Geronimo PMC member

2010-09-08 Thread Ivan
Congrats, Delos !

2010/9/8 viola lu 

>
> Congrats!
>
> On Wed, Sep 8, 2010 at 12:09 PM, Jack Cai  wrote:
>
>> Congratulations!
>>
>> -Jack
>>
>> On Wed, Sep 8, 2010 at 11:16 AM, han hongfang wrote:
>>
>>> Congrats! Delos.
>>>
>>>
>>> On Wed, Sep 8, 2010 at 9:38 AM, Forrest Xia  wrote:
>>>
 Congrats!


 On Wed, Sep 8, 2010 at 4:53 AM, Vamsavardhana Reddy <
 c1vams...@gmail.com> wrote:

> Congratulations Delos!!
>
>
> On Wed, Sep 8, 2010 at 1:02 AM, Donald Woods wrote:
>
>> Please join us in congratulating Delos as a new member of the Geronimo
>> PMC.  In addition to all his work on GEP and Samples,  Delos also has
>> demonstrated a clear commitment to Geronimo in numerous other areas.
>> We're very glad that he has accepted our invitation to join us in
>> providing oversight of the Geronimo project.
>>
>> Congratulation Delos !!!
>>
>> The Apache Geronimo PMC
>>
>
>
>
> --
> Vamsi
>


>>>
>>>
>>> --
>>> Best regards,
>>>
>>> Han Hong Fang
>>>
>>
>>
>
>
> --
> viola
>



-- 
Ivan


Re: [ANNOUNCE] Welcome Xuan Dai "Delos" as a new Geronimo PMC member

2010-09-08 Thread Lin Sun
Congrats!

Lin

On Tue, Sep 7, 2010 at 3:32 PM, Donald Woods  wrote:
> Please join us in congratulating Delos as a new member of the Geronimo
> PMC.  In addition to all his work on GEP and Samples,  Delos also has
> demonstrated a clear commitment to Geronimo in numerous other areas.
> We're very glad that he has accepted our invitation to join us in
> providing oversight of the Geronimo project.
>
> Congratulation Delos !!!
>
> The Apache Geronimo PMC
>


Re: [ANNOUNCE] Welcome Ming Xai "Forrest" as a new Geronimo PMC member

2010-09-08 Thread Lin Sun
Congrats!

Lin

On Tue, Sep 7, 2010 at 3:34 PM, Donald Woods  wrote:
> Please join us in congratulating Forrest as a new member of the Geronimo
> PMC.  In addition to all his work on Samples,  Forrest also has
> demonstrated a clear commitment to Geronimo in numerous other areas.
> We're very glad that he has accepted our invitation to join us in
> providing oversight of the Geronimo project.
>
> Congratulation Forrest !!!
>
> The Apache Geronimo PMC
>


[jira] Closed: (GERONIMODEVTOOLS-597) Wrong geronimo version detect message if create more thant one server instance

2010-09-08 Thread Delos Dai (JIRA)

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

Delos Dai closed GERONIMODEVTOOLS-597.
--

Resolution: Cannot Reproduce

> Wrong geronimo version detect  message if create more thant one server 
> instance
> ---
>
> Key: GERONIMODEVTOOLS-597
> URL: 
> https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-597
> Project: Geronimo-Devtools
>  Issue Type: Bug
>  Components: eclipse-plugin
>Affects Versions: 2.2.0
> Environment: os:win2003
> eclipse 3.5
> jdk:sun 1.5
>Reporter: viola.lu
>Assignee: Delos Dai
>Priority: Minor
>
> 1.Create one geronimo 1.1 server instance, geronimo 2.2 server instance
> 2.Create a geornimo 2.1 server instance, install geronimo 2.1 server runtime, 
> choose geronimo 2.1 as installation directory, but a warnig about geronimo 
> version detection is wrong:
>  "An incorrect version of Apache Geronimo v2.1 was detected.  Version 2.1 was 
> expected, but version 2.2-SNAPSHOT was found"

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



[jira] Created: (GERONIMO-5588) Web-ContextPath is not set as Web Application Bundle context-root if it's defined

2010-09-08 Thread viola.lu (JIRA)
Web-ContextPath is not set as Web Application Bundle context-root if it's 
defined
-

 Key: GERONIMO-5588
 URL: https://issues.apache.org/jira/browse/GERONIMO-5588
 Project: Geronimo
  Issue Type: Bug
  Security Level: public (Regular issues)
  Components: web
Affects Versions: 3.0
 Environment: OS: winxp
JDk: 1.6.0_21
Build:2010.09.08-11:46:48.734+0800
Reporter: viola.lu
 Fix For: 3.0


1. Create a hello web application bundle, define its web-contextpath : /hello 
package it as a zip file
2.Deploy it, but its context root doesn't keep consistent with web-contextpath 
definition
3.If i define its id in web.xml like: , its context root is 
set as /Blog, not /hello, 
Based on that, currenlty web application bundle context root is set by id 
attribute in web-app, not web-contextpath in manifest file.This doens't meet 
RFC066 spec.

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



[jira] Updated: (GERONIMO-5588) Web-ContextPath is not set as Web Application Bundle context-root if it's defined

2010-09-08 Thread viola.lu (JIRA)

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

viola.lu updated GERONIMO-5588:
---

Attachment: hello.zip
hello_withID.zip

Sample files: the first one is web application bundle without web-app id 
attribute set, the second one is with id attribute set.

> Web-ContextPath is not set as Web Application Bundle context-root if it's 
> defined
> -
>
> Key: GERONIMO-5588
> URL: https://issues.apache.org/jira/browse/GERONIMO-5588
> Project: Geronimo
>  Issue Type: Bug
>  Security Level: public(Regular issues) 
>  Components: web
>Affects Versions: 3.0
> Environment: OS: winxp
> JDk: 1.6.0_21
> Build:2010.09.08-11:46:48.734+0800
>Reporter: viola.lu
> Fix For: 3.0
>
> Attachments: hello.zip, hello_withID.zip
>
>
> 1. Create a hello web application bundle, define its web-contextpath : /hello 
> package it as a zip file
> 2.Deploy it, but its context root doesn't keep consistent with 
> web-contextpath definition
> 3.If i define its id in web.xml like: , its context root 
> is set as /Blog, not /hello, 
> Based on that, currenlty web application bundle context root is set by id 
> attribute in web-app, not web-contextpath in manifest file.This doens't meet 
> RFC066 spec.

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



[jira] Commented: (GERONIMODEVTOOLS-608) Publish with GEP takes minutes, while deploy takes seconds

2010-09-08 Thread Chris Zhang (JIRA)

[ 
https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-608?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12907515#action_12907515
 ] 

Chris Zhang commented on GERONIMODEVTOOLS-608:
--

I have investigated this problem and found that the reason is the duplicate 
invokations of isInstalledModule() and getEnvironment() method many times in 
reorderModules() method. This causes the deployment slow. 
As Boes said, providing a cache is a good solution of this problem. But 
considering the thread safety, it's better to use ConcurrentHashMap.
I created a patch and attached it. Thanks.

> Publish with GEP takes minutes, while deploy takes seconds
> --
>
> Key: GERONIMODEVTOOLS-608
> URL: 
> https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-608
> Project: Geronimo-Devtools
>  Issue Type: Bug
>  Components: eclipse-plugin
>Affects Versions: 2.2.0
> Environment: GEP 2.2 installed in Eclipse (galileo-SR1).
>Reporter: Boes
>Assignee: Delos Dai
> Attachments: 608_20100909.patch, getEnvironment.txt, HiThere.ear, 
> HiThereSlow.ear, reorderModules.txt
>
>
> Publishing an Enterprise Application (EAR) with GEP to Geronimo takes much 
> more time then deploying the same EAR to Geronimo using the console. See 
> http://n3.nabble.com/Publish-with-GEP-takes-minutes-while-deploy-takes-10-seconds-td684484.html
> After doing some research I found that EAR's that have dependencies in 
> geronimo-application.xml take a lot of time to publish. This is caused by the 
> very inefficient implementation of the reorderModules method in the 
> org.apache.geronimo.st.core.internal.DependencyHelper class.
> I installed a GEP development environment and put on tracing. It tested an 
> EAR with 3 WAR's in it. In the EAR's geronimo-application.xml I added 
> dependency tags for 4 libraries. Tracing shows that this results in parsing 
> the geronimo-application.xml 1092 (!) times. In code this means that a call 
> to DependencyHelper.getEnvironment is made 1092 times.
> Another inefficient part in the reorderModules method is that the call to 
> DeploymentUtils.isInstalledModule is repeatedly made for the same module. In 
> the test I found it was called at least 3 times for each dependent library. 
> These calls result in a request to Geronimo and take almost a second each.
> The best way to solve this bug is to redesign the reordering process and make 
> it work in a way that both DependencyHelper.getEnvironment and 
> DeploymentUtils.isInstalledModule are not called more often then needed. I 
> wonder why DeploymentUtils.isInstalledModule is called at all. Dependencies 
> are defined in the xml. I can't imagine why it would matter if a module is 
> installed in Geronimo or not. 
> What I did to fix this problem and make GEP workable again for me is:
> - made sure the DeploymentUtils.isInstalledModule is never called twice for 
> the same module. Once the DeploymentUtils.isInstalledModule is called for a 
> certain module, I add this module to a list. Before a next call to 
> DeploymentUtils.isInstalledModule I verify if the call has been made before. 
> If so, it doesn't need to be called again.
> - reduced the number of times the xml is parsed. I put the results of the 
> DependencyHelper.getEnvironment for a certain module in a hashmap. Next time 
> the DependencyHelper.getEnvironment is called for the same module, I returns 
> the result stored in the hashmap.
> After these two modifications GEP is up to speed again.
> Removal of the call to DeploymentUtils.isInstalledModule makes GEP even 
> faster. Just as fast as deployment using the Geronimo console. For me this 
> works, but I don't know what the impact is for other users. In the attached 
> code I left it the way it was.

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



[jira] Updated: (GERONIMODEVTOOLS-608) Publish with GEP takes minutes, while deploy takes seconds

2010-09-08 Thread Chris Zhang (JIRA)

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

Chris Zhang updated GERONIMODEVTOOLS-608:
-

Attachment: 608_20100909.patch

> Publish with GEP takes minutes, while deploy takes seconds
> --
>
> Key: GERONIMODEVTOOLS-608
> URL: 
> https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-608
> Project: Geronimo-Devtools
>  Issue Type: Bug
>  Components: eclipse-plugin
>Affects Versions: 2.2.0
> Environment: GEP 2.2 installed in Eclipse (galileo-SR1).
>Reporter: Boes
>Assignee: Delos Dai
> Attachments: 608_20100909.patch, getEnvironment.txt, HiThere.ear, 
> HiThereSlow.ear, reorderModules.txt
>
>
> Publishing an Enterprise Application (EAR) with GEP to Geronimo takes much 
> more time then deploying the same EAR to Geronimo using the console. See 
> http://n3.nabble.com/Publish-with-GEP-takes-minutes-while-deploy-takes-10-seconds-td684484.html
> After doing some research I found that EAR's that have dependencies in 
> geronimo-application.xml take a lot of time to publish. This is caused by the 
> very inefficient implementation of the reorderModules method in the 
> org.apache.geronimo.st.core.internal.DependencyHelper class.
> I installed a GEP development environment and put on tracing. It tested an 
> EAR with 3 WAR's in it. In the EAR's geronimo-application.xml I added 
> dependency tags for 4 libraries. Tracing shows that this results in parsing 
> the geronimo-application.xml 1092 (!) times. In code this means that a call 
> to DependencyHelper.getEnvironment is made 1092 times.
> Another inefficient part in the reorderModules method is that the call to 
> DeploymentUtils.isInstalledModule is repeatedly made for the same module. In 
> the test I found it was called at least 3 times for each dependent library. 
> These calls result in a request to Geronimo and take almost a second each.
> The best way to solve this bug is to redesign the reordering process and make 
> it work in a way that both DependencyHelper.getEnvironment and 
> DeploymentUtils.isInstalledModule are not called more often then needed. I 
> wonder why DeploymentUtils.isInstalledModule is called at all. Dependencies 
> are defined in the xml. I can't imagine why it would matter if a module is 
> installed in Geronimo or not. 
> What I did to fix this problem and make GEP workable again for me is:
> - made sure the DeploymentUtils.isInstalledModule is never called twice for 
> the same module. Once the DeploymentUtils.isInstalledModule is called for a 
> certain module, I add this module to a list. Before a next call to 
> DeploymentUtils.isInstalledModule I verify if the call has been made before. 
> If so, it doesn't need to be called again.
> - reduced the number of times the xml is parsed. I put the results of the 
> DependencyHelper.getEnvironment for a certain module in a hashmap. Next time 
> the DependencyHelper.getEnvironment is called for the same module, I returns 
> the result stored in the hashmap.
> After these two modifications GEP is up to speed again.
> Removal of the call to DeploymentUtils.isInstalledModule makes GEP even 
> faster. Just as fast as deployment using the Geronimo console. For me this 
> works, but I don't know what the impact is for other users. In the attached 
> code I left it the way it was.

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



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

2010-09-08 Thread gawor
Geronimo Revision: 995318 built with tests included
 
See the full build-0200.log file at 
http://people.apache.org/builds/geronimo/server/binaries/2.1/20100909/build-0200.log
 
 
See the unit test reports at 
http://people.apache.org/builds/geronimo/server/binaries/2.1/20100909/unit-test-reports
 
  ibiblio.org (http://maven.rtp.raleigh.ibm.com/nexus-proxy/),
  apache.snapshots (http://repository.apache.org/snapshots)


  org.apache.geronimo.buildsupport:car-maven-plugin:maven-plugin:2.1.7-SNAPSHOT

from the specified remote repositories:
  codehaus.snapshots (http://snapshots.repository.codehaus.org),
  ibiblio.org (http://maven.rtp.raleigh.ibm.com/nexus-proxy/),
  apache.snapshots (http://repository.apache.org/snapshots)


[INFO] 
[INFO] Trace
org.apache.maven.lifecycle.LifecycleExecutionException: Plugin could not be 
found - check that the goal name is correct: Unable to download the artifact 
from any repository

Try downloading the file manually from the project website.

Then, install it using the command: 
mvn install:install-file -DgroupId=org.apache.geronimo.buildsupport 
-DartifactId=car-maven-plugin -Dversion=2.1.7-SNAPSHOT -Dpackaging=maven-plugin 
-Dfile=/path/to/file

Alternatively, if you host your own repository you can deploy the file there: 
mvn deploy:deploy-file -DgroupId=org.apache.geronimo.buildsupport 
-DartifactId=car-maven-plugin -Dversion=2.1.7-SNAPSHOT -Dpackaging=maven-plugin 
-Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]


  org.apache.geronimo.buildsupport:car-maven-plugin:maven-plugin:2.1.7-SNAPSHOT

from the specified remote repositories:
  codehaus.snapshots (http://snapshots.repository.codehaus.org),
  ibiblio.org (http://maven.rtp.raleigh.ibm.com/nexus-proxy/),
  apache.snapshots (http://repository.apache.org/snapshots)


  org.apache.geronimo.buildsupport:car-maven-plugin:maven-plugin:2.1.7-SNAPSHOT

from the specified remote repositories:
  codehaus.snapshots (http://snapshots.repository.codehaus.org),
  ibiblio.org (http://maven.rtp.raleigh.ibm.com/nexus-proxy/),
  apache.snapshots (http://repository.apache.org/snapshots)


at 
org.apache.maven.lifecycle.DefaultLifecycleExecutor.findExtensions(DefaultLifecycleExecutor.java:238)
at 
org.apache.maven.lifecycle.DefaultLifecycleExecutor.execute(DefaultLifecycleExecutor.java:178)
at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:328)
at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:138)
at org.apache.maven.cli.MavenCli.main(MavenCli.java:362)
at 
org.apache.maven.cli.compat.CompatibleMain.main(CompatibleMain.java:60)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at org.codehaus.classworlds.Launcher.launchEnhanced(Launcher.java:315)
at org.codehaus.classworlds.Launcher.launch(Launcher.java:255)
at org.codehaus.classworlds.Launcher.mainWithExitCode(Launcher.java:430)
at org.codehaus.classworlds.Launcher.main(Launcher.java:375)
Caused by: org.apache.maven.plugin.PluginNotFoundException: Plugin could not be 
found - check that the goal name is correct: Unable to download the artifact 
from any repository

Try downloading the file manually from the project website.

Then, install it using the command: 
mvn install:install-file -DgroupId=org.apache.geronimo.buildsupport 
-DartifactId=car-maven-plugin -Dversion=2.1.7-SNAPSHOT -Dpackaging=maven-plugin 
-Dfile=/path/to/file

Alternatively, if you host your own repository you can deploy the file there: 
mvn deploy:deploy-file -DgroupId=org.apache.geronimo.buildsupport 
-DartifactId=car-maven-plugin -Dversion=2.1.7-SNAPSHOT -Dpackaging=maven-plugin 
-Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]


  org.apache.geronimo.buildsupport:car-maven-plugin:maven-plugin:2.1.7-SNAPSHOT

from the specified remote repositories:
  codehaus.snapshots (http://snapshots.repository.codehaus.org),
  ibiblio.org (http://maven.rtp.raleigh.ibm.com/nexus-proxy/),
  apache.snapshots (http://repository.apache.org/snapshots)


  org.apache.geronimo.buildsupport:car-maven-plugin:maven-plugin:2.1.7-SNAPSHOT

from the specified remote repositories:
  codehaus.snapshots (http://snapshots.repository.codehaus.org),
  ibiblio.org (http://maven.rtp.raleigh.ibm.com/nexus-proxy/),
  apache.snapshots (http://repository.apache.org/snapshots)


at 
org.apache.maven.plugin.DefaultPluginManager.verifyVersionedPlugin(DefaultPluginManager.java:253)
at 
org.apache.maven.plugin.DefaultPluginManager.verifyPlugin(DefaultPluginManager.java:184)
at 
org.apache.maven.plugin.DefaultPluginManager.loadPluginFully(DefaultPluginManager.java:1626)

[jira] Created: (GERONIMO-5589) Display basic set of navigation items in a list instead of a true

2010-09-08 Thread Chi Runhua (JIRA)
Display basic set of navigation items in a list instead of a true
-

 Key: GERONIMO-5589
 URL: https://issues.apache.org/jira/browse/GERONIMO-5589
 Project: Geronimo
  Issue Type: Sub-task
  Security Level: public (Regular issues)
Reporter: Chi Runhua




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



[jira] Created: (GERONIMO-5590) startup script does not consume --help option

2010-09-08 Thread Chi Runhua (JIRA)
startup script does not consume --help option
-

 Key: GERONIMO-5590
 URL: https://issues.apache.org/jira/browse/GERONIMO-5590
 Project: Geronimo
  Issue Type: Bug
  Security Level: public (Regular issues)
  Components: commands
Affects Versions: 2.2, 2.1.4, 3.0
Reporter: Chi Runhua
Priority: Trivial


When I initiated a  *startup -h* or  *startup -help* on a linux platform, the 
server will start in background instead of showing the help information.


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



[jira] Closed: (GERONIMODEVTOOLS-533) Configuration in geronimo-web.xml is removed after Importing an external war to eclipse

2010-09-08 Thread Delos Dai (JIRA)

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

Delos Dai closed GERONIMODEVTOOLS-533.
--

Resolution: Invalid

> Configuration in geronimo-web.xml is removed after Importing an external war 
> to eclipse
> ---
>
> Key: GERONIMODEVTOOLS-533
> URL: 
> https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-533
> Project: Geronimo-Devtools
>  Issue Type: Bug
>  Components: eclipse-plugin
>Affects Versions: 2.1.3
> Environment: Suse
>Reporter: viola.lu
>Assignee: Tim McConnell
>Priority: Minor
> Attachments: example_extension.war
>
>
> Steps:
> 1.Import example-extension.war to elicpse , target runtime is geronimo 2.1
> 2.Open geronimo-web.xml, configuration information is remove from it but just 
>  /HelloWorldPortlet left.

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