Re: Implementing Global JNDI

2006-06-28 Thread Manu George
Hi, The problem we are facing regarding adapters is because the binding gbeans were added to the naming module of geronimo. We are planning to change this by creating a separate module for global jndi and then adding it as a dependency in the configuration that is getting deployed. This will be

Regarding ClassLoader Changes in Geronimo 1.1

2006-07-10 Thread Manu George
Hi, I have an application that is packaged as an EAR. The WAR inside the EAR is having some images in the images directory directly inside the war. In Geronimo 1.0, I was able to access them using Thread.currentThread().getContextClassLoader().getResource() method, but now I am unable to do so.

Re: Regarding ClassLoader Changes in Geronimo 1.1

2006-07-11 Thread Manu George
outside of the WEB-INF directory inside the war? On glancing through the spec I didn't see anything abt it but most of the app servers seem to support this. ThanksManu On 7/10/06, Mario Ruebsam [EMAIL PROTECTED] wrote: Manu George wrote: Hi, I have an application that is packaged as an EAR. The WAR

Deploying an ejb web service

2006-07-24 Thread Manu George
Hi, When i deploy a standalone ejb web service in Geronimo 1.1 it gives an error00:11:04,238 ERROR [Servlet] Exception caught:javax.portlet.PortletException: Exception at org.apache.geronimo.console.configmanager.ConfigManagerPortlet.proces sAction(ConfigManagerPortlet.java:107) at

Re: Deploying an ejb web service

2006-07-27 Thread Manu George
? Thanks Manu On 7/25/06, Manu George [EMAIL PROTECTED] wrote: Hi, When i deploy a standalone ejb web service in Geronimo 1.1 it gives an error 00:11:04,238 ERROR [Servlet] Exception caught: javax.portlet.PortletException: Exception

Regarding Exploded Deployments

2006-08-04 Thread Manu George
Hi, Does Geronimo support exploded deployments of ear's that contain wars and jars using --inPlace Argument? When I try to deploy daytrader by extracting it to a directory and passing the path to the directory as an argument to deploy along with --inPlace it is giving an error

Re: Regarding Exploded Deployments

2006-08-07 Thread Manu George
Hi Gianny, Thanks for the explanation. Are ejb modules also auto exploded? I saw that war's are exploded but ejb modules don't seem to be auto exploded. Any reason for this? Thanks Manu On 8/5/06, Gianny Damour [EMAIL PROTECTED] wrote: Manu George wrote: Hi, Does Geronimo

Re: How Can I give global jndi name od Database pool in geronimo 1.1

2006-08-07 Thread Manu George
Hi Manish, You need to give a resource reference in the deployment plan. Geronimo does not have a Global JNDI context currently since its not mandated by the J2EE spec. So you will be able to lookup and access the datasource from JNDI only within the module in which it is defined. The

Re: getting the datasource ref in a gbean

2006-03-07 Thread Manu George
Hi , I have a final object (SessionFactory of hibernate) that I need in the JNDI context of an application. Since Geronimo does not have a global JNDI Context I am planning to write a GBean to initialize the Session factory and then in the application provide the gbean-ref. Does this feature

Question on Gbean attributes and serialisation

2006-04-12 Thread Manu George
Hi, I saw that in some GBeans Maps and various other structures are defined as attributes. Suppose I have a GBean with a map as an attribute how do i programmatically inject values for the attributes? Also if i want to change the attribute values i.e add more elements to the Map at runtime, how

Re: Implementing Global JNDI

2006-04-25 Thread Manu George
Hi, I have a question regarding one of the objects present in the current application local JNDI Context. What is the HandleDelegate entry for? Thanks Manu

Re: Implementing Global JNDI

2006-04-26 Thread Manu George
am wrong. Thanks Manu On 4/25/06, David Jencks [EMAIL PROTECTED] wrote: It's required for corba ejb references.david jencksOn Apr 25, 2006, at 7:34 AM, Manu George wrote: Hi, I have a question regarding one of the objects present in the current application local JNDI Context. What

Re: Implementing Global JNDI

2006-04-26 Thread Manu George
at o.a.g.naming.ENCConfigBuilder#addResourceRefs.But I guess this is irrelevant if the objects are bound when they arecreated. Btw, should the global JNDI tree be read-only, or read-write ?IMHO, a read-write global JNDI tree would be very usefull.Cheers,Guillaume Nodet Manu George wrote:Thanks David.Guillaume , Which proxy

Re: Implementing Global JNDI

