Re: Memory in Jetty integration?

2005-06-09 Thread David Jencks


On Jun 9, 2005, at 9:10 PM, Dain Sundstrom wrote:

I just ran the servlet tests and then profiled the server after 
everything undeployed, and we have a huge leak here.


Do you want me to take a crack at getting the servlets and web 
contexts to unregister on shutdown?


Sure, I won't have time for a while.  I'd expect the web app context 
would be the critical one.


david jencks



-dain

On Jun 9, 2005, at 5:22 PM, David Jencks wrote:

We may not be unregistering some jetty components in the way we are 
supposed to... investigation == good.


Earlier today I noticed a leak in unregistering ejb web services, 
which should now be fixed.


thanks
david jencks

On Jun 9, 2005, at 3:44 PM, Dain Sundstrom wrote:


I think we have a leak in our integration with jetty.  After looking 
at the code I don't think we are unregistering servlets or webapp 
contexts when they are stopped.  Here are the leaks I'm seeing


Class loader leak

org.apache.geronimo.kernel.config.ConfigurationClassLoader
parent of  org.apache.geronimo.jetty.JettyClassLoader
webClassLoader of  org.apache.geronimo.jetty.JettyWebAppContext
[21] of  java.lang.Object[88]
elementData of  java.util.ArrayList
_components of  org.apache.geronimo.jetty.JettyServer
_server of  org.mortbay.http.SslListener

Servlet leak

a.b.MyServlet
_servlet of  org.apache.geronimo.jetty.JettyServletHolder
[2] of  java.lang.Object[10]
elementData of  java.util.ArrayList
_components of  org.mortbay.jetty.servlet.WebApplicationHandler
_handler of  org.mortbay.jetty.servlet.HashSessionManager
this$0 of  
org.mortbay.jetty.servlet.AbstractSessionManager$SessionScavenger


I'm going to try some more specific tests, but can someone that 
knows this code confirm if we are or are not unregistering servlets 
and contexts.


-dain









Re: IRC for geronimo developer

2005-06-09 Thread Tom McQueeney
There doesn't seem to be information about the IRC channel on the new 
website (just the wiki). I submitted a JIRA issue (667) as well as a 
patch to correct this. I hope it helps add to the improved website.


-Tom


Yoseph Widjaya wrote:

Dear All

Is there any IRC channel for geronimo developer since
you  guys are very active developing this project. I
thinks it's better using IRC to have a chat rather
than than mailing list that takes time

Just a small suggestion :)

Yosep

__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 



[jira] Updated: (GERONIMO-667) New website get-involved.html page lacks information about IRC channel

2005-06-09 Thread Tom McQueeney (JIRA)
 [ http://issues.apache.org/jira/browse/GERONIMO-667?page=all ]

Tom McQueeney updated GERONIMO-667:
---

Attachment: doco-patch.txt

Patch adds information about the Geronimo IRC channel to the get-involved.xml 
xdoc. The patch also (1) provides a link to the get-involved page from the 
mailing.html page that mentions the IRC channel but provides no information 
about it, (2) Fixes the href to the mailing list page on the get-involved page 
(3) Fixes the href to the mailng list page on the roadmap page.

> New website get-involved.html page lacks information about IRC channel
> --
>
>  Key: GERONIMO-667
>  URL: http://issues.apache.org/jira/browse/GERONIMO-667
>  Project: Geronimo
> Type: Improvement
>  Environment: not applicable
> Reporter: Tom McQueeney
> Priority: Minor
>  Attachments: doco-patch.txt
>
> The get-involved.html page could use a mention of the IRC channel to avoid 
> folks asking on the mailing list if there's an IRC channel. Details of the 
> IRC channel are mentioned on the wiki, but not on the main Geronimo website. 

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira



[jira] Created: (GERONIMO-667) New website get-involved.html page lacks information about IRC channel

2005-06-09 Thread Tom McQueeney (JIRA)
New website get-involved.html page lacks information about IRC channel
--

 Key: GERONIMO-667
 URL: http://issues.apache.org/jira/browse/GERONIMO-667
 Project: Geronimo
Type: Improvement
 Environment: not applicable
Reporter: Tom McQueeney
Priority: Minor
 Attachments: doco-patch.txt

The get-involved.html page could use a mention of the IRC channel to avoid 
folks asking on the mailing list if there's an IRC channel. Details of the IRC 
channel are mentioned on the wiki, but not on the main Geronimo website. 

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira



Re: Memory in Jetty integration?

2005-06-09 Thread Dain Sundstrom
I just ran the servlet tests and then profiled the server after  
everything undeployed, and we have a huge leak here.


Do you want me to take a crack at getting the servlets and web  
contexts to unregister on shutdown?


-dain

On Jun 9, 2005, at 5:22 PM, David Jencks wrote:

We may not be unregistering some jetty components in the way we are  
supposed to... investigation == good.


Earlier today I noticed a leak in unregistering ejb web services,  
which should now be fixed.


thanks
david jencks

On Jun 9, 2005, at 3:44 PM, Dain Sundstrom wrote:


I think we have a leak in our integration with jetty.  After  
looking at the code I don't think we are unregistering servlets or  
webapp contexts when they are stopped.  Here are the leaks I'm seeing


Class loader leak

org.apache.geronimo.kernel.config.ConfigurationClassLoader
parent of  org.apache.geronimo.jetty.JettyClassLoader
webClassLoader of  org.apache.geronimo.jetty.JettyWebAppContext
[21] of  java.lang.Object[88]
elementData of  java.util.ArrayList
_components of  org.apache.geronimo.jetty.JettyServer
_server of  org.mortbay.http.SslListener

Servlet leak

a.b.MyServlet
_servlet of  org.apache.geronimo.jetty.JettyServletHolder
[2] of  java.lang.Object[10]
elementData of  java.util.ArrayList
_components of  org.mortbay.jetty.servlet.WebApplicationHandler
_handler of  org.mortbay.jetty.servlet.HashSessionManager
this$0 of  org.mortbay.jetty.servlet.AbstractSessionManager 
$SessionScavenger


I'm going to try some more specific tests, but can someone that  
knows this code confirm if we are or are not unregistering  
servlets and contexts.


-dain







Re: build still failed for

2005-06-09 Thread Matt Hogstrom
Yoseph,

I just sent you the jar.  I don't see that as the error below but perhaps they 
are related.  Do a 

maven m:freshen
maven m:rebuild-all -Dmaven.test.skip=true -Dmaven.itest.skip=true

Let us know how that works.

Cheers,

Matt

- Original Message - 
From: "Yoseph Widjaya" <[EMAIL PROTECTED]>
To: 
Sent: Thursday, June 09, 2005 10:56 PM
Subject: build still failed for 


> Hi all 
> 
> I still got build failed 
> 
> here are stack trace 
> 
> 
> java:compile:
>[depend] Deleted 0 out of date files in 0 seconds
>[echo] Compiling to
> /home/yosep/geronimo/modules/webservices/target/classes
>[javac] Compiling 15 source files to
> /home/yosep/geronimo/modules/webservice
> s/target/classes
> /home/yosep/geronimo/modules/webservices/src/java/org/apache/geronimo/webservice
> s/WebServicesFactory.java:23: package
> org.exolab.castor.mapping does not exist
> import org.exolab.castor.mapping.Mapping;
> ^
> /home/yosep/geronimo/modules/webservices/src/java/org/apache/geronimo/webservice
> s/WebServicesFactory.java:24: package
> org.exolab.castor.xml does not exist
> import org.exolab.castor.xml.Unmarshaller;
> ^
> /home/yosep/geronimo/modules/webservices/src/java/org/apache/geronimo/webservice
> s/WebServicesFactory.java:25: package
> org.exolab.castor.xml does not exist
> import org.exolab.castor.xml.Marshaller;
> ^
> /home/yosep/geronimo/modules/webservices/src/java/org/apache/geronimo/webservice
> s/WebServicesFactory.java:32: cannot resolve symbol
> symbol  : class Mapping
> location: class
> org.apache.geronimo.webservices.WebServicesFactory
>private final Mapping mapping;
>  ^
> /home/yosep/geronimo/modules/webservices/src/java/org/apache/geronimo/webservice
> s/WebServicesFactory.java:33: cannot resolve symbol
> symbol  : class Unmarshaller
> location: class
> org.apache.geronimo.webservices.WebServicesFactory
>private final Unmarshaller unmarshaller;
>  ^
> /home/yosep/geronimo/modules/webservices/src/java/org/apache/geronimo/webservice
> s/WebServicesFactory.java:40: cannot resolve symbol
> symbol  : class Mapping
> location: class
> org.apache.geronimo.webservices.WebServicesFactory
>mapping = new Mapping(classLoader);
>  ^
> /home/yosep/geronimo/modules/webservices/src/java/org/apache/geronimo/webservice
> s/WebServicesFactory.java:42: cannot resolve symbol
> symbol  : class Unmarshaller
> location: class
> org.apache.geronimo.webservices.WebServicesFactory
>unmarshaller = new Unmarshaller(mapping);
>   ^
> Note:
> /home/yosep/geronimo/modules/webservices/src/java/org/apache/geronimo/webs
> ervices/WebServiceContainerInvoker.java uses or
> overrides a deprecated API.
> Note: Recompile with -deprecation for details.
> 7 errors
> 
> BUILD FAILED
> File..
> /home/yosep/.maven/cache/maven-multiproject-plugin-1.3.1/plugin.jelly
> Element... maven:reactor
> Line.. 217
> Column 9
> Unable to obtain goal [default] --
> /home/yosep/.maven/cache/maven-java-plugin-1.
> 5/plugin.jelly:63:48:  Compile failed; see
> the compiler error output for details.
> Total time: 14 minutes 23 seconds
> Finished at: Fri Jun 10 12:56:31 EST 2005
> 
> Is there any way to at least I can run geronimo server
> 
> 
> many thanks 
> 
> 
> Yosep 
> 
> PS: since I want to contribute to this project is
> there any way that I could help :)
> 
> 
> __
> Do You Yahoo!?
> Tired of spam?  Yahoo! Mail has the best spam protection around 
> http://mail.yahoo.com 
> 
>

