Re: A Geronimo complaint

2007-04-26 Thread David Jencks
You aren't really specifying enough context to know for sure what you are asking about. If this is an excerpt from a geronimo plan, I suggest leaving out the version; geronimo will then choose the latest version in the geronimo repository at runtime. From your request for a minimum

Re: OutOfMemoryException while redeploying WAR

2007-04-26 Thread Jochen Zink
Hello, thanks for the answers (a lot of :) ). Yes it is en PermSpace Error and if it is a problem with the JavaVM... I have to life with that. It is only for developing an application. In production mode, there is no need for a redeploy. Thanks for your help -Ursprüngliche

Re: A Geronimo complaint

2007-04-26 Thread Arint
David Jencks [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] You aren't really specifying enough context to know for sure what you are asking about. If this is an excerpt from a geronimo plan, I suggest leaving out the version; geronimo will then choose the latest version in the

Re: OutOfMemoryException while redeploying WAR

2007-04-26 Thread Kevan Miller
On Apr 26, 2007, at 5:43 AM, Jochen Zink wrote: Hello, thanks for the answers (a lot of :) ). Yes it is en PermSpace Error and if it is a problem with the JavaVM... I have to life with that. It is only for developing an application. In production mode, there is no need for a redeploy.

Re: A Geronimo complaint

2007-04-26 Thread Hernan Cunico
For the deployment plans in particular you can check these docs, http://cwiki.apache.org/GMOxDOC12/deployment-plans.html For version specific info check in point 1.1.2 on http://cwiki.apache.org/GMOxDOC12/geronimo-webxml.html HTH Cheers! Hernan Arinté wrote: David Jencks [EMAIL PROTECTED]

Re: One more geronimo problem

2007-04-26 Thread Aaron Mulder
On 4/26/07, Arinté [EMAIL PROTECTED] wrote: If geronimo supports JSP 2.1/Servlet 2.5 shouldn't this ${test.name} show the proper value, right now it is showing blank instead of the name: titleTitle? ${test.name}/title I think that means it's working. If it didn't work, I'd expect you to see

Re: Adding services to Little-G

2007-04-26 Thread Richard Wallace
2.0-M3. Donald Woods wrote: Which release? -Donald Richard Wallace wrote: Hello again, Since I've only been able to get my application with Spring working on Little-G I'd like to figure out how to add services. The first thing I'd like to add is the admin-console. I tried deploying the

Re: Sharing resources in an MDB

2007-04-26 Thread Aman Nanner/MxI Technologies
So the solution you proposed seems to work with one caveat. It does limit the MDB to only one instance, and in that sense it works. However, if another JMS message is received on the queue while the MDB is still processing the last message, a synchronization error occurs: Caused by:

Re: One more geronimo problem

2007-04-26 Thread Paul McMahan
Can you please open a JIRA for this problem? It would help if you could also attach a small WAR that demonstrates the problem. Best wishes, Paul On Apr 26, 2007, at 2:00 PM, Arinté wrote: Aaron Mulder wrote: On 4/26/07, Arinté [EMAIL PROTECTED] wrote: If geronimo supports JSP 2.1/Servlet

Re: JZOS JNI callback into Geronimo - how?

2007-04-26 Thread Matt Hogstrom
Any luck...this sounds interesting On Apr 22, 2007, at 4:53 PM, weberjn wrote: Thanks, I'll try that. Juergen djencks wrote: Usually weblogic startup classes are best imitated by geronimo gbeans. Basically you write a class, include some metadata about what attributes and operations

Re: Why am I getting NoClassDefFound for spring files in an EAR?

2007-04-26 Thread Jim Barrows
Ive narrowed the issue down quite a bit. It only happens when I include the ejb.jar file and configurations. As long as there is no EJB stuff it works just fine.. add the EJB stuff and all of a sudden the Spring classes in the WAR can't be found. I get this: NoClassDefFoundError:

Any support plans

2007-04-26 Thread Arinté
I see pluto 1.0.1 is installed, but that is very old. What are the plans on updating the pluto version or moving to jetspeed?

Re: Any support plans

2007-04-26 Thread David Jencks
On Apr 26, 2007, at 4:50 PM, Arinté wrote: I see pluto 1.0.1 is installed, but that is very old. What are the plans on updating the pluto version or moving to jetspeed? It's only used for the console and is not really easy to use for any other purpose. It would be great to move the

Re: Sharing resources in an MDB

2007-04-26 Thread Aman Nanner/MxI Technologies
I tried using Active MQ message groups, but that solution does not work because the MDB itself is not the consumer for the JMS resource; rather, there is a single MessageEndpointProxy class that is the message listener. The message is distributed to MDBs later in the chain.