2006-04-27 Thread Manu George
them to modify their environment, but I think the default for the component environment should be read-only.BTW, I am in favor of making everything else writable.-dainOn Apr 26, 2006, at 6:32 AM, Manu George wrote: Hi, Guillaume I guess if a writable context is implemented still the approach given

Re: Implementing Global JNDI

2006-04-27 Thread Manu George
Comments inlineOn 4/26/06, Guillaume Nodet [EMAIL PROTECTED] wrote: Looking more closely, it seems I was wrong.Gbeans with a j2eeType=JCAManagedConnectionFactory have aconnectionFactoryInterface attribute that gives the name of the maininterface to use when binding the object to the JNDI context.

Re: ConcurrentModificationException while starting AG1.1

2006-05-09 Thread Manu George
Thanks David. Can I take this jar (http://people.apache.org/~djencks/maven/commons-modeler/jars/commons-modeler-1.2-GERONIMO-SNAPSHOT.jar ) and replace the one in a previous version of G say 1.0? Will it be fine? Or do I have to do a rebuild? Regards ManuOn 5/9/06, David Jencks [EMAIL PROTECTED]

Re: ConcurrentModificationException while starting AG1.1

2006-05-09 Thread Manu George
Hi David, I just compared the file on your page with the file in one of my builds of G. It seems to be missing two files mbeans-descriptors.dtd and ant.properties. Was these files removed on purpose? Regards Manu On 5/9/06, Manu George [EMAIL PROTECTED] wrote: Thanks David. Can I take this jar

GBean Notifications

2006-05-31 Thread Manu George
Hi, Is it possible for me to write a GBean that gets notified every time a J2EE artefact is deployed. How do i enable by GBean to recieve these notifications Regards Manu

Re: GBean Notifications

2006-05-31 Thread Manu George
(butcurrently not all redeployments).Note this is not just for J2EEartifacts -- it will also see deployments of services, etc.If you care about the type, your GBean can look up the type of the deployedmodule with the module ID it is passed.Thanks,AaronOn 5/31/06, Manu George [EMAIL PROTECTED] wrote: Hi

OpenEJB Question

2005-11-17 Thread Manu George
Hi, In the class org.openejb.deployment.AbstractContainerBuilder there is a method protected SoftLimitedInstancePool createInstancePool(InstanceFactory instanceFactory) { return new SoftLimitedInstancePool(instanceFactory, 1); } What pool is this? Is this the pool of Enterprise bean

TranQL Source

2005-11-24 Thread Manu George
Hi, Can anyone tell me from where to download the TranQL source code? I was unable to find the source at the TranQL site. Most of the links seemed to be broken there or leading to blank pages. Thanks Manu

Re: Regarding Validation of plans during deployment

2005-11-28 Thread Manu George
Hi David, Won't it be better to validate in both the cases to take care of the unusual situations you mentioned? Is there any specific reason why the validation is not done in the second case? Thanks Manu

Re: Regarding Validation of plans during deployment

2005-11-28 Thread Manu George
Got it finally :-) Thanks ManuOn 11/28/05, David Jencks [EMAIL PROTECTED] wrote: On Nov 28, 2005, at 1:41 AM, Manu George wrote: Hi David, Won't it be better to validate in both the cases to take care of the unusual situations you mentioned? Is there any specific reason why the validation

OpenEJB Question

2005-12-09 Thread Manu George
Hi, I am facing a problem with some CMP EJBs with custom PrimaryKey Classes. I am getting the EJBs deployed but during invoking of the findbyprimarykey method I am getting a TransactionRolledBack Exception. On investigating the cause of this I found that it was due to a ClassCastException that

Re: [Vote] Installer: Default Web Container Selection

2005-12-09 Thread Manu George
+1 for tomcatOn 12/9/05, Vamsavardhana Reddy [EMAIL PROTECTED] wrote: +1 for Tomcat.On 12/8/05, Erik Daughtrey [EMAIL PROTECTED] wrote: The installershould make either Tomcat or Jetty the default selection.Theoperator can always override and select the other.Vote:[] Make Jetty the default Web

Fwd: OpenEJB Question

2005-12-12 Thread Manu George
Hi Gianny, I have done all that you mentioned. I am still getting the error.I have replicated the issue in a simple EJB,the example CMP in Ed Roman's book Mastering EJB. I am attaching the stack trace and the plans below 17:02:05,211 WARN [SystemExceptionInterceptor] Product

Re: Fwd: OpenEJB Question

