Re: Switching trunk to full java 5 ?

2007-03-28 Thread Gregor Kovač
I fully agree. Since when the time comes for me to start work on the new
server, I'll be using JDK 1.6.

Dne 28.03.2007 (sre) ob 12:03 +0200 je Guillaume Nodet zapisal(a):
 Most of our components uses java 5 now.
 The container itself works on JDK 1.4
 with some minor modifications (see
 http://issues.apache.org/activemq/browse/SM-848)
 but i think it would be easier to officially switch
 to JDK 5 for everything 
 Thoughts ?
 
-- 
-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-
   In A World Without Fences Who Needs Gates?
   Experience Linux.
-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-



[jira] Created: (SM-900) WSDLFlattenner does not handle schemas inclusions

2007-03-28 Thread Guillaume Nodet (JIRA)
WSDLFlattenner does not handle schemas inclusions
-

 Key: SM-900
 URL: https://issues.apache.org/activemq/browse/SM-900
 Project: ServiceMix
  Issue Type: Bug
  Components: servicemix-common
Affects Versions: 3.1
Reporter: Guillaume Nodet
 Assigned To: Guillaume Nodet
 Fix For: 3.1.1, 3.2




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



[jira] Resolved: (SM-900) WSDLFlattenner does not handle schemas inclusions

2007-03-28 Thread Guillaume Nodet (JIRA)

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

Guillaume Nodet resolved SM-900.


Resolution: Fixed

URL: http://svn.apache.org/viewvc?view=revrev=523487
URL: http://svn.apache.org/viewvc?view=revrev=523488

 WSDLFlattenner does not handle schemas inclusions
 -

 Key: SM-900
 URL: https://issues.apache.org/activemq/browse/SM-900
 Project: ServiceMix
  Issue Type: Bug
  Components: servicemix-common
Affects Versions: 3.1
Reporter: Guillaume Nodet
 Assigned To: Guillaume Nodet
 Fix For: 3.1.1, 3.2




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



[jira] Created: (SM-901) Upgrade to xfire 1.2.5

2007-03-28 Thread Guillaume Nodet (JIRA)
Upgrade to xfire 1.2.5
--

 Key: SM-901
 URL: https://issues.apache.org/activemq/browse/SM-901
 Project: ServiceMix
  Issue Type: Task
  Components: servicemix-jsr181
Affects Versions: 3.1
Reporter: Guillaume Nodet
 Fix For: 3.1.1, 3.2




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



[jira] Commented: (GERONIMO-3016) Server assemblies fail to start on Windows when there is a space in the path

2007-03-28 Thread Frank G (JIRA)

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

Frank G commented on GERONIMO-3016:
---

The modification of org.apache.geronimo.kernel.config.IOUtil in rev 518426 
caused the this problem.
The modification of the IOUtile is as following:
Index: 
F:/apache/geronimo/modules/geronimo-kernel/src/main/java/org/apache/geronimo/kernel/config/IOUtil.java
===
--- 
F:/apache/geronimo/modules/geronimo-kernel/src/main/java/org/apache/geronimo/kernel/config/IOUtil.java
  (revision 476049)
+++ 
F:/apache/geronimo/modules/geronimo-kernel/src/main/java/org/apache/geronimo/kernel/config/IOUtil.java
  (revision 518426)
@@ -189,7 +189,7 @@
 if (!SelectorUtils.hasWildcards(pattern)) {
 File match = new File(root, pattern);
 if (match.exists()  match.canRead()) {
-return Collections.singleton(match.toURL());
+return 
Collections.singleton(match.toURI().normalize().toURL());
 } else {
 return Collections.EMPTY_SET;
 }
@@ -201,7 +201,7 @@
 String fileName = (String) entry.getKey();
 if (SelectorUtils.matchPath(pattern, fileName)) {
 File file = (File) entry.getValue();
-matches.add(file.toURL());
+matches.add(file.toURI().normalize().toURL());
 }
 }
 return matches;

Look like it's no problem with codes. But I did a test with the following 
codes, showing an interesting thing:
File file1 = new File( C:\\Program Files\\Google\\abc.txt );
System.out.println( Exists:  + file1.exists() );
System.out.println( Can Read:  + file1.canRead() );
File file2 = new File( file1.toURI().normalize().toURL().getPath() );
System.out.println( Exists:  + file2.exists() );
System.out.println( Can Read:  + file2.canRead() );

System.out.println(  );

File file3 = new File( C:\\maven-2.0.5\\bin\\mvn.bat );
System.out.println( Exists:  + file3.exists() );
System.out.println( Can Read:  + file3.canRead() );
File file4 = new File( file3.toURI().normalize().toURL().getPath() );
System.out.println( Exists:  + file4.exists() );
System.out.println( Can Read:  + file4.canRead() );

The outputs are as following:
Exists: true
Can Read: true
Exists: false
Can Read: false

Exists: true
Can Read: true
Exists: true
Can Read: true

who knows why this happened?

 Server assemblies fail to start on Windows when there is a space in the path
 

 Key: GERONIMO-3016
 URL: https://issues.apache.org/jira/browse/GERONIMO-3016
 Project: Geronimo
  Issue Type: Bug
  Security Level: public(Regular issues) 
  Components: connector
Affects Versions: 2.0-M4
 Environment: Sun 1.5.0_11 on WinXP with a space in the directory path 
 to the server
 trunk Rev521702 from 3/23
Reporter: Donald Woods
 Assigned To: Donald Woods
Priority: Critical
 Fix For: 2.0-M4

 Attachments: geronimo.log


 When the j225 server assemblies (Tomcat or Jetty) are extracted to path that 
 has a space in it, the server fails to start.
 This bug has been introduced sometime after 3/8, which was the last build I 
 tried this on.
 The same assemblies work on WinXP if the space is removed from the path and 
 the following is used instead, so its not a length problem -
  C:\ProgramFiles\Apache\geronimo-tomcat6-jee5-2.0-SNAPSHOT
 Cmdline output -
 C:\Program Files\Apache\geronimo-tomcat6-jee5-2.0-SNAPSHOT\bingeronimo run
 Using GERONIMO_BASE:   C:\Program 
 Files\Apache\geronimo-tomcat6-jee5-2.0-SNAPSHOT
 Using GERONIMO_HOME:   C:\Program 
 Files\Apache\geronimo-tomcat6-jee5-2.0-SNAPSHOT
 Using GERONIMO_TMPDIR: C:\Program 
 Files\Apache\geronimo-tomcat6-jee5-2.0-SNAPSHOT\var\temp
 Using JRE_HOME:C:\PROGRA~1\Java\jdk1.5.0_11\jre
 Booting Geronimo Kernel (in Java 1.5.0_11)...
 Starting Geronimo Application Server v2.0-SNAPSHOT
 [*] 19%   4s Starting org.apache.geron...
 17:47:53,828 ERROR [GBeanInstanceState] Error while starting; GBean is now in 
 the FAILED state: 
 abstractName=org.apache.geronimo.configs/system-database/2.0-SNAPSHOT/car
 ?J2EEApplication=null,JCAConnectionFactory=SystemDatasource,JCAResource=org.apache.geronimo.configs/system-database/2.0-SNAPSHOT/car,ResourceAdapter=org.apache.
 

Re: [ANNOUNCE] Please welcome Rakesh Midha as a new Geronimo committer

2007-03-28 Thread Shiva Kumar H R

Congratulations Rakesh!

- Shiva

On 3/28/07, Paul McMahan [EMAIL PROTECTED] wrote:


Congratulations Rakesh!!

Best wishes,
Paul

On Mar 27, 2007, at 2:30 PM, Kevan Miller wrote:

 All,

 The Geronimo PMC is pleased to announce that Rakesh Midha has
 recently accepted our invitation to become an Apache Geronimo
 committer. Rakesh has contributed a number of significant
 enhancements to our Admin Console and deployment code.

 We're looking forward to Rakesh joining our project.

 Congratulations and welcome to Rakesh!

 --kevan




Re: I'm now a dad !

2007-03-28 Thread Shiva Kumar H R

Congrats John. It was fun watching the just born :)

- Shiva

On 3/28/07, John Sisson [EMAIL PROTECTED] wrote:


On Tuesday 27th of March at 11am I became the proud father of our first
child, a baby girl, Jasmine Mae Sisson, weighing 3.6 kilos ( 7.92 pounds).

Lisa and Jasmine are doing well, although now very tired.

http://www.youtube.com/watch?v=T_F14GWYzZs

Regards,
John



Re: [ANNOUNCE] Please welcome Donald Woods as a new Geronimo committer

2007-03-28 Thread Shiva Kumar H R

Awesome ... congratulations David!

- Shiva

On 3/27/07, Kevan Miller [EMAIL PROTECTED] wrote:


All,

The Geronimo PMC is pleased to announce that Donald Woods has
recently accepted our invitation to become an Apache Geronimo
committer. Donald has been a long-term contributor to the Geronimo
project and has provided valuable fixes and enhancements in a number
of areas.

We're looking forward to Donald joining our project.

Congratulations and welcome to Donald!

--kevan



Re: [ANNOUNCE] Please welcome Donald Woods as a new Geronimo committer

2007-03-28 Thread Manu George

Congratulations donald

On 3/28/07, Shiva Kumar H R [EMAIL PROTECTED] wrote:

Awesome ... congratulations David!

- Shiva

On 3/27/07, Kevan Miller [EMAIL PROTECTED] wrote:
 All,

 The Geronimo PMC is pleased to announce that Donald Woods has
 recently accepted our invitation to become an Apache Geronimo
 committer. Donald has been a long-term contributor to the Geronimo
 project and has provided valuable fixes and enhancements in a number
 of areas.

 We're looking forward to Donald joining our project.

 Congratulations and welcome to Donald!

 --kevan





Re: [ANNOUNCE] Please welcome Rakesh Midha as a new Geronimo committer

2007-03-28 Thread Manu George

Congrats Rakesh

On 3/28/07, Shiva Kumar H R [EMAIL PROTECTED] wrote:

Congratulations Rakesh!

- Shiva


On 3/28/07, Paul McMahan [EMAIL PROTECTED] wrote:
 Congratulations Rakesh!!

 Best wishes,
 Paul

 On Mar 27, 2007, at 2:30 PM, Kevan Miller wrote:

  All,
 
  The Geronimo PMC is pleased to announce that Rakesh Midha has
  recently accepted our invitation to become an Apache Geronimo
  committer. Rakesh has contributed a number of significant
  enhancements to our Admin Console and deployment code.
 
  We're looking forward to Rakesh joining our project.
 
  Congratulations and welcome to Rakesh!
 
  --kevan






[BUILD] TRUNK: Failed for Revision: 523235

2007-03-28 Thread prasad
Building with Maven version: 2.0.5
Revision: 523235 built with tests included
See the full build-0500.log file at 
http://people.apache.org/~prasad/binaries/20070328/build-0500.log
 
[INFO] Detected Maven Version: 2.0.5 is allowed in the range [2.0.5,).
[INFO] [tools:copy-legal-files {execution: install-legal-files}]
[INFO] Created dir: 
/home/prasad/geronimo/trunk/modules/geronimo-jasper/target/classes/META-INF
[INFO] Copying 2 files to 
/home/prasad/geronimo/trunk/modules/geronimo-jasper/target/classes/META-INF
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
Downloading: 
http://tomcat.apache.org/dev/dist/m2-repository//org/apache/tomcat/jasper-jdt/6.0.10/jasper-jdt-6.0.10.pom
362b downloaded
Downloading: 
http://tomcat.apache.org/dev/dist/m2-repository//org/apache/tomcat/jasper-el/6.0.10/jasper-el-6.0.10.pom
557b downloaded
Downloading: 
http://tomcat.apache.org/dev/dist/m2-repository//org/apache/tomcat/el-api/6.0.10/el-api-6.0.10.pom
338b downloaded
[INFO] snapshot org.apache.geronimo.specs:geronimo-el_1.0_spec:1.0-SNAPSHOT: 
checking for updates from apache-snapshots
[INFO] snapshot org.apache.geronimo.specs:geronimo-el_1.0_spec:1.0-SNAPSHOT: 
checking for updates from codehaus-snapshots
[INFO] snapshot org.apache.geronimo.specs:geronimo-el_1.0_spec:1.0-SNAPSHOT: 
checking for updates from apache.snapshots
Downloading: 
http://people.apache.org/repo/m2-snapshot-repository/org/apache/geronimo/specs/geronimo-el_1.0_spec/1.0-SNAPSHOT/geronimo-el_1.0_spec-1.0-20070323.220418-4.pom
2K downloaded
Downloading: 
http://tomcat.apache.org/dev/dist/m2-repository//org/apache/tomcat/el-api/6.0.10/el-api-6.0.10.jar
26K downloaded
Downloading: 
http://tomcat.apache.org/dev/dist/m2-repository//org/apache/tomcat/jasper-el/6.0.10/jasper-el-6.0.10.jar
99K downloaded
Downloading: 
http://people.apache.org/repo/m2-snapshot-repository/org/apache/geronimo/specs/geronimo-el_1.0_spec/1.0-SNAPSHOT/geronimo-el_1.0_spec-1.0-20070323.220418-4.jar
33K downloaded
Downloading: 
http://tomcat.apache.org/dev/dist/m2-repository//org/apache/tomcat/jasper-jdt/6.0.10/jasper-jdt-6.0.10.jar
1307K downloaded
[INFO] [compiler:compile]
[INFO] Compiling 3 source files to 
/home/prasad/geronimo/trunk/modules/geronimo-jasper/target/classes
[INFO] [resources:testResources]
[INFO] Using default encoding to copy filtered resources.
Downloading: 
http://people.apache.org/repo/m2-snapshot-repository/org/apache/geronimo/specs/geronimo-el_1.0_spec/1.0-SNAPSHOT/geronimo-el_1.0_spec-1.0-20070323.220418-4.pom
2K downloaded
[INFO] [compiler:testCompile]
[INFO] No sources to compile
[INFO] [surefire:test]
[INFO] No tests to run.
[INFO] [jar:jar]
[INFO] Building jar: 
/home/prasad/geronimo/trunk/modules/geronimo-jasper/target/geronimo-jasper-2.0-SNAPSHOT.jar
[INFO] [tools:verify-legal-files {execution: verify-legal-files}]
[INFO] Checking legal files in: geronimo-jasper-2.0-SNAPSHOT.jar
[INFO] [install:install]
[INFO] Installing 
/home/prasad/geronimo/trunk/modules/geronimo-jasper/target/geronimo-jasper-2.0-SNAPSHOT.jar
 to 
/home/prasad/.m2/repository/org/apache/geronimo/modules/geronimo-jasper/2.0-SNAPSHOT/geronimo-jasper-2.0-SNAPSHOT.jar
[INFO] 

[INFO] Building Geronimo :: Jasper Builder
[INFO]task-segment: [install]
[INFO] 

[INFO] [enforcer:enforce {execution: default}]
[INFO] Detected JDK Version: 1.5.0 is allowed in the range [1.5,1.6).
[INFO] Detected Maven Version: 2.0.5 is allowed in the range [2.0.5,).
[INFO] [tools:copy-legal-files {execution: install-legal-files}]
[INFO] Created dir: 
/home/prasad/geronimo/trunk/modules/geronimo-jasper-builder/target/classes/META-INF
[INFO] Copying 2 files to 
/home/prasad/geronimo/trunk/modules/geronimo-jasper-builder/target/classes/META-INF
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
[WARNING] 
Artifact 
org.apache.geronimo.specs:geronimo-servlet_2.5_spec:jar:1.1-SNAPSHOT:test 
retains local scope 'test' overriding broader scope 'compile'
given by a dependency. If this is not intended, modify or remove the 
local scope.

[INFO] [compiler:compile]
[INFO] Compiling 1 source file to 
/home/prasad/geronimo/trunk/modules/geronimo-jasper-builder/target/classes
[INFO] 
[ERROR] BUILD FAILURE
[INFO] 
[INFO] Compilation failure

/home/prasad/geronimo/trunk/modules/geronimo-jasper-builder/src/main/java/org/apache/geronimo/jasper/deployment/JspModuleBuilderExtension.java:[553,53]
 cannot find symbol
symbol  : method 
convertToTldAttribute(java.lang.String,org.apache.xmlbeans.XmlCursor,org.apache.xmlbeans.XmlCursor)
location: class org.apache.geronimo.schema.SchemaConversionUtils

/home/prasad/geronimo/trunk/modules/geronimo-jasper

Re: [ANNOUNCE] Please welcome Donald Woods as a new Geronimo committer

2007-03-28 Thread Kanchana Welagedara
Congratulation! Donald!

Regards
Kanchana 
On Tue, 2007-03-27 at 14:25 -0400, Kevan Miller wrote:
 All,
 
 The Geronimo PMC is pleased to announce that Donald Woods has  
 recently accepted our invitation to become an Apache Geronimo  
 committer. Donald has been a long-term contributor to the Geronimo  
 project and has provided valuable fixes and enhancements in a number  
 of areas.
 
 We're looking forward to Donald joining our project.
 
 Congratulations and welcome to Donald!
 
 --kevan



