Re: [Discuss] Release Geronimo Eclipse Plugin 2.0.0 (RC3)

2007-09-18 Thread Vamsavardhana Reddy
True.  We should document the changes needed in the ini file instead of
making the changes automatically.

Vamsi

On 9/19/07, Tim McConnell <[EMAIL PROTECTED]> wrote:
>
> Hi Shiva, thanks for the information. I'm not sure I feel comfortable
> modifying
> a user's eclipse.ini file, especially without their knowledge. What I
> think we
> should do though is include these settings in the release notes for this
> release, and possibly on the updated website for the
> Apache Geronimo Development Tools Subproject. Does this seem reasonable to
> you ??
>
>
> Shiva Kumar H R wrote:
> >
> >
> > On 9/17/07, *Shiva Kumar H R* <[EMAIL PROTECTED]
> > > wrote:
> >
> > Some more observations while testing Geronimo Eclipse Plugin 2.0.0
> > (RC3):
> > a) When defining a new server, "Apache Geronimo v1.2 Server" doesn't
> > get listed in the list of available servers.
> >
> > b) Looks like WTP 2.0.1RC2 has solved the problem reported in
> > GERONIMODEVTOOLS-209 if the HelloWorld WAR's geronimo-web.xml uses
> > 1.1 Geronimo schemas. However, if geronimo-web.xml" is edited to use
> > 2.0 version of Geronimo schemas, then "Run As -> Run on Server"
> > won't open internal browser.
> >
> > c) Another very important thing related to "eclipse.ini" settings.
> > The default contents of "eclipse.ini" is shown below:
> > -showsplash
> > org.eclipse.platform
> > --launcher.XXMaxPermSize
> > 256m
> > -vmargs
> > -Xms40m
> > -Xmx256m
> >
> > This is *really* messy. With the default provided settings as above,
> > my Eclipse crashed about 7 times! with "java.lang.OutOfMemoryError:
> > PermGen space" errors and I was not at all able to complete the
> > steps mentioned in
> >
> http://cwiki.apache.org/geronimo/java-ee-50-app-development-on-geronimo-simplified-using-eclipse.html
> > <
> http://cwiki.apache.org/geronimo/java-ee-50-app-development-on-geronimo-simplified-using-eclipse.html
> >
> >
> > However, as suggested by Tim, I created a shortcut to eclipse.exe as
> > below
> > "E:\IDEs\eclipse3.3.1_WTP2.0.1RC2_gep2.0rc3\eclipse.exe -vmargs
> > -Xms256m -Xmx256m -XX:MaxPermSize=128m"
> >
> > And when I use this shortcut, everything worked great and I was able
> > to complete
> >
> http://cwiki.apache.org/geronimo/java-ee-50-app-development-on-geronimo-simplified-using-eclipse.html
> > <
> http://cwiki.apache.org/geronimo/java-ee-50-app-development-on-geronimo-simplified-using-eclipse.html
> >
> > in one-go in less than 30 minutes. So the key is to correctly set
> > "-vmargs -Xms256m -Xmx256m -XX:MaxPermSize=128m" arguments.
> >
> > We need to figure out how to set these in "eclipse.ini" itself
> >
> >
> > Found the correct settings. Please see
> > http://blog.xam.dk/archives/68-Eclipse-and-memory-settings.html
> > 
> >
> > Here is eclipse.ini file contents that works for me for executing all
> > the steps in the ppt.
> >
> > -showsplash
> > org.eclipse.platform
> > --launcher.XXMaxPermSize
> > 256m
> > -vmargs
> > -Xms128m
> > -Xmx256m
> > -XX:MaxPermSize=128m
> >
> > i) Changed -Xms value from 40m to 128m
> > ii) Added -XX:MaxPermSize=128m at the end of file (looks like this same
> > value specified before -vmargs is simply ignored!)
> >
> > Tim,
> > Can http://people.apache.org/~mcconne/releases/RC3/build.xml
> >  be updated
> > to automatically update eclipse.ini ?
> >
> > - Shiva
> >
> > and recommend them strongly to users in "Release Notes" as well as
> > in "
> >
> http://people.apache.org/~mcconne/releases/RC3/Geronimo_Eclipse_Plugin_2.0.0_Instructions-RC3.txt
> > <
> http://people.apache.org/%7Emcconne/releases/RC3/Geronimo_Eclipse_Plugin_2.0.0_Instructions-RC3.txt
> >"
> > If we can also update
> > http://people.apache.org/~mcconne/releases/RC3/build.xml
> >  to
> > automagically edit eclipse.ini with the correct settings, that would
> > just be great!
> >
> > Thanks,
> > Shiva
> >
> >
> > On 9/17/07, *Shiva Kumar H R* < [EMAIL PROTECTED]
> > > wrote:
> >
> > Tim,
> > The "Install prerequisites" section of
> >
> http://people.apache.org/~mcconne/releases/RC3/Geronimo_Eclipse_Plugin_2.0.0_Instructions-RC3.txt
> > <
> http://people.apache.org/%7Emcconne/releases/RC3/Geronimo_Eclipse_Plugin_2.0.0_Instructions-RC3.txt
> >
> > needs following updates:
> >
> > 1) "1 -- Europa (also known as Eclipse 3.3), which is platform
> > specific"
> > Need to mention package name as "Eclipse Classic" to avoid
> > confusions as raised in RC2 voting thread. Also, shouldn't the
> > version be changed to 3.3.1? Please see
> >
> http://www.eclipse.org/eclipse/development/

Re: [Discuss] Release Geronimo Eclipse Plugin 2.0.0 (RC3)

2007-09-18 Thread Tim McConnell
Hi Shiva, thanks for the information. I'm not sure I feel comfortable modifying 
a user's eclipse.ini file, especially without their knowledge. What I think we 
should do though is include these settings in the release notes for this 
release, and possibly on the updated website for the

Apache Geronimo Development Tools Subproject. Does this seem reasonable to you 
??


Shiva Kumar H R wrote:



On 9/17/07, *Shiva Kumar H R* <[EMAIL PROTECTED] 
> wrote:


Some more observations while testing Geronimo Eclipse Plugin 2.0.0
(RC3):
a) When defining a new server, "Apache Geronimo v1.2 Server" doesn't
get listed in the list of available servers.

b) Looks like WTP 2.0.1RC2 has solved the problem reported in
GERONIMODEVTOOLS-209 if the HelloWorld WAR's geronimo-web.xml uses
1.1 Geronimo schemas. However, if geronimo-web.xml" is edited to use
2.0 version of Geronimo schemas, then "Run As -> Run on Server"
won't open internal browser.

c) Another very important thing related to "eclipse.ini" settings.
The default contents of "eclipse.ini" is shown below:
-showsplash
org.eclipse.platform
--launcher.XXMaxPermSize
256m
-vmargs
-Xms40m
-Xmx256m

This is *really* messy. With the default provided settings as above,
my Eclipse crashed about 7 times! with "java.lang.OutOfMemoryError:
PermGen space" errors and I was not at all able to complete the
steps mentioned in

http://cwiki.apache.org/geronimo/java-ee-50-app-development-on-geronimo-simplified-using-eclipse.html



However, as suggested by Tim, I created a shortcut to eclipse.exe as
below
"E:\IDEs\eclipse3.3.1_WTP2.0.1RC2_gep2.0rc3\eclipse.exe -vmargs
-Xms256m -Xmx256m -XX:MaxPermSize=128m"

And when I use this shortcut, everything worked great and I was able
to complete

http://cwiki.apache.org/geronimo/java-ee-50-app-development-on-geronimo-simplified-using-eclipse.html


in one-go in less than 30 minutes. So the key is to correctly set
"-vmargs -Xms256m -Xmx256m -XX:MaxPermSize=128m" arguments.

We need to figure out how to set these in "eclipse.ini" itself 



Found the correct settings. Please see
http://blog.xam.dk/archives/68-Eclipse-and-memory-settings.html 

 
Here is eclipse.ini file contents that works for me for executing all 
the steps in the ppt.


-showsplash
org.eclipse.platform
--launcher.XXMaxPermSize
256m
-vmargs
-Xms128m
-Xmx256m
-XX:MaxPermSize=128m

i) Changed -Xms value from 40m to 128m
ii) Added -XX:MaxPermSize=128m at the end of file (looks like this same 
value specified before -vmargs is simply ignored!)


Tim,
Can http://people.apache.org/~mcconne/releases/RC3/build.xml 
 be updated 
to automatically update eclipse.ini ?


- Shiva

and recommend them strongly to users in "Release Notes" as well as
in "

http://people.apache.org/~mcconne/releases/RC3/Geronimo_Eclipse_Plugin_2.0.0_Instructions-RC3.txt

"
If we can also update
http://people.apache.org/~mcconne/releases/RC3/build.xml
 to
automagically edit eclipse.ini with the correct settings, that would
just be great!

Thanks,
Shiva


On 9/17/07, *Shiva Kumar H R* < [EMAIL PROTECTED]
> wrote:

Tim,
The "Install prerequisites" section of 
http://people.apache.org/~mcconne/releases/RC3/Geronimo_Eclipse_Plugin_2.0.0_Instructions-RC3.txt



needs following updates:

1) "1 -- Europa (also known as Eclipse 3.3), which is platform
specific"
Need to mention package name as "Eclipse Classic" to avoid
confusions as raised in RC2 voting thread. Also, shouldn't the
version be changed to 3.3.1? Please see
http://www.eclipse.org/eclipse/development/freeze_plan_3_3_1.html

So, this could look something like:
"1 -- Eclipse 3.3.1 (Eclipse Classic package of Europa
distribution), which is platform specific"

2) "3 -- Data Tools Platform (DTP) 1.5"
Should be "3 -- Data Tools Platform (DTP) 1.5.1"

3) "4 -- Eclipse Modeling Framework (EMF) 2.3"
Should be "4 -- Eclipse Modeling Framework (EMF) 2.3.1"
   

[jira] Created: (GERONIMO-3478) Mulitple URISyntaxException getting plugins from another server

2007-09-18 Thread Ted Kirby (JIRA)
Mulitple URISyntaxException getting plugins from another server
---

 Key: GERONIMO-3478
 URL: https://issues.apache.org/jira/browse/GERONIMO-3478
 Project: Geronimo
  Issue Type: Bug
  Security Level: public (Regular issues)
  Components: Plugins
Affects Versions: 2.0.1
Reporter: Ted Kirby


>From the admin console, I added Repository 
>http://tkirby3.example.acme.com:8080/console-standard/maven-repo/.  This did 
>not work, ie, it did not show up in my list of repositories.  Then, I added 
>http://tkirby3.example.acme.com:8080/console-standard/maven-repo (no trailing 
>slash), and this worked, ie, 
>http://tkirby3.example.acme.com:8080/console-standard/maven-repo/ (note the 
>trailing slash) showed up in my repo list.  I then searched for plugins, 
>forgetting to put in the userid and password.

This sequence of steps resulted in four of these errors and tracebacks in my 
server log, of which this is only the first:

18:56:21,906 WARN  [AddRepositoryHandler] Unexpected response code while 
validating repository (505 HTTP Version Not Supported).  Assuming you know what 
you're doing.
18:56:21,937 ERROR [PluginRepositoryDownloader] Unable to format plugin 
repository URL 
http://tkirby3.example.acme.com:8080/console-standard/maven-repo/ /
java.net.URISyntaxException: Illegal character in path at index 64: 
http://tkirby3.exampl.acme.com:8080/console-standard/maven-repo/ /
at java.net.URI$Parser.fail(URI.java:2821)
at java.net.URI$Parser.checkChars(URI.java:2994)
at java.net.URI$Parser.parseHierarchical(URI.java:3078)
at java.net.URI$Parser.parse(URI.java:3026)
at java.net.URI.(URI.java:590)
at 
org.apache.geronimo.system.plugin.PluginRepositoryDownloader.getRepositories(PluginRepositoryDownloader.java:90)
at 
org.apache.geronimo.system.plugin.PluginRepositoryDownloader$$FastClassByCGLIB$$7de10f4e.invoke()
at net.sf.cglib.reflect.FastMethod.invoke(FastMethod.java:53)
at 
org.apache.geronimo.gbean.runtime.FastMethodInvoker.invoke(FastMethodInvoker.java:38)
at 
org.apache.geronimo.gbean.runtime.GBeanAttribute.getValue(GBeanAttribute.java:390)
at 
org.apache.geronimo.gbean.runtime.GBeanInstance.getAttribute(GBeanInstance.java:652)
at 
org.apache.geronimo.gbean.runtime.RawInvoker.getAttribute(RawInvoker.java:49)
at 
org.apache.geronimo.kernel.basic.RawGetAttributeInvoker.invoke(RawGetAttributeInvoker.java:35)
at 
org.apache.geronimo.kernel.basic.ProxyMethodInterceptor.intercept(ProxyMethodInterceptor.java:96)
at 
org.apache.geronimo.system.plugin.PluginRepositoryList$$EnhancerByCGLIB$$9e116e33.getRepositories()
at 
org.apache.geronimo.console.car.IndexHandler.renderView(IndexHandler.java:54)
at 
org.apache.geronimo.console.MultiPagePortlet.doView(MultiPagePortlet.java:146)
at javax.portlet.GenericPortlet.doDispatch(GenericPortlet.java:247)
at javax.portlet.GenericPortlet.render(GenericPortlet.java:175)
at 
org.apache.pluto.core.PortletServlet.dispatch(PortletServlet.java:218)
at org.apache.pluto.core.PortletServlet.doGet(PortletServlet.java:158)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:693)
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:654)
at 
org.apache.catalina.core.ApplicationDispatcher.doInclude(ApplicationDispatcher.java:557)
at 
org.apache.catalina.core.ApplicationDispatcher.include(ApplicationDispatcher.java:481)
at 
org.apache.pluto.invoker.impl.PortletInvokerImpl.invoke(PortletInvokerImpl.java:120)
at 
org.apache.pluto.invoker.impl.PortletInvokerImpl.render(PortletInvokerImpl.java:73)
at 
org.apache.pluto.PortletContainerImpl.renderPortlet(PortletContainerImpl.java:119)
at 
org.apache.pluto.portalImpl.core.PortletContainerWrapperImpl.renderPortlet(PortletContainerWrapperImpl.java:70)
at 
org.apache.pluto.portalImpl.aggregation.PortletFragment.service(PortletFragment.java:168)
at 
jsp.WEB_002dINF.aggregation.ColumnFragment_jsp._jspService(ColumnFragment_jsp.java:70)
at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
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(ApplicationFilterCha

Re: [VOTE] Release Geronimo Eclipse Plugin 2.0.0 (RC3)

2007-09-18 Thread Kevan Miller

I have not tested, but source and binaries look good...

+1

--kevan



Re: [VOTE] Release Geronimo Eclipse Plugin 2.0.0 (RC3)

2007-09-18 Thread Anita Kulshreshtha
+1

Anita

--- Tim McConnell <[EMAIL PROTECTED]> wrote:

> Hi, Please review and vote on the release of the Geronimo Eclipse
> Plugin 2.0.0 
> RC3 (to correspond with the Geronimo 2.0.1 Server release).
> 
> The deployable zip file is here:
> 
> > 
>
http://people.apache.org/~mcconne/releases/RC3/geronimo-eclipse-plugin-2.0.0-deployable-RC3.zip
> 
> The update site zip file is here:
> 
> > 
>
http://people.apache.org/~mcconne/releases/RC3/geronimo-eclipse-plugin-2.0.0-updatesite-RC3.zip
> 
> The current svn location is here (revision number 575886):
> 
> > 
>
https://svn.apache.org/repos/asf/geronimo/devtools/eclipse-plugin/branches/2.0.0
> 
> The future svn location will be here:
> 
> >
>
https://svn.apache.org/repos/asf/geronimo/devtools/eclipse-plugin/tags/2.0.0
> 
> Install, ant build, and Staging Site instructions are here:
> 
> -> 
>
http://people.apache.org/~mcconne/releases/RC3/Geronimo_Eclipse_Plugin_2.0.0_Instructions-RC3.txt
> 
> 
> The vote will conclude at 04:00 AM EST on Tuesday, September 18th
> 
> -- 
> Thanks,
> Tim McConnell
> 



   

Building a website is a piece of cake. Yahoo! Small Business gives you all the 
tools to get online.
http://smallbusiness.yahoo.com/webhosting 


Re: New GShell-based Geronimo Server launcher now in server/trunk

2007-09-18 Thread Jason Dillon

Hiya folks... just a quick update on GShell muck...

I've been madly hacking on the remote shell support for the past week  
and well, its really close to being functional.  I initially was  
going to implement a POC over ActiveMQ but that was pissing me off  
soo much that I decided to peek at what Jeff had done with GShell and  
discovered how incredibly cool Apache Mina is!!  So I've based the  
remote-shell client/server bits off of Mina and its working out  
fairly well, though I had to go and learn about it (which was  
actually fun-ish, sorta, okay not really so much :-P ).


Anyways, I've dug through GCache (which really did help me to  
understand Mina) as well as some other Mina-based projects and I've  
whipped up a fairly simple system (er I think so), which is  
extensible supports TCP, SSL and VM (er well almost VM), so you can  
do something like:


./bin/gsh rsh ssl://someserver:

or

./bin/gsh rsh tcp://someserver:

The same is true for the server side, to be able to accept these rsh  
commands you could:


./bin/gsh rsh-server ssl://localhost:

or

./bin/gsh rsh-server tcp://localhost:

etc...

I've implemented a RSA-based client-server handshake (similar to what  
gcache was doing, actually based on what it was doing) to support a  
decent authentication mechanism.  Might eventually hook up some JAAS  
crapo later, but... ya later.


Anyways, right now I'm trying to figure out some small problems with  
the stream message passing and marshaling, which I hope to get  
resolved really damn soon, cause this is fricken annoying me.  And  
once that is sorted, a few minor clean up things and the rsh/rsh- 
server bits should be functional enough to actually use.


More to come...

Cheers,

--jason



On Sep 8, 2007, at 12:40 PM, Jason Dillon wrote:

A little bit more insight into what I'm thinking of doing... since  
some of you can't read minds to well :-P


I'd like to convert all of the assemblies to basically look like  
what the assemblies/geronimo-jetty6-javaee5-gshell produces.


And then I'd like to start converting the other cli bits to gshell  
command impls, like: deployer, client and shutdown.