2005-12-13 Thread Manu George
Hi Gianny Great to know its fixed. Will try it out after building geronimo from source. Thanks ManuOn 12/13/05, Gianny Damour [EMAIL PROTECTED] wrote: Hi Manu,Thanks for your debugging! This was a bug in IdentityDefinerBuilder,which was wrongly trying to identify a compound PK based on the

Re: Fwd: OpenEJB Question

2005-12-13 Thread Manu George
tomorrow as it seems that JIRA is down tonight. Thanks, Gianny Manu George wrote: Hi Gianny, I have done all that you mentioned. I am still getting the error.I have replicated the issue in a simple EJB,the example CMP in Ed Roman's book Mastering EJB. I am attaching the stack trace

OpenEJB PK issue

2005-12-14 Thread Manu George
Hi Gianny, Was just seeing the fix you made. 1 question on that. In CMPContainerBuilder there are 2 methods private FaultHandler buildFaultHandler(SQLQueryBuilder queryBuilder, EJB definingEJB, CMRField field, int slot, boolean prefetch) throws QueryException and private LinkedHashMap

Another OpenEJB Question

2005-12-15 Thread Manu George
Hi, I have two CMPs with a 1:n relationship. CMP1 - Order - PK = OrderPK which has a single field orderId CMP2 - OrderItem = OrderItemPk which has 2 fields InventoryId and order_orderId OrderId and order_orderId are mapped When i do a setOrder_orderId in the ejbCreate of OrderItem geronimo gives

OpenEJB PK issue