Re: welcome-tomcat failed to start during server startup

2007-03-28 Thread Kanchana Welagedara
Hi,

I tried this on Linux during the same time period you are reporting this
I got the welcome-tomcat app nicely.

Regards
Kanchana
 
On Mon, 2007-03-26 at 16:23 -0400, Lin Sun wrote:
 Hi,
 
 welcome-tomcat app failed to start during server startup on my winxp 
 machine.  This is with a trunk I just refreshed.  First, I thought it 
 was just the welcome app, but when I tried to deploy the jaxws-war test 
 app, i got the same NoSuchMethodError error.
 
 Here's a snip of the error:
 
 16:15:25,546 ERROR [GBeanInstanceState] Error while starting; GBean is 
 now in the FAILED state: 
 abstractName=JEE5/JAXWSServlet/1.1/car?J2EEApplication=null,j2e
 eType=WebModule,name=JEE5/JAXWSServlet/1.1/car
 java.lang.NoSuchMethodError: 
 org.apache.geronimo.tomcat.GeronimoStandardContext.
 setLifecycleProvider(Lorg/apache/catalina/lifecycle/LifecycleProvider;)V
  at 
 org.apache.geronimo.tomcat.GeronimoStandardContext.setContextProperti
 es(GeronimoStandardContext.java:88)
  at 
 org.apache.geronimo.tomcat.TomcatContainer.addContext(TomcatContainer
 .java:253)
  at 
 org.apache.geronimo.tomcat.TomcatContainer$$FastClassByCGLIB$$9370b07
 3.invoke(generated)
  at net.sf.cglib.reflect.FastMethod.invoke(FastMethod.java:53)
  at 
 org.apache.geronimo.gbean.runtime.FastMethodInvoker.invoke(FastMethod
 Invoker.java:38)
  at 
 org.apache.geronimo.gbean.runtime.GBeanOperation.invoke(GBeanOperatio
 n.java:127)
 
 Anyone else hit this?  I'll switch to jetty for now.
 
 Lin
 
 



Re: [ANNOUNCE] Please welcome Rakesh Midha as a new Geronimo committer

2007-03-28 Thread Kanchana Welagedara
Congratulation!Rakesh.

So Party time at the next Geronimo BOF oki?;)


Regards 
Kanchana
On Tue, 2007-03-27 at 14:30 -0400, Kevan Miller wrote:
 All,
 
 The Geronimo PMC is pleased to announce that Rakesh Midha has  
 recently accepted our invitation to become an Apache Geronimo  
 committer. Rakesh has contributed a number of significant  
 enhancements to our Admin Console and deployment code.
 
 We're looking forward to Rakesh joining our project.
 
 Congratulations and welcome to Rakesh!
 
 --kevan



Upgrading 3.1.1 to xfire 1.2.5

2007-03-28 Thread Guillaume Nodet

What do you think about upgrading the 3.1.1 branch
to xfire 1.2.5 ? It solves a number of problems about
the generated wsdl, but as this wsdl is not the same
it may introduce compatibility problems ...
Or should we just upgrade trunk ?

--
Cheers,
Guillaume Nodet