Re: Could not build geronimo rev 189685

2005-06-09 Thread Dain Sundstrom

The jar is here:

http://cvs.apache.org/repository/cglib/jars/cglib-nodep- 
HEAD-06-06-05.jar


This is a bit crazy.  The jar is in the repository in the right  
directory, with the right permissions.  You can tell because you can  
download it.


I'm going to upgrade to the official 2.1.1 release (which I'll get  
put on ibiblio) now that it is our, but I am concerned with the fact  
that this didn't work.


-dain

On Jun 9, 2005, at 7:00 PM, Matt Hogstrom wrote:


Dondi,

I have the jar I'll send to you directly as to not pollute the  
list.  It goes in .maven\repository\cglib\jars



- Original Message -
From: "Dondi Imperial" <[EMAIL PROTECTED]>
To: 
Sent: Thursday, June 09, 2005 8:54 PM
Subject: Re: Could not build geronimo rev 189685




It still doesn't work for me. It fails to download
cglib-nodep-HEAD-06-06-05.jar in the geronimo :: kernel module. I  
tried

this a couple of times and got the same result. Funny thing though, I
tried building just the kernel module by cding into the modules/ 
kernel
folder then typing maven and this worked. It did download the  
cglib jar.


HTH,

Dain Sundstrom wrote:



Has this been resolved for everyone?

I just double checked the permissions on the repository and it looks
good.  If this problem happens to you can you make sure to post  
which

module failed.

Thanks,

-dain

On Jun 8, 2005, at 10:03 PM, Matt Hogstrom wrote:


I just rebuilt from scratch about an hour ago and everything  
worked  ok.


- Original Message - From: "Yoseph Widjaya"
<[EMAIL PROTECTED]>



Hi Geronimoer

Same thing happen to me cannot build the geronimo
server any idea 

also for helping in building geronimo any idea where i
can help

many thank

Yosep
--- Dondi Imperial <[EMAIL PROTECTED]> wrote:




I could not build geronimo rev 189685 using the "For
the impatient..."
instructions on the wiki. I tried looking for the
offending jar in
ibiblio and sourceforge but could not see it there
either. Here is the
failure message.

BUILD FAILED
File.. C:\Documents and




Settings\exist_user2\.maven\cache\maven-multiproject-plugin-1.3.1
\plugin



.jelly
Element... maven:reactor
Line.. 217
Column 9
The build cannot continue because of the following
unsatisfied dependency:

cglib-nodep-HEAD-06-06-05.jar (try downloading from
http://cglib.sf.net/)

--
Dondi Imperial
Software Engineer
Exist Software Labs
Marketing Coordinator
Penthouse I, Prestige Tower,
F. Ortigas Jr. Ave. (formerly Emerald Ave.),
Ortigas Center, Pasig City 1605
Philippines
+632.687.7653
www.exist.com










__
Discover Yahoo!
Find restaurants, movies, travel and more fun for the weekend.
Check it out!
http://discover.yahoo.com/weekend.html












--
Dondi Imperial
Software Engineer
Exist Software Labs
Penthouse I, Prestige Tower,
F. Ortigas Jr. Ave. (formerly Emerald Ave.),
Ortigas Center, Pasig City 1605
Philippines
+632.687.7653
www.exist.com










Re: build still failed for

2005-06-09 Thread Matt Hogstrom
Yoseph,  

Can you capture all the output from the build?  There are most likely other 
messages earlier in the build process that would give a hint.

- Matt

- Original Message - 
From: "Yoseph Widjaya" <[EMAIL PROTECTED]>
To: 
Sent: Thursday, June 09, 2005 10:56 PM
Subject: build still failed for 


> Hi all 
> 
> I still got build failed 
> 
> here are stack trace 
> 
> 
> java:compile:
>[depend] Deleted 0 out of date files in 0 seconds
>[echo] Compiling to
> /home/yosep/geronimo/modules/webservices/target/classes
>[javac] Compiling 15 source files to
> /home/yosep/geronimo/modules/webservice
> s/target/classes
> /home/yosep/geronimo/modules/webservices/src/java/org/apache/geronimo/webservice
> s/WebServicesFactory.java:23: package
> org.exolab.castor.mapping does not exist
> import org.exolab.castor.mapping.Mapping;
> ^
> /home/yosep/geronimo/modules/webservices/src/java/org/apache/geronimo/webservice
> s/WebServicesFactory.java:24: package
> org.exolab.castor.xml does not exist
> import org.exolab.castor.xml.Unmarshaller;
> ^
> /home/yosep/geronimo/modules/webservices/src/java/org/apache/geronimo/webservice
> s/WebServicesFactory.java:25: package
> org.exolab.castor.xml does not exist
> import org.exolab.castor.xml.Marshaller;
> ^
> /home/yosep/geronimo/modules/webservices/src/java/org/apache/geronimo/webservice
> s/WebServicesFactory.java:32: cannot resolve symbol
> symbol  : class Mapping
> location: class
> org.apache.geronimo.webservices.WebServicesFactory
>private final Mapping mapping;
>  ^
> /home/yosep/geronimo/modules/webservices/src/java/org/apache/geronimo/webservice
> s/WebServicesFactory.java:33: cannot resolve symbol
> symbol  : class Unmarshaller
> location: class
> org.apache.geronimo.webservices.WebServicesFactory
>private final Unmarshaller unmarshaller;
>  ^
> /home/yosep/geronimo/modules/webservices/src/java/org/apache/geronimo/webservice
> s/WebServicesFactory.java:40: cannot resolve symbol
> symbol  : class Mapping
> location: class
> org.apache.geronimo.webservices.WebServicesFactory
>mapping = new Mapping(classLoader);
>  ^
> /home/yosep/geronimo/modules/webservices/src/java/org/apache/geronimo/webservice
> s/WebServicesFactory.java:42: cannot resolve symbol
> symbol  : class Unmarshaller
> location: class
> org.apache.geronimo.webservices.WebServicesFactory
>unmarshaller = new Unmarshaller(mapping);
>   ^
> Note:
> /home/yosep/geronimo/modules/webservices/src/java/org/apache/geronimo/webs
> ervices/WebServiceContainerInvoker.java uses or
> overrides a deprecated API.
> Note: Recompile with -deprecation for details.
> 7 errors
> 
> BUILD FAILED
> File..
> /home/yosep/.maven/cache/maven-multiproject-plugin-1.3.1/plugin.jelly
> Element... maven:reactor
> Line.. 217
> Column 9
> Unable to obtain goal [default] --
> /home/yosep/.maven/cache/maven-java-plugin-1.
> 5/plugin.jelly:63:48:  Compile failed; see
> the compiler error output for details.
> Total time: 14 minutes 23 seconds
> Finished at: Fri Jun 10 12:56:31 EST 2005
> 
> Is there any way to at least I can run geronimo server
> 
> 
> many thanks 
> 
> 
> Yosep 
> 
> PS: since I want to contribute to this project is
> there any way that I could help :)
> 
> 
> __
> Do You Yahoo!?
> Tired of spam?  Yahoo! Mail has the best spam protection around 
> http://mail.yahoo.com 
> 
>