2005-12-15 Thread Manu George
Hi Gianny, I put in a dirty hack and got my app working. The problem I was facing was in the private LinkedHashMap createCMPFieldAccessors(SQLQueryBuilder queryBuilder, LinkedHashMap cmrFieldAccessor) throws QueryException { method in CMPContainerBuilder Here there is a if (null !=

Re: OpenEJB PK issue

2005-12-16 Thread Manu George
Hi Gianny, I am not much familiar to the open-ejb/tranql codebase . But I plan to get a lot more familiar to it. I have put in a fix for the issue though I am not sure how appropriate it is as I am yet to get a complete picture of the working of openejb/tranQL. The JIRA issue is

Regarding JIRA Geronimo-1374

2005-12-21 Thread Manu George
Hi Gianny, Regarding JIRA Geronimo-1374 Modifying CompoundPKTransform was a very bad idea :-(. But it is required to create an Instance of the compound primary key somewhere and use it to get the GlobalIdentity as CompoundPKTransform is the transform used. Is it a good idea to write another

Regd OpenEJB

2006-01-05 Thread Manu George
Hi Gianny, I have a question on CMR Consider a Bean A and a bean B in a one to many CMR relationship Here A has 2 fields in the PK say a1 and a2 B has b1 fka1 and fka2 as the pk where fka1 and fka2 are the foreign keys corressponding to the a1 and a2 of A. In the ejbCreate of B when we set

Re: Regd OpenEJB

2006-01-09 Thread Manu George
Hi , I am also not sure if this is a safe behaviour or even whether the ejb spec requires it. I have seen in a particular sun forum that the pk should not be part of any relation. I have put the link below http://archives.java.sun.com/cgi-bin/wa?A2=ind0203L=ejb-interestF=S=P=22402. If this is

Re: Regd OpenEJB

2006-01-11 Thread Manu George
Hi Gianny, Here is the code snippet for supporting the first scenario.But this will not support the second scenario we discussed. Thanks Manu On 1/10/06, Gianny Damour [EMAIL PROTECTED] wrote: Hi Manu,Manu George wrote: Hi , I am also not sure if this is a safe behaviour or even whether

Axis source code

2006-02-17 Thread Manu George
Hi, Where can I checkout the latest axis source code used in geronimo? The code I got from the axis site seems to be a different version Thanks Manu

Message based web services

2006-02-21 Thread Manu George
Hi, I have a query regarding Axis. In Axis we can deploy message based web services with a WSDD as shown below deployment xmlns=http://xml.apache.org/axis/wsdd/ xmlns:java= http://xml.apache.org/axis/wsdd/providers/java xmlns:xsi=http://www.w3.org/2000/10/XMLSchema-instance

wiki having non subject related entries

2006-02-22 Thread Manu George
Hi, I was just going through the wiki in the wiki page http://wiki.apache.org/geronimo/EclipseDeployment I found this entry. It seems someone has put it in and i am not sure its intended to be there. Except hogstrom.org your also can see http://www.trip.hk.cn and http://www.3ecom.com some

getting the datasource ref in a gbean

2006-03-06 Thread Manu George
Hi, I have a geronimo-web.xml with a gbean defined inside. I am starting a service with the gbean which starts a service that tries to get a datasource from the InitialContext. I have given the resource-ref in geronimo-web.xml It seems that the gbean is starting first before the datasource is

Re: [WELCOME] Chris Blythe as a new Committer to Apache Geronimo

2007-01-24 Thread Manu George
Congrats Chris --Manu On 1/25/07, Shiva Kumar H R [EMAIL PROTECTED] wrote: Congrats Chris! -- Shiva On 1/25/07, Prasad Kashyap [EMAIL PROTECTED] wrote: Congrats Chris ! Welcome aboard ! Cheers Prasad On 1/24/07, Matt Hogstrom [EMAIL PROTECTED] wrote: In recognition of Chris'

Thread Pool Deadlock

2007-09-02 Thread Manu George
Hi, I was investigating why setting the resourceAdapter poolsize to 1 and using it in an Mdb for sequential message processing was failing and found that the org.apache.geronimo.pool.ThreadPool class in geronimo contains a ThreadPoolExecutor instance created with the constructor new

Re: Thread Pool Deadlock

2007-09-02 Thread Manu George
is rejected. Thus tying up your own thread is not appropriate since it eliminates the possibility of the caller taking corrective action. thanks david jencks On Sep 2, 2007, at 8:46 AM, Manu George wrote: Hi, I was investigating why setting the resourceAdapter poolsize to 1

Re: Thread Pool Deadlock

2007-09-02 Thread Manu George
Hi David, Comments Inline On 9/3/07, David Jencks [EMAIL PROTECTED] wrote: On Sep 2, 2007, at 11:23 AM, Manu George wrote: Hi David, Thanks for the explanation. In case of waitWhenBlocked=true what will be the expected behaviour if I set the poolsize as 1

Re: Thread Pool Deadlock

2007-09-04 Thread Manu George
documentation. http://activemq.apache.org/activation-spec-properties.html So no changes were required for the Thread Pool implementation. But do you think that the RejectionHandler needs to be changed as per the api docs? Or is it fine as it is ? Thanks Manu On 9/3/07, Manu George [EMAIL PROTECTED

Re: [ANNOUNCE] Welcome Shiva Kumar H R as Apache Geronimo's latest committer

2007-09-08 Thread Manu George
Hi Shiva, Congrats Regards Manu On 9/8/07, Vamsavardhana Reddy [EMAIL PROTECTED] wrote: Hi All, The Geronimo PMC is pleased to announce that Shiva Kumar H R has recently accepted our invitation to become an Apache Geronimo committer. Shiva has been contributing to Geronimo

A few Questions

2007-12-13 Thread Manu George
Hi, I am trying to add a few custom entries into the app specific JNDI space. Is it possible to get a handle to the componentContext during the deployment of a J2EE app so that it can be modified. It becomes immutable after the application starts as per the spec so i need to do it during

Question Regarding ModuleBuilderExtension

2008-01-03 Thread Manu George
Hello, I need a clarification regarding the ModuleBuilderExtensions (MBE) pattern. What I understood about this is that it is to extend the functionality of the existing module builders. The usage that I have seen is that the list of MBE's that are used by a ModuleBuilder are specified in

Re: Question Regarding ModuleBuilderExtension

2008-01-03 Thread Manu George
: On Jan 3, 2008, at 3:42 AM, Manu George wrote: Hello, I need a clarification regarding the ModuleBuilderExtensions (MBE) pattern. What I understood about this is that it is to extend the functionality of the existing module builders. The usage that I have seen is that the list

Re: [ANNOUNCE] Kevan Miller has been approved as the new PMC Chair for Apache Geronimo

2008-01-21 Thread Manu George
Thanks Matt And Congrats Kevan

Re: jta-data-source without deployment plan possible?

2008-01-26 Thread Manu George
Me too. Most of the time I end up writing just the module and environment properties. Maybe there should be default values for the environment. Will be a good feature to have On Jan 21, 2008 12:26 AM, Jacek Laskowski [EMAIL PROTECTED] wrote: Hi, Just wondering if deploying an ejb module

Contributor access

2008-01-26 Thread Manu George
Hi, Can someone with Committer Karma grant me contributor access to the Geronimo JIRA. Regards Manu

Re: Contributor access

2008-01-26 Thread Manu George
thanks David :) On Jan 27, 2008 3:00 AM, David Jencks [EMAIL PROTECTED] wrote: IIUC the jira page I managed to do this :-) thanks david jencks On Jan 26, 2008, at 11:56 AM, Manu George wrote: Hi, Can someone with Committer Karma grant me contributor access to the Geronimo JIRA

Re: [ANNOUNCE] Viet Nguyen as Geronimo's most recent committer

2008-01-31 Thread Manu George
Congrats Viet On Jan 31, 2008 11:26 AM, Joseph Leong [EMAIL PROTECTED] wrote: Congratulations Viet On Jan 31, 2008 12:36 AM, Shiva Kumar H R [EMAIL PROTECTED] wrote: Congratulations Viet! On Jan 31, 2008 9:17 AM, Kevan Miller [EMAIL PROTECTED] wrote: All, I'd like

Re: Geronimo 2.0: customize EJB-Container settings

2008-01-31 Thread Manu George
Hi, What does the community think about having a portlet in the admin console for configuring openejb related stuff as well as displaying the different containers etc deployed in Geronimo. I think this may improve the usability of Geronimo. If there is interest I would like to investigate it

Re: Adding a page to a plugin

2008-02-07 Thread Manu George
Hi, On a related note , since the pluggable console was introduced is there any doc on how to include new portlets or on the architecture of the pluggable console. A doc will really go a long way in helping others develop new portlets. A list of files to look at will in itself be a great

Re: Geronimo in year 2008

2008-02-08 Thread Manu George
What is the point in having geronimo specific annotations? AFAIK there is a mappedName attribute in the javaEE annotations which can be used for mapping to server specific resource names. Is this completely implemented in G? Probably someone with more knowledge on this than me can comment :).