Architect, LogicBlaze (http://www.logicblaze.com/)
Blog: http://gnodet.blogspot.com/


Switching trunk to full java 5 ?

2007-03-28 Thread Guillaume Nodet

Most of our components uses java 5 now.
The container itself works on JDK 1.4
with some minor modifications (see
http://issues.apache.org/activemq/browse/SM-848)
but i think it would be easier to officially switch
to JDK 5 for everything 
Thoughts ?

--
Cheers,
Guillaume Nodet

Architect, LogicBlaze (http://www.logicblaze.com/)
Blog: http://gnodet.blogspot.com/


Re: Switching trunk to full java 5 ?

2007-03-28 Thread Thomas TERMIN
Guillaume Nodet wrote:
 Most of our components uses java 5 now.
 The container itself works on JDK 1.4
 with some minor modifications (see
 http://issues.apache.org/activemq/browse/SM-848)
 but i think it would be easier to officially switch
 to JDK 5 for everything 
 Thoughts ?

I fully agree with you. ;-)




Geronimo trunk build failure

2007-03-28 Thread Rick McGuire
I'm getting the compile errors below when trying to build on my linux 
system, but strangely, not when building on Windows.  I've verified that 
the SchemaConversionUtils doesn't contain the missing methods on the 
Windows build, so I'm at a loss as to why that build is working.  I'm 
guessing somebody missed a check-in on that file.


Rick

|[INFO] [compiler:compile]|
|[INFO] Compiling 1 source file to 
/home/rick/Geronimo/builds/g/2.0/modules/geronimo-jasper-builder/target/classes|
|[INFO] 
|
|[ERROR] BUILD FAILURE|
|[INFO] 
|
|[INFO] Compilation failure|
| |
|/home/rick/Geronimo/builds/g/2.0/modules/geronimo-jasper-builder/src/main/java/org/apache/geronimo/jasper/deployment/JspModuleBuilderExtension.java:[553,53]
 cannot find symbol|
|symbol  : method 
convertToTldAttribute(java.lang.String,org.apache.xmlbeans.XmlCursor,org.apache.xmlbeans.XmlCursor)|
|location: class org.apache.geronimo.schema.SchemaConversionUtils|
| |
|/home/rick/Geronimo/builds/g/2.0/modules/geronimo-jasper-builder/src/main/java/org/apache/geronimo/jasper/deployment/JspModuleBuilderExtension.java:[559,45]
 cannot find symbol|
|symbol  : method 
convertToTldTag(java.lang.String,org.apache.xmlbeans.XmlCursor,org.apache.xmlbeans.XmlCursor)|
|location: class org.apache.geronimo.schema.SchemaConversionUtils|
| |
|/home/rick/Geronimo/builds/g/2.0/modules/geronimo-jasper-builder/src/main/java/org/apache/geronimo/jasper/deployment/JspModuleBuilderExtension.java:[605,53]
 cannot find symbol|
|symbol  : method 
convertToTldAttribute(java.lang.String,org.apache.xmlbeans.XmlCursor,org.apache.xmlbeans.XmlCursor)|
|location: class org.apache.geronimo.schema.SchemaConversionUtils|
| |
|/home/rick/Geronimo/builds/g/2.0/modules/geronimo-jasper-builder/src/main/java/org/apache/geronimo/jasper/deployment/JspModuleBuilderExtension.java:[611,53]
 cannot find symbol|
|symbol  : method 
convertToTldVariable(java.lang.String,org.apache.xmlbeans.XmlCursor,org.apache.xmlbeans.XmlCursor)|
|location: class org.apache.geronimo.schema.SchemaConversionUtils|
| |
|/home/rick/Geronimo/builds/g/2.0/modules/geronimo-jasper-builder/src/main/java/org/apache/geronimo/jasper/deployment/JspModuleBuilderExtension.java:[621,45]
 cannot find symbol|
|symbol  : method 
convertToTldTag(java.lang.String,org.apache.xmlbeans.XmlCursor,org.apache.xmlbeans.XmlCursor)|
|location: class org.apache.geronimo.schema.SchemaConversionUtils|
| |
|/home/rick/Geronimo/builds/g/2.0/modules/geronimo-jasper-builder/src/main/java/org/apache/geronimo/jasper/deployment/JspModuleBuilderExtension.java:[626,45]
 cannot find symbol|
|symbol  : method 
convertToTldValidator(java.lang.String,org.apache.xmlbeans.XmlCursor,org.apache.xmlbeans.XmlCursor)|
|location: class org.apache.geronimo.schema.SchemaConversionUtils|
| |
|/home/rick/Geronimo/builds/g/2.0/modules/geronimo-jasper-builder/src/main/java/org/apache/geronimo/jasper/deployment/JspModuleBuilderExtension.java:[632,53]
 cannot find symbol|
|symbol  : method 
convertToTldInitParam(java.lang.String,org.apache.xmlbeans.XmlCursor,org.apache.xmlbeans.XmlCursor)|
|location: class org.apache.geronimo.schema.SchemaConversionUtils|
| |
| |
|[INFO] 
|
|[INFO] For more information, run Maven with the -e switch|
|[INFO] 
|
|[INFO] Total time: 5 minutes 35 seconds|
|[INFO] Finished at: Wed Mar 28 07:49:31 EDT 2007|
|[INFO] Final Memory: 81M/254M|
|[INFO] 
|



Re: Using alternate .xsd files with PluginInstallerGBean

2007-03-28 Thread David Jencks
well, if you look at PluginInstallerGBean.createDocumentBuilder  
line1307, you'll see that it's going to use a file /META-INF/schema/ 
plugins-1.1.xsd located in the classpath.


I think you'll need to rebuild the system module replacing  
plugins-1.1.xsd with your version or make a new gbean in a module  
with your schema in the classpath, with  your schema named something  
else than plugins-1.1.xsd. maybe plugins-1.2.xsd :-)


thanks
david jencks

On Mar 28, 2007, at 1:33 AM, Jason Warner wrote:

I'm trying to use an alternate version of the plugins-1.1.xsd in  
testing a improvement I've been working on for the  
PluginInstallerGBean.  I am having trouble getting geronimo to use  
that one.  I'm not sure how to tell Geronimo to look at a different  
source for its .xsd needs.  I am able to host the files myself so  
that isn't an issue.  Anyone have any ideas?




[jira] Commented: (GERONIMO-3029) TLD files conversion testcases

2007-03-28 Thread David Jencks (JIRA)

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

David Jencks commented on GERONIMO-3029:


SchemaConversionUtils changes committed belatedly in rev 523291, sorry everyone.

 TLD files conversion testcases
 --

 Key: GERONIMO-3029
 URL: https://issues.apache.org/jira/browse/GERONIMO-3029
 Project: Geronimo
  Issue Type: Sub-task
  Security Level: public(Regular issues) 
Reporter: Tim McConnell
 Assigned To: Tim McConnell
 Fix For: 2.0-M4

 Attachments: GERONIMO-3029.patch, GERONIMO-3029.zip




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



Re: I'm now a dad !

2007-03-28 Thread David Jencks

Wonderful news!  I wish you all the joy in the world!

david jencks

On Mar 27, 2007, at 11:58 PM, John Sisson wrote:

On Tuesday 27th of March at 11am I became the proud father of our  
first child, a baby girl, Jasmine Mae Sisson, weighing 3.6 kilos  
( 7.92 pounds).


Lisa and Jasmine are doing well, although now very tired.

http://www.youtube.com/watch?v=T_F14GWYzZs

Regards,
John




Re: Geronimo trunk build failure

2007-03-28 Thread David Jencks
Sorry everyone, I missed committing the SchemaConversionUtils changes  
from Tims patch on GERONIMO-3029.  Should be fixed now.


david jencks

On Mar 28, 2007, at 8:08 AM, Rick McGuire wrote:

I'm getting the compile errors below when trying to build on my  
linux system, but strangely, not when building on Windows.  I've  
verified that the SchemaConversionUtils doesn't contain the missing  
methods on the Windows build, so I'm at a loss as to why that build  
is working.  I'm guessing somebody missed a check-in on that file.


Rick

|[INFO] [compiler:compile]|
|[INFO] Compiling 1 source file to /home/rick/Geronimo/builds/g/2.0/ 
modules/geronimo-jasper-builder/target/classes|
|[INFO]  
-- 
--|

|[ERROR] BUILD FAILURE|
|[INFO]  
-- 
--|

|[INFO] Compilation failure|
| |
|/home/rick/Geronimo/builds/g/2.0/modules/geronimo-jasper-builder/ 
src/main/java/org/apache/geronimo/jasper/deployment/ 
JspModuleBuilderExtension.java:[553,53] cannot find symbol|
|symbol  : method convertToTldAttribute 
(java.lang.String,org.apache.xmlbeans.XmlCursor,org.apache.xmlbeans.Xm 
lCursor)|

|location: class org.apache.geronimo.schema.SchemaConversionUtils|
| |
|/home/rick/Geronimo/builds/g/2.0/modules/geronimo-jasper-builder/ 
src/main/java/org/apache/geronimo/jasper/deployment/ 
JspModuleBuilderExtension.java:[559,45] cannot find symbol|
|symbol  : method convertToTldTag 
(java.lang.String,org.apache.xmlbeans.XmlCursor,org.apache.xmlbeans.Xm 
lCursor)|

|location: class org.apache.geronimo.schema.SchemaConversionUtils|
| |
|/home/rick/Geronimo/builds/g/2.0/modules/geronimo-jasper-builder/ 
src/main/java/org/apache/geronimo/jasper/deployment/ 
JspModuleBuilderExtension.java:[605,53] cannot find symbol|
|symbol  : method convertToTldAttribute 
(java.lang.String,org.apache.xmlbeans.XmlCursor,org.apache.xmlbeans.Xm 
lCursor)|

|location: class org.apache.geronimo.schema.SchemaConversionUtils|
| |
|/home/rick/Geronimo/builds/g/2.0/modules/geronimo-jasper-builder/ 
src/main/java/org/apache/geronimo/jasper/deployment/ 
JspModuleBuilderExtension.java:[611,53] cannot find symbol|
|symbol  : method convertToTldVariable 
(java.lang.String,org.apache.xmlbeans.XmlCursor,org.apache.xmlbeans.Xm 
lCursor)|

|location: class org.apache.geronimo.schema.SchemaConversionUtils|
| |
|/home/rick/Geronimo/builds/g/2.0/modules/geronimo-jasper-builder/ 
src/main/java/org/apache/geronimo/jasper/deployment/ 
JspModuleBuilderExtension.java:[621,45] cannot find symbol|
|symbol  : method convertToTldTag 
(java.lang.String,org.apache.xmlbeans.XmlCursor,org.apache.xmlbeans.Xm 
lCursor)|

|location: class org.apache.geronimo.schema.SchemaConversionUtils|
| |
|/home/rick/Geronimo/builds/g/2.0/modules/geronimo-jasper-builder/ 
src/main/java/org/apache/geronimo/jasper/deployment/ 
JspModuleBuilderExtension.java:[626,45] cannot find symbol|
|symbol  : method convertToTldValidator 
(java.lang.String,org.apache.xmlbeans.XmlCursor,org.apache.xmlbeans.Xm 
lCursor)|

|location: class org.apache.geronimo.schema.SchemaConversionUtils|
| |
|/home/rick/Geronimo/builds/g/2.0/modules/geronimo-jasper-builder/ 
src/main/java/org/apache/geronimo/jasper/deployment/ 
JspModuleBuilderExtension.java:[632,53] cannot find symbol|
|symbol  : method convertToTldInitParam 
(java.lang.String,org.apache.xmlbeans.XmlCursor,org.apache.xmlbeans.Xm 
lCursor)|

|location: class org.apache.geronimo.schema.SchemaConversionUtils|
| |
| |
|[INFO]  
-- 
--|

|[INFO] For more information, run Maven with the -e switch|
|[INFO]  
-- 
--|

|[INFO] Total time: 5 minutes 35 seconds|
|[INFO] Finished at: Wed Mar 28 07:49:31 EDT 2007|
|[INFO] Final Memory: 81M/254M|
|[INFO]  
-- 
--|






Re: [BUILD] TRUNK: Failed for Revision: 523235

2007-03-28 Thread David Jencks

should be fixed now, my apologies

david jencks

On Mar 28, 2007, at 5:15 AM, [EMAIL PROTECTED] wrote:


Building with Maven version: 2.0.5
Revision: 523235 built with tests included
See the full build-0500.log file at http://people.apache.org/ 
~prasad/binaries/20070328/build-0500.log


[INFO] Detected Maven Version: 2.0.5 is allowed in the range [2.0.5,).
[INFO] [tools:copy-legal-files {execution: install-legal-files}]
[INFO] Created dir: /home/prasad/geronimo/trunk/modules/geronimo- 
jasper/target/classes/META-INF
[INFO] Copying 2 files to /home/prasad/geronimo/trunk/modules/ 
geronimo-jasper/target/classes/META-INF

[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
Downloading: http://tomcat.apache.org/dev/dist/m2-repository//org/ 
apache/tomcat/jasper-jdt/6.0.10/jasper-jdt-6.0.10.pom

362b downloaded
Downloading: http://tomcat.apache.org/dev/dist/m2-repository//org/ 
apache/tomcat/jasper-el/6.0.10/jasper-el-6.0.10.pom

557b downloaded
Downloading: http://tomcat.apache.org/dev/dist/m2-repository//org/ 
apache/tomcat/el-api/6.0.10/el-api-6.0.10.pom

338b downloaded
[INFO] snapshot org.apache.geronimo.specs:geronimo-el_1.0_spec:1.0- 
SNAPSHOT: checking for updates from apache-snapshots
[INFO] snapshot org.apache.geronimo.specs:geronimo-el_1.0_spec:1.0- 
SNAPSHOT: checking for updates from codehaus-snapshots
[INFO] snapshot org.apache.geronimo.specs:geronimo-el_1.0_spec:1.0- 
SNAPSHOT: checking for updates from apache.snapshots
Downloading: http://people.apache.org/repo/m2-snapshot-repository/ 
org/apache/geronimo/specs/geronimo-el_1.0_spec/1.0-SNAPSHOT/ 
geronimo-el_1.0_spec-1.0-20070323.220418-4.pom

2K downloaded
Downloading: http://tomcat.apache.org/dev/dist/m2-repository//org/ 
apache/tomcat/el-api/6.0.10/el-api-6.0.10.jar

26K downloaded
Downloading: http://tomcat.apache.org/dev/dist/m2-repository//org/ 
apache/tomcat/jasper-el/6.0.10/jasper-el-6.0.10.jar

99K downloaded
Downloading: http://people.apache.org/repo/m2-snapshot-repository/ 
org/apache/geronimo/specs/geronimo-el_1.0_spec/1.0-SNAPSHOT/ 
geronimo-el_1.0_spec-1.0-20070323.220418-4.jar

33K downloaded
Downloading: http://tomcat.apache.org/dev/dist/m2-repository//org/ 
apache/tomcat/jasper-jdt/6.0.10/jasper-jdt-6.0.10.jar

1307K downloaded
[INFO] [compiler:compile]
[INFO] Compiling 3 source files to /home/prasad/geronimo/trunk/ 
modules/geronimo-jasper/target/classes

[INFO] [resources:testResources]
[INFO] Using default encoding to copy filtered resources.
Downloading: http://people.apache.org/repo/m2-snapshot-repository/ 
org/apache/geronimo/specs/geronimo-el_1.0_spec/1.0-SNAPSHOT/ 
geronimo-el_1.0_spec-1.0-20070323.220418-4.pom

2K downloaded
[INFO] [compiler:testCompile]
[INFO] No sources to compile
[INFO] [surefire:test]
[INFO] No tests to run.
[INFO] [jar:jar]
[INFO] Building jar: /home/prasad/geronimo/trunk/modules/geronimo- 
jasper/target/geronimo-jasper-2.0-SNAPSHOT.jar

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

[INFO] Building Geronimo :: Jasper Builder
[INFO]task-segment: [install]
[INFO]  
-- 
--

[INFO] [enforcer:enforce {execution: default}]
[INFO] Detected JDK Version: 1.5.0 is allowed in the range [1.5,1.6).
[INFO] Detected Maven Version: 2.0.5 is allowed in the range [2.0.5,).
[INFO] [tools:copy-legal-files {execution: install-legal-files}]
[INFO] Created dir: /home/prasad/geronimo/trunk/modules/geronimo- 
jasper-builder/target/classes/META-INF
[INFO] Copying 2 files to /home/prasad/geronimo/trunk/modules/ 
geronimo-jasper-builder/target/classes/META-INF

[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
[WARNING]
	Artifact org.apache.geronimo.specs:geronimo-servlet_2.5_spec:jar: 
1.1-SNAPSHOT:test retains local scope 'test' overriding broader  
scope 'compile'
	given by a dependency. If this is not intended, modify or remove  
the local scope.


[INFO] [compiler:compile]
[INFO] Compiling 1 source file to /home/prasad/geronimo/trunk/ 
modules/geronimo-jasper-builder/target/classes
[INFO]  
-- 
--

[ERROR] BUILD FAILURE
[INFO]  
-- 
--

[INFO] Compilation failure

/home/prasad/geronimo/trunk/modules/geronimo-jasper-builder/src/ 
main/java/org/apache/geronimo/jasper/deployment/ 
JspModuleBuilderExtension.java:[553,53] cannot find symbol
symbol  : method convertToTldAttribute 
(java.lang.String

Re: JPA Testsuite Error in Console

2007-03-28 Thread Lasantha Ranaweera

Kevan Miller wrote:

Hi Lasantha,
Yes, it's expected. I planned on sending a note to dev, but forgot... 
Now that we've enabled the jpa javaagent (see 
http://svn.apache.org/viewvc?view=revrevision=517581) in the server, 
you'll see these warning messages. (this has nothing to do with 
Surefire...). As you noted, it's not causing errors -- just pretty 
annoying. Masking the warning was not a trivial log4j property (or you 
wouldn't be seeing them...). At a minimum we'll mask the warnings. 
Better to avoid/fix the classloading issues all together. FYI -- the 
CNFE occurs for cglib generated classes...


--kevan

Hi Kevan,

Yes you are bang on target :-) .

Today I had a chance to build the Geronimo with OpenJPA SNAPSHOT version 
and these CNFE are cannot be seen now. So we can move these Exceptions 
in to the OpenJPA tray since it can only be seen with 0.9.6-incubating 
version  ;-) .


With the latest class enhancement methodology of JPA in Geronimo enable 
to can't we remove OpenJPA information from jpa-testsuite since it is 
mainly using for the class enhancement at the build time?


Thanks,
Lasantha











Re: I'm now a dad !

2007-03-28 Thread Guillaume Nodet

Congratulation to you and Lisa !
Jasmine is very cute :-)

On 3/28/07, John Sisson [EMAIL PROTECTED] wrote:


On Tuesday 27th of March at 11am I became the proud father of our first
child, a baby girl, Jasmine Mae Sisson, weighing 3.6 kilos ( 7.92 pounds).

Lisa and Jasmine are doing well, although now very tired.

http://www.youtube.com/watch?v=T_F14GWYzZs

Regards,
John





--
Cheers,
Guillaume Nodet

Architect, LogicBlaze (http://www.logicblaze.com/)
Blog: http://gnodet.blogspot.com/


Re: Using alternate .xsd files with PluginInstallerGBean

2007-03-28 Thread Jason Warner

That was an area I had messed around in before but, given what you have
said, I was confused about how to accomplish my goals.  I think I know
exactly what I need to do now.  Thanks!

Jason

On 3/28/07, David Jencks [EMAIL PROTECTED] wrote:


well, if you look at PluginInstallerGBean.createDocumentBuilder
line1307, you'll see that it's going to use a file /META-INF/schema/
plugins-1.1.xsd located in the classpath.

I think you'll need to rebuild the system module replacing
plugins-1.1.xsd with your version or make a new gbean in a module
with your schema in the classpath, with  your schema named something
else than plugins-1.1.xsd. maybe plugins-1.2.xsd :-)

thanks
david jencks

On Mar 28, 2007, at 1:33 AM, Jason Warner wrote:

 I'm trying to use an alternate version of the plugins-1.1.xsd in
 testing a improvement I've been working on for the
 PluginInstallerGBean.  I am having trouble getting geronimo to use
 that one.  I'm not sure how to tell Geronimo to look at a different
 source for its .xsd needs.  I am able to host the files myself so
 that isn't an issue.  Anyone have any ideas?




Re: Geronimo trunk build failure

2007-03-28 Thread Rick McGuire

David Jencks wrote:
Sorry everyone, I missed committing the SchemaConversionUtils changes 
from Tims patch on GERONIMO-3029.  Should be fixed now.
Thanks for the quick response.  Now if I could just figure out how I 
managed to get a clean build on Windows without those changes


Rick



david jencks

On Mar 28, 2007, at 8:08 AM, Rick McGuire wrote:

I'm getting the compile errors below when trying to build on my linux 
system, but strangely, not when building on Windows.  I've verified 
that the SchemaConversionUtils doesn't contain the missing methods on 
the Windows build, so I'm at a loss as to why that build is working.  
I'm guessing somebody missed a check-in on that file.


Rick

|[INFO] [compiler:compile]|
|[INFO] Compiling 1 source file to 
/home/rick/Geronimo/builds/g/2.0/modules/geronimo-jasper-builder/target/classes| 

|[INFO] 
| 


|[ERROR] BUILD FAILURE|
|[INFO] 
| 


|[INFO] Compilation failure|
| |
|/home/rick/Geronimo/builds/g/2.0/modules/geronimo-jasper-builder/src/main/java/org/apache/geronimo/jasper/deployment/JspModuleBuilderExtension.java:[553,53] 
cannot find symbol|
|symbol  : method 
convertToTldAttribute(java.lang.String,org.apache.xmlbeans.XmlCursor,org.apache.xmlbeans.XmlCursor)| 


|location: class org.apache.geronimo.schema.SchemaConversionUtils|
| |
|/home/rick/Geronimo/builds/g/2.0/modules/geronimo-jasper-builder/src/main/java/org/apache/geronimo/jasper/deployment/JspModuleBuilderExtension.java:[559,45] 
cannot find symbol|
|symbol  : method 
convertToTldTag(java.lang.String,org.apache.xmlbeans.XmlCursor,org.apache.xmlbeans.XmlCursor)| 


|location: class org.apache.geronimo.schema.SchemaConversionUtils|
| |
|/home/rick/Geronimo/builds/g/2.0/modules/geronimo-jasper-builder/src/main/java/org/apache/geronimo/jasper/deployment/JspModuleBuilderExtension.java:[605,53] 
cannot find symbol|
|symbol  : method 
convertToTldAttribute(java.lang.String,org.apache.xmlbeans.XmlCursor,org.apache.xmlbeans.XmlCursor)| 


|location: class org.apache.geronimo.schema.SchemaConversionUtils|
| |
|/home/rick/Geronimo/builds/g/2.0/modules/geronimo-jasper-builder/src/main/java/org/apache/geronimo/jasper/deployment/JspModuleBuilderExtension.java:[611,53] 
cannot find symbol|
|symbol  : method 
convertToTldVariable(java.lang.String,org.apache.xmlbeans.XmlCursor,org.apache.xmlbeans.XmlCursor)| 


|location: class org.apache.geronimo.schema.SchemaConversionUtils|
| |
|/home/rick/Geronimo/builds/g/2.0/modules/geronimo-jasper-builder/src/main/java/org/apache/geronimo/jasper/deployment/JspModuleBuilderExtension.java:[621,45] 
cannot find symbol|
|symbol  : method 
convertToTldTag(java.lang.String,org.apache.xmlbeans.XmlCursor,org.apache.xmlbeans.XmlCursor)| 


|location: class org.apache.geronimo.schema.SchemaConversionUtils|
| |
|/home/rick/Geronimo/builds/g/2.0/modules/geronimo-jasper-builder/src/main/java/org/apache/geronimo/jasper/deployment/JspModuleBuilderExtension.java:[626,45] 
cannot find symbol|
|symbol  : method 
convertToTldValidator(java.lang.String,org.apache.xmlbeans.XmlCursor,org.apache.xmlbeans.XmlCursor)| 


|location: class org.apache.geronimo.schema.SchemaConversionUtils|
| |
|/home/rick/Geronimo/builds/g/2.0/modules/geronimo-jasper-builder/src/main/java/org/apache/geronimo/jasper/deployment/JspModuleBuilderExtension.java:[632,53] 
cannot find symbol|
|symbol  : method 
convertToTldInitParam(java.lang.String,org.apache.xmlbeans.XmlCursor,org.apache.xmlbeans.XmlCursor)| 


|location: class org.apache.geronimo.schema.SchemaConversionUtils|
| |
| |
|[INFO] 
| 


|[INFO] For more information, run Maven with the -e switch|
|[INFO] 
| 


|[INFO] Total time: 5 minutes 35 seconds|
|[INFO] Finished at: Wed Mar 28 07:49:31 EDT 2007|
|[INFO] Final Memory: 81M/254M|
|[INFO] 
| 










Re: [ANNOUNCE] Please welcome Donald Woods as a new Geronimo committer

2007-03-28 Thread Alan D. Cabrera

Congrats Donald!


Regards,
Alan

On Mar 27, 2007, at 11:25 AM, Kevan Miller wrote:


All,

The Geronimo PMC is pleased to announce that Donald Woods has  
recently accepted our invitation to become an Apache Geronimo  
committer. Donald has been a long-term contributor to the Geronimo  
project and has provided valuable fixes and enhancements in a  
number of areas.


We're looking forward to Donald joining our project.

Congratulations and welcome to Donald!

--kevan





Re: [ANNOUNCE] Please welcome Rakesh Midha as a new Geronimo committer

2007-03-28 Thread Alan D. Cabrera

Congrats Rakesh!


Regards,
Alan

On Mar 27, 2007, at 11:30 AM, Kevan Miller wrote:


All,

The Geronimo PMC is pleased to announce that Rakesh Midha has  
recently accepted our invitation to become an Apache Geronimo  
committer. Rakesh has contributed a number of significant  
enhancements to our Admin Console and deployment code.


We're looking forward to Rakesh joining our project.

Congratulations and welcome to Rakesh!

--kevan





Re: Switching trunk to full java 5 ?

2007-03-28 Thread Alan D. Cabrera


On Mar 28, 2007, at 3:03 AM, Guillaume Nodet wrote:


Most of our components uses java 5 now.
The container itself works on JDK 1.4
with some minor modifications (see
http://issues.apache.org/activemq/browse/SM-848)
but i think it would be easier to officially switch
to JDK 5 for everything 
Thoughts ?


+1

I think that it will be confusing having varying JDK requirements.   
We need to move to JDK 1.5.



Regards,
Alan



Re: [ANNOUNCE] Please welcome Rakesh Midha as a new Geronimo committer

2007-03-28 Thread Davanum Srinivas

Welcome!

On 3/28/07, Alan D. Cabrera [EMAIL PROTECTED] wrote:

Congrats Rakesh!


Regards,
Alan

On Mar 27, 2007, at 11:30 AM, Kevan Miller wrote:

 All,

 The Geronimo PMC is pleased to announce that Rakesh Midha has
 recently accepted our invitation to become an Apache Geronimo
 committer. Rakesh has contributed a number of significant
 enhancements to our Admin Console and deployment code.

 We're looking forward to Rakesh joining our project.

 Congratulations and welcome to Rakesh!

 --kevan






--
Davanum Srinivas :: http://wso2.org/ :: Oxygen for Web Services Developers


Re: [ANNOUNCE] Please welcome Donald Woods as a new Geronimo committer

2007-03-28 Thread Davanum Srinivas

Welcome!

On 3/28/07, Alan D. Cabrera [EMAIL PROTECTED] wrote:

Congrats Donald!


Regards,
Alan

On Mar 27, 2007, at 11:25 AM, Kevan Miller wrote:

 All,

 The Geronimo PMC is pleased to announce that Donald Woods has
 recently accepted our invitation to become an Apache Geronimo
 committer. Donald has been a long-term contributor to the Geronimo
 project and has provided valuable fixes and enhancements in a
 number of areas.

 We're looking forward to Donald joining our project.

 Congratulations and welcome to Donald!

 --kevan






--
Davanum Srinivas :: http://wso2.org/ :: Oxygen for Web Services Developers


Re: JPA Testsuite Error in Console

2007-03-28 Thread Kevan Miller


On Mar 28, 2007, at 8:18 AM, Lasantha Ranaweera wrote:


Kevan Miller wrote:

Hi Lasantha,
Yes, it's expected. I planned on sending a note to dev, but  
forgot... Now that we've enabled the jpa javaagent (see http:// 
svn.apache.org/viewvc?view=revrevision=517581) in the server,  
you'll see these warning messages. (this has nothing to do with  
Surefire...). As you noted, it's not causing errors -- just pretty  
annoying. Masking the warning was not a trivial log4j property (or  
you wouldn't be seeing them...). At a minimum we'll mask the  
warnings. Better to avoid/fix the classloading issues all  
together. FYI -- the CNFE occurs for cglib generated classes...


--kevan

Hi Kevan,

Yes you are bang on target :-) .

Today I had a chance to build the Geronimo with OpenJPA SNAPSHOT  
version and these CNFE are cannot be seen now. So we can move these  
Exceptions in to the OpenJPA tray since it can only be seen with  
0.9.6-incubating version  ;-) .


Hi Lasantha,
That's interesting to hear. Thanks for checking that. Perhaps  
procrastination will pay off, this time... ;-)




With the latest class enhancement methodology of JPA in Geronimo  
enable to can't we remove OpenJPA information from jpa-testsuite  
since it is mainly using for the class enhancement at the build time?


Hmm, can you elaborate? Are you referring to what's in testsuite/ 
enterprise-testsuite/jpa-tests? I confess that I don't know what's  
there... Perhaps you or Prasad could explain...


--kevan




[jira] Commented: (GERONIMO-3020) Unable to deploy a web app to current trunk build of geronimo (rev 522077)

2007-03-28 Thread Rakesh Midha (JIRA)

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

Rakesh Midha commented on GERONIMO-3020:



But the question still remain, do we want to register DFwK or impl in DFwK or 
not. As Frank suggested before, pointing to the comments of rev 519908.

 Unable to deploy a web app to current trunk build of geronimo (rev 522077)
 --

 Key: GERONIMO-3020
 URL: https://issues.apache.org/jira/browse/GERONIMO-3020
 Project: Geronimo
  Issue Type: Bug
  Security Level: public(Regular issues) 
  Components: deployment
Affects Versions: 2.0-M5
 Environment: Linux - Java 1.5.0_08
Reporter: Jay D. McHugh
 Assigned To: Gianny Damour