And then (maybe around the same time or before the above), I'd like  
to adapt the gshell of target jvm bits to load jars from the  
repository, instead of using the lib/* bits.


A little background for those who haven't looked at assemblies/ 
geronimo-jetty6-javaee5-gshell and what it produces from a lib/*  
perspective.  Right now I've set up the assembly to produce:


geronimo-jetty6-javaee5-gshell-2.1-SNAPSHOT/lib
geronimo-jetty6-javaee5-gshell-2.1-SNAPSHOT/lib/boot
geronimo-jetty6-javaee5-gshell-2.1-SNAPSHOT/lib/endorsed
geronimo-jetty6-javaee5-gshell-2.1-SNAPSHOT/lib/gshell

Where the bits in lib/* and lib/endorsed/* are the same as they  
were before.  The bits in lib/boot/* and lib/gshell/* are specific  
to gshell.  And normally a gshell installation would have  
everything I put into lib/gshell/* into lib/*, but I moved them to  
a sub dir for now... since the bin/*.jar's load jars from the ../ 
lib/* dirs.


The lib/boot/* stuff is the very minimal gshell bootstrap classes,  
which setup up the other happiness... and let you do things like:


java -jar ./geronimo-jetty6-javaee5-gshell-2.1-SNAPSHOT/lib/ 
boot/gshell-bootstrap.jar


And that will give you a nice shell... or

java -jar ./geronimo-jetty6-javaee5-gshell-2.1-SNAPSHOT/lib/ 
boot/gshell-bootstrap.jar start-server


That will launch the G server process using all of the right - 
Djava.ext.dirs and whatever properties that we currently have  
hacked into platform scripts.


Anyways, so the idea is to move all of the bits which are current  
in the lib/* into the repository, and then configure the gshell  
command impl to load put the correct dependency artifacts onto the  
classpath of the target jvm that is booted up.  This will augment  
the existing kernel bootstrap from repo stuff, putting evertying  
except what is needed from gshell into the repository...


And really, what I'd like to eventually get to is having the  
bootstrap from the repository... so that everything except for what  
is now it lib/boot/* and lib/endorsed/* can live in the repository  
like happy little communistic jars should be :-P


 * * *

And then there are longer term things for GShell...

Remote administration (via, telnet, ssh, or custom ssl protocol...  
last is most likely to actually happen soonish)


Process management, which is great for clusters, or staging ->  
production management.  A full suite of command-line tools which  
can manage the configuration of a server... easily.  So, for  
example, lets say you've got a configuration that is working really  
well for you... but you want to play with something new...


So you might:

./bin/gsh backup-configuration before-mucking
./bin/gsh start-server

And then go and change a whole bunch of stuff...  and it doesn't  
w

Re: design for plugin portlets

2007-09-18 Thread Hernan Cunico

Hey Paul, can't see some of the images. Is that a Mac kind of thing !? :-P
OpenOffice shows big black blocks. Maybe its just the screenshots.
Other than that I really like the proposed updates, will make plugins a lot 
easier to maintain.

Once done with this change maybe we should a new section on the website (not 
the wiki) just for plugins.

Cheers!
Hernan

Paul McMahan wrote:
I'm thinking about making a few improvements to the plugin management 
portlets in the admin console.   These ppt charts illustrate what I have 
in mind.  Feedback is welcome!

http://people.apache.org/~pmcmahan/new_plugin_portlets.ppt

Best wishes,
Paul



design for plugin portlets

2007-09-18 Thread Paul McMahan
I'm thinking about making a few improvements to the plugin management  
portlets in the admin console.   These ppt charts illustrate what I  
have in mind.  Feedback is welcome!

http://people.apache.org/~pmcmahan/new_plugin_portlets.ppt

Best wishes,
Paul


[BUILD] 2.0: Failed for Revision: 577041

2007-09-18 Thread prasad
OpenEJB trunk at 0
Geronimo Revision: 577041 built with tests included
 
See the full build-1600.log file at 
http://people.apache.org/~prasad/binaries/2.0/20070918/build-1600.log
 
[INFO] Using default encoding to copy filtered resources.
[INFO] [car:prepare-plan]
[INFO] Generated: 
/home/prasad/geronimo/2.0/configs/webservices-common/target/plan/plan.xml
[INFO] [car:package]
[INFO] Packaging module configuration: 
/home/prasad/geronimo/2.0/configs/webservices-common/target/plan/plan.xml
[INFO] snapshot org.apache.geronimo.modules:geronimo-jaxws:2.0.2-SNAPSHOT: 
checking for updates from apache-snapshots
[INFO] snapshot org.apache.geronimo.modules:geronimo-jaxws:2.0.2-SNAPSHOT: 
checking for updates from codehaus-snapshots
[INFO] snapshot org.apache.geronimo.modules:geronimo-jaxws:2.0.2-SNAPSHOT: 
checking for updates from apache.snapshots
[INFO] Building jar: 
/home/prasad/geronimo/2.0/configs/webservices-common/target/webservices-common-2.0.2-SNAPSHOT.car
[INFO] [tools:verify-legal-files {execution: verify-legal-files}]
[INFO] Checking legal files in: webservices-common-2.0.2-SNAPSHOT.car
[INFO] [install:install]
[INFO] Installing 
/home/prasad/geronimo/2.0/configs/webservices-common/target/webservices-common-2.0.2-SNAPSHOT.car
 to 
/home/prasad/.m2/repository/org/apache/geronimo/configs/webservices-common/2.0.2-SNAPSHOT/webservices-common-2.0.2-SNAPSHOT.car
[INFO] 

[INFO] Building Geronimo Configs :: OpenJPA with dependencies
[INFO]task-segment: [install]
[INFO] 

[INFO] [enforcer:enforce {execution: default}]
[INFO] [tools:copy-legal-files {execution: install-legal-files}]
[INFO] Created dir: 
/home/prasad/geronimo/2.0/configs/openjpa/target/classes/META-INF
[INFO] Copying 2 files to 
/home/prasad/geronimo/2.0/configs/openjpa/target/classes/META-INF
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [car:prepare-plan]
[INFO] Generated: /home/prasad/geronimo/2.0/configs/openjpa/target/plan/plan.xml
Downloading: 
http://download.java.net/maven/1//commons-lang/poms/commons-lang-2.0.pom
[WARNING] Unable to get resource 'commons-lang:commons-lang:pom:2.0' from 
repository java.net (http://download.java.net/maven/1/)
Downloading: 
http://people.apache.org/repo/m2-incubating-repository//commons-lang/commons-lang/2.0/commons-lang-2.0.pom
[WARNING] Unable to get resource 'commons-lang:commons-lang:pom:2.0' from 
repository apache-incubator 
(http://people.apache.org/repo/m2-incubating-repository/)
Downloading: 
http://repo1.maven.org/maven2/commons-lang/commons-lang/2.0/commons-lang-2.0.pom
2K downloaded
Downloading: 
http://download.java.net/maven/1//commons-lang/jars/commons-lang-2.0.jar
[WARNING] Unable to get resource 'commons-lang:commons-lang:jar:2.0' from 
repository java.net (http://download.java.net/maven/1/)
Downloading: 
http://people.apache.org/repo/m2-incubating-repository//commons-lang/commons-lang/2.0/commons-lang-2.0.jar
[WARNING] Unable to get resource 'commons-lang:commons-lang:jar:2.0' from 
repository apache-incubator 
(http://people.apache.org/repo/m2-incubating-repository/)
Downloading: 
http://repo1.maven.org/maven2/commons-lang/commons-lang/2.0/commons-lang-2.0.jar
165K downloaded
[INFO] [car:package]
[INFO] Packaging module configuration: 
/home/prasad/geronimo/2.0/configs/openjpa/target/plan/plan.xml
[INFO] snapshot org.apache.geronimo.modules:geronimo-openjpa:2.0.2-SNAPSHOT: 
checking for updates from apache-snapshots
[INFO] snapshot org.apache.geronimo.modules:geronimo-openjpa:2.0.2-SNAPSHOT: 
checking for updates from codehaus-snapshots
[INFO] snapshot org.apache.geronimo.modules:geronimo-openjpa:2.0.2-SNAPSHOT: 
checking for updates from apache.snapshots
[INFO] Building jar: 
/home/prasad/geronimo/2.0/configs/openjpa/target/openjpa-2.0.2-SNAPSHOT.car
[INFO] [tools:verify-legal-files {execution: verify-legal-files}]
[INFO] Checking legal files in: openjpa-2.0.2-SNAPSHOT.car
[INFO] [install:install]
[INFO] Installing 
/home/prasad/geronimo/2.0/configs/openjpa/target/openjpa-2.0.2-SNAPSHOT.car to 
/home/prasad/.m2/repository/org/apache/geronimo/configs/openjpa/2.0.2-SNAPSHOT/openjpa-2.0.2-SNAPSHOT.car
[INFO] 

[INFO] Building Geronimo Configs :: OpenEJB
[INFO]task-segment: [install]
[INFO] 

[INFO] [enforcer:enforce {execution: default}]
[INFO] [tools:copy-legal-files {execution: install-legal-files}]
[INFO] Created dir: 
/home/prasad/geronimo/2.0/configs/openejb/target/classes/META-INF
[INFO] Copying 2 files to 
/home/prasad/geronimo/2.0/configs/openejb/target/classes/META-INF
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [car:prepare-plan]
[IN

Re: [VOTE] Release Geronimo Eclipse Plugin 2.0.0 (RC3)

2007-09-18 Thread Tim McConnell

Just a gentle reminder if anyone would still like to vote for this release..


Tim McConnell wrote:
Hi, Please review and vote on the release of the Geronimo Eclipse Plugin 
2.0.0 RC3 (to correspond with the Geronimo 2.0.1 Server release).


The deployable zip file is here:

> 
http://people.apache.org/~mcconne/releases/RC3/geronimo-eclipse-plugin-2.0.0-deployable-RC3.zip 



The update site zip file is here:

> 
http://people.apache.org/~mcconne/releases/RC3/geronimo-eclipse-plugin-2.0.0-updatesite-RC3.zip 



The current svn location is here (revision number 575886):

> 
https://svn.apache.org/repos/asf/geronimo/devtools/eclipse-plugin/branches/2.0.0 



The future svn location will be here:

> 
https://svn.apache.org/repos/asf/geronimo/devtools/eclipse-plugin/tags/2.0.0 



Install, ant build, and Staging Site instructions are here:

-> 
http://people.apache.org/~mcconne/releases/RC3/Geronimo_Eclipse_Plugin_2.0.0_Instructions-RC3.txt 




The vote will conclude at 04:00 AM EST on Tuesday, September 18th



--
Thanks,
Tim McConnell



[jira] Created: (SM-1059) Upgrade to CXF 2.0.2

2007-09-18 Thread Ryan Moquin (JIRA)
Upgrade to CXF 2.0.2


 Key: SM-1059
 URL: https://issues.apache.org/activemq/browse/SM-1059
 Project: ServiceMix
  Issue Type: Improvement
  Components: servicemix-jsr181
Affects Versions: 3.2
 Environment: Windows XP
Reporter: Ryan Moquin
Priority: Minor


Some fixes were made to CXF 2.0.2 which should be released very soon.  
Servicemix 3.2 currently uses CXF 2.0.1 and should be upgraded to use 2.0.2 if 
possible.

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



[jira] Issue Comment Edited: (GERONIMO-2994) Apache Roller plugin

2007-09-18 Thread Peter Petersson (JIRA)

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

ppe edited comment on GERONIMO-2994 at 9/18/07 1:26 PM:


Roller plugin updates for Geronimo v2.0.1

Adding roller_plugin_070918.patch and roller_maven_ant_task_070918_0.patch

Changes 
===
 * Updating roller-weblogger from 4.0_rc1 to 4.0_rc2.
 * Updating the roller plugin artifact versions.
 * Updating README.

Adding roller-weblogger.war aftifact to local repo 
==
 For now (as long as no official roller maven artifacts are available). Check 
out the svn 4.0_rc2 tag found at 
 https://svn.apache.org/repos/asf/roller/tags/roller_4.0_rc2/ patch it with the 
roller_maven_ant_task_070918_0.patch (it's 
 a small maven patch to the ant build included in this jira) and run 'ant 
mvn-install'. You need to download and install 
 the maven-ant-task jar from here 
http://www.apache.org/dyn/closer.cgi/maven/binaries/maven-ant-tasks-2.0.7.jar 
and 
 place it in /tools/buildtime/maven/.
  

  was (Author: ppe):
Roller plugin updates for Geronimo v2.0.1

Adding roller_plugin_070918.patch and roller_maven_ant_task_070918_0.patch

Changes 
===
 * Updating roller-weblogger from 4.0_rc1 to 4.0_rc2.
 * Updating the roller plugin artifact versions.
 * Updating README.
  
> Apache Roller plugin 
> -
>
> Key: GERONIMO-2994
> URL: https://issues.apache.org/jira/browse/GERONIMO-2994
> Project: Geronimo
>  Issue Type: New Feature
>  Security Level: public(Regular issues) 
>  Components: Plugins
>Affects Versions: 1.2
>Reporter: Peter Petersson
>Assignee: David Jencks
>Priority: Minor
> Attachments: geronimo-plugins.xml, geronimo-plugins.xml, 
> geronimo-plugins_070602.xml, geronimo-web.xml, geronimo-web.xml, plan.xml, 
> PluginInstallerGBean.patch, pom.xml, pom.xml, roller-custom.properties, 
> roller-custom.properties, roller-custom.properties, 
> roller-derbydb-plan-g1_2.xml, roller-mysql-db-plan-1-2.xml, 
> roller070409.patch, roller12_070602.zip, roller_g20_svn_070602.patch, 
> roller_maven_ant_task_070902_0.patch, roller_maven_ant_task_070918_0.patch, 
> roller_plugin.patch, roller_plugin_070717.patch, roller_plugin_070803.patch, 
> roller_plugin_070918.patch, roller_plugin_patch_070724.txt
>
>
> Have been working on getting Apache Roller running under Geronimo I finally 
> got to the point where the roller application seems to be running smoothly in 
> Geronimo v1.2 (current snapshot). It would be great to eventually see this 
> application as a plugin in G so here are pointers to resources and attached 
> plans.
> Apache Roller v3.1 Resources (soon to be released)
> Apache roller home: http://rollerweblogger.org/project/
> The bundle: http://people.apache.org/~snoopdave/apache-roller-3.1/ (until it 
> will be available directly via roller home)
> Required jars: 
> https://roller.dev.java.net/servlets/ProjectDocumentList?expandFolder=6959&folderID=0
> Path to database create scripts can be found in the bundle above under: 
> apache-roller-3.1/webapp/roller/WEB-INF/dbscripts/
> I have tested with the derby database and mysql 5. 
> There is currently a issue with G v1.2 and hibernates v3.1 (used by roller 
> 3.1) property loader that gets a
>  
> FATAL [HibernateRollerImpl] Error initializing Hibernate
> java.lang.ClassCastException: java.util.HashSet
> at 
> org.hibernate.util.PropertiesHelper.resolvePlaceHolders(PropertiesHelper.java:88)
>
> Hibernate is expecting a String value (This issue is fixed in hibernate 3.2 
> with a instanceOf check)
> Fortunately David Jencks hit this problem in trunk and suggested turning off 
> the activemq and activemq-broker modules in config.xml, to test things out, 
> and after that everything was running smothly :).
> 

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



[jira] Updated: (GERONIMO-2994) Apache Roller plugin

2007-09-18 Thread Peter Petersson (JIRA)

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

Peter Petersson updated GERONIMO-2994:
--

Attachment: roller_plugin_070918.patch
roller_maven_ant_task_070918_0.patch

Roller plugin updates for Geronimo v2.0.1

Adding roller_plugin_070918.patch and roller_maven_ant_task_070918_0.patch

Changes 
===
 * Updating roller-weblogger from 4.0_rc1 to 4.0_rc2.
 * Updating the roller plugin artifact versions.
 * Updating README.

> Apache Roller plugin 
> -
>
> Key: GERONIMO-2994
> URL: https://issues.apache.org/jira/browse/GERONIMO-2994
> Project: Geronimo
>  Issue Type: New Feature
>  Security Level: public(Regular issues) 
>  Components: Plugins
>Affects Versions: 1.2
>Reporter: Peter Petersson
>Assignee: David Jencks
>Priority: Minor
> Attachments: geronimo-plugins.xml, geronimo-plugins.xml, 
> geronimo-plugins_070602.xml, geronimo-web.xml, geronimo-web.xml, plan.xml, 
> PluginInstallerGBean.patch, pom.xml, pom.xml, roller-custom.properties, 
> roller-custom.properties, roller-custom.properties, 
> roller-derbydb-plan-g1_2.xml, roller-mysql-db-plan-1-2.xml, 
> roller070409.patch, roller12_070602.zip, roller_g20_svn_070602.patch, 
> roller_maven_ant_task_070902_0.patch, roller_maven_ant_task_070918_0.patch, 
> roller_plugin.patch, roller_plugin_070717.patch, roller_plugin_070803.patch, 
> roller_plugin_070918.patch, roller_plugin_patch_070724.txt
>
>
> Have been working on getting Apache Roller running under Geronimo I finally 
> got to the point where the roller application seems to be running smoothly in 
> Geronimo v1.2 (current snapshot). It would be great to eventually see this 
> application as a plugin in G so here are pointers to resources and attached 
> plans.
> Apache Roller v3.1 Resources (soon to be released)
> Apache roller home: http://rollerweblogger.org/project/
> The bundle: http://people.apache.org/~snoopdave/apache-roller-3.1/ (until it 
> will be available directly via roller home)
> Required jars: 
> https://roller.dev.java.net/servlets/ProjectDocumentList?expandFolder=6959&folderID=0
> Path to database create scripts can be found in the bundle above under: 
> apache-roller-3.1/webapp/roller/WEB-INF/dbscripts/
> I have tested with the derby database and mysql 5. 
> There is currently a issue with G v1.2 and hibernates v3.1 (used by roller 
> 3.1) property loader that gets a
>  
> FATAL [HibernateRollerImpl] Error initializing Hibernate
> java.lang.ClassCastException: java.util.HashSet
> at 
> org.hibernate.util.PropertiesHelper.resolvePlaceHolders(PropertiesHelper.java:88)
>
> Hibernate is expecting a String value (This issue is fixed in hibernate 3.2 
> with a instanceOf check)
> Fortunately David Jencks hit this problem in trunk and suggested turning off 
> the activemq and activemq-broker modules in config.xml, to test things out, 
> and after that everything was running smothly :).
> 

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



[jira] Closed: (GERONIMO-1113) WWW site: Add Apache Directory to list of related projects

2007-09-18 Thread Hernan Cunico (JIRA)

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

Hernan Cunico closed GERONIMO-1113.
---

Resolution: Fixed

This functionality is now available via Geronimo plugins.  Plugins can be 
installed from the Geronimo Administration Console.

Available documentation cover the installation process. Once the plugin 
architecture is finally fine tuned we'll add some additional info on the main 
website.

Alternatively there are community oriented sites like 
http://geronimoplugincentral.org/ with additional reviews on these plugins

Cheers!
Hernan

> WWW site: Add Apache Directory to list of related projects
> --
>
> Key: GERONIMO-1113
> URL: https://issues.apache.org/jira/browse/GERONIMO-1113
> Project: Geronimo
>  Issue Type: Wish
>  Security Level: public(Regular issues) 
>  Components: documentation
>Affects Versions: 2.0-M2
>Reporter: Stefan Zoerner
>Assignee: Hernan Cunico
>Priority: Trivial
>
> Great to see that Apache Directory Server is embeded in the current 
> geronimo-1.0-M5. Thank you for making it availlable in such a confortable way 
> (GBean configuration, start/stop)! Especially new users will like that!
> Although I do not know what your definition of "dependency" is, it would be 
> nice if you could add the project to you mosaic list here:
> http://geronimo.apache.org/dependencies.html
> Thanks for considering it, we at Directory project would appreciate to be 
> listed (good promotion for us).

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



Online books references on Geronimo's web site

2007-09-18 Thread Hernan Cunico

Folks,
checking the referenced online books on the web site I noticed that many of 
these are way too old and probably not relevant anymore.
Does anyone has some fresh material to update this page -> 
http://geronimo.apache.org/documentation.html

I'll be doing some makeup on the wiki links myself.

Pls chime in to this thread with the updates. Thx

Cheers!
Hernan


[jira] Closed: (GERONIMO-3425) Add deployment plan schemas to geronimo web site

2007-09-18 Thread Hernan Cunico (JIRA)

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

Hernan Cunico closed GERONIMO-3425.
---


Resolved.

> Add deployment plan schemas to geronimo web site
> 
>
> Key: GERONIMO-3425
> URL: https://issues.apache.org/jira/browse/GERONIMO-3425
> Project: Geronimo
>  Issue Type: Improvement
>  Security Level: public(Regular issues) 
>  Components: website
>Reporter: Kevan Miller
>Assignee: Hernan Cunico
>
> I seem to recall this being raised, some time ago. I thought it had been 
> addressed, but does not seem to be the case.
> It's really convenient if the xmlns url would actually contain the schemas 
> for our deployment plans. That way some ide's (e.g. Eclipse) will 
> automatically load the schemas. For example 
> http://geronimo.apache.org/xml/ns/j2ee/application-2.0 should serve the 
> schema for our application deployment plan. 
> We should do the same for OpenEJB (e.g. 
> http://www.openejb.org/xml/ns/openejb-jar-2.1). 
> An overview of our deployment plan schemas at 
> http://geronimo.apache.org/xml/ns/ would also be useful. 
> See http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd and 
> http://java.sun.com/xml/ns/javaee/ for examples how other organizations have 
> handled this...

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



[jira] Resolved: (GERONIMO-3425) Add deployment plan schemas to geronimo web site

2007-09-18 Thread Hernan Cunico (JIRA)

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

Hernan Cunico resolved GERONIMO-3425.
-

Resolution: Fixed

Updated updated with XML Schemas for 1.0, 1.1 and 2.0

http://geronimo.apache.org/xml-schemas.html

Cheers!
Hernan

> Add deployment plan schemas to geronimo web site
> 
>
> Key: GERONIMO-3425
> URL: https://issues.apache.org/jira/browse/GERONIMO-3425
> Project: Geronimo
>  Issue Type: Improvement
>  Security Level: public(Regular issues) 
>  Components: website
>Reporter: Kevan Miller
>Assignee: Hernan Cunico
>
> I seem to recall this being raised, some time ago. I thought it had been 
> addressed, but does not seem to be the case.
> It's really convenient if the xmlns url would actually contain the schemas 
> for our deployment plans. That way some ide's (e.g. Eclipse) will 
> automatically load the schemas. For example 
> http://geronimo.apache.org/xml/ns/j2ee/application-2.0 should serve the 
> schema for our application deployment plan. 
> We should do the same for OpenEJB (e.g. 
> http://www.openejb.org/xml/ns/openejb-jar-2.1). 
> An overview of our deployment plan schemas at 
> http://geronimo.apache.org/xml/ns/ would also be useful. 
> See http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd and 
> http://java.sun.com/xml/ns/javaee/ for examples how other organizations have 
> handled this...

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



[jira] Assigned: (GERONIMO-3425) Add deployment plan schemas to geronimo web site

2007-09-18 Thread Hernan Cunico (JIRA)

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

Hernan Cunico reassigned GERONIMO-3425:
---

Assignee: Hernan Cunico

> Add deployment plan schemas to geronimo web site
> 
>
> Key: GERONIMO-3425
> URL: https://issues.apache.org/jira/browse/GERONIMO-3425
> Project: Geronimo
>  Issue Type: Improvement
>  Security Level: public(Regular issues) 
>  Components: website
>Reporter: Kevan Miller
>Assignee: Hernan Cunico
>
> I seem to recall this being raised, some time ago. I thought it had been 
> addressed, but does not seem to be the case.
> It's really convenient if the xmlns url would actually contain the schemas 
> for our deployment plans. That way some ide's (e.g. Eclipse) will 
> automatically load the schemas. For example 
> http://geronimo.apache.org/xml/ns/j2ee/application-2.0 should serve the 
> schema for our application deployment plan. 
> We should do the same for OpenEJB (e.g. 
> http://www.openejb.org/xml/ns/openejb-jar-2.1). 
> An overview of our deployment plan schemas at 
> http://geronimo.apache.org/xml/ns/ would also be useful. 
> See http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd and 
> http://java.sun.com/xml/ns/javaee/ for examples how other organizations have 
> handled this...

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



[jira] Assigned: (GERONIMODEVTOOLS-208) Always appends default value into Server VM Arguments field after modifying this field.

2007-09-18 Thread Tim McConnell (JIRA)

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

Tim McConnell reassigned GERONIMODEVTOOLS-208:
--

Assignee: Tim McConnell

> Always appends default value into Server VM Arguments field after modifying 
> this field.
> ---
>
> Key: GERONIMODEVTOOLS-208
> URL: 
> https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-208
> Project: Geronimo-Devtools
>  Issue Type: Bug
>  Components: eclipse-plugin
>Affects Versions: 2.0
>Reporter: Kan Ogawa
>Assignee: Tim McConnell
> Attachments: GD-208.patch
>
>
> Assumes that the following value is set in Server VM Arguments field now:
>  - start -
>  -javaagent:"C:/Apache/Geronimo/2.0.1/bin/jpa.jar"
>  -Djava.ext.dirs="C:/Apache/Geronimo/2.0.1/lib/ext;C:\Program 
> Files\Java\jdk1.5.0_11\jre\lib\ext"
>  -Djava.endorsed.dirs="C:/Apache/Geronimo/2.0.1/lib/endorsed;C:\Program 
> Files\Java\jdk1.5.0_11\jre\lib\endorsed"
>  - end -
>  ( NOTE: "C:\Program Files\Java\jdk1.5.0_11" is JAVA_HOME. And 
> "C:/Apache/Geronimo/2.0.1" is GERONIMO_HOME. )
> Issue scenario:
> 1. Opens "Geronimo 2.0 Server" in "Servers" view.
> 2. Inputs the following value to head of "Server VM Arguments" field.
>"-server "
> 3. Saves and closes "Geronimo 2.0 Server" overview page.
> 4. Reopens "Geronimo 2.0 Server" in "Servers" view.
> 5. Displays the following value in "Server VM Arguments" field.
>  - start -
>  -javaagent:"C:/Apache/Geronimo/2.0.1/bin/jpa.jar"
>  -Djava.ext.dirs="C:/Apache/Geronimo/2.0.1/lib/ext;C:\Program 
> Files\Java\jdk1.5.0_11\jre\lib\ext"
>  -Djava.endorsed.dirs="C:/Apache/Geronimo/2.0.1/lib/endorsed;C:\Program 
> Files\Java\jdk1.5.0_11\jre\lib\endorsed"
>  -server -javaagent:"C:/Apache/Geronimo/2.0.1/bin/jpa.jar"
>  -Djava.ext.dirs="C:/Apache/Geronimo/2.0.1/lib/ext;C:\Program 
> Files\Java\jdk1.5.0_11\jre\lib\ext"
>  -Djava.endorsed.dirs="C:/Apache/Geronimo/2.0.1/lib/endorsed;C:\Program 
> Files\Java\jdk1.5.0_11\jre\lib\endorsed"
>  - end -

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



[jira] Assigned: (GERONIMODEVTOOLS-214) Fictional deployment of EJB-JAR

2007-09-18 Thread Tim McConnell (JIRA)

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

Tim McConnell reassigned GERONIMODEVTOOLS-214:
--

Assignee: Tim McConnell

> Fictional deployment of EJB-JAR
> ---
>
> Key: GERONIMODEVTOOLS-214
> URL: 
> https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-214
> Project: Geronimo-Devtools
>  Issue Type: Bug
>  Components: eclipse-plugin
>Affects Versions: 2.0
> Environment: Geronimo 2.0.1
>Reporter: Tomasz Mazan
>Assignee: Tim McConnell
>
> When I'm deploying my EJB project, Server Views shows it as deployed, but 
> there no any activity trail on Geronimo.

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



[jira] Assigned: (GERONIMODEVTOOLS-204) Change pre-requisite from current "wtp-all-in-one-sdk-* (266MB)" to "Eclipse IDE for Java EE Developers (125MB)"

2007-09-18 Thread Tim McConnell (JIRA)

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

Tim McConnell reassigned GERONIMODEVTOOLS-204:
--

Assignee: Tim McConnell

> Change pre-requisite from current "wtp-all-in-one-sdk-* (266MB)" to "Eclipse 
> IDE for Java EE Developers (125MB)"
> 
>
> Key: GERONIMODEVTOOLS-204
> URL: 
> https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-204
> Project: Geronimo-Devtools
>  Issue Type: New Feature
>  Components: eclipse-plugin
>Affects Versions: 2.0
>Reporter: Shiva Kumar H R
>Assignee: Tim McConnell
>
> Geronimo Eclipse Plug-in (GEP) v2.0 currently has following pre-requisites:
> 1 -- Eclipse Classic 3.3
> 2 -- Web Tools Platform (WTP) 2.0
> 3 -- Data Tools Platform (DTP) 1.5
> 4 -- Eclipse Modeling Framework (EMF) 2.3
> 5 -- Graphical Editing Framework (GEF) 3.3
> A wtp-all-in-one-sdk-* bundle that includes all the above 5 pre-requisites 
> can be downloaded from
> http://download.eclipse.org/webtools/downloads/drops/R2.0/R-2.0-200706260303/
> and it has a size of around 260MB.
> eclipse.org starting with Europa release (http://www.eclipse.org/europa/) 
> have a new package by name "Eclipse IDE for Java EE Developers" with a size 
> of just "125MB" (no source bundles included) and has all the pre-requistes 
> for GEP.
> GEP should be updated to utilize this new package of smaller download size.
> (This was attempted in GERONIMODEVTOOLS-180 and due to some problems faced, 
> this has been deferred to GEP 2.1).

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



[jira] Updated: (GERONIMODEVTOOLS-215) Does not work right-clik's option "Remove" to remove project from Server ("Servers" View)

2007-09-18 Thread Tim McConnell (JIRA)

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

Tim McConnell updated GERONIMODEVTOOLS-215:
---

Description: 
Hi Tomasz, Sorry to be so dense but I'm missing something obvious.  Are you 
able/willing to provide the artifacts that is causing the failure for you ?? If 
not, are these the correct steps that is causing the failure (so I can try to 
reproduce) ?? 

1. Deploy your first ejb.jar
2. Deploy your ear, which contains other ejb.jar files
3. Then I assume you're attempting to undeploy the ear that was deployed in 
Step 2 ??


   Assignee: Tim McConnell

> Does not work right-clik's option "Remove" to remove project from Server 
> ("Servers" View)
> -
>
> Key: GERONIMODEVTOOLS-215
> URL: 
> https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-215
> Project: Geronimo-Devtools
>  Issue Type: Bug
>  Components: eclipse-plugin
>Affects Versions: 2.0
>Reporter: Tomasz Mazan
>Assignee: Tim McConnell
>
> Hi Tomasz, Sorry to be so dense but I'm missing something obvious.  Are you 
> able/willing to provide the artifacts that is causing the failure for you ?? 
> If not, are these the correct steps that is causing the failure (so I can try 
> to reproduce) ?? 
> 1. Deploy your first ejb.jar
> 2. Deploy your ear, which contains other ejb.jar files
> 3. Then I assume you're attempting to undeploy the ear that was deployed in 
> Step 2 ??

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



[jira] Updated: (GERONIMODEVTOOLS-206) Error while deploying EAR to running server Geronimo 2.0.1

2007-09-18 Thread Tim McConnell (JIRA)

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

Tim McConnell updated GERONIMODEVTOOLS-206:
---

Fix Version/s: 2.1
 Assignee: Tim McConnell

> Error while deploying EAR to running server Geronimo 2.0.1
> --
>
> Key: GERONIMODEVTOOLS-206
> URL: 
> https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-206
> Project: Geronimo-Devtools
>  Issue Type: Bug
>  Components: eclipse-plugin
>Affects Versions: 2.0
> Environment: Geronimo 2.0.1
> WTP 2.0 + GEP 2.0
>Reporter: Tomasz Mazan
>Assignee: Tim McConnell
> Fix For: 2.1
>
>
> Exception on deploy
> Distribution of configuration failed.  See log for details.
>   java.io.FileNotFoundException: 
> C:\DEV\IDE\eclipse-wtp-2.0\workspace\.metadata\.plugins\org.apache.geronimo.st.core\server_13.09.07_14_454\FonBsaCore.zip
>  (File not found)
>   org.apache.geronimo.common.DeploymentException: 
> java.io.FileNotFoundException: 
> C:\DEV\IDE\eclipse-wtp-2.0\workspace\.metadata\.plugins\org.apache.geronimo.st.core\server_13.09.07_14_454\FonBsaCore.zip
>  (File not found)
>   at org.apache.geronimo.deployment.Deployer.deploy(Deployer.java:121)
>   at 
> org.apache.geronimo.deployment.Deployer$$FastClassByCGLIB$$734a235d.invoke()
>   at net.sf.cglib.reflect.FastMethod.invoke(FastMethod.java:53)
>   at 
> org.apache.geronimo.gbean.runtime.FastMethodInvoker.invoke(FastMethodInvoker.java:38)
>   at 
> org.apache.geronimo.gbean.runtime.GBeanOperation.invoke(GBeanOperation.java:124)
>   at 
> org.apache.geronimo.gbean.runtime.GBeanInstance.invoke(GBeanInstance.java:865)
>   at 
> org.apache.geronimo.kernel.basic.BasicKernel.invoke(BasicKernel.java:239)
>   at org.apache.geronimo.kernel.KernelGBean.invoke(KernelGBean.java:342)
>   at 
> org.apache.geronimo.kernel.KernelGBean$$FastClassByCGLIB$$1cccefc9.invoke()
>   at net.sf.cglib.reflect.FastMethod.invoke(FastMethod.java:53)
>   at 
> org.apache.geronimo.gbean.runtime.FastMethodInvoker.invoke(FastMethodInvoker.java:38)
>   at 
> org.apache.geronimo.gbean.runtime.GBeanOperation.invoke(GBeanOperation.java:124)
>   at 
> org.apache.geronimo.gbean.runtime.GBeanInstance.invoke(GBeanInstance.java:865)
>   at 
> org.apache.geronimo.kernel.basic.BasicKernel.invoke(BasicKernel.java:239)
>   at 
> org.apache.geronimo.system.jmx.MBeanGBeanBridge.invoke(MBeanGBeanBridge.java:168)
>   at 
> com.sun.jmx.mbeanserver.DynamicMetaDataImpl.invoke(DynamicMetaDataImpl.java:213)
>   at com.sun.jmx.mbeanserver.MetaDataImpl.invoke(MetaDataImpl.java:220)
>   at 
> com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerInterceptor.java:815)
>   at 
> com.sun.jmx.mbeanserver.JmxMBeanServer.invoke(JmxMBeanServer.java:784)
>   at 
> javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1408)
>   at 
> javax.management.remote.rmi.RMIConnectionImpl.access$100(RMIConnectionImpl.java:81)
>   at 
> javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1245)
>   at java.security.AccessController.doPrivileged(Native Method)
>   at 
> javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1348)
>   at 
> javax.management.remote.rmi.RMIConnectionImpl.invoke(RMIConnectionImpl.java:782)
>   at sun.reflect.GeneratedMethodAccessor223.invoke(Unknown Source)
>   at 
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
>   at java.lang.reflect.Method.invoke(Method.java:585)
>   at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:294)
>   at sun.rmi.transport.Transport$1.run(Transport.java:153)
>   at java.security.AccessController.doPrivileged(Native Method)
>   at sun.rmi.transport.Transport.serviceCall(Transport.java:149)
>   at 
> sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:466)
>   at 
> sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:707)
>   at java.lang.Thread.run(Thread.java:595)
>   Caused by: java.io.FileNotFoundException: 
> C:\DEV\IDE\eclipse-wtp-2.0\workspace\.metadata\.plugins\org.apache.geronimo.st.core\server_13.09.07_14_454\FonBsaCore.zip
>  (File not found)
>   at java.io.FileInputStream.open(Native Method)
>   at java.io.FileInputStream.(FileInputStream.java:106)
>   at 
> org.apache.geronimo.deployment.util.DeploymentUtil.copyFile(DeploymentUtil.java:92)
>   at org.apache.geronimo.deployment.Deployer.deploy(Deployer.java:118)
>   ... 34 more

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



Re: [VOTE] Release Geronimo Eclipse Plugin 2.0.0 (RC3)

2007-09-18 Thread Lin Sun

+1

Lin

Tim McConnell wrote:
Hi, Please review and vote on the release of the Geronimo Eclipse Plugin 
2.0.0 RC3 (to correspond with the Geronimo 2.0.1 Server release).


The deployable zip file is here:

> 
http://people.apache.org/~mcconne/releases/RC3/geronimo-eclipse-plugin-2.0.0-deployable-RC3.zip 



The update site zip file is here:

> 
http://people.apache.org/~mcconne/releases/RC3/geronimo-eclipse-plugin-2.0.0-updatesite-RC3.zip 



The current svn location is here (revision number 575886):

> 
https://svn.apache.org/repos/asf/geronimo/devtools/eclipse-plugin/branches/2.0.0 



The future svn location will be here:

> 
https://svn.apache.org/repos/asf/geronimo/devtools/eclipse-plugin/tags/2.0.0 



Install, ant build, and Staging Site instructions are here:

-> 
http://people.apache.org/~mcconne/releases/RC3/Geronimo_Eclipse_Plugin_2.0.0_Instructions-RC3.txt 




The vote will conclude at 04:00 AM EST on Tuesday, September 18th





Re: where is the "Web application security sample" svn repo?

2007-09-18 Thread Hernan Cunico

Hi Toby,
Although we are going that that direction, most of the samples on the wiki are 
not yet in svn.
For now, while we still have a mixed environment, you could either attach the 
fixed sample directly to the wiki page or attach it to this thread and I'll 
update the wiki page for you.

Let me know what works best for you.

Cheers!
Hernan

toby cabot wrote:

Hi Folks,

I'm playing around with application security in Geronimo and found the
"Web application security sample"[1].  It's helpful, thanks!  I needed
to make a few changes to get it to work with 2.0, so I'm curious if I
can check it out of subversion somewhere and use svn to make a patch
for you guys.

If looks as if the zip file is just a wiki attachment so I imagine
there's a subversion repo somewhere but I can't find it.  Pointers
appreciated.

Thanks,
Toby

[1] http://cwiki.apache.org/GMOxDOC20/web-application-security-sample.html



[BUILD] Trunk: Failed for Revision: 576935

2007-09-18 Thread prasad
OpenEJB trunk at 0
Geronimo Revision: 576935 built with tests included
 
See the full build-1000.log file at 
http://people.apache.org/~prasad/binaries/trunk/20070918/build-1000.log
 
[WARNING] Unable to get resource 
'org.apache.openjpa:openjpa-persistence-jdbc:jar:1.0.0' from repository 
java.net (http://download.java.net/maven/1/)
Downloading: 
http://people.apache.org/repo/m2-incubating-repository//org/apache/openjpa/openjpa-persistence-jdbc/1.0.0/openjpa-persistence-jdbc-1.0.0.jar
[WARNING] Unable to get resource 
'org.apache.openjpa:openjpa-persistence-jdbc:jar:1.0.0' from repository 
apache-incubator (http://people.apache.org/repo/m2-incubating-repository/)
Downloading: 
http://www.ibiblio.org/maven2/org/apache/openjpa/openjpa-persistence-jdbc/1.0.0/openjpa-persistence-jdbc-1.0.0.jar
108K downloaded
Downloading: 
http://download.java.net/maven/1//org.apache.openjpa/jars/openjpa-xmlstore-1.0.0.jar
[WARNING] Unable to get resource 
'org.apache.openjpa:openjpa-xmlstore:jar:1.0.0' from repository java.net 
(http://download.java.net/maven/1/)
Downloading: 
http://people.apache.org/repo/m2-incubating-repository//org/apache/openjpa/openjpa-xmlstore/1.0.0/openjpa-xmlstore-1.0.0.jar
[WARNING] Unable to get resource 
'org.apache.openjpa:openjpa-xmlstore:jar:1.0.0' from repository 
apache-incubator (http://people.apache.org/repo/m2-incubating-repository/)
Downloading: 
http://www.ibiblio.org/maven2/org/apache/openjpa/openjpa-xmlstore/1.0.0/openjpa-xmlstore-1.0.0.jar
31K downloaded
Downloading: 
http://download.java.net/maven/1//org.apache.openjpa/jars/openjpa-persistence-1.0.0.jar
[WARNING] Unable to get resource 
'org.apache.openjpa:openjpa-persistence:jar:1.0.0' from repository java.net 
(http://download.java.net/maven/1/)
Downloading: 
http://people.apache.org/repo/m2-incubating-repository//org/apache/openjpa/openjpa-persistence/1.0.0/openjpa-persistence-1.0.0.jar
[WARNING] Unable to get resource 
'org.apache.openjpa:openjpa-persistence:jar:1.0.0' from repository 
apache-incubator (http://people.apache.org/repo/m2-incubating-repository/)
Downloading: 
http://www.ibiblio.org/maven2/org/apache/openjpa/openjpa-persistence/1.0.0/openjpa-persistence-1.0.0.jar
228K downloaded
Downloading: 
http://download.java.net/maven/1//org.apache.openjpa/jars/openjpa-lib-1.0.0.jar
[WARNING] Unable to get resource 'org.apache.openjpa:openjpa-lib:jar:1.0.0' 
from repository java.net (http://download.java.net/maven/1/)
Downloading: 
http://people.apache.org/repo/m2-incubating-repository//org/apache/openjpa/openjpa-lib/1.0.0/openjpa-lib-1.0.0.jar
[WARNING] Unable to get resource 'org.apache.openjpa:openjpa-lib:jar:1.0.0' 
from repository apache-incubator 
(http://people.apache.org/repo/m2-incubating-repository/)
Downloading: 
http://www.ibiblio.org/maven2/org/apache/openjpa/openjpa-lib/1.0.0/openjpa-lib-1.0.0.jar
424K downloaded
[INFO] [enforcer:enforce {execution: default}]
[INFO] [tools:copy-legal-files {execution: install-legal-files}]
[INFO] Created dir: 
/home/prasad/geronimo/trunk/configs/openjpa/target/classes/META-INF
[INFO] Copying 2 files to 
/home/prasad/geronimo/trunk/configs/openjpa/target/classes/META-INF
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [car:validate-configuration]
[INFO] [car:prepare-plan]
[INFO] Generated: 
/home/prasad/geronimo/trunk/configs/openjpa/target/resources/META-INF/plan.xml
[INFO] [car:prepare-metadata]
[INFO] [car:package]
[INFO] Packaging module configuration: 
/home/prasad/geronimo/trunk/configs/openjpa/target/resources/META-INF/plan.xml
[INFO] Building jar: 
/home/prasad/geronimo/trunk/configs/openjpa/target/openjpa-2.1-SNAPSHOT.car
[INFO] [tools:verify-legal-files {execution: verify-legal-files}]
[INFO] Checking legal files in: openjpa-2.1-SNAPSHOT.car
[INFO] [install:install]
[INFO] Installing 
/home/prasad/geronimo/trunk/configs/openjpa/target/openjpa-2.1-SNAPSHOT.car to 
/home/prasad/.m2/repository/org/apache/geronimo/configs/openjpa/2.1-SNAPSHOT/openjpa-2.1-SNAPSHOT.car
[INFO] [car:update-pluginlist]
[INFO] 

[INFO] Building Geronimo Configs :: OpenEJB
[INFO]task-segment: [install]
[INFO] 

[WARNING] POM for 'org.apache.openejb:openejb-core:pom:3.0.0-SNAPSHOT:compile' 
is invalid. It will be ignored for artifact resolution. Reason: Failed to 
validate POM
[WARNING] POM for 'org.apache.openejb:openejb-core:pom:3.0.0-SNAPSHOT:compile' 
is invalid. It will be ignored for artifact resolution. Reason: Failed to 
validate POM
[WARNING] POM for 'org.apache.openejb:openejb-core:pom:3.0.0-SNAPSHOT:compile' 
is invalid. It will be ignored for artifact resolution. Reason: Failed to 
validate POM
[WARNING] POM for 'org.apache.openejb:openejb-core:pom:3.0.0-SNAPSHOT:compile

[BUILD] 2.0: Failed for Revision: 576935

2007-09-18 Thread prasad
OpenEJB trunk at 0
Geronimo Revision: 576935 built with tests included
 
See the full build-1000.log file at 
http://people.apache.org/~prasad/binaries/2.0/20070918/build-1000.log
 
[INFO] snapshot org.apache.geronimo.modules:geronimo-jaxws:2.0.2-SNAPSHOT: 
checking for updates from codehaus-snapshots
[INFO] snapshot org.apache.geronimo.modules:geronimo-jaxws:2.0.2-SNAPSHOT: 
checking for updates from apache.snapshots
[INFO] Building jar: 
/home/prasad/geronimo/2.0/configs/webservices-common/target/webservices-common-2.0.2-SNAPSHOT.car
[INFO] [tools:verify-legal-files {execution: verify-legal-files}]
[INFO] Checking legal files in: webservices-common-2.0.2-SNAPSHOT.car
[INFO] [install:install]
[INFO] Installing 
/home/prasad/geronimo/2.0/configs/webservices-common/target/webservices-common-2.0.2-SNAPSHOT.car
 to 
/home/prasad/.m2/repository/org/apache/geronimo/configs/webservices-common/2.0.2-SNAPSHOT/webservices-common-2.0.2-SNAPSHOT.car
[INFO] 

[INFO] Building Geronimo Configs :: OpenJPA with dependencies
[INFO]task-segment: [install]
[INFO] 

[INFO] [enforcer:enforce {execution: default}]
[INFO] [tools:copy-legal-files {execution: install-legal-files}]
[INFO] Created dir: 
/home/prasad/geronimo/2.0/configs/openjpa/target/classes/META-INF
[INFO] Copying 2 files to 
/home/prasad/geronimo/2.0/configs/openjpa/target/classes/META-INF
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [car:prepare-plan]
[INFO] Generated: /home/prasad/geronimo/2.0/configs/openjpa/target/plan/plan.xml
Downloading: 
http://download.java.net/maven/1//commons-lang/poms/commons-lang-2.0.pom
[WARNING] Unable to get resource 'commons-lang:commons-lang:pom:2.0' from 
repository java.net (http://download.java.net/maven/1/)
Downloading: 
http://people.apache.org/repo/m2-incubating-repository//commons-lang/commons-lang/2.0/commons-lang-2.0.pom
[WARNING] Unable to get resource 'commons-lang:commons-lang:pom:2.0' from 
repository apache-incubator 
(http://people.apache.org/repo/m2-incubating-repository/)
Downloading: 
http://repo1.maven.org/maven2/commons-lang/commons-lang/2.0/commons-lang-2.0.pom
2K downloaded
Downloading: 
http://download.java.net/maven/1//commons-lang/jars/commons-lang-2.0.jar
[WARNING] Unable to get resource 'commons-lang:commons-lang:jar:2.0' from 
repository java.net (http://download.java.net/maven/1/)
Downloading: 
http://people.apache.org/repo/m2-incubating-repository//commons-lang/commons-lang/2.0/commons-lang-2.0.jar
[WARNING] Unable to get resource 'commons-lang:commons-lang:jar:2.0' from 
repository apache-incubator 
(http://people.apache.org/repo/m2-incubating-repository/)
Downloading: 
http://repo1.maven.org/maven2/commons-lang/commons-lang/2.0/commons-lang-2.0.jar
165K downloaded
Downloading: 
http://download.java.net/maven/1//net.sourceforge.serp/jars/serp-1.11.0.jar
[WARNING] Unable to get resource 'net.sourceforge.serp:serp:jar:1.11.0' from 
repository java.net (http://download.java.net/maven/1/)
Downloading: 
http://people.apache.org/repo/m2-incubating-repository//net/sourceforge/serp/serp/1.11.0/serp-1.11.0.jar
[WARNING] Unable to get resource 'net.sourceforge.serp:serp:jar:1.11.0' from 
repository apache-incubator 
(http://people.apache.org/repo/m2-incubating-repository/)
Downloading: 
http://repo1.maven.org/maven2/net/sourceforge/serp/serp/1.11.0/serp-1.11.0.jar
185K downloaded
[INFO] [car:package]
[INFO] Packaging module configuration: 
/home/prasad/geronimo/2.0/configs/openjpa/target/plan/plan.xml
[INFO] snapshot org.apache.geronimo.modules:geronimo-openjpa:2.0.2-SNAPSHOT: 
checking for updates from apache-snapshots
[INFO] snapshot org.apache.geronimo.modules:geronimo-openjpa:2.0.2-SNAPSHOT: 
checking for updates from codehaus-snapshots
[INFO] snapshot org.apache.geronimo.modules:geronimo-openjpa:2.0.2-SNAPSHOT: 
checking for updates from apache.snapshots
[INFO] Building jar: 
/home/prasad/geronimo/2.0/configs/openjpa/target/openjpa-2.0.2-SNAPSHOT.car
[INFO] [tools:verify-legal-files {execution: verify-legal-files}]
[INFO] Checking legal files in: openjpa-2.0.2-SNAPSHOT.car
[INFO] [install:install]
[INFO] Installing 
/home/prasad/geronimo/2.0/configs/openjpa/target/openjpa-2.0.2-SNAPSHOT.car to 
/home/prasad/.m2/repository/org/apache/geronimo/configs/openjpa/2.0.2-SNAPSHOT/openjpa-2.0.2-SNAPSHOT.car
[INFO] 

[INFO] Building Geronimo Configs :: OpenEJB
[INFO]task-segment: [install]
[INFO] 

[INFO] [enforcer:enforce {execution: default}]
[INFO] [tools:copy-legal-files {execution: install-legal-files}]
[INFO] Created dir: 
/home/prasad/geronimo/2.0/configs/openejb/target/classes/META-INF

Re: Build problem on Trunk

2007-09-18 Thread Vamsavardhana Reddy
After jarek said he was able to build using 1.5.0_10, I tried using that but
ran into the same error :(

Vamsi

On 9/17/07, Vamsavardhana Reddy <[EMAIL PROTECTED]> wrote:
>
> I guess I am the only one for now hitting this build error.  Anyone else
> seeing this error?  Output from command window posted below..
>
> I am using Sun JDK 1.5.0_12 on WinXP SP2.
>
>
> [INFO]
> -
> ---
> [INFO] Building Geronimo :: Deploy :: JSR-88
> [INFO]task-segment: [install]
> [INFO]
> -
> ---
> [INFO] [enforcer:enforce {execution: default}]
> [INFO] [tools:copy-legal-files {execution: install-legal-files}]
> [INFO] [resources:resources]
> [INFO] Using default encoding to copy filtered resources.
> [INFO] [compiler:compile]
> [INFO] Compiling 25 source files to
> C:\G\server\trunk\modules\geronimo-deploy-js
> r88\target\classes
> [INFO]
> 
> [ERROR] BUILD FAILURE
> [INFO]
> 
> [INFO] Compilation failure
> Failure executing javac, but could not parse the error:
> An exception has occurred in the compiler (1.5.0_12). Please file a bug at
> the J
> ava Developer Connection ( http://java.sun.com/webapps/bugreport)  after
> checking
>  the Bug Parade for duplicates. Include your program and the following
> diagnosti
> c in your report.  Thank you.
> com.sun.tools.javac.code.Symbol$CompletionFailure: file
> javax\xml\bind\annotatio
> n\XmlAccessorType.class not found
>
>
>
> Failure executing javac, but could not parse the error:
> An exception has occurred in the compiler (1.5.0_12). Please file a bug at
> the J
> ava Developer Connection (http://java.sun.com/webapps/bugreport)  after
> checking
>  the Bug Parade for duplicates. Include your program and the following
> diagnosti
> c in your report.  Thank you.
> com.sun.tools.javac.code.Symbol$CompletionFailure: file
> javax\xml\bind\annotatio
> n\XmlAccessorType.class not found
>
>
> [INFO]
> 
> [INFO] For more information, run Maven with the -e switch
> [INFO]
> 
> [INFO] Total time: 4 minutes 9 seconds
> [INFO] Finished at: Mon Sep 17 22:57:49 IST 2007
> [INFO] Final Memory: 97M/174M
> [INFO]
> 


Re: XML Schemas on the site

2007-09-18 Thread Hernan Cunico

Thanks for updating it.

Cheers!
Hernan

Jarek Gawor wrote:

Yes, that's right. I updated the schema files to point to Java EE ones.

Jarek

On 9/17/07, Aaron Mulder <[EMAIL PROTECTED]> wrote:

The 2.0 page isn't quite right -- the preferred J2EE schemas on the
top right should name and point to the Java EE 5 ones, I should think.

Thanks,
  Aaron

On 9/17/07, Hernan Cunico <[EMAIL PROTECTED]> wrote:

I've updated the XML Schemas info on the web site for reflect 1.0, 1.1 and 2.0

You can take a quick look at the new organization here 
http://cwiki.apache.org/GMOxSITE/xml-schemas.html

Changes will get reflected on the live site within the next hour.

Cheers!
Hernan

Hernan Cunico wrote:

Folks,
This is what we have so far for the schemas, note that openEJB is still
pending

http://cwiki.apache.org/GMOxSBOX/schemas-20.html

Thanks Jarek for consolidating the schemas on svn

Pls take a look and send in your comments.


Cheers!
Hernan

Hernan Cunico wrote:

YES. I think Jarek already moved all the schemas
(https://svn.apache.org/repos/asf/geronimo/site/trunk/docs/schemas-2.0/)
so I'll be updating the web site soon.

Cheers!
Hernan

Anita Kulshreshtha wrote:

   Are there any plans to put the schemas for 2.0.1 here:
http://geronimo.apache.org/xml-schemas.html

Thanks
Anita






Need a vacation? Get great deals
to amazing places on Yahoo! Travel.
http://travel.yahoo.com/







Re: XML Schemas on the site

2007-09-18 Thread Hernan Cunico

I talked with Dave Blevins about this, maybe I got it wrong. Dave can you take 
a look at this?

Cheers!
Hernan

Shiva Kumar H R wrote:
What's the correct Geronimo Schema for EJB (JAR)? Is it not 
http://geronimo.apache.org/xml/ns/j2ee/ejb/openejb-2.0 ??


- Shiva

On 9/18/07, *Hernan Cunico* <[EMAIL PROTECTED] 
> wrote:


I've updated the XML Schemas info on the web site for reflect 1.0,
1.1 and 2.0

You can take a quick look at the new organization here
http://cwiki.apache.org/GMOxSITE/xml-schemas.html


Changes will get reflected on the live site within the next hour.

Cheers!
Hernan

Hernan Cunico wrote:
 > Folks,
 > This is what we have so far for the schemas, note that openEJB is
still
 > pending
 >
 > http://cwiki.apache.org/GMOxSBOX/schemas-20.html
 >
 > Thanks Jarek for consolidating the schemas on svn
 >
 > Pls take a look and send in your comments.
 >
 >
 > Cheers!
 > Hernan
 >
 > Hernan Cunico wrote:
 >> YES. I think Jarek already moved all the schemas
 >> (
https://svn.apache.org/repos/asf/geronimo/site/trunk/docs/schemas-2.0/)
 >> so I'll be updating the web site soon.
 >>
 >> Cheers!
 >> Hernan
 >>
 >> Anita Kulshreshtha wrote:
 >>>Are there any plans to put the schemas for 2.0.1 here:
 >>> http://geronimo.apache.org/xml-schemas.html
 >>>
 >>> Thanks
 >>> Anita
 >>>
 >>>
 >>>
 >>>
 >>>


 >>>
 >>> Need a vacation? Get great deals
 >>> to amazing places on Yahoo! Travel.
 >>> http://travel.yahoo.com/
 >>>
 >>
 >




Re: [Discuss] Release Geronimo Eclipse Plugin 2.0.0 (RC3)

2007-09-18 Thread Shiva Kumar H R
On 9/17/07, Shiva Kumar H R <[EMAIL PROTECTED]> wrote:
>
> Some more observations while testing Geronimo Eclipse Plugin 2.0.0 (RC3):
> a) When defining a new server, "Apache Geronimo v1.2 Server" doesn't get
> listed in the list of available servers.
>
> b) Looks like WTP 2.0.1RC2 has solved the problem reported in
> GERONIMODEVTOOLS-209 if the HelloWorld WAR's geronimo-web.xml uses 
> 1.1Geronimo schemas. However, if
> geronimo-web.xml" is edited to use 2.0 version of Geronimo schemas, then
> "Run As -> Run on Server" won't open internal browser.
>
> c) Another very important thing related to "eclipse.ini" settings.
> The default contents of "eclipse.ini" is shown below:
> -showsplash
> org.eclipse.platform
> --launcher.XXMaxPermSize
> 256m
> -vmargs
> -Xms40m
> -Xmx256m
>
> This is *really* messy. With the default provided settings as above, my
> Eclipse crashed about 7 times! with "java.lang.OutOfMemoryError: PermGen
> space" errors and I was not at all able to complete the steps mentioned in
> http://cwiki.apache.org/geronimo/java-ee-50-app-development-on-geronimo-simplified-using-eclipse.html
>
> However, as suggested by Tim, I created a shortcut to eclipse.exe as below
> "E:\IDEs\eclipse3.3.1_WTP2.0.1RC2_gep2.0rc3\eclipse.exe -vmargs -Xms256m
> -Xmx256m -XX:MaxPermSize=128m"
>
> And when I use this shortcut, everything worked great and I was able to
> complete
> http://cwiki.apache.org/geronimo/java-ee-50-app-development-on-geronimo-simplified-using-eclipse.htmlin
>  one-go in less than 30 minutes. So the key is to correctly set "-vmargs
> -Xms256m -Xmx256m -XX:MaxPermSize=128m" arguments.
>
> We need to figure out how to set these in "eclipse.ini" itself


Found the correct settings. Please see
http://blog.xam.dk/archives/68-Eclipse-and-memory-settings.html

Here is eclipse.ini file contents that works for me for executing all the
steps in the ppt.

-showsplash
org.eclipse.platform
--launcher.XXMaxPermSize
256m
-vmargs
-Xms128m
-Xmx256m
-XX:MaxPermSize=128m

i) Changed -Xms value from 40m to 128m
ii) Added -XX:MaxPermSize=128m at the end of file (looks like this same
value specified before -vmargs is simply ignored!)

Tim,
Can 
http://people.apache.org/~mcconne/releases/RC3/build.xmlbe
updated to automatically update
eclipse.ini ?

- Shiva

and recommend them strongly to users in "Release Notes" as well as in
"http://people.apache.org/~mcconne/releases/RC3/Geronimo_Eclipse_Plugin_2.0.0_Instructions-RC3.txt
> "
> If we can also update http://people.apache.org/~mcconne/releases/RC3/build.xml
>  to
> automagically edit eclipse.ini with the correct settings, that would just
> be great!
>
> Thanks,
> Shiva
>
> On 9/17/07, Shiva Kumar H R < [EMAIL PROTECTED]> wrote:
> >
> > Tim,
> > The "Install prerequisites" section of  
> > http://people.apache.org/~mcconne/releases/RC3/Geronimo_Eclipse_Plugin_2.0.0_Instructions-RC3.txt
> >
> > 
> > needs following updates:
> >
> > 1) "1 -- Europa (also known as Eclipse 3.3), which is platform specific"
> > Need to mention package name as "Eclipse Classic" to avoid confusions as
> > raised in RC2 voting thread. Also, shouldn't the version be changed to
> > 3.3.1? Please see 
> > http://www.eclipse.org/eclipse/development/freeze_plan_3_3_1.html
> >
> > So, this could look something like:
> > "1 -- Eclipse 3.3.1 (Eclipse Classic package of Europa distribution),
> > which is platform specific"
> >  
> > 2) "3 -- Data Tools Platform (DTP) 1.5"
> > Should be "3 -- Data Tools Platform (DTP) 1.5.1"
> >
> > 3) "4 -- Eclipse Modeling Framework (EMF) 2.3"
> > Should be "4 -- Eclipse Modeling Framework (EMF) 2.3.1"
> > http://www.eclipse.org/modeling/emf/downloads/?project= lists
> > emf-sdo-xsd-SDK-M200709120130.zip under 2.3.1 Maintenance Builds
> >
> > 4) "5 -- Graphical Editing Framework (GEF) 3.3"
> > Should be "5 -- Graphical Editing Framework (GEF) 3.3.1"
> > http://download.eclipse.org/tools/gef/downloads/index.php lists
> > GEF-SDK-M20070814-1555.zip under 3.3.1 Stream Maintenance Builds
> >
> > 5) "That is why this ant script downloads and installs the WTP 2.0.1 RC1
> > artifacts."
> > Should be:
> > "That is why this ant script downloads and installs the WTP 2.0.1 RC2
> > artifacts."
> >
> > - Shiva
> >
>
>


[jira] Commented: (GERONIMODEVTOOLS-215) Does not work right-clik's option "Remove" to remove project from Server ("Servers" View)

2007-09-18 Thread Tomasz Mazan (JIRA)

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

Tomasz Mazan commented on GERONIMODEVTOOLS-215:
---

It concerns running: ear-application (that contains ejb-jars) and ejb.jar 
module (deployed independently)

> Does not work right-clik's option "Remove" to remove project from Server 
> ("Servers" View)
> -
>
> Key: GERONIMODEVTOOLS-215
> URL: 
> https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-215
> Project: Geronimo-Devtools
>  Issue Type: Bug
>  Components: eclipse-plugin
>Affects Versions: 2.0
>Reporter: Tomasz Mazan
>


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



Re: [VOTE] Release Geronimo Eclipse Plugin 2.0.0 (RC3)

2007-09-18 Thread Vamsavardhana Reddy
+1

--vamsi

On 9/15/07, Tim McConnell <[EMAIL PROTECTED]> wrote:
>
> Hi, Please review and vote on the release of the Geronimo Eclipse Plugin
> 2.0.0
> RC3 (to correspond with the Geronimo 2.0.1 Server release).
>
> The deployable zip file is here:
>
> >
>
> http://people.apache.org/~mcconne/releases/RC3/geronimo-eclipse-plugin-2.0.0-deployable-RC3.zip
>
> The update site zip file is here:
>
> >
>
> http://people.apache.org/~mcconne/releases/RC3/geronimo-eclipse-plugin-2.0.0-updatesite-RC3.zip
>
> The current svn location is here (revision number 575886):
>
> >
>
> https://svn.apache.org/repos/asf/geronimo/devtools/eclipse-plugin/branches/2.0.0
>
> The future svn location will be here:
>
> >
> https://svn.apache.org/repos/asf/geronimo/devtools/eclipse-plugin/tags/2.0.0
>
> Install, ant build, and Staging Site instructions are here:
>
> ->
>
> http://people.apache.org/~mcconne/releases/RC3/Geronimo_Eclipse_Plugin_2.0.0_Instructions-RC3.txt
>
>
> The vote will conclude at 04:00 AM EST on Tuesday, September 18th
>
> --
> Thanks,
> Tim McConnell
>


[jira] Commented: (GERONIMODEVTOOLS-215) Does not work right-clik's option "Remove" to remove project from Server ("Servers" View)

2007-09-18 Thread Kan Ogawa (JIRA)

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

Kan Ogawa commented on GERONIMODEVTOOLS-215:


Tomasz,

What kind of J2EE application did you try to remove on the Server view?
Also, what kind of state is this application in? (running? or stopped?)

Would you explain more detail information?

> Does not work right-clik's option "Remove" to remove project from Server 
> ("Servers" View)
> -
>
> Key: GERONIMODEVTOOLS-215
> URL: 
> https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-215
> Project: Geronimo-Devtools
>  Issue Type: Bug
>  Components: eclipse-plugin
>Affects Versions: 2.0
>Reporter: Tomasz Mazan
>


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



[jira] Created: (SM-1058) Allow the File Binding Component to work in "append" mode

2007-09-18 Thread Gianfranco Boccalon (JIRA)
Allow the File Binding Component to work in "append" mode
-

 Key: SM-1058
 URL: https://issues.apache.org/activemq/browse/SM-1058
 Project: ServiceMix
  Issue Type: Improvement
  Components: servicemix-file
Affects Versions: 3.1.1
Reporter: Gianfranco Boccalon
Priority: Minor
 Attachments: FileSenderEndpoint.java.diff

Actually the file component, when used for output, doesnt allow appending a 
message to an existing file.
The patch included adds an attribute to manage this behaviour.
This attribute has to be defined in the endpoint configuration.

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



Implementing an IMAP store

2007-09-18 Thread Rick McGuire
I've been working on adding an IMAP implementation to the Geronimo 
javamail implementation and need an opinion on how to approach 
compatibility with the Sun IMAP implementation.


The Sun version of IMAP includes a number of extensions that are above 
and beyond what's defined by the javamail API.  For example, the 
IMAPFolder class provides a QUOTA and ACL extensions.  To take advantage 
of these methods, you must cast the Folder instance to a 
com.sun.mail.imap.IMAPFolder instance.  Details are documented here:


http://java.sun.com/products/javamail/javadocs/com/sun/mail/imap/IMAPFolder.html

The ACL extensions also require the use of additional classes that are 
part of the com.sun.mail.imap package.  For example, 
com.sun.mail.imap.Rights. 

These extensions are all labeled as "experimental" and "use at your own 
risk, they may change". 

Adding these extensions should be no big deal, although the same 
extensions implemented for Geronimo will not be compatible with the Sun 
version because we won't be using the com.sun.mail.imap package for any 
of the class names. 

So, how far should we be going to be compatible with the Sun 
implementation?  Should the Geronimo implementation stick to just what's 
defined in the API, or should we implement all of the what Sun has 
implemented, even though we can't be 100% compatible because of the 
package name diferences?  I don't have strong feelings either way.  The 
amount of code involved to implement these additional features is not 
large, so I'm willing to go either way.  Do we have any precedents for 
something like this, or are we entering new territory?


Rick


[jira] Created: (GERONIMODEVTOOLS-215) Does not work right-clik's option "Remove" to remove project from Server ("Servers" View)

2007-09-18 Thread Tomasz Mazan (JIRA)
Does not work right-clik's option "Remove" to remove project from Server 
("Servers" View)
-

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




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



[jira] Created: (GERONIMO-3477) Transaction recovery broken for resource adapter

2007-09-18 Thread Matthew Vaughton (JIRA)
Transaction recovery broken for resource adapter


 Key: GERONIMO-3477
 URL: https://issues.apache.org/jira/browse/GERONIMO-3477
 Project: Geronimo
  Issue Type: Bug
  Security Level: public (Regular issues)
  Components: transaction manager
Affects Versions: 2.0.1
 Environment: GA version of Geronimo 2.0.1 running under Windows XP on 
Intel machine
Reporter: Matthew Vaughton


An external JMS Resource adapter is installed into Geronimo. 

XA connections configured on the JMS resource adapter are used by a container 
managed session EJB to connect and put a message onto two different remote 
resource manager queues. Both resource managers XA resources receive a preprere 
call and respond rc=0, ie ok.

The first resource manager is called to commit and it does so ok.

The second resource manager is called to commit at which point we kill the 
Geronimo server process before the commit is processed.

After restarting the Geronimo server process recover is called on all XA 
connections,  the second resource manager responds to the recover call with the 
indoubt transaction Xid but instead of the required commit call we receive a 
rollback call - since the first resource manager has committed the second 
resource manager must also be called to commit.

This problem was introduced into the Geronimo code base between M6-rc1 and 
2.0.1 as the transaction recovery scenario described worked fine in M6-rc1


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



[BUILD] 2.0: Failed for Revision: 576762

2007-09-18 Thread prasad
OpenEJB trunk at 0
Geronimo Revision: 576762 built with tests included
 
See the full build-0400.log file at 
http://people.apache.org/~prasad/binaries/2.0/20070918/build-0400.log
 
[INFO] Using default encoding to copy filtered resources.
[INFO] [car:prepare-plan]
[INFO] Generated: 
/home/prasad/geronimo/2.0/configs/webservices-common/target/plan/plan.xml
[INFO] [car:package]
[INFO] Packaging module configuration: 
/home/prasad/geronimo/2.0/configs/webservices-common/target/plan/plan.xml
[INFO] snapshot org.apache.geronimo.modules:geronimo-jaxws:2.0.2-SNAPSHOT: 
checking for updates from apache-snapshots
[INFO] snapshot org.apache.geronimo.modules:geronimo-jaxws:2.0.2-SNAPSHOT: 
checking for updates from codehaus-snapshots
[INFO] snapshot org.apache.geronimo.modules:geronimo-jaxws:2.0.2-SNAPSHOT: 
checking for updates from apache.snapshots
[INFO] Building jar: 
/home/prasad/geronimo/2.0/configs/webservices-common/target/webservices-common-2.0.2-SNAPSHOT.car
[INFO] [tools:verify-legal-files {execution: verify-legal-files}]
[INFO] Checking legal files in: webservices-common-2.0.2-SNAPSHOT.car
[INFO] [install:install]
[INFO] Installing 
/home/prasad/geronimo/2.0/configs/webservices-common/target/webservices-common-2.0.2-SNAPSHOT.car
 to 
/home/prasad/.m2/repository/org/apache/geronimo/configs/webservices-common/2.0.2-SNAPSHOT/webservices-common-2.0.2-SNAPSHOT.car
[INFO] 

[INFO] Building Geronimo Configs :: OpenJPA with dependencies
[INFO]task-segment: [install]
[INFO] 

[INFO] [enforcer:enforce {execution: default}]
[INFO] [tools:copy-legal-files {execution: install-legal-files}]
[INFO] Created dir: 
/home/prasad/geronimo/2.0/configs/openjpa/target/classes/META-INF
[INFO] Copying 2 files to 
/home/prasad/geronimo/2.0/configs/openjpa/target/classes/META-INF
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [car:prepare-plan]
[INFO] Generated: /home/prasad/geronimo/2.0/configs/openjpa/target/plan/plan.xml
Downloading: 
http://download.java.net/maven/1//commons-lang/poms/commons-lang-2.0.pom
[WARNING] Unable to get resource 'commons-lang:commons-lang:pom:2.0' from 
repository java.net (http://download.java.net/maven/1/)
Downloading: 
http://people.apache.org/repo/m2-incubating-repository//commons-lang/commons-lang/2.0/commons-lang-2.0.pom
[WARNING] Unable to get resource 'commons-lang:commons-lang:pom:2.0' from 
repository apache-incubator 
(http://people.apache.org/repo/m2-incubating-repository/)
Downloading: 
http://repo1.maven.org/maven2/commons-lang/commons-lang/2.0/commons-lang-2.0.pom
2K downloaded
Downloading: 
http://download.java.net/maven/1//commons-lang/jars/commons-lang-2.0.jar
[WARNING] Unable to get resource 'commons-lang:commons-lang:jar:2.0' from 
repository java.net (http://download.java.net/maven/1/)
Downloading: 
http://people.apache.org/repo/m2-incubating-repository//commons-lang/commons-lang/2.0/commons-lang-2.0.jar
[WARNING] Unable to get resource 'commons-lang:commons-lang:jar:2.0' from 
repository apache-incubator 
(http://people.apache.org/repo/m2-incubating-repository/)
Downloading: 
http://repo1.maven.org/maven2/commons-lang/commons-lang/2.0/commons-lang-2.0.jar
165K downloaded
[INFO] [car:package]
[INFO] Packaging module configuration: 
/home/prasad/geronimo/2.0/configs/openjpa/target/plan/plan.xml
[INFO] snapshot org.apache.geronimo.modules:geronimo-openjpa:2.0.2-SNAPSHOT: 
checking for updates from apache-snapshots
[INFO] snapshot org.apache.geronimo.modules:geronimo-openjpa:2.0.2-SNAPSHOT: 
checking for updates from codehaus-snapshots
[INFO] snapshot org.apache.geronimo.modules:geronimo-openjpa:2.0.2-SNAPSHOT: 
checking for updates from apache.snapshots
[INFO] Building jar: 
/home/prasad/geronimo/2.0/configs/openjpa/target/openjpa-2.0.2-SNAPSHOT.car
[INFO] [tools:verify-legal-files {execution: verify-legal-files}]
[INFO] Checking legal files in: openjpa-2.0.2-SNAPSHOT.car
[INFO] [install:install]
[INFO] Installing 
/home/prasad/geronimo/2.0/configs/openjpa/target/openjpa-2.0.2-SNAPSHOT.car to 
/home/prasad/.m2/repository/org/apache/geronimo/configs/openjpa/2.0.2-SNAPSHOT/openjpa-2.0.2-SNAPSHOT.car
[INFO] 

[INFO] Building Geronimo Configs :: OpenEJB
[INFO]task-segment: [install]
[INFO] 

[INFO] [enforcer:enforce {execution: default}]
[INFO] [tools:copy-legal-files {execution: install-legal-files}]
[INFO] Created dir: 
/home/prasad/geronimo/2.0/configs/openejb/target/classes/META-INF
[INFO] Copying 2 files to 
/home/prasad/geronimo/2.0/configs/openejb/target/classes/META-INF
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [car:prepare-plan]
[IN