build still failed for

2005-06-09 Thread Yoseph Widjaya
Hi all 

I still got build failed 

here are stack trace 


java:compile:
[depend] Deleted 0 out of date files in 0 seconds
[echo] Compiling to
/home/yosep/geronimo/modules/webservices/target/classes
[javac] Compiling 15 source files to
/home/yosep/geronimo/modules/webservice
s/target/classes
/home/yosep/geronimo/modules/webservices/src/java/org/apache/geronimo/webservice
s/WebServicesFactory.java:23: package
org.exolab.castor.mapping does not exist
import org.exolab.castor.mapping.Mapping;
 ^
/home/yosep/geronimo/modules/webservices/src/java/org/apache/geronimo/webservice
s/WebServicesFactory.java:24: package
org.exolab.castor.xml does not exist
import org.exolab.castor.xml.Unmarshaller;
 ^
/home/yosep/geronimo/modules/webservices/src/java/org/apache/geronimo/webservice
s/WebServicesFactory.java:25: package
org.exolab.castor.xml does not exist
import org.exolab.castor.xml.Marshaller;
 ^
/home/yosep/geronimo/modules/webservices/src/java/org/apache/geronimo/webservice
s/WebServicesFactory.java:32: cannot resolve symbol
symbol  : class Mapping
location: class
org.apache.geronimo.webservices.WebServicesFactory
private final Mapping mapping;
  ^
/home/yosep/geronimo/modules/webservices/src/java/org/apache/geronimo/webservice
s/WebServicesFactory.java:33: cannot resolve symbol
symbol  : class Unmarshaller
location: class
org.apache.geronimo.webservices.WebServicesFactory
private final Unmarshaller unmarshaller;
  ^
/home/yosep/geronimo/modules/webservices/src/java/org/apache/geronimo/webservice
s/WebServicesFactory.java:40: cannot resolve symbol
symbol  : class Mapping
location: class
org.apache.geronimo.webservices.WebServicesFactory
mapping = new Mapping(classLoader);
  ^
/home/yosep/geronimo/modules/webservices/src/java/org/apache/geronimo/webservice
s/WebServicesFactory.java:42: cannot resolve symbol
symbol  : class Unmarshaller
location: class
org.apache.geronimo.webservices.WebServicesFactory
unmarshaller = new Unmarshaller(mapping);
   ^
Note:
/home/yosep/geronimo/modules/webservices/src/java/org/apache/geronimo/webs
ervices/WebServiceContainerInvoker.java uses or
overrides a deprecated API.
Note: Recompile with -deprecation for details.
7 errors
 
BUILD FAILED
File..
/home/yosep/.maven/cache/maven-multiproject-plugin-1.3.1/plugin.jelly
Element... maven:reactor
Line.. 217
Column 9
Unable to obtain goal [default] --
/home/yosep/.maven/cache/maven-java-plugin-1.
5/plugin.jelly:63:48:  Compile failed; see
the compiler error output for details.
Total time: 14 minutes 23 seconds
Finished at: Fri Jun 10 12:56:31 EST 2005

Is there any way to at least I can run geronimo server


many thanks 


Yosep 

PS: since I want to contribute to this project is
there any way that I could help :)


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 


Re: IRC for geronimo developer

2005-06-09 Thread Davanum Srinivas
irc.freenode.net channel #geronimo

On 6/9/05, Yoseph Widjaya <[EMAIL PROTECTED]> wrote:
> Dear All
> 
> Is there any IRC channel for geronimo developer since
> you  guys are very active developing this project. I
> thinks it's better using IRC to have a chat rather
> than than mailing list that takes time
> 
> Just a small suggestion :)
> 
> Yosep
> 
> __
> Do You Yahoo!?
> Tired of spam?  Yahoo! Mail has the best spam protection around
> http://mail.yahoo.com
> 


-- 
Davanum Srinivas -http://blogs.cocoondev.org/dims/


IRC for geronimo developer

2005-06-09 Thread Yoseph Widjaya
Dear All

Is there any IRC channel for geronimo developer since
you  guys are very active developing this project. I
thinks it's better using IRC to have a chat rather
than than mailing list that takes time

Just a small suggestion :)

Yosep

__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 


Re: Could not build geronimo rev 189685

2005-06-09 Thread Yoseph Widjaya
Dear 

It's seems that mine is failed when compiling the
timer modules dunno why.  same message I copied the
message hopefully someone can track the trouble 

here are the stack trace

test:prepare-filesystem:
[mkdir] Created dir:
/home/yosep/geronimo/modules/timer/target/test-classes
[mkdir] Created dir:
/home/yosep/geronimo/modules/timer/target/test-reports
 
test:test-resources:
 
test:compile:
[javac] Compiling 6 source files to
/home/yosep/geronimo/modules/timer/target/test-classes
 
test:test:
[junit] Running
org.apache.geronimo.timer.TransactionalThreadPooledTimerTest
   [junit] Tests run: 10, Failures: 1, Errors: 0, Time