Priority: Blocker
 Fix For: 2.0-M4

 Attachments: GERONIMO-3020-3.patch, J3020.patch, J3020_opt.patch, 
 JIRA3020_useDFWithKernel.patch


 Trying to deploy a web app from the web based admin console causes a servlet 
 exception.
 Deploying the same web app from the command line is successful.
 (ie: java -jar bin/deployer.jar --user system --password manager deploy 
 simple.war)
 You should be able to duplicate by trying to deploy the simple.war file from 
 geronimo-2786.
 Here is the stack trace:
 15:12:20,342 ERROR [[Deployment]] Servlet.service() for servlet Deployment 
 threw exception
 javax.servlet.ServletException
 at 
 org.apache.pluto.core.PortletServlet.dispatch(PortletServlet.java:260)
 at 
 org.apache.pluto.core.PortletServlet.doPost(PortletServlet.java:163)
 at javax.servlet.http.HttpServlet.service(HttpServlet.java:713)
 at javax.servlet.http.HttpServlet.service(HttpServlet.java:806)
 at 
 org.apache.pluto.core.PortletServlet.service(PortletServlet.java:153)
 at 
 org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
 at 
 org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
 at 
 org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:687)
 at 
 org.apache.catalina.core.ApplicationDispatcher.doInclude(ApplicationDispatcher.java:590)
 at 
 org.apache.catalina.core.ApplicationDispatcher.include(ApplicationDispatcher.java:505)
 at 
 org.apache.pluto.invoker.impl.PortletInvokerImpl.invoke(PortletInvokerImpl.java:120)
 at 
 org.apache.pluto.invoker.impl.PortletInvokerImpl.action(PortletInvokerImpl.java:68)
 at 
 org.apache.pluto.PortletContainerImpl.processPortletAction(PortletContainerImpl.java:164)
 at 
 org.apache.pluto.portalImpl.core.PortletContainerWrapperImpl.processPortletAction(PortletContainerWrapperImpl.java:82)
 at org.apache.pluto.portalImpl.Servlet.doGet(Servlet.java:227)
 at org.apache.pluto.portalImpl.Servlet.doPost(Servlet.java:267)
 at javax.servlet.http.HttpServlet.service(HttpServlet.java:713)
 at javax.servlet.http.HttpServlet.service(HttpServlet.java:806)
 at 
 org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
 at 
 org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
 at 
 org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:228)
 at 
 org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
 at 
 org.apache.geronimo.tomcat.valve.DefaultSubjectValve.invoke(DefaultSubjectValve.java:56)
 at 
 org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:525)
 at 
 org.apache.geronimo.tomcat.GeronimoStandardContext$SystemMethodValve.invoke(GeronimoStandardContext.java:324)
 at 
 org.apache.geronimo.tomcat.valve.GeronimoBeforeAfterValve.invoke(GeronimoBeforeAfterValve.java:47)
 at 
 org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
 at 
 org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:104)
 at 
 org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
 at 
 org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:543)
 at 
 org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:216)
 at 
 org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844)
 at 
 org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:634)
 at 
 org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:445)
 at java.lang.Thread.run(Thread.java:595)
 15:12:20,344 ERROR [PortletInvokerImpl] PortletInvokerImpl.render() - Error 
 while dispatching portlet.
 

Re: [ANNOUNCE] Please welcome Donald Woods as a new Geronimo committer

2007-03-28 Thread Prasad Kashyap

Congrats Donald !

Cheers
Prasad

On 3/27/07, Kevan Miller [EMAIL PROTECTED] wrote:

All,

The Geronimo PMC is pleased to announce that Donald Woods has
recently accepted our invitation to become an Apache Geronimo
committer. Donald has been a long-term contributor to the Geronimo
project and has provided valuable fixes and enhancements in a number
of areas.

We're looking forward to Donald joining our project.

Congratulations and welcome to Donald!

--kevan



Re: [ANNOUNCE] Please welcome Rakesh Midha as a new Geronimo committer

2007-03-28 Thread Prasad Kashyap

Congrats Rakesh !

Cheers
Prasad

On 3/27/07, Kevan Miller [EMAIL PROTECTED] wrote:

All,

The Geronimo PMC is pleased to announce that Rakesh Midha has
recently accepted our invitation to become an Apache Geronimo
committer. Rakesh has contributed a number of significant
enhancements to our Admin Console and deployment code.

We're looking forward to Rakesh joining our project.

Congratulations and welcome to Rakesh!

--kevan



Re: I'm now a dad !

2007-03-28 Thread Prasad Kashyap

Congrats to you and Lisa, John !  The baby is adorable.

Cheers
Prasad

On 3/27/07, John Sisson [EMAIL PROTECTED] wrote:

On Tuesday 27th of March at 11am I became the proud father of our first
child, a baby girl, Jasmine Mae Sisson, weighing 3.6 kilos ( 7.92 pounds).

Lisa and Jasmine are doing well, although now very tired.

http://www.youtube.com/watch?v=T_F14GWYzZs

Regards,
John



Branch for 2.0-M4 has been cut (SVN rev number 523337)

2007-03-28 Thread Matt Hogstrom

I created the branch and will be upgrading to 2.0-M4-SNAPSHOT

Geronimo SVN Rev was 523337
OpenEJB SVN Rev was 523338

Cheers.


Re: how to get the geronimo server path and find a few jars from repo?

2007-03-28 Thread Lin Sun


A bit update here...  So I put the tools.jar from JDK_home\lib to my .m2 
repo and updated the axis2 config pom.xml file to have that as a 
dependency.  I am able to pass this error and run the wsgen tools now 
inside of Axis2Builder(with some hardcoded values).


I don't think that is the right way to do things so could someone 
suggest a better way to load a jar that is not in the repo?


Thanks, Lin

Lin Sun wrote:

Hi David,

Thanks for your reply!

Yes I am basically invoking the WSToolsObjectFactory.wsgen from 
Axis2Builder, which will be invoked during deployment of the module when 
 .wsdl isn't provided for the service endpoint impl class.


I've build my classpath String (hardcoded values for now) as I need it 
to pass into the WSToolsObjectFactory.wsgen call, and I think it is 
running in geronimo kernel (see exception below).   But the kernel still 
needs to load the jar files.  For instance, the wsgen tool needs the 
JDK_home\lib\tools.jar from SUN's JDK, and the kernel doesn't seem to 
have it loaded so I kept getting a CNF error from the 
AnnotationProcessorFactory class in the tools.jar.   How do I load a jar 
from JDK in the kernel?


09:50:45,484 ERROR [Deployer] Deployment failed due to
java.lang.NoClassDefFoundError: 
com/sun/mirror/apt/AnnotationProcessorFactory

at java.lang.ClassLoader.defineClass1(Native Method)
at java.lang.ClassLoader.defineClass(Unknown Source)
at java.security.SecureClassLoader.defineClass(Unknown Source)
at 
org.apache.geronimo.kernel.classloader.JarFileClassLoader.access$200(

JarFileClassLoader.java:52)
at 
org.apache.geronimo.kernel.classloader.JarFileClassLoader$6.run(JarFi

leClassLoader.java:308)
at java.security.AccessController.doPrivileged(Native Method)
at 
org.apache.geronimo.kernel.classloader.JarFileClassLoader.findClass(J

arFileClassLoader.java:260)
at 
org.apache.geronimo.kernel.config.MultiParentClassLoader.loadClass(Mu

ltiParentClassLoader.java:299)

Thanks again, Lin

David Jencks wrote:


On Mar 22, 2007, at 2:06 PM, Lin Sun wrote:


Hi there,

I am trying to build a classpath string for the wsgen tools.  
Basically, I need to use a few sun jars, a few geronimo spec jars and 
a few axis2 jars and the module from the repository to build the 
classpath string. And I am trying to do this from Axis2Builder.


Jarek mentioned to me that I might be able to use configuration 
manager that can help me find the jars automatically if I just give 
it the group and actifact id.   Could someone shed some light on how 
to use that?


If there isn't such a manager avail, what is the best way to get the 
geronimo server path so that I can find the jars from the path myself?


ServerInfo can get you the server locations, but if there are lots of 
repositories installed that won't do you much good.


If you have a Repository and an artifactId you can get the File location

You might be able to travel through the ConfigurationManager to 
various ConfigurationStores and eventually end up with a classpath, 
but I wonder if it would be possible and/or simpler to run the tool in 
a geronimo kernel and use our classloaders?


thanks
david jencks



Thanks a lot

Lin











Re: I'm now a dad !

2007-03-28 Thread Lin Sun

Congratulations!!  your baby girl is sooo cute!!!

Lin

John Sisson wrote:
On Tuesday 27th of March at 11am I became the proud father of our first 
child, a baby girl, Jasmine Mae Sisson, weighing 3.6 kilos ( 7.92 pounds).


Lisa and Jasmine are doing well, although now very tired.

http://www.youtube.com/watch?v=T_F14GWYzZs

Regards,
John





Re: I'm now a dad !

2007-03-28 Thread Sean Qiu

Congratulations!! She is indeed so cute.

2007/3/28, Lin Sun [EMAIL PROTECTED]:

Congratulations!!  your baby girl is sooo cute!!!

Lin

John Sisson wrote:
 On Tuesday 27th of March at 11am I became the proud father of our first
 child, a baby girl, Jasmine Mae Sisson, weighing 3.6 kilos ( 7.92 pounds).

 Lisa and Jasmine are doing well, although now very tired.

 http://www.youtube.com/watch?v=T_F14GWYzZs

 Regards,
 John






--
Sean Qiu


Re: Branch for 2.0-M4 has been cut (SVN rev number 523337)

2007-03-28 Thread Hernan Cunico

Cool, I just put the M4 release notes template in the wiki

http://cwiki.apache.org/GMOxDOC20/release-notes-20-m4txt.html

Need your help for collecting this info:
* Significant Changes in the 2.0-M4 Release
* Functional Characteristics for 2.0-M4

Cheers!
Hernan

Matt Hogstrom wrote:

I created the branch and will be upgrading to 2.0-M4-SNAPSHOT

Geronimo SVN Rev was 523337
OpenEJB SVN Rev was 523338

Cheers.



[test] Can mvn site skip the process of generating javadoc?

2007-03-28 Thread Sean Qiu

Hi all

I want to see the unit test result after mvn surefire-report:report,
i can only get the jre without jdk tools like javadoc. So if i input
mvn site, it cannot find the javadoc and leads to fail.

And the process of generating javadoc is somewhat time-consuming and
duplicate.So can mvn site just skip the process of generation
javadoc?

Thanks.
--
Sean Qiu


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

2007-03-28 Thread Thomas Termin (JIRA)

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

Work on SM-876 started by Thomas Termin.

 jmx.xml should use the jmx.url property
 ---

 Key: SM-876
 URL: https://issues.apache.org/activemq/browse/SM-876
 Project: ServiceMix
  Issue Type: Improvement
Reporter: Thomas Termin
 Assigned To: Thomas Termin
Priority: Trivial
 Attachments: patch.jmx.xml


 Just a small patch. ;-) The jmx.xml should specify the jmx.url from 
 servicemix.properties. Furthermore the hostname should be configurable. (Very 
 nice for us)

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



[jira] Closed: (GERONIMO-3037) Shutdown exception in CORBA Adapter code.

2007-03-28 Thread Rick McGuire (JIRA)

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

Rick McGuire closed GERONIMO-3037.
--

Resolution: Fixed

Committed revision 523367.

 Shutdown exception in CORBA Adapter code.
 -

 Key: GERONIMO-3037
 URL: https://issues.apache.org/jira/browse/GERONIMO-3037
 Project: Geronimo
  Issue Type: Bug
  Security Level: public(Regular issues) 
Affects Versions: 2.0-M5
Reporter: Rick McGuire
 Assigned To: Rick McGuire
 Fix For: 2.0-M5


 The port of the CORBA Adapter code was not kind to the shutdown processing.  
 This code is unbinding() different names from the ones originally used for 
 the rebind() calls, resulting in a naming exception. 

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



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

2007-03-28 Thread Thomas Termin (JIRA)

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

Thomas Termin resolved SM-876.
--

Resolution: Fixed

Date: Wed Mar 28 08:01:33 2007
New Revision: 523355

URL: http://svn.apache.org/viewvc?view=revrev=523355
Log:
SM-876 jmx.xml should use the jmx.url property from servicemix.properties

Modified:

incubator/servicemix/trunk/distributions/apache-servicemix/src/main/release/conf/jmx.xml

incubator/servicemix/trunk/distributions/apache-servicemix/src/main/release/conf/servicemix.properties

 jmx.xml should use the jmx.url property
 ---

 Key: SM-876
 URL: https://issues.apache.org/activemq/browse/SM-876
 Project: ServiceMix
  Issue Type: Improvement
Reporter: Thomas Termin
 Assigned To: Thomas Termin
Priority: Trivial
 Attachments: patch.jmx.xml


 Just a small patch. ;-) The jmx.xml should specify the jmx.url from 
 servicemix.properties. Furthermore the hostname should be configurable. (Very 
 nice for us)

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



Re: how to get the geronimo server path and find a few jars from repo?

2007-03-28 Thread Davanum Srinivas

Lin,

Can you please upload your diff to the JIRA issue? and the url to
where you picked up the jaxws ri jar

thanks,
dims

On 3/28/07, Lin Sun [EMAIL PROTECTED] wrote:


A bit update here...  So I put the tools.jar from JDK_home\lib to my .m2
repo and updated the axis2 config pom.xml file to have that as a
dependency.  I am able to pass this error and run the wsgen tools now
inside of Axis2Builder(with some hardcoded values).

I don't think that is the right way to do things so could someone
suggest a better way to load a jar that is not in the repo?

Thanks, Lin

Lin Sun wrote:
 Hi David,

 Thanks for your reply!

 Yes I am basically invoking the WSToolsObjectFactory.wsgen from
 Axis2Builder, which will be invoked during deployment of the module when
  .wsdl isn't provided for the service endpoint impl class.

 I've build my classpath String (hardcoded values for now) as I need it
 to pass into the WSToolsObjectFactory.wsgen call, and I think it is
 running in geronimo kernel (see exception below).   But the kernel still
 needs to load the jar files.  For instance, the wsgen tool needs the
 JDK_home\lib\tools.jar from SUN's JDK, and the kernel doesn't seem to
 have it loaded so I kept getting a CNF error from the
 AnnotationProcessorFactory class in the tools.jar.   How do I load a jar
 from JDK in the kernel?

 09:50:45,484 ERROR [Deployer] Deployment failed due to
 java.lang.NoClassDefFoundError:
 com/sun/mirror/apt/AnnotationProcessorFactory
 at java.lang.ClassLoader.defineClass1(Native Method)
 at java.lang.ClassLoader.defineClass(Unknown Source)
 at java.security.SecureClassLoader.defineClass(Unknown Source)
 at
 org.apache.geronimo.kernel.classloader.JarFileClassLoader.access$200(
 JarFileClassLoader.java:52)
 at
 org.apache.geronimo.kernel.classloader.JarFileClassLoader$6.run(JarFi
 leClassLoader.java:308)
 at java.security.AccessController.doPrivileged(Native Method)
 at
 org.apache.geronimo.kernel.classloader.JarFileClassLoader.findClass(J
 arFileClassLoader.java:260)
 at
 org.apache.geronimo.kernel.config.MultiParentClassLoader.loadClass(Mu
 ltiParentClassLoader.java:299)

 Thanks again, Lin

 David Jencks wrote:

 On Mar 22, 2007, at 2:06 PM, Lin Sun wrote:

 Hi there,

 I am trying to build a classpath string for the wsgen tools.
 Basically, I need to use a few sun jars, a few geronimo spec jars and
 a few axis2 jars and the module from the repository to build the
 classpath string. And I am trying to do this from Axis2Builder.

 Jarek mentioned to me that I might be able to use configuration
 manager that can help me find the jars automatically if I just give
 it the group and actifact id.   Could someone shed some light on how
 to use that?

 If there isn't such a manager avail, what is the best way to get the
 geronimo server path so that I can find the jars from the path myself?

 ServerInfo can get you the server locations, but if there are lots of
 repositories installed that won't do you much good.

 If you have a Repository and an artifactId you can get the File location

 You might be able to travel through the ConfigurationManager to
 various ConfigurationStores and eventually end up with a classpath,
 but I wonder if it would be possible and/or simpler to run the tool in
 a geronimo kernel and use our classloaders?

 thanks
 david jencks


 Thanks a lot

 Lin










--
Davanum Srinivas :: http://wso2.org/ :: Oxygen for Web Services Developers


Re: I'm now a dad !

2007-03-28 Thread Tim McConnell

Very cool, congratulations !!!

Thanks,
Tim McConnell


John Sisson wrote:
On Tuesday 27th of March at 11am I became the proud father of our first 
child, a baby girl, Jasmine Mae Sisson, weighing 3.6 kilos ( 7.92 pounds).


Lisa and Jasmine are doing well, although now very tired.

http://www.youtube.com/watch?v=T_F14GWYzZs

Regards,
John



Re: [ANNOUNCE] Please welcome Donald Woods as a new Geronimo committer

2007-03-28 Thread Christopher M. Cardona

Congrats Donald !!

chris

Kevan Miller wrote:

All,

The Geronimo PMC is pleased to announce that Donald Woods has recently 
accepted our invitation to become an Apache Geronimo committer. Donald 
has been a long-term contributor to the Geronimo project and has 
provided valuable fixes and enhancements in a number of areas.


