Re: Unknown start exception when extending DeltaManager in G1.1 - Special attribute objectName must have the type java.lang.String

2006-07-21 Thread Russell E Glaue
Wow, this is great information. This helps a lot. Thanks! BTW for anyone reading, DeltaManager is the class used in clustering sessions. Seen before in Tomcat. If you set up a web application for clustering using the tomcat container, you can use DeltaManager to manage the clustered sessions.

Re: Unknown start exception when extending DeltaManager in G1.1 - Special attribute objectName must have the type java.lang.String

2006-07-21 Thread Aaron Mulder
The problem appears to be that the DeltaManager has a property with name "objectName" and type "ObjectName". That's a conflict with a Geronimo special GBean attribute named "objectName" with type "String". You need to avoid that conflict. I think you have two options. One option is to, instead

Re: Unknown start exception when extending DeltaManager in G1.1 - Special attribute objectName must have the type java.lang.String

2006-07-21 Thread Jason Dillon
Well, you are not really _wrapping_ here you are _extending_. Traditional wrapping would be creating an instance of the target object during construction/startup and then delegating. --jason On Jul 21, 2006, at 1:46 PM, Russell E Glaue wrote: Well pretty much I want to wrap the DeltaManage

Re: Unknown start exception when extending DeltaManager in G1.1 - Special attribute objectName must have the type java.lang.String

2006-07-21 Thread Russell E Glaue
Well pretty much I want to wrap the DeltaManager in a GBean. And then I want to access information from the DeltaManager in a web application using that same GBean. A lot of documentation I have been reading on GBeans after G1.0 came out writes about exposing classes in Geronimo by wrapping the

Re: Unknown start exception when extending DeltaManager in G1.1 - Special attribute objectName must have the type java.lang.String

2006-07-21 Thread Jason Dillon
Does DeltaManager define an attribute named objectName that is of type javax.management.ObjectName? Do you need to extend DeltaManager? Maybe you want to delegate to it instead of extend from it. --jason On Jul 21, 2006, at 1:31 PM, Russell E Glaue wrote: My hostinfoGBean gbean deploys

Unknown start exception when extending DeltaManager in G1.1 - Special attribute objectName must have the type java.lang.String

2006-07-21 Thread Russell E Glaue
My hostinfoGBean gbean deploys but will not startup. This is my gbean which I am trying to upgrade to Geronimo 1.1. It compiled, deployed and started in Geronimo 1.0. If I take out the implementation to the DeltaManager and deploy the GBean, It deploys and starts up without errors. (code for gb