elapsed: 30.886 sec
[junit] [ERROR] TEST
org.apache.geronimo.timer.TransactionalThreadPooledTimerTest
FAILED
[junit] Running
org.apache.geronimo.timer.jdbc.AxionJDBCWorkerPersistenceTest
[junit] Tests run: 3, Failures: 0, Errors: 0, Time
elapsed: 5.746 sec
[junit] Running
org.apache.geronimo.timer.jdbc.DerbyJDBCWorkerPersistenceTest
[junit] Tests run: 3, Failures: 0, Errors: 0, Time
elapsed: 49.001 sec
[junit] Running
org.apache.geronimo.timer.NontransactionalThreadPooledTimerTest
[junit] Tests run: 10, Failures: 0, Errors: 0,
Time elapsed: 25.887 sec
 
BUILD FAILED
File..
/home/yosep/.maven/cache/maven-multiproject-plugin-1.3.1/plugin.jellyElement...
maven:reactor
Line.. 217
Column 9
Unable to obtain goal [default] --
/home/yosep/.maven/cache/maven-test-plugin-1.6.2/plugin.jelly:181:54:
 There were test failures.
Total time: 51 minutes 58 seconds
Finished at: Fri Jun 10 11:57:16 EST 2005

many thanks

--- Matt Hogstrom <[EMAIL PROTECTED]> wrote:

> Dondi, 
> 
> I have the jar I'll send to you directly as to not
> pollute the list.  It goes in
> .maven\repository\cglib\jars
> 
> 
> - Original Message - 
> From: "Dondi Imperial" <[EMAIL PROTECTED]>
> To: 
> Sent: Thursday, June 09, 2005 8:54 PM
> Subject: Re: Could not build geronimo rev 189685
> 
> 
> > It still doesn't work for me. It fails to download
> 
> > cglib-nodep-HEAD-06-06-05.jar in the geronimo ::
> kernel module. I tried 
> > this a couple of times and got the same result.
> Funny thing though, I 
> > tried building just the kernel module by cding
> into the modules/kernel 
> > folder then typing maven and this worked. It did
> download the cglib jar.
> > 
> > HTH,
> > 
> > Dain Sundstrom wrote:
> > 
> >> Has this been resolved for everyone?
> >>
> >> I just double checked the permissions on the
> repository and it looks  
> >> good.  If this problem happens to you can you
> make sure to post which  
> >> module failed.
> >>
> >> Thanks,
> >>
> >> -dain
> >>
> >> On Jun 8, 2005, at 10:03 PM, Matt Hogstrom wrote:
> >>
> >>> I just rebuilt from scratch about an hour ago
> and everything worked  ok.
> >>>
> >>> - Original Message - From: "Yoseph
> Widjaya"  
> >>> <[EMAIL PROTECTED]>
> >>>
>  Hi Geronimoer
> 
>  Same thing happen to me cannot build the
> geronimo
>  server any idea 
> 
>  also for helping in building geronimo any idea
> where i
>  can help
> 
>  many thank
> 
>  Yosep
>  --- Dondi Imperial <[EMAIL PROTECTED]> wrote:
> 
> 
> > I could not build geronimo rev 189685 using
> the "For
> > the impatient..."
> > instructions on the wiki. I tried looking for
> the
> > offending jar in
> > ibiblio and sourceforge but could not see it
> there
> > either. Here is the
> > failure message.
> >
> > BUILD FAILED
> > File.. C:\Documents and
> >
> >
> 
>
Settings\exist_user2\.maven\cache\maven-multiproject-plugin-1.3.1
> 
>  \plugin
> 
> > .jelly
> > Element... maven:reactor
> > Line.. 217
> > Column 9
> > The build cannot continue because of the
> following
> > unsatisfied dependency:
> >
> > cglib-nodep-HEAD-06-06-05.jar (try downloading
> from
> > http://cglib.sf.net/)
> >
> > -- 
> > Dondi Imperial
> > Software Engineer
> > Exist Software Labs
> > Marketing Coordinator
> > Penthouse I, Prestige Tower,
> > F. Ortigas Jr. Ave. (formerly Emerald Ave.),
> > Ortigas Center, Pasig City 1605
> > Philippines
> > +632.687.7653
> > www.exist.com
> >
> >
> >
> >
> 
> 
> 
> 
>  __
>  Discover Yahoo!
>  Find restaurants, movies, travel and more fun
> for the weekend.  
>  Check it out!
>  http://discover.yahoo.com/weekend.html
> 
> 
> >>>
> >>
> > 
> > 
> > -- 
> > Dondi Imperial
> > Software Engineer
> > Exist Software Labs
> > Penthouse I, Prestige Tower,
> > F. Ortigas Jr. Ave. (formerly Emerald Ave.),
> > Ortigas Center, Pasig City 1605
> > Philippines 
> > +632.687.7653
> > www.exist.com
> > 
> > 
> > 
> >




__ 
Yahoo! Mail 
Stay connected, organized, and protected. Take the tour: 
http://tour.mail.yahoo.

Re: Could not build geronimo rev 189685

2005-06-09 Thread Matt Hogstrom
Dondi, 

I have the jar I'll send to you directly as to not pollute the list.  It goes 
in .maven\repository\cglib\jars


- Original Message - 
From: "Dondi Imperial" <[EMAIL PROTECTED]>
To: 
Sent: Thursday, June 09, 2005 8:54 PM
Subject: Re: Could not build geronimo rev 189685


> It still doesn't work for me. It fails to download 
> cglib-nodep-HEAD-06-06-05.jar in the geronimo :: kernel module. I tried 
> this a couple of times and got the same result. Funny thing though, I 
> tried building just the kernel module by cding into the modules/kernel 
> folder then typing maven and this worked. It did download the cglib jar.
> 
> HTH,
> 
> Dain Sundstrom wrote:
> 
>> Has this been resolved for everyone?
>>
>> I just double checked the permissions on the repository and it looks  
>> good.  If this problem happens to you can you make sure to post which  
>> module failed.
>>
>> Thanks,
>>
>> -dain
>>
>> On Jun 8, 2005, at 10:03 PM, Matt Hogstrom wrote:
>>
>>> I just rebuilt from scratch about an hour ago and everything worked  ok.
>>>
>>> - Original Message - From: "Yoseph Widjaya"  
>>> <[EMAIL PROTECTED]>
>>>
 Hi Geronimoer

 Same thing happen to me cannot build the geronimo
 server any idea 

 also for helping in building geronimo any idea where i
 can help

 many thank

 Yosep
 --- Dondi Imperial <[EMAIL PROTECTED]> wrote:


> I could not build geronimo rev 189685 using the "For
> the impatient..."
> instructions on the wiki. I tried looking for the
> offending jar in
> ibiblio and sourceforge but could not see it there
> either. Here is the
> failure message.
>
> BUILD FAILED
> File.. C:\Documents and
>
>
 Settings\exist_user2\.maven\cache\maven-multiproject-plugin-1.3.1 
 \plugin

> .jelly
> Element... maven:reactor
> Line.. 217
> Column 9
> The build cannot continue because of the following
> unsatisfied dependency:
>
> cglib-nodep-HEAD-06-06-05.jar (try downloading from
> http://cglib.sf.net/)
>
> -- 
> Dondi Imperial
> Software Engineer
> Exist Software Labs
> Marketing Coordinator
> Penthouse I, Prestige Tower,
> F. Ortigas Jr. Ave. (formerly Emerald Ave.),
> Ortigas Center, Pasig City 1605
> Philippines
> +632.687.7653
> www.exist.com
>
>
>
>




 __
 Discover Yahoo!
 Find restaurants, movies, travel and more fun for the weekend.  
 Check it out!
 http://discover.yahoo.com/weekend.html


>>>
>>
> 
> 
> -- 
> Dondi Imperial
> Software Engineer
> Exist Software Labs
> Penthouse I, Prestige Tower,
> F. Ortigas Jr. Ave. (formerly Emerald Ave.),
> Ortigas Center, Pasig City 1605
> Philippines 
> +632.687.7653
> www.exist.com
> 
> 
> 
>

Re: Best way to 'auto deploy'?

2005-06-09 Thread Dain Sundstrom

On Jun 9, 2005, at 6:10 PM, Neal Sanche wrote:


Hi Dain, and David,

Well, I'm not as experienced with Maven as I am with Ant, so that  
may be the reason for my question. I will definitely give the topic  
a look, and read through the maven plugin source code when I have  
time to see what it's doing. Thanks for the pointers.


It is great to have you back!

I am doing some in depth learning of what has occurred in Geronimo  
since my attention span slipped sometime last year. I've written  
and deployed my first very small JSP application with JDBC  
connector, and was able to do a database query and print some  
results. So, being encouraged by that I decided to understand more  
about the deployer, and hence my question.


Nice.  If you get some time, it would be cool to add your sample code  
to the wiki so others can try it out.


I'm pretty sure my server was running the RuntimeDeployer  
configuration, but since I am new to your deployment plan based  
deployer, I may have done something that caused it not to be there  
for a while when I was seeing the problems. I guess it's the price  
paid for extreme modularity, so only experience can help me  
(definitely not a fault).


Please don't lower the bar.  Just because we have a modular structure  
doesn't mean we need to have a harder to understand server.  For  
example, I consider the fact that the deployer doesn't complain when  
the RuntimeDeployer isn't deployed a HUGE bug.  Also when it  
complains it should say "The org/apache/geronimo/RuntimeDeployer  
configuration is not running in your server.  To start it, simply  
execute java -jar start org/apache/geronimo/RuntimeDeployer".  Or  
even better, it could say "The org/apache/geronimo/RuntimeDeployer  
configuration is not running in your server.  Would you like to start  
it now? [N/y]"


Can you file a bug report on this?

So far I am quite happy to be back. I'll let you know if I have  
questions.


Please do.  We are at the stage where feedback on what is hard to  
understand, frustrating, or just weird is critical to the success of  
this project.


Thanks,

-dain


Re: Best way to 'auto deploy'?

2005-06-09 Thread Neal Sanche

Hi Dain, and David,

Well, I'm not as experienced with Maven as I am with Ant, so that may be 
the reason for my question. I will definitely give the topic a look, and 
read through the maven plugin source code when I have time to see what 
it's doing. Thanks for the pointers.


I am doing some in depth learning of what has occurred in Geronimo since 
my attention span slipped sometime last year. I've written and deployed 
my first very small JSP application with JDBC connector, and was able to 
do a database query and print some results. So, being encouraged by that 
I decided to understand more about the deployer, and hence my question.


I'm pretty sure my server was running the RuntimeDeployer configuration, 
but since I am new to your deployment plan based deployer, I may have 
done something that caused it not to be there for a while when I was 
seeing the problems. I guess it's the price paid for extreme modularity, 
so only experience can help me (definitely not a fault).


So far I am quite happy to be back. I'll let you know if I have questions.

Cheers.

-Neal

Dain Sundstrom wrote:

I think the deployer can silently fail.  It doesn't print anything;  
the program just exits.


Neal, if you have time we have a set of java beans that we wrap in  
maven to do deployment, and I'm pretty sure it would be simple to  
make ant tasks out of these.  The code is in  
org.apache.geronimo.deployment.mavenplugin but they don't use any  
maven classes at all.


-dain

On Jun 8, 2005, at 11:30 PM, David Jencks wrote:

dont like maven, huh? :-)  This might be easier with the geronimo  
maven plugin.


I wonder if the times it fails there is a geronimo server running  
without the org/apache/geronimo/RuntimeDeployer configuration  
started.  If so, the deployer.jar will try to connect but not  
succeed... the needed pieces are missing.


thanks
david jencks

On Jun 8, 2005, at 10:00 PM, Neal Sanche wrote:



Hi All,

I've built a little Ant script to deploy my app at the end of a  
build. The task looks like this:


   

   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   

The problem is that this seems to be somewhat unpredictable.  
Sometimes it works, and usually it doesn't and I have to undeploy  
manually. Is there a more effective way to pull this off with the  
latest geronimo builds? I've built as of last Saturday or so.


Thanks a ton in advance.

Cheers.

-Neal







Re: Could not build geronimo rev 189685

2005-06-09 Thread Dondi Imperial
It still doesn't work for me. It fails to download 
cglib-nodep-HEAD-06-06-05.jar in the geronimo :: kernel module. I tried 
this a couple of times and got the same result. Funny thing though, I 
tried building just the kernel module by cding into the modules/kernel 
folder then typing maven and this worked. It did download the cglib jar.


HTH,

Dain Sundstrom wrote:


Has this been resolved for everyone?

I just double checked the permissions on the repository and it looks  
good.  If this problem happens to you can you make sure to post which  
module failed.


Thanks,

-dain

On Jun 8, 2005, at 10:03 PM, Matt Hogstrom wrote:


I just rebuilt from scratch about an hour ago and everything worked  ok.

- Original Message - From: "Yoseph Widjaya"  
<[EMAIL PROTECTED]>



Hi Geronimoer

Same thing happen to me cannot build the geronimo
server any idea 

also for helping in building geronimo any idea where i
can help

many thank

Yosep
--- Dondi Imperial <[EMAIL PROTECTED]> wrote:



I could not build geronimo rev 189685 using the "For
the impatient..."
instructions on the wiki. I tried looking for the
offending jar in
ibiblio and sourceforge but could not see it there
either. Here is the
failure message.

BUILD FAILED
File.. C:\Documents and


Settings\exist_user2\.maven\cache\maven-multiproject-plugin-1.3.1 
\plugin



.jelly
Element... maven:reactor
Line.. 217
Column 9
The build cannot continue because of the following
unsatisfied dependency:

cglib-nodep-HEAD-06-06-05.jar (try downloading from
http://cglib.sf.net/)

--
Dondi Imperial
Software Engineer
Exist Software Labs
Marketing Coordinator
Penthouse I, Prestige Tower,
F. Ortigas Jr. Ave. (formerly Emerald Ave.),
Ortigas Center, Pasig City 1605
Philippines
+632.687.7653
www.exist.com









__
Discover Yahoo!
Find restaurants, movies, travel and more fun for the weekend.  
Check it out!

http://discover.yahoo.com/weekend.html









--
Dondi Imperial
Software Engineer
Exist Software Labs
Penthouse I, Prestige Tower,
F. Ortigas Jr. Ave. (formerly Emerald Ave.),
Ortigas Center, Pasig City 1605
Philippines 
+632.687.7653

www.exist.com




Re: Memory in Jetty integration?

2005-06-09 Thread David Jencks
We may not be unregistering some jetty components in the way we are 
supposed to... investigation == good.


Earlier today I noticed a leak in unregistering ejb web services, which 
should now be fixed.


thanks
david jencks

On Jun 9, 2005, at 3:44 PM, Dain Sundstrom wrote:

I think we have a leak in our integration with jetty.  After looking 
at the code I don't think we are unregistering servlets or webapp 
contexts when they are stopped.  Here are the leaks I'm seeing


Class loader leak

org.apache.geronimo.kernel.config.ConfigurationClassLoader
parent of  org.apache.geronimo.jetty.JettyClassLoader
webClassLoader of  org.apache.geronimo.jetty.JettyWebAppContext
[21] of  java.lang.Object[88]
elementData of  java.util.ArrayList
_components of  org.apache.geronimo.jetty.JettyServer
_server of  org.mortbay.http.SslListener

Servlet leak

a.b.MyServlet
_servlet of  org.apache.geronimo.jetty.JettyServletHolder
[2] of  java.lang.Object[10]
elementData of  java.util.ArrayList
_components of  org.mortbay.jetty.servlet.WebApplicationHandler
_handler of  org.mortbay.jetty.servlet.HashSessionManager
this$0 of  
org.mortbay.jetty.servlet.AbstractSessionManager$SessionScavenger


I'm going to try some more specific tests, but can someone that knows 
this code confirm if we are or are not unregistering servlets and 
contexts.


-dain





Re: Could not build geronimo rev 189685

2005-06-09 Thread Dain Sundstrom

Has this been resolved for everyone?

I just double checked the permissions on the repository and it looks  
good.  If this problem happens to you can you make sure to post which  
module failed.


Thanks,

-dain

On Jun 8, 2005, at 10:03 PM, Matt Hogstrom wrote:

I just rebuilt from scratch about an hour ago and everything worked  
ok.


- Original Message - From: "Yoseph Widjaya"  
<[EMAIL PROTECTED]>



Hi Geronimoer

Same thing happen to me cannot build the geronimo
server any idea 

also for helping in building geronimo any idea where i
can help

many thank

Yosep
--- Dondi Imperial <[EMAIL PROTECTED]> wrote:



I could not build geronimo rev 189685 using the "For
the impatient..."
instructions on the wiki. I tried looking for the
offending jar in
ibiblio and sourceforge but could not see it there
either. Here is the
failure message.

BUILD FAILED
File.. C:\Documents and


Settings\exist_user2\.maven\cache\maven-multiproject-plugin-1.3.1 
\plugin



.jelly
Element... maven:reactor
Line.. 217
Column 9
The build cannot continue because of the following
unsatisfied dependency:

cglib-nodep-HEAD-06-06-05.jar (try downloading from
http://cglib.sf.net/)

--
Dondi Imperial
Software Engineer
Exist Software Labs
Marketing Coordinator
Penthouse I, Prestige Tower,
F. Ortigas Jr. Ave. (formerly Emerald Ave.),
Ortigas Center, Pasig City 1605
Philippines
+632.687.7653
www.exist.com









__
Discover Yahoo!
Find restaurants, movies, travel and more fun for the weekend.  
Check it out!

http://discover.yahoo.com/weekend.html








Memory in Jetty integration?

2005-06-09 Thread Dain Sundstrom
I think we have a leak in our integration with jetty.  After looking  
at the code I don't think we are unregistering servlets or webapp  
contexts when they are stopped.  Here are the leaks I'm seeing


Class loader leak

org.apache.geronimo.kernel.config.ConfigurationClassLoader
parent of  org.apache.geronimo.jetty.JettyClassLoader
webClassLoader of  org.apache.geronimo.jetty.JettyWebAppContext
[21] of  java.lang.Object[88]
elementData of  java.util.ArrayList
_components of  org.apache.geronimo.jetty.JettyServer
_server of  org.mortbay.http.SslListener

Servlet leak

a.b.MyServlet
_servlet of  org.apache.geronimo.jetty.JettyServletHolder
[2] of  java.lang.Object[10]
elementData of  java.util.ArrayList
_components of  org.mortbay.jetty.servlet.WebApplicationHandler
_handler of  org.mortbay.jetty.servlet.HashSessionManager
this$0 of  org.mortbay.jetty.servlet.AbstractSessionManager 
$SessionScavenger


I'm going to try some more specific tests, but can someone that knows  
this code confirm if we are or are not unregistering servlets and  
contexts.


-dain


Re: Best way to 'auto deploy'?

2005-06-09 Thread Dain Sundstrom
I think the deployer can silently fail.  It doesn't print anything;  
the program just exits.


Neal, if you have time we have a set of java beans that we wrap in  
maven to do deployment, and I'm pretty sure it would be simple to  
make ant tasks out of these.  The code is in  
org.apache.geronimo.deployment.mavenplugin but they don't use any  
maven classes at all.


-dain

On Jun 8, 2005, at 11:30 PM, David Jencks wrote:

dont like maven, huh? :-)  This might be easier with the geronimo  
maven plugin.


I wonder if the times it fails there is a geronimo server running  
without the org/apache/geronimo/RuntimeDeployer configuration  
started.  If so, the deployer.jar will try to connect but not  
succeed... the needed pieces are missing.


thanks
david jencks

On Jun 8, 2005, at 10:00 PM, Neal Sanche wrote:



Hi All,

I've built a little Ant script to deploy my app at the end of a  
build. The task looks like this:


   

   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   

The problem is that this seems to be somewhat unpredictable.  
Sometimes it works, and usually it doesn't and I have to undeploy  
manually. Is there a more effective way to pull this off with the  
latest geronimo builds? I've built as of last Saturday or so.


Thanks a ton in advance.

Cheers.

-Neal







Re: proposal for new site

2005-06-09 Thread Bruce Snyder
On 6/9/05, Dain Sundstrom <[EMAIL PROTECTED]> wrote:

> > Yup, the maven2 site is actually a mix of APT and xdoc format.
> 
> Nice.  APT is so easy to work with.  For those of you that haven't
> use it yet, here is a link:
> 
> http://www.xmlmind.com/aptconvert.html

I second that. APT is extremely powerful yet very simple. 

Bruce 
-- 
perl -e 'print unpack("u30","D0G)[EMAIL 
PROTECTED]&5R\"F)R=6-E+G-N>61Ehttp://www.castor.org/

Apache Geronimo
http://geronimo.apache.org/


Re: ObjectName of Deployer

2005-06-09 Thread Dain Sundstrom

On Jun 9, 2005, at 11:18 AM, Sachin Patel wrote:

Could someone tell me the correct ObjectName need to access the  
Deployer GBean?


I have a GBean in which I am trying to reference the Deployer GBean
(org.apache.geronimo.deployment.Deployer). However it seems as if I do
not have the name of the reference correct in by deployment plan as
deployment fails due to this reference.

??


I think it is

:j2eeType=Deployer,*

-dain


Re: proposal for new site

2005-06-09 Thread Dain Sundstrom

On Jun 8, 2005, at 11:00 PM, Jason van Zyl wrote:


On Thu, 2005-06-09 at 00:04 -0400, Geir Magnusson Jr. wrote:


So we can repurpose the xdoc material w/ m2?



Yup, the maven2 site is actually a mix of APT and xdoc format.


Nice.  APT is so easy to work with.  For those of you that haven't  
use it yet, here is a link:


http://www.xmlmind.com/aptconvert.html

-dain


Re: How to build Geronimo offline.

2005-06-09 Thread Dain Sundstrom

Kishor,

Unfortunately, there is no way to do that right now.  We are planing  
on upgrading to Maven 2 soon and it will be able to download all  
dependencies in one go.


-dain

On Jun 9, 2005, at 1:37 AM, kishor wrote:


Hi,
I tried this some how it is not working
Can I download the jars separately and
put is at some local place from where
maven should refer it for build.

Thanks
Kishor

-Original Message-
From: Gianny Damour [mailto:[EMAIL PROTECTED]
Sent: Wednesday, June 01, 2005 6:51 PM
To: dev@geronimo.apache.org
Subject: Re: How to build Geronimo offline.


Hi Kishor,

You need to add these two lines in the project.properties file located
under the root of the geronimo source code:
maven.proxy.host=
maven.proxy.port=

Thanks,
Gianny

On 1/06/2005 10:28 PM, kishor wrote:



The other problem is that I got Proxy sever to connect to internet
I think some where in maven.xml I must provide the proxy setting to
download jars.

Regards
Kishor

-Original Message-
From: Jeremy Boynes [mailto:[EMAIL PROTECTED]
Sent: Wednesday, June 01, 2005 10:22 AM
To: dev@geronimo.apache.org
Subject: Re: How to build Geronimo offline.


kishor wrote:




Hi all,
I'm new to Geronimo,
I want to build Geronimo offline, Don't want Maven to download  
jars at





build




time,
Can any one tell me where I will get the docs ?






First time through it is much easier to build online to get all the
dependencies. After that:

$ maven -o


If bandwidth is a big problem, you can download a lot of the
dependencies in one go by just trying to build the assembly module:

$ cd modules/assembly
$ maven build:start

and then go back to the root and build offline. A few modules not  
used
by assembly will not have been downloaded resulting in failures in  
those

modules. You can build those using

$ maven -Dmodules=${failed_module}

Painful, but a possible workaround to avoid all the snapshot checks.
--
Jeremy


http://www.patni.com
World-Wide Partnerships. World-Class Solutions.
_

This e-mail message may contain proprietary, confidential or legally
privileged information for the sole use of the person or entity to
whom this message was originally addressed. Any review, e- 
transmission
dissemination or other use of or taking of any action in reliance  
upon

this information by persons or entities other than the intended
recipient is prohibited. If you have received this e-mail in error
kindly delete  this e-mail from your records. If it appears that this
mail has been forwarded to you without proper authority, please  
notify

us immediately at [EMAIL PROTECTED] and delete this mail.
_





http://www.patni.com
World-Wide Partnerships. World-Class Solutions.
_

This e-mail message may contain proprietary, confidential or legally
privileged information for the sole use of the person or entity to
whom this message was originally addressed. Any review, e-transmission
dissemination or other use of or taking of any action in reliance upon
this information by persons or entities other than the intended
recipient is prohibited. If you have received this e-mail in error
kindly delete  this e-mail from your records. If it appears that this
mail has been forwarded to you without proper authority, please notify
us immediately at [EMAIL PROTECTED] and delete this mail.
_





ObjectName of Deployer

2005-06-09 Thread Sachin Patel
Could someone tell me the correct ObjectName need to access the Deployer GBean?

I have a GBean in which I am trying to reference the Deployer GBean
(org.apache.geronimo.deployment.Deployer). However it seems as if I do
not have the name of the reference correct in by deployment plan as
deployment fails due to this reference.

??

Thank you.


Re: proposal for new site

2005-06-09 Thread Geir Magnusson Jr.

I hope you get a broadband connection then!

Have a good vacation

geir

On Jun 9, 2005, at 5:38 AM, anita kulshreshtha wrote:


--- "GeirGeirnMagnusson"  wrote:




On Jun 7, 2005, at 2:37 PM, David Blevins wrote:



I didn't mean to be the deciding vote,



You weren't



I'd still like to know what others think.  We


haven't heard from


very many people on this thread.

Hey everyone out there who has ever had an opinion


on the website,


what do you think?

Again, I'm talking to everyone, not just people


privileged with


commit access.  Speak up :)



I will be vacationing in India for 2 months! If I
manage to get a braobroadband connection ( or a
reliable dial up), you will hear from me. Until then
...
Cheers
Anita





It's out there.  Comments and patches appreciated.
If people really
don't like it, we rollback (easy to do) and then
replace with the
offered alternative :)

geirgeir



-David


On Tue, Jun 07, 2005 at 01:57:53PM -0400,


GeirGeirMagnMagnusson wrote:





Ok -Ok pushed it out.  When the servers syncsynch


will be there.



We need a more complete list of dependencies -


and the intention


isn't our dep dept, but rather the


"collaboration" list.  We have a


dep depclogging, for example, but I wouldn't


consider that a


collaboration.

Also, I'll summarize the roadroadmapcussion and


put that to the dev


dev>> list and then to the site...



geirgeir>>
On Jun 7, 2005, at 1:30 PM, David Blevins wrote:




On Tue, Jun 07, 2005 at 05:59:26AM -0400,


GeirGeirMagnMagnusson wrote:







On Jun 7, 2005, at 3:49 AM, David Blevins


wrote:







On Mon, Jun 06, 2005 at 09:19:08PM -0400,


GeirGeirMagnMagnusson


wrote:





The upside is that it takes <10 seconds to


fully generate, so


adding content is a breeze.






That right there is enough for me.  A definite


step in the right


direction.





Lets decide if we want to go forward with this,


even as a temporary


measure.  Maybe people will bite and want to


contribute to it - at


the worst, we get the site updated quickly and


get the ApacApacheCon


ad on it...






+1 From me for the same reasons you state.  We


can get fancy as


time allows.  Baby steps.

Thanks,
David






--  
GeirGeirnMagnusson



 +1-203-665-6437


geirgeirmcapache









--  
GeirGeirnMagnusson

+1-203-665-6437
geirgeirmcapache








__
Discover Yahoo!
Find restaurants, movies, travel and more fun for the weekend.  
Check it out!

http://discover.yahoo.com/weekend.html




--
Geir Magnusson Jr  +1-203-665-6437
[EMAIL PROTECTED]




Re: proposal for new site

2005-06-09 Thread anita kulshreshtha
--- "GeirGeirnMagnusson"  wrote:

> 
> On Jun 7, 2005, at 2:37 PM, David Blevins wrote:
> 
> > I didn't mean to be the deciding vote,
> 
> You weren't
> 
> > I'd still like to know what others think.  We
> haven't heard from  
> > very many people on this thread.
> >
> > Hey everyone out there who has ever had an opinion
> on the website,  
> > what do you think?
> >
> > Again, I'm talking to everyone, not just people
> privileged with  
> > commit access.  Speak up :)