We're looking forward to Donald joining our project.

Congratulations and welcome to Donald!

--kevan





Re: [ANNOUNCE] Please welcome Rakesh Midha as a new Geronimo committer

2007-03-28 Thread Christopher M. Cardona

Congrats Rakesh !!

chris

Kevan Miller wrote:

All,

The Geronimo PMC is pleased to announce that Rakesh Midha has recently 
accepted our invitation to become an Apache Geronimo committer. Rakesh 
has contributed a number of significant enhancements to our Admin 
Console and deployment code.


We're looking forward to Rakesh joining our project.

Congratulations and welcome to Rakesh!

--kevan





[jira] Created: (GERONIMO-3038) h.tld file not getting properly generated to conform to the latest web-jsptaglibrary_2_1.xsd schema

2007-03-28 Thread Tim McConnell (JIRA)
h.tld file not getting properly generated to conform to the latest 
web-jsptaglibrary_2_1.xsd schema
---

 Key: GERONIMO-3038
 URL: https://issues.apache.org/jira/browse/GERONIMO-3038
 Project: Geronimo
  Issue Type: Bug
  Security Level: public (Regular issues)
  Components: web
Reporter: Tim McConnell
Priority: Minor




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



Re: [ANNOUNCE] Please welcome Rakesh Midha as a new Geronimo committer

2007-03-28 Thread Tim McConnell

Cool, congratulations Rakesh !!

Thanks,
Tim McConnell


Kevan Miller wrote:

All,

The Geronimo PMC is pleased to announce that Rakesh Midha has recently 
accepted our invitation to become an Apache Geronimo committer. Rakesh 
has contributed a number of significant enhancements to our Admin 
Console and deployment code.


We're looking forward to Rakesh joining our project.

Congratulations and welcome to Rakesh!

--kevan



EJB and JAXWS integration

2007-03-28 Thread Jarek Gawor

David, Dain,

I've been looking more into the OpenEJB and JAX-WS integration and I
think I identified a few things that I will need from the OpenEJB code
in order to get this integration done.

1) Handlers and security

After looking at EJB interceptors and JAX-WS handlers and realizing
that they are not quite the same I decided to let the JAX-WS engine to
invoke its handlers and EJB engine to invoke its interceptors (instead
of somehow wrapping a JAX-WS handler into an EJB interceptor). The
only thing that I need to do for handlers is ensure that method-level
authorization is performed before any JAX-WS handlers are executed.
For that, I believe I need to perform the following check in the very
first handler:

  getSecurityService().isCallerAuthorized(callMethod, null);

So, if in Geronimo I could somehow get a reference to the
SecurityService from DeploymentInfo or RpcContainer I would be set.

2)  InvocationContext and delaying deserialization/serialization of parameters

If OpenEJB allowed Geronimo to pass a custom implementation of the
InvocationContext object (e.g. maybe an extension of
ReflectionInvocationContext) I could modify it so that:

 a) getContextData() would return the same object as MessageContext
(as per spec)
 b) getParameters() would deserialize the SOAP message (delay deseralization)
 c) setParameters() would update the SOAP message
 d) proceed() would keep the object returned and the SOAP message in synch

Thoughts?

Thanks,
Jarek


Re: [ANNOUNCE] Please welcome Donald Woods as a new Geronimo committer

2007-03-28 Thread Tim McConnell

Way to go Donald !!

Thanks,
Tim McConnell


Kevan Miller wrote:

All,

The Geronimo PMC is pleased to announce that Donald Woods has recently 
accepted our invitation to become an Apache Geronimo committer. Donald 
has been a long-term contributor to the Geronimo project and has 
provided valuable fixes and enhancements in a number of areas.


We're looking forward to Donald joining our project.

Congratulations and welcome to Donald!

--kevan



[jira] Assigned: (GERONIMO-3038) h.tld file not getting properly generated to conform to the latest web-jsptaglibrary_2_1.xsd schema

2007-03-28 Thread Paul McMahan (JIRA)

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

Paul McMahan reassigned GERONIMO-3038:
--

Assignee: Paul McMahan

 h.tld file not getting properly generated to conform to the latest 
 web-jsptaglibrary_2_1.xsd schema
 ---

 Key: GERONIMO-3038
 URL: https://issues.apache.org/jira/browse/GERONIMO-3038
 Project: Geronimo
  Issue Type: Bug
  Security Level: public(Regular issues) 
  Components: web
Reporter: Tim McConnell
 Assigned To: Paul McMahan
Priority: Minor



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



[jira] Created: (GERONIMODEVTOOLS-138) Shipped plugin too large

2007-03-28 Thread Ted Kirby (JIRA)
Shipped plugin too large


 Key: GERONIMODEVTOOLS-138
 URL: https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-138
 Project: Geronimo-Devtools
  Issue Type: Bug
Reporter: Ted Kirby


The 2.0.0 plugin is now 58 MB, but 1.2.1 plugin is only 12 MB.
It seems some geronimo and eclipse jars are packaged into the plugin, greatly 
increasing its size.
Can these be removed to make the 2.0.0 plugin smaller?

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



[jira] Created: (GERONIMO-3039) upgrade to Scout snapshot

2007-03-28 Thread Joe Bohn (JIRA)
upgrade to Scout snapshot
-

 Key: GERONIMO-3039
 URL: https://issues.apache.org/jira/browse/GERONIMO-3039
 Project: Geronimo
  Issue Type: Task
  Security Level: public (Regular issues)
  Components: webservices
Affects Versions: 2.0-M5
Reporter: Joe Bohn
 Assigned To: Joe Bohn
 Fix For: 2.0-M5


Updates have gone into Scout so that it is no longer dependent on JUDDI

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



[jira] Updated: (GERONIMODEVTOOLS-138) Shipped plugin too large

2007-03-28 Thread Ted Kirby (JIRA)

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

Ted Kirby updated GERONIMODEVTOOLS-138:
---

Attachment: Rev518130-Rev515752-jars.txt

In comparing 515752 to 518130 builds, I have attached a list of 152 new jars in 
the plugin.

 Shipped plugin too large
 

 Key: GERONIMODEVTOOLS-138
 URL: 
 https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-138
 Project: Geronimo-Devtools
  Issue Type: Bug
Reporter: Ted Kirby
 Attachments: Rev518130-Rev515752-jars.txt


 The 2.0.0 plugin is now 58 MB, but 1.2.1 plugin is only 12 MB.
 It seems some geronimo and eclipse jars are packaged into the plugin, greatly 
 increasing its size.
 Can these be removed to make the 2.0.0 plugin smaller?

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



[jira] Closed: (GERONIMO-2871) @Resource not properly handling all DD elements (e.g., WebServiceContext, EJBContext , etc)

2007-03-28 Thread Tim McConnell (JIRA)

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

Tim McConnell closed GERONIMO-2871.
---

Resolution: Fixed

Fixed with various previous patches

 @Resource not properly handling all DD elements (e.g., WebServiceContext, 
 EJBContext , etc)
 ---

 Key: GERONIMO-2871
 URL: https://issues.apache.org/jira/browse/GERONIMO-2871
 Project: Geronimo
  Issue Type: Sub-task
  Security Level: public(Regular issues) 
Reporter: Tim McConnell
 Assigned To: Tim McConnell



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



[jira] Created: (GERONIMO-3040) Implement process to ensure all annotations are discovered and processed

2007-03-28 Thread Tim McConnell (JIRA)
Implement process to ensure all annotations are discovered and processed


 Key: GERONIMO-3040
 URL: https://issues.apache.org/jira/browse/GERONIMO-3040
 Project: Geronimo
  Issue Type: Sub-task
  Security Level: public (Regular issues)
Reporter: Tim McConnell
 Assigned To: Tim McConnell




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



[jira] Commented: (GERONIMODEVTOOLS-138) Shipped plugin too large

2007-03-28 Thread Sachin Patel (JIRA)

[ 
https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-138?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12484948
 ] 

Sachin Patel commented on GERONIMODEVTOOLS-138:
---

These are only daily drivers.  The primary install mechanism on the final 
version will be through the update manager and they will be broken down into 
multiple features.  So if you only wanted 2.0 support you only download the 
plugins that provide it.  I can look into creating multiple deployable.zip 
distributions for each version of G.

 Shipped plugin too large
 

 Key: GERONIMODEVTOOLS-138
 URL: 
 https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-138
 Project: Geronimo-Devtools
  Issue Type: Bug
Reporter: Ted Kirby
 Attachments: Rev518130-Rev515752-jars.txt


 The 2.0.0 plugin is now 58 MB, but 1.2.1 plugin is only 12 MB.
 It seems some geronimo and eclipse jars are packaged into the plugin, greatly 
 increasing its size.
 Can these be removed to make the 2.0.0 plugin smaller?

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



[jira] Commented: (GERONIMO-2977) Axis2: process wsdlLocation annotation when wsdl-file property isn't used in webservices.xml or there isn't webservices.xml

2007-03-28 Thread Davanum Srinivas (JIRA)

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

Davanum Srinivas commented on GERONIMO-2977:


looks good lin!

-- dims

 Axis2: process wsdlLocation annotation when wsdl-file property isn't used in 
 webservices.xml or there isn't webservices.xml
 ---

 Key: GERONIMO-2977
 URL: https://issues.apache.org/jira/browse/GERONIMO-2977
 Project: Geronimo
  Issue Type: Improvement
  Security Level: public(Regular issues) 
 Environment: sun 1.5 + winxp
Reporter: Lin Sun
 Attachments: G2977-latest.patch, G2977.patch


 Per discussion on dev list titled Questions for Axis2 folks re: JAXWS, this 
 patch will do the following:
 if wsdl-file property isn't specified in webservices.xml or there isn't a 
 webservices.xml but a user did supply a .wsdl file and specified the 
 wsdlLocation annotation, we will grab the value of the wsdlLocation from 
 annotation and set it in portInfo.   
 Has tried to test it by supplying wsdlLocation in jaxws-war file and worked 
 okay.  Patched will be supplied in a bit after a successful build.:)
 Lin

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



[jira] Commented: (GERONIMODEVTOOLS-138) Shipped plugin too large

2007-03-28 Thread Sachin Patel (JIRA)

[ 
https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-138?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12484951
 ] 

Sachin Patel commented on GERONIMODEVTOOLS-138:
---

Wait, how are you seeing 58 megs? Its only 13 megs. Are you sure you are 
looking at the eclipse plugin and not Geronimo itself?

 Shipped plugin too large
 

 Key: GERONIMODEVTOOLS-138
 URL: 
 https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-138
 Project: Geronimo-Devtools
  Issue Type: Bug
Reporter: Ted Kirby
 Attachments: Rev518130-Rev515752-jars.txt


 The 2.0.0 plugin is now 58 MB, but 1.2.1 plugin is only 12 MB.
 It seems some geronimo and eclipse jars are packaged into the plugin, greatly 
 increasing its size.
 Can these be removed to make the 2.0.0 plugin smaller?

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



Re: Crypto Export Updated

2007-03-28 Thread Jason Dillon
So, is this all we need to do for crypto?  Can we help the ActiveMQ  
folks do the same... so we can finally get an official release from  
them and move closer to getting 1.2 ready?


--jason


On Mar 27, 2007, at 9:51 PM, Matt Hogstrom wrote:

I've looked at the requirements for ASF projects regarding use of  
cryptography as well as required disclosures.  I have sent (under a  
separate e-mail) notifying the various entities about our status as  
an exporter.


As I'm compiling the release procedures with Sachin and Jacek  
(thanks for volunteering :) we'll make sure to include the  
additional requirements in the release process.


Here is a page that identifies the exporters and their (very  
general links) to said technology.  Not sure when the mirrors will  
pick up the updates.


http://www.apache.org/licenses/exports/

Cheers.




[jira] Closed: (GERONIMODEVTOOLS-138) Shipped plugin too large

2007-03-28 Thread Sachin Patel (JIRA)

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

Sachin Patel closed GERONIMODEVTOOLS-138.
-

Resolution: Invalid

 Shipped plugin too large
 

 Key: GERONIMODEVTOOLS-138
 URL: 
 https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-138
 Project: Geronimo-Devtools
  Issue Type: Bug
Reporter: Ted Kirby
 Attachments: Rev518130-Rev515752-jars.txt


 The 2.0.0 plugin is now 58 MB, but 1.2.1 plugin is only 12 MB.
 It seems some geronimo and eclipse jars are packaged into the plugin, greatly 
 increasing its size.
 Can these be removed to make the 2.0.0 plugin smaller?

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



Re: Crypto Export Updated

2007-03-28 Thread Jason Dillon

Actually both G and AMQ are both on this page now...

http://www.apache.org/licenses/exports/

Does that mean that the AMQ stuff is done too?   And that we can  
expect the official 4.1.1 soon?


--jason


On Mar 27, 2007, at 9:51 PM, Matt Hogstrom wrote:

I've looked at the requirements for ASF projects regarding use of  
cryptography as well as required disclosures.  I have sent (under a  
separate e-mail) notifying the various entities about our status as  
an exporter.


As I'm compiling the release procedures with Sachin and Jacek  
(thanks for volunteering :) we'll make sure to include the  
additional requirements in the release process.


Here is a page that identifies the exporters and their (very  
general links) to said technology.  Not sure when the mirrors will  
pick up the updates.


http://www.apache.org/licenses/exports/

Cheers.