Re: Adding a page to a plugin

2008-02-10 Thread Manu George
Thanks all for pointing out the documentation. Looks like its pretty detailed too. Will be very helpful. Will improve it if anything missing Regards Manu On Feb 9, 2008 1:11 AM, Joseph Leong [EMAIL PROTECTED] wrote: Just an update. I'm not sure exactly why the steps i took the first time

Regarding SSO across admin console

2008-02-26 Thread Manu George
Hi, I added a new portlet to the admin console via the new pluggable mechanism. However when I click on the link to that portlet I am always asked to authenticate even though I have authenticated on the login page of the admin console. How can I configure my portlet to also be part of the

Re: Regarding SSO across admin console

2008-02-27 Thread Manu George
with this information and maybe modify the sample to use DWR. Regards Manu On Wed, Feb 27, 2008 at 10:49 PM, Joe Bohn [EMAIL PROTECTED] wrote: Manu George wrote: Hi, I added a new portlet to the admin console via the new pluggable mechanism. However when I click on the link to that portlet I am

Re: Regarding SSO across admin console

2008-02-27 Thread Manu George
suggestion would be to verify whether the JSessionID is getting corrupted or deleted. Let us know what ya find and hopefully we can step through this. Which portlet is this for? -Joseph Leong On Wed, Feb 27, 2008 at 12:19 PM, Joe Bohn [EMAIL PROTECTED] wrote: Manu George wrote: Hi

Re: Geronimo 2.0: customize EJB-Container settings

2008-02-28 Thread Manu George
the portlet prompts you to restart the server as openejb doesn't support dynamic changes of these settings. Suggestions welcome Thanks Manu On Thu, Jan 31, 2008 at 8:16 PM, Kevan Miller [EMAIL PROTECTED] wrote: On Jan 31, 2008, at 7:36 AM, Manu George wrote: Hi, What does the community think

Re: [jira] Commented: (GERONIMO-3811) EjbServer portlet

2008-03-10 Thread Manu George
, Manu George [EMAIL PROTECTED] wrote: Hi David, Currently Openejb standalone only allows you to set the configurations at the container level. Currently openejb standalone accepts these configuration values at the constructor of the container. In standalone I believe that you can have

Stoppage of message processing when instanceLimit maxSessions

2008-03-12 Thread Manu George
Hi, I just checked opened a a defect in activemq as discussed with david jencks on IRC. This deals with Mdbs stopping processing if the instance limit is maxSessions. The defect is https://issues.apache.org/activemq/browse/AMQ-1618. It is present in all the versions of AMQ. I have also

Re: [jira] Commented: (GERONIMO-3811) EjbServer portlet