I will be vacationing in India for 2 months! If I
manage to get a braobroadband connection ( or a
reliable dial up), you will hear from me. Until then
...
Cheers
Anita


> 
> It's out there.  Comments and patches appreciated. 
> If people really  
> don't like it, we rollback (easy to do) and then
> replace with the  
> offered alternative :)
> 
> geirgeir
> >
> > -David
> >
> >
> > On Tue, Jun 07, 2005 at 01:57:53PM -0400,
GeirGeirMagnMagnusson wrote:
> >
> >> Ok -Ok pushed it out.  When the servers syncsynch
> will be there.
> >>
> >> We need a more complete list of dependencies -
> and the intention
> >> isn't our dep dept, but rather the
> "collaboration" list.  We have a
> >> dep depclogging, for example, but I wouldn't
> consider that a
> >> collaboration.
> >>
> >> Also, I'll summarize the roadroadmapcussion and
> put that to the dev
dev>> list and then to the site...
> >>
> >> geirgeir>>
> >> On Jun 7, 2005, at 1:30 PM, David Blevins wrote:
> >>
> >>
> >>> On Tue, Jun 07, 2005 at 05:59:26AM -0400,
GeirGeirMagnMagnusson wrote:
> >>>
> >>>
> 
>  On Jun 7, 2005, at 3:49 AM, David Blevins
> wrote:
> 
> 
> 
> > On Mon, Jun 06, 2005 at 09:19:08PM -0400,
GeirGeirMagnMagnusson  
> > wrote:
> >
> >
> >
> >> The upside is that it takes <10 seconds to
> fully generate, so
> >> adding content is a breeze.
> >>
> >>
> >>
> >
> > That right there is enough for me.  A definite
> step in the right
> > direction.
> >
> >
> 
>  Lets decide if we want to go forward with this,
> even as a temporary
>  measure.  Maybe people will bite and want to
> contribute to it - at
>  the worst, we get the site updated quickly and
> get the ApacApacheCon
>  ad on it...
> 
> 
> 
> >>>
> >>> +1 From me for the same reasons you state.  We
> can get fancy as
> >>> time allows.  Baby steps.
> >>>
> >>> Thanks,
> >>> David
> >>>
> >>>
> >>>
> >>
> >> -- 
> >> GeirGeirnMagnusson   
>  +1-203-665-6437
> >> geirgeirmcapache
> >>
> >>
> >
> >
> 
> -- 
> GeirGeirnMagnusson
> +1-203-665-6437
> geirgeirmcapache
> 
> 
> 