Test failures in MyFaces Builder :-(

2007-03-28 Thread Jason Dillon

I ran this build twice from scratch, both fail in the same place...

snip
[INFO]  
 


[INFO] Building Geronimo :: MyFaces Builder
[INFO]task-segment: [install]
[INFO]  
 


[INFO] [enforcer:enforce {execution: default}]
[INFO] Detected JDK Version: 1.5.0 is allowed in the range [1.5,1.6).
[INFO] Detected Maven Version: 2.0.5 is allowed in the range [2.0.5,).
[INFO] [tools:copy-legal-files {execution: install-legal-files}]
[INFO] Created dir: /home/anthill/anthill3/agent/var/jobs/projects/ 
Geronimo_Components/build_trunk/project/modules/geronimo-myfaces- 
builder/target/classes/META-INF
[INFO] Copying 2 files to /home/anthill/anthill3/agent/var/jobs/ 
projects/Geronimo_Components/build_trunk/project/modules/geronimo- 
myfaces-builder/target/classes/META-INF

[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:compile]
[INFO] Compiling 1 source file to /home/anthill/anthill3/agent/var/ 
jobs/projects/Geronimo_Components/build_trunk/project/modules/ 
geronimo-myfaces-builder/target/classes

[INFO] [resources:testResources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:testCompile]
[INFO] Compiling 2 source files to /home/anthill/anthill3/agent/var/ 
jobs/projects/Geronimo_Components/build_trunk/project/modules/ 
geronimo-myfaces-builder/target/test-classes

[INFO] [surefire:test]
[INFO] Surefire report directory: /home/anthill/anthill3/agent/var/ 
jobs/projects/Geronimo_Components/build_trunk/project/modules/ 
geronimo-myfaces-builder/target/surefire-reports


---
 T E S T S
---
Running org.apache.geronimo.myfaces.deployment.BasicTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.078  
sec

Running org.apache.geronimo.myfaces.deployment.SchemaConversionTest
Tests run: 16, Failures: 0, Errors: 1, Skipped: 0, Time elapsed:  
1.958 sec  FAILURE!

/snip

--jason


Re: Test failures in MyFaces Builder :-(

2007-03-28 Thread Tim McConnell
Hi Jason, these new tests went in last night. It's odd though that you're only 
running 16 instead of the 17 tests. Could you attach the output from the two 
text files under the surefire-reports directory ??


Thanks,
Tim McConnell


Jason Dillon wrote:

I ran this build twice from scratch, both fail in the same place...

snip
[INFO] 
 


[INFO] Building Geronimo :: MyFaces Builder
[INFO]task-segment: [install]
[INFO] 
 


[INFO] [enforcer:enforce {execution: default}]
[INFO] Detected JDK Version: 1.5.0 is allowed in the range [1.5,1.6).
[INFO] Detected Maven Version: 2.0.5 is allowed in the range [2.0.5,).
[INFO] [tools:copy-legal-files {execution: install-legal-files}]
[INFO] Created dir: 
/home/anthill/anthill3/agent/var/jobs/projects/Geronimo_Components/build_trunk/project/modules/geronimo-myfaces-builder/target/classes/META-INF 

[INFO] Copying 2 files to 
/home/anthill/anthill3/agent/var/jobs/projects/Geronimo_Components/build_trunk/project/modules/geronimo-myfaces-builder/target/classes/META-INF 


[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:compile]
[INFO] Compiling 1 source file to 
/home/anthill/anthill3/agent/var/jobs/projects/Geronimo_Components/build_trunk/project/modules/geronimo-myfaces-builder/target/classes 


[INFO] [resources:testResources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:testCompile]
[INFO] Compiling 2 source files to 
/home/anthill/anthill3/agent/var/jobs/projects/Geronimo_Components/build_trunk/project/modules/geronimo-myfaces-builder/target/test-classes 


[INFO] [surefire:test]
[INFO] Surefire report directory: 
/home/anthill/anthill3/agent/var/jobs/projects/Geronimo_Components/build_trunk/project/modules/geronimo-myfaces-builder/target/surefire-reports 



---
 T E S T S
---
Running org.apache.geronimo.myfaces.deployment.BasicTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.078 sec
Running org.apache.geronimo.myfaces.deployment.SchemaConversionTest
Tests run: 16, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 1.958 
sec  FAILURE!

/snip

--jason



Re: Test failures in MyFaces Builder :-(

2007-03-28 Thread Jason Dillon

Here is org.apache.geronimo.myfaces.deployment.SchemaConversionTest.txt:

snip
 
---

Test set: org.apache.geronimo.myfaces.deployment.SchemaConversionTest
 
---
Tests run: 16, Failures: 0, Errors: 1, Skipped: 0, Time elapsed:  
1.958 sec  FAILURE!
testFacesConfig10Moderate 
(org.apache.geronimo.myfaces.deployment.SchemaConversionTest)  Time  
elapsed: 0.037 sec   ERROR!

java.lang.NullPointerException
at org.apache.xmlbeans.impl.schema.SchemaTypeLoaderBase.parse 
(SchemaTypeLoaderBase.java:265)
at org.apache.xmlbeans.XmlObject$Factory.parse 
(XmlObject.java:650)
at  
org.apache.geronimo.myfaces.deployment.SchemaConversionTest.parseAndComp 
are(SchemaConversionTest.java:152)
at  
org.apache.geronimo.myfaces.deployment.SchemaConversionTest.testFacesCon 
fig10Moderate(SchemaConversionTest.java:102)

/snip

and org.apache.geronimo.myfaces.deployment.BasicTest.txt:

snip
 
---

Test set: org.apache.geronimo.myfaces.deployment.BasicTest
 
---
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.078  
sec

/snip

 * * *

It running 16 tests, I just did not include the summary in the snip.

--jason



On Mar 28, 2007, at 12:08 PM, Tim McConnell wrote:

Hi Jason, these new tests went in last night. It's odd though that  
you're only running 16 instead of the 17 tests. Could you attach  
the output from the two text files under the surefire-reports  
directory ??


Thanks,
Tim McConnell


Jason Dillon wrote:

I ran this build twice from scratch, both fail in the same place...
snip
[INFO]  
- 
--- [INFO] Building Geronimo :: MyFaces Builder

[INFO]task-segment: [install]
[INFO]  
- 
--- [INFO] [enforcer:enforce {execution: default}]

[INFO] Detected JDK Version: 1.5.0 is allowed in the range [1.5,1.6).
[INFO] Detected Maven Version: 2.0.5 is allowed in the range  
[2.0.5,).

[INFO] [tools:copy-legal-files {execution: install-legal-files}]
[INFO] Created dir: /home/anthill/anthill3/agent/var/jobs/projects/ 
Geronimo_Components/build_trunk/project/modules/geronimo-myfaces- 
builder/target/classes/META-INF [INFO] Copying 2 files to /home/ 
anthill/anthill3/agent/var/jobs/projects/Geronimo_Components/ 
build_trunk/project/modules/geronimo-myfaces-builder/target/ 
classes/META-INF [INFO] [resources:resources]

[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:compile]
[INFO] Compiling 1 source file to /home/anthill/anthill3/agent/var/ 
jobs/projects/Geronimo_Components/build_trunk/project/modules/ 
geronimo-myfaces-builder/target/classes [INFO]  
[resources:testResources]

[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:testCompile]
[INFO] Compiling 2 source files to /home/anthill/anthill3/agent/ 
var/jobs/projects/Geronimo_Components/build_trunk/project/modules/ 
geronimo-myfaces-builder/target/test-classes [INFO] [surefire:test]
[INFO] Surefire report directory: /home/anthill/anthill3/agent/var/ 
jobs/projects/Geronimo_Components/build_trunk/project/modules/ 
geronimo-myfaces-builder/target/surefire-reports  
---

 T E S T S
---
Running org.apache.geronimo.myfaces.deployment.BasicTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed:  
0.078 sec

Running org.apache.geronimo.myfaces.deployment.SchemaConversionTest
Tests run: 16, Failures: 0, Errors: 1, Skipped: 0, Time elapsed:  
1.958 sec  FAILURE!

/snip
--jason




Re: Test failures in MyFaces Builder :-(

2007-03-28 Thread Tim McConnell
Hi Jason, that's my fault--I inadvertently named one of the expected XML files 
with an uppercase 'M' instead of a lowercase 'm', which presumably your OS 
cannot find. I'll open a Jira and apply a patch immediately


Thanks,
Tim McConnell


Jason Dillon wrote:

Here is org.apache.geronimo.myfaces.deployment.SchemaConversionTest.txt:

snip
--- 


Test set: org.apache.geronimo.myfaces.deployment.SchemaConversionTest
--- 

Tests run: 16, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 1.958 
sec  FAILURE!
testFacesConfig10Moderate(org.apache.geronimo.myfaces.deployment.SchemaConversionTest)  
Time elapsed: 0.037 sec   ERROR!

java.lang.NullPointerException
at 
org.apache.xmlbeans.impl.schema.SchemaTypeLoaderBase.parse(SchemaTypeLoaderBase.java:265) 


at org.apache.xmlbeans.XmlObject$Factory.parse(XmlObject.java:650)
at 
org.apache.geronimo.myfaces.deployment.SchemaConversionTest.parseAndCompare(SchemaConversionTest.java:152) 

at 
org.apache.geronimo.myfaces.deployment.SchemaConversionTest.testFacesConfig10Moderate(SchemaConversionTest.java:102) 


/snip

and org.apache.geronimo.myfaces.deployment.BasicTest.txt:

snip
--- 


Test set: org.apache.geronimo.myfaces.deployment.BasicTest
--- 


Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.078 sec
/snip

 * * *

It running 16 tests, I just did not include the summary in the snip.

--jason



On Mar 28, 2007, at 12:08 PM, Tim McConnell wrote:

Hi Jason, these new tests went in last night. It's odd though that 
you're only running 16 instead of the 17 tests. Could you attach the 
output from the two text files under the surefire-reports directory ??


Thanks,
Tim McConnell


Jason Dillon wrote:

I ran this build twice from scratch, both fail in the same place...
snip
[INFO] 
 
[INFO] Building Geronimo :: MyFaces Builder

[INFO]task-segment: [install]
[INFO] 
 
[INFO] [enforcer:enforce {execution: default}]

[INFO] Detected JDK Version: 1.5.0 is allowed in the range [1.5,1.6).
[INFO] Detected Maven Version: 2.0.5 is allowed in the range [2.0.5,).
[INFO] [tools:copy-legal-files {execution: install-legal-files}]
[INFO] Created dir: 
/home/anthill/anthill3/agent/var/jobs/projects/Geronimo_Components/build_trunk/project/modules/geronimo-myfaces-builder/target/classes/META-INF 
[INFO] Copying 2 files to 
/home/anthill/anthill3/agent/var/jobs/projects/Geronimo_Components/build_trunk/project/modules/geronimo-myfaces-builder/target/classes/META-INF 
[INFO] [resources:resources]

[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:compile]
[INFO] Compiling 1 source file to 
/home/anthill/anthill3/agent/var/jobs/projects/Geronimo_Components/build_trunk/project/modules/geronimo-myfaces-builder/target/classes 
[INFO] [resources:testResources]

[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:testCompile]
[INFO] Compiling 2 source files to 
/home/anthill/anthill3/agent/var/jobs/projects/Geronimo_Components/build_trunk/project/modules/geronimo-myfaces-builder/target/test-classes 
[INFO] [surefire:test]
[INFO] Surefire report directory: 
/home/anthill/anthill3/agent/var/jobs/projects/Geronimo_Components/build_trunk/project/modules/geronimo-myfaces-builder/target/surefire-reports 
---

 T E S T S
---
Running org.apache.geronimo.myfaces.deployment.BasicTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.078 
sec

Running org.apache.geronimo.myfaces.deployment.SchemaConversionTest
Tests run: 16, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 
1.958 sec  FAILURE!

/snip
--jason





[jira] Created: (GERONIMO-3041) MyfacesBuilder testcase failure

2007-03-28 Thread Tim McConnell (JIRA)
MyfacesBuilder testcase failure
---

 Key: GERONIMO-3041
 URL: https://issues.apache.org/jira/browse/GERONIMO-3041
 Project: Geronimo
  Issue Type: Sub-task
  Security Level: public (Regular issues)
Reporter: Tim McConnell
 Assigned To: Tim McConnell




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



[jira] Updated: (GERONIMO-3041) MyfacesBuilder testcase failure

2007-03-28 Thread Tim McConnell (JIRA)

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

Tim McConnell updated GERONIMO-3041:


Attachment: GERONIMO-3041.patch

faces-config-Moderate-expected.xml corrected to 
faces-config-moderate-expected.xml (with lowercase 'm' in moderate)

 MyfacesBuilder testcase failure
 ---

 Key: GERONIMO-3041
 URL: https://issues.apache.org/jira/browse/GERONIMO-3041
 Project: Geronimo
  Issue Type: Sub-task
  Security Level: public(Regular issues) 
Reporter: Tim McConnell
 Assigned To: Tim McConnell
 Attachments: GERONIMO-3041.patch




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



Re: Test failures in MyFaces Builder :-(

2007-03-28 Thread Jason Dillon

Applied, re-running to see if its gone. Thanks Tim :-)

--jason


On Mar 28, 2007, at 12:33 PM, Tim McConnell wrote:

Hi Jason, that's my fault--I inadvertently named one of the  
expected XML files with an uppercase 'M' instead of a lowercase  
'm', which presumably your OS cannot find. I'll open a Jira and  
apply a patch immediately


Thanks,
Tim McConnell


Jason Dillon wrote:
Here is  
org.apache.geronimo.myfaces.deployment.SchemaConversionTest.txt:

snip
- 
-- Test set:  
org.apache.geronimo.myfaces.deployment.SchemaConversionTest
- 
-- Tests run: 16, Failures: 0, Errors: 1, Skipped: 0, Time  
elapsed: 1.958 sec  FAILURE!
testFacesConfig10Moderate 
(org.apache.geronimo.myfaces.deployment.SchemaConversionTest)   
Time elapsed: 0.037 sec   ERROR!

java.lang.NullPointerException
at  
org.apache.xmlbeans.impl.schema.SchemaTypeLoaderBase.parse 
(SchemaTypeLoaderBase.java:265) at  
org.apache.xmlbeans.XmlObject$Factory.parse(XmlObject.java:650)
at  
org.apache.geronimo.myfaces.deployment.SchemaConversionTest.parseAndC 
ompare(SchemaConversionTest.java:152) at  
org.apache.geronimo.myfaces.deployment.SchemaConversionTest.testFaces 
Config10Moderate(SchemaConversionTest.java:102) /snip

and org.apache.geronimo.myfaces.deployment.BasicTest.txt:
snip
- 
-- Test set: org.apache.geronimo.myfaces.deployment.BasicTest
- 
-- Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time  
elapsed: 0.078 sec

/snip
 * * *
It running 16 tests, I just did not include the summary in the snip.
--jason
On Mar 28, 2007, at 12:08 PM, Tim McConnell wrote:
Hi Jason, these new tests went in last night. It's odd though  
that you're only running 16 instead of the 17 tests. Could you  
attach the output from the two text files under the surefire- 
reports directory ??


Thanks,
Tim McConnell


Jason Dillon wrote:

I ran this build twice from scratch, both fail in the same place...
snip
[INFO]  
--- 
- [INFO] Building Geronimo :: MyFaces Builder

[INFO]task-segment: [install]
[INFO]  
--- 
- [INFO] [enforcer:enforce {execution: default}]
[INFO] Detected JDK Version: 1.5.0 is allowed in the range  
[1.5,1.6).
[INFO] Detected Maven Version: 2.0.5 is allowed in the range  
[2.0.5,).

[INFO] [tools:copy-legal-files {execution: install-legal-files}]
[INFO] Created dir: /home/anthill/anthill3/agent/var/jobs/ 
projects/Geronimo_Components/build_trunk/project/modules/ 
geronimo-myfaces-builder/target/classes/META-INF [INFO] Copying  
2 files to /home/anthill/anthill3/agent/var/jobs/projects/ 
Geronimo_Components/build_trunk/project/modules/geronimo-myfaces- 
builder/target/classes/META-INF [INFO] [resources:resources]

[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:compile]
[INFO] Compiling 1 source file to /home/anthill/anthill3/agent/ 
var/jobs/projects/Geronimo_Components/build_trunk/project/ 
modules/geronimo-myfaces-builder/target/classes [INFO]  
[resources:testResources]

[INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:testCompile]
[INFO] Compiling 2 source files to /home/anthill/anthill3/agent/ 
var/jobs/projects/Geronimo_Components/build_trunk/project/ 
modules/geronimo-myfaces-builder/target/test-classes [INFO]  
[surefire:test]
[INFO] Surefire report directory: /home/anthill/anthill3/agent/ 
var/jobs/projects/Geronimo_Components/build_trunk/project/ 
modules/geronimo-myfaces-builder/target/surefire-reports  
---

 T E S T S
---
Running org.apache.geronimo.myfaces.deployment.BasicTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed:  
0.078 sec

Running org.apache.geronimo.myfaces.deployment.SchemaConversionTest
Tests run: 16, Failures: 0, Errors: 1, Skipped: 0, Time elapsed:  
1.958 sec  FAILURE!

/snip
--jason




[jira] Assigned: (GERONIMO-3041) MyfacesBuilder testcase failure

2007-03-28 Thread Jason Dillon (JIRA)

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

Jason Dillon reassigned GERONIMO-3041:
--

Assignee: Jason Dillon  (was: Tim McConnell)

 MyfacesBuilder testcase failure
 ---

 Key: GERONIMO-3041
 URL: https://issues.apache.org/jira/browse/GERONIMO-3041
 Project: Geronimo
  Issue Type: Sub-task
  Security Level: public(Regular issues) 
Reporter: Tim McConnell
 Assigned To: Jason Dillon
 Fix For: 2.0-M5

 Attachments: GERONIMO-3041.patch




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



[jira] Closed: (GERONIMO-3041) MyfacesBuilder testcase failure

2007-03-28 Thread Jason Dillon (JIRA)

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

Jason Dillon closed GERONIMO-3041.
--

   Resolution: Fixed
Fix Version/s: 2.0-M5

Applied

 MyfacesBuilder testcase failure
 ---

 Key: GERONIMO-3041
 URL: https://issues.apache.org/jira/browse/GERONIMO-3041
 Project: Geronimo
  Issue Type: Sub-task
  Security Level: public(Regular issues) 
Reporter: Tim McConnell
 Assigned To: Jason Dillon
 Fix For: 2.0-M5

 Attachments: GERONIMO-3041.patch




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



Re: Crypto Export Updated

2007-03-28 Thread Matt Hogstrom
It looks like Brian has already done the same from AMQ...let me ping  
them.


On Mar 28, 2007, at 2:41 PM, Jason Dillon wrote:

So, is this all we need to do for crypto?  Can we help the ActiveMQ  
folks do the same... so we can finally get an official release from  
them and move closer to getting 1.2 ready?


--jason


On Mar 27, 2007, at 9:51 PM, Matt Hogstrom wrote:

I've looked at the requirements for ASF projects regarding use of  
cryptography as well as required disclosures.  I have sent (under  
a separate e-mail) notifying the various entities about our status  
as an exporter.


As I'm compiling the release procedures with Sachin and Jacek  
(thanks for volunteering :) we'll make sure to include the  
additional requirements in the release process.


Here is a page that identifies the exporters and their (very  
general links) to said technology.  Not sure when the mirrors will  
pick up the updates.


http://www.apache.org/licenses/exports/

Cheers.







[jira] Created: (GERONIMODEVTOOLS-139) Build failure with rev 523427

2007-03-28 Thread Ted Kirby (JIRA)
Build failure with rev 523427
-

 Key: GERONIMODEVTOOLS-139
 URL: https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-139
 Project: Geronimo-Devtools
  Issue Type: Bug
  Components: eclipse-plugin
Affects Versions: 2.0
Reporter: Ted Kirby


[INFO] 
[ERROR] BUILD ERROR
[INFO] 
[INFO] Failed to resolve artifact.

Missing:
--
1) org.apache.geronimo.specs:geronimo-qname_1.1_spec:test:1.0.1

  Try downloading the file manually from the project website.

  Then, install it using the command:
  mvn install:install-file -DgroupId=org.apache.geronimo.specs -DartifactId=
geronimo-qname_1.1_spec \
  -Dversion=1.0.1 -Dpackaging=test -Dfile=/path/to/file

  Path to dependency:
1) org.apache.geronimo.devtools:geronimo-1.1-emf:jar:1.0
2) openejb:openejb-pkgen-builder:jar:2.1.1
3) geronimo:geronimo-kernel:jar:1.1.1
4) org.apache.geronimo.specs:geronimo-qname_1.1_spec:test:1.0.1

--
1 required artifact is missing.