2008-03-16 Thread Manu George
the openejb integration changes as a separate JIRA for easier tracking and merging. Let me know if anyone has any concerns with the approach I am taking or if approach 2 looks to be better. Regards Manu On Mon, Mar 10, 2008 at 5:38 PM, Manu George [EMAIL PROTECTED] wrote: I came up with a few

Genesis

2008-03-16 Thread Manu George
Hi, The geronimo maven build currently automatically decides which repositories to download artifacts from. AFAIK this is decided by Genesis. Now if I have a local maven repository in my Lan and want maven to look into that repo first what do I have to do? Regards Manu

Re: Genesis

2008-03-16 Thread Manu George
by local I meant a remote repository but local to my LAN Thanks Manu On Mon, Mar 17, 2008 at 7:39 AM, Manu George [EMAIL PROTECTED] wrote: Hi, The geronimo maven build currently automatically decides which repositories to download artifacts from. AFAIK this is decided by Genesis. Now

jndi-name of legacy ejbs

2008-03-20 Thread Manu George
Hi, When you are using ejb 2.1 you had to actually specify the jndi-name/local-jndi-name in the openejb-jar.xml. I believe that that name was used if you wanted to do a remote lookup etc. How was this used for local lookups? Were the ejbs available in the application specific jndi context

Re: jndi-name of legacy ejbs

2008-03-23 Thread Manu George
Manu On Thu, Mar 20, 2008 at 9:17 PM, David Jencks [EMAIL PROTECTED] wrote: On Mar 20, 2008, at 2:46 AM, Manu George wrote: Hi, When you are using ejb 2.1 you had to actually specify the jndi-name/local-jndi-name in the openejb-jar.xml. I believe that that name was used

Re: ejb-jar.xml and EJB 3.0

2008-03-24 Thread Manu George
Hi Sergio, On Mon, Mar 24, 2008 at 5:27 PM, zeros [EMAIL PROTECTED] wrote: Good morning: I'm having problems deploying an EJB3 with a deployment descriptor. I've not had any problems deploying it only with tags, but when I add the ejb-jar.xml to fix the final values Geronimo detects

Problem while importing geronimo source in eclipse

2008-05-22 Thread Manu George
Hi, I recently build geronimo from scratch in linux with a totally new repo and imported the source in eclipse. After importing I had to manually the following 3 references to libraries from quite a lot of projects M2_REPO/javax/jms/jms/1.1/jms-1.1.jar

Re: Problem with hiding asm classes

2008-05-27 Thread Manu George
Thanks for replying Kevan. I already opened a JIRA https://issues.apache.org/jira/browse/GERONIMO-4082 as david jencks also mentioned that it is a bug in another thread Regards Manu On Tue, May 27, 2008 at 6:22 PM, Kevan Miller [EMAIL PROTECTED] wrote: On May 26, 2008, at 8:50 AM, Manu George

Re: [ANNOUNCE] Lin Sun is the newest member of the Geronimo PMC

2008-06-27 Thread Manu George
Congrats Lin On Fri, Jun 27, 2008 at 2:14 PM, Lei Wang [EMAIL PROTECTED] wrote: Lin, congratulations! Rex 2008/6/27 Jarek Gawor [EMAIL PROTECTED]: All, Please join us in congratulating Lin Sun as the newest member of the Geronimo PMC. She has been involved with the Geronimo community

Re: Restarting console-base from command line

2008-07-13 Thread Manu George
Hi Shrey, I also faced this issue recently. My understanding is that all the DWR calls go through the org.apache.geronimo.console.servlet.ContextForwardServlet servlet currently. In that servlet we have a reference to the web app context of say plan creator or any other console

Re: How ti increse heap size in Apache geronimo....

2008-07-14 Thread Manu George
Hi Ravi, You can set it via the GERONIMO_OPTS property i.e. SET GERONIMO_OPTS=-Xmx256m and it will be set in the VM. However since your system has only 512M of RAM it may be better to turn off modules that you are not using like say openejb and activemq if u dont use ejb and jms and so on. You

Restart of configurations not picking up any changes made

2008-07-24 Thread Manu George
Hi, I just found a behaviour in geronimo that I am not certain is there by design. If I edit one of the gbean attributes of an already started gbean in a configuration and I then restart that configuration from the console then the edited properties are not reflected in the restarted gbean.

Re: Restart of configurations not picking up any changes made

2008-07-24 Thread Manu George
Please disregard the part about the Configuration class. On further analysis I found that the restart results in KernelConfigurationManager.start Regards Manu On Thu, Jul 24, 2008 at 4:42 PM, Manu George [EMAIL PROTECTED] wrote: Hi, I just found a behaviour in geronimo that I am