__ 
Discover Yahoo! 
Find restaurants, movies, travel and more fun for the weekend. Check it out! 
http://discover.yahoo.com/weekend.html 



RE: How to build Geronimo offline.

2005-06-09 Thread kishor
Hi,
I tried this some how it is not working 
Can I download the jars separately and 
put is at some local place from where 
maven should refer it for build.

Thanks 
Kishor

-Original Message-
From: Gianny Damour [mailto:[EMAIL PROTECTED]
Sent: Wednesday, June 01, 2005 6:51 PM
To: dev@geronimo.apache.org
Subject: Re: How to build Geronimo offline.


Hi Kishor,

You need to add these two lines in the project.properties file located 
under the root of the geronimo source code:
maven.proxy.host=
maven.proxy.port=

Thanks,
Gianny

On 1/06/2005 10:28 PM, kishor wrote:

>The other problem is that I got Proxy sever to connect to internet
>I think some where in maven.xml I must provide the proxy setting to
>download jars.
>
>Regards
>Kishor
>
>-Original Message-
>From: Jeremy Boynes [mailto:[EMAIL PROTECTED]
>Sent: Wednesday, June 01, 2005 10:22 AM
>To: dev@geronimo.apache.org
>Subject: Re: How to build Geronimo offline.
>
>
>kishor wrote:
>  
>
>>Hi all,
>>I'm new to Geronimo,
>>I want to build Geronimo offline, Don't want Maven to download jars at
>>
>>
>build
>  
>
>>time,
>>Can any one tell me where I will get the docs ?
>>
>>
>>
>
>First time through it is much easier to build online to get all the
>dependencies. After that:
>
>$ maven -o
>
>
>If bandwidth is a big problem, you can download a lot of the
>dependencies in one go by just trying to build the assembly module:
>
>$ cd modules/assembly
>$ maven build:start
>
>and then go back to the root and build offline. A few modules not used
>by assembly will not have been downloaded resulting in failures in those
>modules. You can build those using
>
>$ maven -Dmodules=${failed_module}
>
>Painful, but a possible workaround to avoid all the snapshot checks.
>--
>Jeremy
>
>
>http://www.patni.com
>World-Wide Partnerships. World-Class Solutions.
>_
>
>This e-mail message may contain proprietary, confidential or legally
>privileged information for the sole use of the person or entity to
>whom this message was originally addressed. Any review, e-transmission
>dissemination or other use of or taking of any action in reliance upon
>this information by persons or entities other than the intended
>recipient is prohibited. If you have received this e-mail in error
>kindly delete  this e-mail from your records. If it appears that this
>mail has been forwarded to you without proper authority, please notify
>us immediately at [EMAIL PROTECTED] and delete this mail. 
>_
>  
>

http://www.patni.com
World-Wide Partnerships. World-Class Solutions.
_

This e-mail message may contain proprietary, confidential or legally
privileged information for the sole use of the person or entity to
whom this message was originally addressed. Any review, e-transmission
dissemination or other use of or taking of any action in reliance upon
this information by persons or entities other than the intended
recipient is prohibited. If you have received this e-mail in error
kindly delete  this e-mail from your records. If it appears that this
mail has been forwarded to you without proper authority, please notify
us immediately at [EMAIL PROTECTED] and delete this mail. 
_


Re: Could not build geronimo rev 189685

2005-06-09 Thread Matt Hogstrom

I just rebuilt from scratch about an hour ago and everything worked ok.


- Original Message - 
From: "Yoseph Widjaya" <[EMAIL PROTECTED]>

To: ; <[EMAIL PROTECTED]>
Sent: Thursday, June 09, 2005 12:56 AM
Subject: Re: Could not build geronimo rev 189685




Hi Geronimoer

Same thing happen to me cannot build the geronimo
server any idea 

also for helping in building geronimo any idea where i
can help

many thank

Yosep
--- Dondi Imperial <[EMAIL PROTECTED]> wrote:


I could not build geronimo rev 189685 using the "For
the impatient..."
instructions on the wiki. I tried looking for the
offending jar in
ibiblio and sourceforge but could not see it there
either. Here is the
failure message.

BUILD FAILED
File.. C:\Documents and


Settings\exist_user2\.maven\cache\maven-multiproject-plugin-1.3.1\plugin

.jelly
Element... maven:reactor
Line.. 217
Column 9
The build cannot continue because of the following
unsatisfied dependency:

cglib-nodep-HEAD-06-06-05.jar (try downloading from
http://cglib.sf.net/)

--
Dondi Imperial
Software Engineer
Exist Software Labs
Marketing Coordinator
Penthouse I, Prestige Tower,
F. Ortigas Jr. Ave. (formerly Emerald Ave.),
Ortigas Center, Pasig City 1605
Philippines
+632.687.7653
www.exist.com








__
Discover Yahoo!
Find restaurants, movies, travel and more fun for the weekend. Check it 
out!

http://discover.yahoo.com/weekend.html







Re: Could not build geronimo rev 189685

2005-06-09 Thread Dondi Imperial




I was only able to build after i downloaded the offending jar from
http://cvs.apache.org/repository/cglib/jars/ .

HTH,

Yoseph Widjaya wrote:

  Hi Geronimoer

Same thing happen to me cannot build the geronimo
server any idea 

also for helping in building geronimo any idea where i
can help

many thank

Yosep
--- Dondi Imperial <[EMAIL PROTECTED]> wrote:

  
  
I could not build geronimo rev 189685 using the "For
the impatient..." 
instructions on the wiki. I tried looking for the
offending jar in 
ibiblio and sourceforge but could not see it there
either. Here is the 
failure message.

BUILD FAILED
File.. C:\Documents and 


  
  Settings\exist_user2\.maven\cache\maven-multiproject-plugin-1.3.1\plugin
  
  
.jelly
Element... maven:reactor
Line.. 217
Column 9
The build cannot continue because of the following
unsatisfied dependency:

cglib-nodep-HEAD-06-06-05.jar (try downloading from
http://cglib.sf.net/)

-- 
Dondi Imperial
Software Engineer
Exist Software Labs
Marketing Coordinator
Penthouse I, Prestige Tower,
F. Ortigas Jr. Ave. (formerly Emerald Ave.),
Ortigas Center, Pasig City 1605
Philippines 
+632.687.7653
www.exist.com




  
  


		
__ 
Discover Yahoo! 
Find restaurants, movies, travel and more fun for the weekend. Check it out! 
http://discover.yahoo.com/weekend.html 

  



-- 
Dondi Imperial
Software Engineer
Exist Software Labs
Penthouse I, Prestige Tower,
F. Ortigas Jr. Ave. (formerly Emerald Ave.),
Ortigas Center, Pasig City 1605
Philippines 
+632.687.7653
www.exist.com