for artifact:
  org.apache.geronimo.devtools:geronimo-1.1-emf:jar:1.0

from the specified remote repositories:
  sppatel (http://people.apache.org/~sppatel/maven/repository/),
  codehaus-snapshots (http://snapshots.repository.codehaus.org),
  central (http://repo1.maven.org/maven2),
  apache.incubator (http://people.apache.org/repo/m2-incubating-repository/),
  apache-snapshots (http://people.apache.org/repo/m2-snapshot-repository)


[INFO] 
[INFO] For more information, run Maven with the -e switch
[INFO] 
[INFO] Total time: 52 minutes 26 seconds
[INFO] Finished at: Wed Mar 28 16:19:24 EDT 2007
[INFO] Final Memory: 20M/76M
[INFO] 

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



2.0-M4-SNAPSHOT lives - assemblies available for a test drive

2007-03-28 Thread Matt Hogstrom

I cut the branch this morning and have updated it to 2.0-M4-SNAPSHOT.

If folks could take a peek at these assemblies and see if the late  
breaking issues were resolved that would be great.  If you don't want  
to build it yourself you can find the assemblies here:


http://people.apache.org/repo/m2-snapshot-repository/org/apache/ 
geronimo/assemblies/geronimo-tomcat6-jee5/2.0-M4-SNAPSHOT/
http://people.apache.org/repo/m2-snapshot-repository/org/apache/ 
geronimo/assemblies/geronimo-jetty6-jee5/2.0-M4-SNAPSHOT/


I'll be doing some sniff testing and if there are no negative  
comments I'll look to package up a set of binaries to vote on for  
tomorrow.


Thanks


[jira] Updated: (GERONIMODEVTOOLS-132) Trunk fails to build with a clean repo due to missing geronimo-qname_1.1_spec exclusion in emf 1.1

2007-03-28 Thread Donald Woods (JIRA)

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

Donald Woods updated GERONIMODEVTOOLS-132:
--

Priority: Blocker  (was: Major)

Uping to a Blocker, since someone else verified this is still a problem (see 
GERONIMODEVTOOLS-139)  when building on WinXP with a clean m2 repo.

 Trunk fails to build with a clean repo due to missing geronimo-qname_1.1_spec 
 exclusion in emf 1.1
 --

 Key: GERONIMODEVTOOLS-132
 URL: 
 https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-132
 Project: Geronimo-Devtools
  Issue Type: Bug
  Components: eclipse-plugin
Affects Versions: 2.0
 Environment: WinXP, Java 1.5, Maven 2.0.5
Reporter: Donald Woods
 Assigned To: Sachin Patel
Priority: Blocker
 Fix For: 2.0

 Attachments: Devtools-132.patch


 The EMF build for Geronimo 1.1 fails due to a missing geronimo-qname_1.1_spec 
 exclusion in the pom.xml for openejb-pkgen-builder.

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



What is the deal with geronimo-javaee-deployment_1.1MR3_spec

2007-03-28 Thread Jason Dillon
I really hate that we have version information in artifactIds... this  
is a huge PITA when the version needs to be changed.  This is a  
*very* bad practice.  Can we please stop this madness?


--jason


[jira] Commented: (GERONIMODEVTOOLS-132) Trunk fails to build with a clean repo due to missing geronimo-qname_1.1_spec exclusion in emf 1.1

2007-03-28 Thread Ted Kirby (JIRA)

[ 
https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-132?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12484992
 ] 

Ted Kirby commented on GERONIMODEVTOOLS-132:


This fix worked for me.  I get a successful build.

 Trunk fails to build with a clean repo due to missing geronimo-qname_1.1_spec 
 exclusion in emf 1.1
 --

 Key: GERONIMODEVTOOLS-132
 URL: 
 https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-132
 Project: Geronimo-Devtools
  Issue Type: Bug
  Components: eclipse-plugin
Affects Versions: 2.0
 Environment: WinXP, Java 1.5, Maven 2.0.5
Reporter: Donald Woods
 Assigned To: Sachin Patel
Priority: Blocker
 Fix For: 2.0

 Attachments: Devtools-132.patch


 The EMF build for Geronimo 1.1 fails due to a missing geronimo-qname_1.1_spec 
 exclusion in the pom.xml for openejb-pkgen-builder.

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



[jira] Commented: (GERONIMODEVTOOLS-139) Build failure with rev 523427

2007-03-28 Thread Ted Kirby (JIRA)

[ 
https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-139?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12484993
 ] 

Ted Kirby commented on GERONIMODEVTOOLS-139:


That fix worked for me.  I get a successful build.

 Build failure with rev 523427
 -

 Key: GERONIMODEVTOOLS-139
 URL: 
 https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-139
 Project: Geronimo-Devtools
  Issue Type: Bug
  Components: eclipse-plugin
Affects Versions: 2.0
Reporter: Ted Kirby

 [INFO] 
 
 [ERROR] BUILD ERROR
 [INFO] 
 
 [INFO] Failed to resolve artifact.
 Missing:
 --
 1) org.apache.geronimo.specs:geronimo-qname_1.1_spec:test:1.0.1
   Try downloading the file manually from the project website.
   Then, install it using the command:
   mvn install:install-file -DgroupId=org.apache.geronimo.specs 
 -DartifactId=
 geronimo-qname_1.1_spec \
   -Dversion=1.0.1 -Dpackaging=test -Dfile=/path/to/file
   Path to dependency:
 1) org.apache.geronimo.devtools:geronimo-1.1-emf:jar:1.0
 2) openejb:openejb-pkgen-builder:jar:2.1.1
 3) geronimo:geronimo-kernel:jar:1.1.1
 4) org.apache.geronimo.specs:geronimo-qname_1.1_spec:test:1.0.1
 --
 1 required artifact is missing.
 for artifact:
   org.apache.geronimo.devtools:geronimo-1.1-emf:jar:1.0
 from the specified remote repositories:
   sppatel (http://people.apache.org/~sppatel/maven/repository/),
   codehaus-snapshots (http://snapshots.repository.codehaus.org),
   central (http://repo1.maven.org/maven2),
   apache.incubator (http://people.apache.org/repo/m2-incubating-repository/),
   apache-snapshots (http://people.apache.org/repo/m2-snapshot-repository)
 [INFO] 
 
 [INFO] For more information, run Maven with the -e switch
 [INFO] 
 
 [INFO] Total time: 52 minutes 26 seconds
 [INFO] Finished at: Wed Mar 28 16:19:24 EDT 2007
 [INFO] Final Memory: 20M/76M
 [INFO] 
 

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



[jira] Commented: (GERONIMODEVTOOLS-138) Shipped plugin too large

2007-03-28 Thread Ted Kirby (JIRA)

[ 
https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-138?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12484997
 ] 

Ted Kirby commented on GERONIMODEVTOOLS-138:


I cleaned up my repo and source, reextracted, applied fix for JIRAs 132/139, 
got a successful build, and the deployable zip file is 13 Meg.  This size is 
acceptable, so I concur this issue may remain closed.

 Shipped plugin too large
 

 Key: GERONIMODEVTOOLS-138
 URL: 
 https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-138
 Project: Geronimo-Devtools
  Issue Type: Bug
Reporter: Ted Kirby
 Attachments: Rev518130-Rev515752-jars.txt


 The 2.0.0 plugin is now 58 MB, but 1.2.1 plugin is only 12 MB.
 It seems some geronimo and eclipse jars are packaged into the plugin, greatly 
 increasing its size.
 Can these be removed to make the 2.0.0 plugin smaller?

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



[jira] Updated: (GERONIMO-3039) upgrade to Scout snapshot

2007-03-28 Thread Joe Bohn (JIRA)

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

Joe Bohn updated GERONIMO-3039:
---

Priority: Minor  (was: Major)

 upgrade to Scout snapshot
 -

 Key: GERONIMO-3039
 URL: https://issues.apache.org/jira/browse/GERONIMO-3039
 Project: Geronimo
  Issue Type: Task
  Security Level: public(Regular issues) 
  Components: webservices
Affects Versions: 2.0-M5
Reporter: Joe Bohn
 Assigned To: Joe Bohn
Priority: Minor
 Fix For: 2.0-M5


 Updates have gone into Scout so that it is no longer dependent on JUDDI

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



[jira] Resolved: (GERONIMO-3039) upgrade to Scout snapshot

2007-03-28 Thread Joe Bohn (JIRA)

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

Joe Bohn resolved GERONIMO-3039.


Resolution: Fixed

rev.  523476

 upgrade to Scout snapshot
 -

 Key: GERONIMO-3039
 URL: https://issues.apache.org/jira/browse/GERONIMO-3039
 Project: Geronimo
  Issue Type: Task
  Security Level: public(Regular issues) 
  Components: webservices
Affects Versions: 2.0-M5
Reporter: Joe Bohn
 Assigned To: Joe Bohn
Priority: Minor
 Fix For: 2.0-M5


 Updates have gone into Scout so that it is no longer dependent on JUDDI

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



Re: 2.0-M4-SNAPSHOT lives - assemblies available for a test drive

2007-03-28 Thread Jason Dillon
Oh dang... you are deploying assemblies into the m2 repo?  Thats  
probably not a good thing, though I'm undecided about that really.   
But there is a release-environment (-Denv=release) profile in the  
build that is intended to be used when deploying to specifically  
*not* include assemblies when running `mvn deploy`.


--jason


On Mar 28, 2007, at 1:31 PM, Matt Hogstrom wrote:


I cut the branch this morning and have updated it to 2.0-M4-SNAPSHOT.

If folks could take a peek at these assemblies and see if the late  
breaking issues were resolved that would be great.  If you don't  
want to build it yourself you can find the assemblies here:


http://people.apache.org/repo/m2-snapshot-repository/org/apache/ 
geronimo/assemblies/geronimo-tomcat6-jee5/2.0-M4-SNAPSHOT/
http://people.apache.org/repo/m2-snapshot-repository/org/apache/ 
geronimo/assemblies/geronimo-jetty6-jee5/2.0-M4-SNAPSHOT/


I'll be doing some sniff testing and if there are no negative  
comments I'll look to package up a set of binaries to vote on for  
tomorrow.


Thanks




Re: EJB and JAXWS integration

2007-03-28 Thread David Blevins


On Mar 28, 2007, at 10:29 AM, Jarek Gawor wrote:


David, Dain,

I've been looking more into the OpenEJB and JAX-WS integration and I
think I identified a few things that I will need from the OpenEJB code
in order to get this integration done.

1) Handlers and security

After looking at EJB interceptors and JAX-WS handlers and realizing
that they are not quite the same I decided to let the JAX-WS engine to
invoke its handlers and EJB engine to invoke its interceptors (instead
of somehow wrapping a JAX-WS handler into an EJB interceptor).


If you could shed some of your insights on how they are the same and  
how they are different, that'd be really helpful.  Some spec  
references would great if you have them.


I know the data returned from InvocationContext is different but that  
part doesn't have an direct affect on the handlers themselves.  Not  
sure if there are any differing rules on handler ordering or flow.



The
only thing that I need to do for handlers is ensure that method-level
authorization is performed before any JAX-WS handlers are executed.
For that, I believe I need to perform the following check in the very
first handler:

  getSecurityService().isCallerAuthorized(callMethod, null);


We are already performing an authorization check before invoking  
handlers of any kind  (i.e. we could never invoke your ws-hanlder- 
chain ejb interceptor without a security check).  But I do know the  
check needs to contain the MessageContext rather than method args,  
which is pretty much the same difference in how InvocationContext  
works for a ws call vs. an rpc call.  There's also a method in  
javax.ejb.SessionContext for getting the MessageContext only usable  
on a web service call.


What I can't remember is what JACC permission we're supposed to  
construct.  Do you know?


2)  InvocationContext and delaying deserialization/serialization of  
parameters


If OpenEJB allowed Geronimo to pass a custom implementation of the
InvocationContext object (e.g. maybe an extension of
ReflectionInvocationContext) I could modify it so that:

 a) getContextData() would return the same object as MessageContext
(as per spec)
 b) getParameters() would deserialize the SOAP message (delay  
deseralization)

 c) setParameters() would update the SOAP message
 d) proceed() would keep the object returned and the SOAP message  
in synch


We definitely need to do something along these lines and a new  
InvocationContext is not an entirely bad idea.  The gotchas that may  
prevent us from taking that route exactly are that I'm pretty sure  
the full ejb interceptors apply to all calls, not just rpc, and would  
need to get invoked too.  Would have to verify that, so any info you  
have about ejb interceptors as they may differ from ejb web service  
handler chains would help.  Also there are some very complex  
exception handling rules for ejb which might make that hard -- app  
exception vs system exception and now in the ejb3 spec ejbs can throw  
runtime exceptions as app exceptions on any call if they've marked  
them in the deployment descriptor and this directly affects how  
interceptors are processed.  We also need to handle the java to xml  
marshaling of the bean method's return value or exception.  Not sure  
how that would fit in.


It's definitely clear we need the MessageContext itself passed in  
from the web service layer as it's required in at least three  
different places that i can think of.  We might be able to get by  
with a CXF or Axis Interceptor that we insert into interceptor stack  
right before the bean method call.  It's job would be to unmarshall  
the data in the MessageContext into some known place in the  
ContextData so we can invoke the bean, then it would marshal the  
return value or exception so it can be passed up the chain normally.


That would be assuming of course that ejb rpc and ejb ws handlers are  
the same and only the InvocationContext needs to be different.  So I  
guess that's really the question of the day.


Will dig around.

-David



Re: Fisheye for Apache Geronimo?

2007-03-28 Thread Conor MacNeill
Hi Jason,

Sorry for the delay. I'll add this this weekend if it is cool with infra.

Cheers
Conor


Jason Dillon wrote:
 Hi, I was wondering if it would be possible to get Fisheye setup for the
 Apache Geronimo tree?
 
 http://svn.apache.org/repos/asf/geronimo/
 
 Fisheye is a wonderful tool and I believe that the Geronimo community
 would benefit greatly by having it available to us to grok our svn
 repository better.
 
 Is it possible to get this setup, similar to the openejb and servicemix
 folks?  I, and most certainly the rest of the G community, would really
 appreciate it.
 
 :-)
 
 Thanks,
 
 --jason
 
 PS. Joe mentioned in #infra that I should just ping you and cc infra. 
 If there is another channel I should use to get this done please let me
 know.
 
 



[jira] Closed: (GERONIMO-2532) Unable to start the server using the startup scripts

2007-03-28 Thread Jay D. McHugh (JIRA)

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

Jay D. McHugh closed GERONIMO-2532.
---

Resolution: Fixed

Patched long ago - closing.

 Unable to start the server using the startup scripts
 

 Key: GERONIMO-2532
 URL: https://issues.apache.org/jira/browse/GERONIMO-2532
 Project: Geronimo
  Issue Type: Bug
  Security Level: public(Regular issues) 
  Components: startup/shutdown
Affects Versions: 1.2
 Environment: Linux an MacOS
Reporter: Jay D. McHugh
 Assigned To: Kevan Miller
 Attachments: geronimo-2532.patch


 If you try to start the server using the startup scripts, then the server 
 gets to the webconsole startup and fails on an NPE error.
 I have tried to track down what is going on and it seems that something about 
 the extended dirs lines in the startup script causes the problem.
 If I remove those lines, then I am able to start the server successfully.

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



Re: [ANNOUNCE] Please welcome Rakesh Midha as a new Geronimo committer

2007-03-28 Thread Anita Kulshreshtha
Congratulations Rakesh!

Anita

--- Kevan Miller [EMAIL PROTECTED] wrote:

 All,
 
 The Geronimo PMC is pleased to announce that Rakesh Midha has  
 recently accepted our invitation to become an Apache Geronimo  
 committer. Rakesh has contributed a number of significant  
 enhancements to our Admin Console and deployment code.
 
 We're looking forward to Rakesh joining our project.
 
 Congratulations and welcome to Rakesh!
 
 --kevan
 



 

We won't tell. Get more on shows you hate to love 
(and love to hate): Yahoo! TV's Guilty Pleasures list.
http://tv.yahoo.com/collections/265 


Re: [ANNOUNCE] Please welcome Donald Woods as a new Geronimo committer

2007-03-28 Thread Anita Kulshreshtha
Congratulations Donald!

Anita

--- Kevan Miller [EMAIL PROTECTED] wrote:

 All,
 
 The Geronimo PMC is pleased to announce that Donald Woods has  
 recently accepted our invitation to become an Apache Geronimo  
 committer. Donald has been a long-term contributor to the Geronimo  
 project and has provided valuable fixes and enhancements in a number 
 
 of areas.
 
 We're looking forward to Donald joining our project.
 
 Congratulations and welcome to Donald!
 
 --kevan
 



 

Never miss an email again!
Yahoo! Toolbar alerts you the instant new Mail arrives.
http://tools.search.yahoo.com/toolbar/features/mail/


[jira] Closed: (GERONIMO-2543) Upgrade Scout from version 0.5 to 0.7rc1

2007-03-28 Thread Jay D. McHugh (JIRA)

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

Jay D. McHugh closed GERONIMO-2543.
---

Resolution: Invalid