Re: Restart of configurations not picking up any changes made

2008-07-24 Thread Manu George
So to get the changes reflected on restart we need to call attributeStore.applyOverrides in ConfigurationUtil.startConfigurationGbeans method. Let me know if this is an issue and I will open a JIRA and attach a patch Regards Manu On Thu, Jul 24, 2008 at 4:56 PM, Manu George [EMAIL PROTECTED

Re: Improved EJB integration... can we get some portlets?

2008-09-26 Thread Manu George
I will modify that patch to use the changes David has made. Let me know if you have any suggestions on the UI Regards Manu On 9/26/08, Donald Woods [EMAIL PROTECTED] wrote: I can try to check in the patch that's there, but I've never really looked at or used EJBs and really don't have a

Re: Improved EJB integration... can we get some portlets?

2008-10-03 Thread Manu George
On Fri, Sep 26, 2008 at 6:14 PM, Manu George [EMAIL PROTECTED] wrote: I will modify that patch to use the changes David has made. Let me know if you have any suggestions on the UI Regards Manu On 9/26/08, Donald Woods [EMAIL PROTECTED] wrote: I can try to check in the patch that's

Re: dojo-tomcat/jetty6

2008-10-08 Thread Manu George
Hi Lin, I am using it in the EjbServer Portlet I am developing. But I guess that it can also be made an optional console plugin Regards Manu On Wed, Oct 8, 2008 at 1:43 AM, Lin Sun [EMAIL PROTECTED] wrote: Jay, Right, I don't know how far that work went either. Thus, I didn't include the

Re: Improved EJB integration... can we get some portlets?

2008-10-08 Thread Manu George
the dependencies so currently we will need only a restart of the openejb configuration Regards Manu On Fri, Oct 3, 2008 at 3:46 PM, Manu George [EMAIL PROTECTED] wrote: Hi David, What is the accessTimeout attribute of the BmpContainerGBean for? It seems to map to poolSize. You are doing a set

Re: Improved EJB integration... can we get some portlets?

2008-10-10 Thread Manu George
, Manu George [EMAIL PROTECTED] wrote: Hi David, Thanks for replying. I have put a few questions/comments inline below On Wed, Oct 8, 2008 at 10:09 PM, David Jencks [EMAIL PROTECTED] wrote: On Oct 8, 2008, at 7:42 AM, Manu George wrote: To me it looks like you are basically

Re: Improved EJB integration... can we get some portlets?

2008-10-10 Thread Manu George
Hi David, Thanks for replying. I have put a few questions/comments inline below On Wed, Oct 8, 2008 at 10:09 PM, David Jencks [EMAIL PROTECTED] wrote: On Oct 8, 2008, at 7:42 AM, Manu George wrote: To me it looks like you are basically proposing a plan editor or config.xml

Re: Improved EJB integration... can we get some portlets?

2008-10-13 Thread Manu George
Hi David, Thank you for the response. It was very helpful. Comments inline On Fri, Oct 10, 2008 at 9:47 PM, David Jencks [EMAIL PROTECTED] wrote: On Oct 10, 2008, at 5:17 AM, Manu George wrote: Hi David, Thanks for replying. I have put a few questions

Issue with undeploy when you have symbolic links in the WAR

2008-10-14 Thread Manu George
Hi, We allow symbolic links in web applications via the allowLinking property of tomcat. http://cwiki.apache.org/GMOxDEV/configure-allowlinking-for-tomcat-contexts.html A problem with using symbolic links currently in WAR files is that during undeployment the deployer follows the links and

Re: [VOTE] Release SAAJ 1.3 spec jar version 1.0.1

2008-10-15 Thread Manu George
+1 --Manu On Wed, Oct 15, 2008 at 6:55 AM, Kevan Miller [EMAIL PROTECTED] wrote: +1 --kevan On Oct 13, 2008, at 10:56 AM, Jarek Gawor wrote: Hi, This is a vote for SAAJ 1.3 spec jar version 1.0.1. There was only one change from version 1.0.0:

Re: dojo-tomcat/jetty6

2008-10-15 Thread Manu George
, currently when we want the refer to dojo.js, the url will be /dojo/dojo/dojo/dojo.js. I suggest to repackage the dojo-mini.zip file. 2008/10/8 Lin Sun [EMAIL PROTECTED] Hi Manu, Ok, making it optional sounds good. Lin On Wed, Oct 8, 2008 at 8:24 AM, Manu George [EMAIL PROTECTED

Re: [ANNOUNCE] Welcome Jason Warner as the newest member of the Geronimo PMC

2008-10-22 Thread Manu George
Congrats Jason Regards Manu On Wed, Oct 22, 2008 at 11:16 AM, Jack Cai [EMAIL PROTECTED] wrote: Congratulations from me too, Jason! - Jack 2008/10/22 Donald Woods [EMAIL PROTECTED] Congrats Jason! -Donald Kevan Miller wrote: All, Please join us in congratulating Jason Warner as

Re: Geronimo v2.2 discussion

2008-10-24 Thread Manu George
I will commit the EJB Portlet next week once I am clear on which version to put in. I have one suing 0.4 of dojo and another using 1.1 Regards Manu On Wed, Oct 22, 2008 at 7:34 PM, Donald Woods [EMAIL PROTECTED] wrote: OK, looks like we're making good progress towards a 2.2 release.

Re: Improved EJB integration... can we get some portlets?

2008-10-24 Thread Manu George
I have two versions of the EJB Portlet with me. One with dojo 0.4.3 and another with Dojo 1.x. There are 2 possibilities on how to integrate it. 1) Check in the portlet with dojo 0.4.3 support now as we do not ship Dojo 1.1 with the default server assembly. Later migrate to Dojo 1.1 if we remove

Re: [DISCUSS] What will trunk become after we create the 2.2 branch?

2008-11-20 Thread Manu George
+1 to #1 . But as Jarek says we need a place for future EE5 releases also Regards Manu On Thu, Nov 20, 2008 at 10:40 AM, Jarek Gawor [EMAIL PROTECTED] wrote: It seems to me that 3.0 (with Java EE 6) is pretty far off and 2.3 release (with Java EE 5) is far more probable by then. But we do

Re: [DISCUSS] What will trunk become after we create the 2.2 branch?

2008-11-21 Thread Manu George
release? -Donald Manu George wrote: +1 to #1 . But as Jarek says we need a place for future EE5 releases also Regards Manu On Thu, Nov 20, 2008 at 10:40 AM, Jarek Gawor [EMAIL PROTECTED] wrote: It seems to me that 3.0 (with Java EE 6) is pretty far off and 2.3 release (with Java EE 5

Access to edit docs in confluence

2008-11-24 Thread Manu George
Hi, I don't seem to have edit access in confluence. Can someone grant me access. Regards Manu

Re: Access to edit docs in confluence

2008-11-25 Thread Manu George
Hi Jeff, Thanks for the info. I already have my ICLA on file so I guess someone with admin privileges needs to grant me edit access. Regards Manu On Tue, Nov 25, 2008 at 12:05 PM, RunHua Chi [EMAIL PROTECTED] wrote: Hi Manu, Before you contribute to G doc, there are several items to

Re: Access to edit docs in confluence

2008-11-28 Thread Manu George
as well if you switched users. Joe Manu George wrote: Hi Jeff, Thanks for the info. I already have my ICLA on file so I guess someone with admin privileges needs to grant me edit access. Regards Manu On Tue, Nov 25, 2008 at 12:05 PM, RunHua Chi [EMAIL PROTECTED] wrote: Hi Manu

build failure

2006-09-19 Thread Manu George
Hi, When i am building the trunk using Maven 2 I am getting the following error. Also even though the build is failing it says build successful. I get this when I run bootstrap assemble. The preceding steps all showed build successful Downloading:

Re: build failure

2006-09-19 Thread Manu George
and then ran a build. The build was successful. Are you sure you have the latest source files? Regards, Vamsi On 9/19/06, *Manu George* [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: Hi, When i am building the trunk using Maven 2 I am getting the following error. Also

Re: Geronimo jee5 webservices integration

2006-10-05 Thread Manu George
Hi David, Count me in. I am willing to help in this. Will start reading the specs as my knowlege in this is limited. This page cleared some of my questions on why axis/celtix is required. Probably it will be useful for others who are new and interested

Re: [ANNOUNCE] Please welcome Vamsavardhana Reddy as one of our newest Committer

2006-10-23 Thread Manu George
Congrats Vamsi, Regards Manu On 10/19/06, Gianny Damour [EMAIL PROTECTED] wrote: Congratulations Vamsi! Gianny On 19/10/2006, at 1:40 AM, Alan Cabrera wrote: The Geronimo PMC is pleased to announce that Vamsavardhana Reddy has recently accepted our invitation to become an Apache Geronimo

  1   2   >