Geronimo is currently using a snapshot version of scout - they have begun 
publishing current maven jars (including a snapshot that geronimo is using).

 Upgrade Scout from version 0.5 to 0.7rc1
 

 Key: GERONIMO-2543
 URL: https://issues.apache.org/jira/browse/GERONIMO-2543
 Project: Geronimo
  Issue Type: Improvement
  Security Level: public(Regular issues) 
  Components: webservices
Affects Versions: 1.2
Reporter: Jay D. McHugh
Priority: Minor
 Attachments: geronimo-2543.patch, geronimo-specs-2543.patch


 It looks like scout has been moved to ws-scout.  But there apears to be only 
 the jar files published.
 I have patches for both the geronimo-specs and geronimo trunk.
 The patch changes the following:
 - the dependency on scout/scout/0.5 to ws-scout/scout/0.7rc1
 - the dependency on the geronimo-jaxr_spec up to the 1.1-SNAPSHOT version 
 (built locally)
 I started with a clean repo and built specs first (disabling tests).
 After the specs were build, I went back to do the tests.  They failed here:
 [INFO] 
 
 [INFO] Building JAXR 1.0
 [INFO]task-segment: [install]
 [INFO] 
 
 [INFO] [tools:copy-legal-files {execution: install-legal-files}]
 [INFO] [resources:resources]
 [INFO] Using default encoding to copy filtered resources.
 Downloading: 
 http://repository.codehaus.org/ws-scout/scout/0.7rc1/scout-0.7rc1.pom
 [WARNING] Unable to get resource from repository codehaus 
 (http://repository.codehaus.org)
 Downloading: 
 http://repo1.maven.org/maven2/ws-scout/scout/0.7rc1/scout-0.7rc1.pom
 [WARNING] Unable to get resource from repository central 
 (http://repo1.maven.org/maven2)
 [INFO] [compiler:compile]
 [INFO] Nothing to compile - all classes are up to date
 [INFO] [resources:testResources]
 [INFO] Using default encoding to copy filtered resources.
 [INFO] [compiler:testCompile]
 Compiling 1 source file to 
 /usr/src/geronimo-specs/geronimo-jaxr_1.0_spec/target/test-classes
 [INFO] 
 
 [ERROR] BUILD FAILURE
 [INFO] 
 
 [INFO] Compilation failure
 /usr/src/geronimo-specs/geronimo-jaxr_1.0_spec/src/test/java/javax/xml/registry/ConnectionFactoryTest.java:[26,36]
  package org.apache.ws.scout.registry does not exist
 /usr/src/geronimo-specs/geronimo-jaxr_1.0_spec/src/test/java/javax/xml/registry/ConnectionFactoryTest.java:[39,21]
  cannot resolve symbol
 symbol  : class ConnectionFactoryImpl
 location: class javax.xml.registry.ConnectionFactoryTest
 After building specs, I built trunk (again disabling tests).
 The build finished fine.  Once it was complete, I went back to run the tests. 
  They also finished fine.

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



[jira] Commented: (GERONIMO-3017) Web Apps (WAR files) that directly contain JPA entities cannot be deployed

2007-03-28 Thread Jay D. McHugh (JIRA)

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

Jay D. McHugh commented on GERONIMO-3017:
-

Even though the persistence.xml file is found and appears to be getting parsed, 
the entity classes do not seem to be getting properly processed.

They are counted and the geronimo log indicates that the classes are being 
enhanced - but:
When an entity manager tries to actually use them, they report that they have 
never been enhanced.

snippet of log at deploy time

location: 
file:/opt/geronimo-tomcat6-jee5-2.0-SNAPSHOT/repository/palm/trees/1.1/trees-1.1.war/WEB-INF/classes/META-INF/persistence.xml
base: 
file:/opt/geronimo-tomcat6-jee5-2.0-SNAPSHOT/repository/palm/trees/1.1/trees-1.1.war/
base.len: 85
pos:  0
endPos:   85
relative should be location(85, 85)
13  TRACE  [RMI TCP Connection(16)-127.0.0.1] openjpa.Runtime - Setting the 
following properties from ? into configuration: {openjpa.DataCache=false, 
openjpa.jdbc.DBDictionary=mysql(SupportsSubselect=true), 
openjpa.FetchBatchSize=0, openjpa.ConnectionUserName=plcData, 
openjpa.Optimistic=true, openjpa.ConnectionPassword=plcPassword, 
openjpa.MetaDataFactory=Types=com.pubint.ejb.entity.Attrib;com.pubint.ejb.entity.AttribValue;com.pubint.ejb.entity.Component;com.pubint.ejb.entity.ComponentClass;com.pubint.ejb.entity.Customer;com.pubint.ejb.entity.Generic;com.pubint.ejb.entity.GenericComponent;com.pubint.ejb.entity.GenericDetail;com.pubint.ejb.entity.Option;com.pubint.ejb.entity.OptionDetail;com.pubint.ejb.entity.ProductCategory;com.pubint.ejb.entity.ProductLine;com.pubint.ejb.entity.ProductGroup;com.pubint.ejb.entity.Project;com.pubint.ejb.entity.ProjectDetail;com.pubint.ejb.entity.SysConfig;com.pubint.ejb.entity.User;com.pubint.ejb.entity.Vendor;com.pubint.ejb.entity.XAttribValue;com.pubint.ejb.entity.XCatLine;com.pubint.ejb.entity.XClassAttrib;com.pubint.ejb.entity.XCompAttrib;com.pubint.ejb.entity.XGCompAttrib;com.pubint.ejb.entity.XGenericDetail;com.pubint.ejb.entity.XLineGroup;com.pubint.ejb.entity.XOptionDetail;com.pubint.ejb.entity.XProjCustomer;com.pubint.ejb.entity.XProjDetail;com.pubint.ejb.entity.XScheduleDetail;com.pubint.ejb.entity.XVendContact,
 
javax.persistence.provider=org.apache.openjpa.persistence.PersistenceProviderImpl,
 openjpa.ConnectionURL=jdbc:mysql:/localhost:3306/plc, 
openjpa.TransactionMode=managed, openjpa.RestoreState=all, [EMAIL PROTECTED], 
openjpa.OrphanedKeyAction=log, openjpa.NontransactionalRead=true, 
openjpa.Log=DefaultLevel=TRACE, openjpa.AutoDetach=close, 
openjpa.DetachState=all, openjpa.Multithreaded=true, 
openjpa.ConnectionDriverName=com.mysql.jdbc.Driver, openjpa.MaxFetchDepth=1}
1450  INFO   [RMI TCP Connection(16)-127.0.0.1] openjpa.MetaData - Found 30 
classes with metadata in 1183 milliseconds.
0  TRACE  [RMI TCP Connection(16)-127.0.0.1] openjpa.Runtime - Setting the 
following properties from ? into configuration: {openjpa.DataCache=false, 
openjpa.jdbc.DBDictionary=mysql(SupportsSubselect=true), 
openjpa.FetchBatchSize=0, openjpa.BrokerFactory=jdbc, 
openjpa.ConnectionUserName=user, openjpa.Optimistic=true, 
openjpa.ConnectionPassword=password, 
openjpa.MetaDataFactory=Types=com.pubint.ejb.entity.Attrib;com.pubint.ejb.entity.AttribValue;com.pubint.ejb.entity.Component;com.pubint.ejb.entity.ComponentClass;com.pubint.ejb.entity.Customer;com.pubint.ejb.entity.Generic;com.pubint.ejb.entity.GenericComponent;com.pubint.ejb.entity.GenericDetail;com.pubint.ejb.entity.Option;com.pubint.ejb.entity.OptionDetail;com.pubint.ejb.entity.ProductCategory;com.pubint.ejb.entity.ProductLine;com.pubint.ejb.entity.ProductGroup;com.pubint.ejb.entity.Project;com.pubint.ejb.entity.ProjectDetail;com.pubint.ejb.entity.SysConfig;com.pubint.ejb.entity.User;com.pubint.ejb.entity.Vendor;com.pubint.ejb.entity.XAttribValue;com.pubint.ejb.entity.XCatLine;com.pubint.ejb.entity.XClassAttrib;com.pubint.ejb.entity.XCompAttrib;com.pubint.ejb.entity.XGCompAttrib;com.pubint.ejb.entity.XGenericDetail;com.pubint.ejb.entity.XLineGroup;com.pubint.ejb.entity.XOptionDetail;com.pubint.ejb.entity.XProjCustomer;com.pubint.ejb.entity.XProjDetail;com.pubint.ejb.entity.XScheduleDetail;com.pubint.ejb.entity.XVendContact,
 
javax.persistence.provider=org.apache.openjpa.persistence.PersistenceProviderImpl,
 openjpa.ConnectionURL=jdbc:mysql:/localhost:3306/plc, 
openjpa.TransactionMode=managed, openjpa.RestoreState=all, [EMAIL PROTECTED], 
openjpa.OrphanedKeyAction=log, openjpa.NontransactionalRead=true, 
openjpa.Log=DefaultLevel=TRACE, openjpa.AutoDetach=close, 
openjpa.DetachState=all, openjpa.Multithreaded=true, 
openjpa.ConnectionDriverName=com.mysql.jdbc.Driver, openjpa.MaxFetchDepth=1}
/snippet of log at deploy time

snippet of log when a servlet containing an entity manager is loaded
6247  TRACE  [http-0.0.0.0-8080-1] openjpa.Enhance - 
com/pubint/ejb/entity/Project requires runtime enhancement: true

[jira] Resolved: (GERONIMO-2977) Axis2: process wsdlLocation annotation when wsdl-file property isn't used in webservices.xml or there isn't webservices.xml

2007-03-28 Thread Davanum Srinivas (JIRA)

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

Davanum Srinivas resolved GERONIMO-2977.


Resolution: Fixed

Applied.

thanks,
dims

 Axis2: process wsdlLocation annotation when wsdl-file property isn't used in 
 webservices.xml or there isn't webservices.xml
 ---

 Key: GERONIMO-2977
 URL: https://issues.apache.org/jira/browse/GERONIMO-2977
 Project: Geronimo
  Issue Type: Improvement
  Security Level: public(Regular issues) 
 Environment: sun 1.5 + winxp
Reporter: Lin Sun
 Attachments: G2977-latest.patch, G2977.patch


 Per discussion on dev list titled Questions for Axis2 folks re: JAXWS, this 
 patch will do the following:
 if wsdl-file property isn't specified in webservices.xml or there isn't a 
 webservices.xml but a user did supply a .wsdl file and specified the 
 wsdlLocation annotation, we will grab the value of the wsdlLocation from 
 annotation and set it in portInfo.   
 Has tried to test it by supplying wsdlLocation in jaxws-war file and worked 
 okay.  Patched will be supplied in a bit after a successful build.:)
 Lin

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



[jira] Commented: (GERONIMO-2977) Axis2: process wsdlLocation annotation when wsdl-file property isn't used in webservices.xml or there isn't webservices.xml

2007-03-28 Thread Davanum Srinivas (JIRA)

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

Davanum Srinivas commented on GERONIMO-2977:


Sorry. in svn revision 523542

-- dims

 Axis2: process wsdlLocation annotation when wsdl-file property isn't used in 
 webservices.xml or there isn't webservices.xml
 ---

 Key: GERONIMO-2977
 URL: https://issues.apache.org/jira/browse/GERONIMO-2977
 Project: Geronimo
  Issue Type: Improvement
  Security Level: public(Regular issues) 
 Environment: sun 1.5 + winxp
Reporter: Lin Sun
 Attachments: G2977-latest.patch, G2977.patch


 Per discussion on dev list titled Questions for Axis2 folks re: JAXWS, this 
 patch will do the following:
 if wsdl-file property isn't specified in webservices.xml or there isn't a 
 webservices.xml but a user did supply a .wsdl file and specified the 
 wsdlLocation annotation, we will grab the value of the wsdlLocation from 
 annotation and set it in portInfo.   
 Has tried to test it by supplying wsdlLocation in jaxws-war file and worked 
 okay.  Patched will be supplied in a bit after a successful build.:)
 Lin

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



[jira] Commented: (GERONIMO-3019) Remove JAXB dependencies from Axis2 JAXWS

2007-03-28 Thread Lasantha Ranaweera (JIRA)

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

Lasantha Ranaweera commented on GERONIMO-3019:
--

Can somebody please review this patch?

I am hoping to do bit more in JAXWS :). 

Thanks,
Lasantha


 Remove JAXB dependencies from Axis2 JAXWS
 -

 Key: GERONIMO-3019
 URL: https://issues.apache.org/jira/browse/GERONIMO-3019
 Project: Geronimo
  Issue Type: Improvement
  Security Level: public(Regular issues) 
  Components: webservices
 Environment: Linux
Reporter: Lasantha Ranaweera
 Attachments: GERONIMO-3019.patch


 As Axis2 moves with XBeans it is unnecessary to keep dependencies with JAXB 
 related stuff. Also JAXB related code generation has been removed from the 
 test cases too.

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



JPA Usability in Geronimo

2007-03-28 Thread Jay D. McHugh

Hello everyone.

Since Geronimo now has JPA support (both via OpenJPA and Cayenne) now 
would probably be a good time to figure out what usability features 
should be implemented to support them.


Here is a very preliminary list - please (really...please) add any 
features you either would personally need/like or that you believe would 
be helpful for users:


1) View of loaded persistence units (tree format with persistable 
classes under each unit)
2) View of loaded persistence units detailing their properties (back-end 
database, transaction mode, ...)

3) ??
4) ??

For myself, I would like to be able to have JPA entities directly 
defined within web apps (WAR files rather than EJB-JARS).  Is there 
anyone else that would use that feature if it were available?  Or just 
me (the main reason that I want this is that I haven't bothered to learn 
how to build an EAR).


Anyone else have wishlists for JPA?


Jay


[jira] Commented: (GERONIMO-3017) Web Apps (WAR files) that directly contain JPA entities cannot be deployed

2007-03-28 Thread Jay D. McHugh (JIRA)

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

Jay D. McHugh commented on GERONIMO-3017:
-

Note: When the war file contains the entity classes directly, it appears that 
the 'openejb-cmp-generated-orm.xml' file is not being created (an ejb-jar did 
trigger its creation).

 Web Apps (WAR files) that directly contain JPA entities cannot be deployed
 --

 Key: GERONIMO-3017
 URL: https://issues.apache.org/jira/browse/GERONIMO-3017
 Project: Geronimo
  Issue Type: Bug
  Security Level: public(Regular issues) 
  Components: persistence
Affects Versions: 2.0-M5
Reporter: Jay D. McHugh
 Attachments: geronimo-jira-3017.patch


 There is still a find and parse problem with persistence.xml in war files.
 It seems to work if you have your jpa entities in a jar file.
 But, if you have a WEB-INF/lib/META-INF/persistence.xml file, it finds it and 
 dies with a substring error.
 I have not tested to see if this is a problem for WAR files contained in an 
 EAR.

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



[STATUS] (geronimo) Wed Mar 28 23:47:07 2007

2007-03-28 Thread Geronimo Weekly Status
APACHE GERONIMO STATUS: -*-text-*-
Last modified at [$Date: 2007-02-22 13:03:58 -0500 (Thu, 22 Feb 2007) $]

The current version of this file can be found at:

  * http://svn.apache.org/repos/asf/geronimo/server/trunk/STATUS


Upcoming Releases:

  Geronimo 1.2 -- geronimo/server/trunk/
Release Manager: Dain Sundstrom and Alan Cabrera
Estimated Date: Q4 2006



RELEASE SHOWSTOPPERS:

The release is stalled waiting for final releases from dependent
projects.  Specifically, we need releases from:

  Yoko 1.0 - Contains many fixes to CORBA interoperability
  ActiveMQ 4.1.1 - We need a release which contains AMQ-1165 and AMQ-1088
  OpenEJB 2.3 - Once Yoko is released, OpenEJB 2.3 can be release

RELEASE HISTORY:
  2006-12-16  Geronimo 1.2-beta
  2006-09-18  Geronimo 1.1.1
  2006-06-26  Geronimo 1.1
  2006-01-05  Geronimo 1.0
  2005-10-04  Geronimo 1.0 milestone 5
  2005-08-10  Geronimo 1.0 milestone 4
  2004-11-11  Geronimo 1.0 milestone 3
  2004-09-09  Geronimo 1.0 milestone 2
  2004-04-29  Geronimo 1.0 milestone 1


If you're a contributor looking for something to do:

  * Review the documentation and suggest improvements
  * Review the bug list and suggest fixes or report reproducibility
  * Report bugs yourself


Re: JPA Usability in Geronimo

2007-03-28 Thread Jacek Laskowski

On 3/29/07, Jay D. McHugh [EMAIL PROTECTED] wrote:


1) View of loaded persistence units (tree format with persistable
classes under each unit)
2) View of loaded persistence units detailing their properties (back-end
database, transaction mode, ...)

...

Anyone else have wishlists for JPA?


If both were available in Geronimo, I'd be the happiest man in the
world! Are you going to give them a shot? Great! Looking forward to
presenting them at one of the upcoming conferences. I can imagine how
furious the audience is going to be when they're showcased.

Jacek

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


  1   2   >