[jira] Commented: (GERONIMO-3910) Rename classes, remove IBM references
[ https://issues.apache.org/jira/browse/GERONIMO-3910?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12581305#action_12581305 ] Erik B. Craig commented on GERONIMO-3910: - Committed revision 640109. branches/1.0/migration-ejb-cmp cleaned up > Rename classes, remove IBM references > - > > Key: GERONIMO-3910 > URL: https://issues.apache.org/jira/browse/GERONIMO-3910 > Project: Geronimo > Issue Type: Bug > Security Level: public(Regular issues) > Components: sample apps >Affects Versions: 1.x >Reporter: Erik B. Craig >Assignee: Erik B. Craig >Priority: Critical > > In the migration sample apps from the 1.0 branch, there are classes named > com.ibm.x. > These need to be renamed to o.a.g -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.
[jira] Commented: (GERONIMO-3910) Rename classes, remove IBM references
[ https://issues.apache.org/jira/browse/GERONIMO-3910?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12581300#action_12581300 ] Erik B. Craig commented on GERONIMO-3910: - Committed revision 640093. branches/1.0/migration-ejb-bmp, forgot apache.demo > Rename classes, remove IBM references > - > > Key: GERONIMO-3910 > URL: https://issues.apache.org/jira/browse/GERONIMO-3910 > Project: Geronimo > Issue Type: Bug > Security Level: public(Regular issues) > Components: sample apps >Affects Versions: 1.x >Reporter: Erik B. Craig >Assignee: Erik B. Craig >Priority: Critical > > In the migration sample apps from the 1.0 branch, there are classes named > com.ibm.x. > These need to be renamed to o.a.g -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.
[jira] Commented: (GERONIMO-3910) Rename classes, remove IBM references
[ https://issues.apache.org/jira/browse/GERONIMO-3910?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12581296#action_12581296 ] Erik B. Craig commented on GERONIMO-3910: - Committed revision 640088 - webapp in branches/1.0/migration-ejb-bmp > Rename classes, remove IBM references > - > > Key: GERONIMO-3910 > URL: https://issues.apache.org/jira/browse/GERONIMO-3910 > Project: Geronimo > Issue Type: Bug > Security Level: public(Regular issues) > Components: sample apps >Affects Versions: 1.x >Reporter: Erik B. Craig >Assignee: Erik B. Craig >Priority: Critical > > In the migration sample apps from the 1.0 branch, there are classes named > com.ibm.x. > These need to be renamed to o.a.g -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.
[jira] Commented: (GERONIMO-3910) Rename classes, remove IBM references
[ https://issues.apache.org/jira/browse/GERONIMO-3910?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12581294#action_12581294 ] Erik B. Craig commented on GERONIMO-3910: - Committed revision 640084 - branches/1.0/migration-ejb-bmp has been cleaned up > Rename classes, remove IBM references > - > > Key: GERONIMO-3910 > URL: https://issues.apache.org/jira/browse/GERONIMO-3910 > Project: Geronimo > Issue Type: Bug > Security Level: public(Regular issues) > Components: sample apps >Affects Versions: 1.x >Reporter: Erik B. Craig >Assignee: Erik B. Craig >Priority: Critical > > In the migration sample apps from the 1.0 branch, there are classes named > com.ibm.x. > These need to be renamed to o.a.g -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.
[BUILD] branches/2.1: Failed for Revision: 640020
Geronimo Revision: 640020 built with tests included See the full build-1400.log file at http://geronimo.apache.org/maven/server/binaries/2.1/20080322/build-1400.log Download the binaries from http://geronimo.apache.org/maven/server/binaries/2.1/20080322 [INFO] BUILD SUCCESSFUL [INFO] [INFO] Total time: 31 minutes 10 seconds [INFO] Finished at: Sat Mar 22 14:38:21 EDT 2008 [INFO] Final Memory: 305M/1005M [INFO] TESTSUITE RESULTS (Failures only) = See detailed results at http://geronimo.apache.org/maven/server/testsuite/ResultsSummary.html Assembly: tomcat = See the full test.log file at http://geronimo.apache.org/maven/server/binaries/2.1/20080322/logs-1400-tomcat/test.log Assembly: jetty = See the full test.log file at http://geronimo.apache.org/maven/server/binaries/2.1/20080322/logs-1400-jetty/test.log [INFO] Running console-testsuite.advance-test [INFO] Tests run: 13, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 74.493 sec <<< FAILURE! Samples: branches/2.1 = Log: http://geronimo.apache.org/maven/server/binaries/2.1/20080322/samples-1400.log Build status: OK
[jira] Commented: (GERONIMO-3936) Make changes to openejb gbeans so that they can be modified at runtime
[ https://issues.apache.org/jira/browse/GERONIMO-3936?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12581252#action_12581252 ] Vamsavardhana Reddy commented on GERONIMO-3936: --- Can you see if changing infoBuilder.addAttribute("properties", Properties.class, true); to infoBuilder.addAttribute("properties", Properties.class, true, true); in the current EjbContainer class helps to prevent changing it into an interface and introducing EjbContainerGBean. > Make changes to openejb gbeans so that they can be modified at runtime > -- > > Key: GERONIMO-3936 > URL: https://issues.apache.org/jira/browse/GERONIMO-3936 > Project: Geronimo > Issue Type: Sub-task > Security Level: public(Regular issues) > Components: OpenEJB >Affects Versions: 2.2 > Environment: All >Reporter: Manu T George >Assignee: Manu T George > Fix For: 2.2 > > Attachments: g3936_r639236.patch > > > Extract interfaces from the EjbContainer GBean so that values can be set at > runtime. At runtime you need to set attributes on a dynamic proxy for it to > get saved. > So the EjbContainerGBean has been refactored to implement an EjbContainer > interface. Also a properties attribute has been added to the > OpenEjbSystemGbean. Initial approach implemented was to add multiple > MdbContainerGbeans for each MdbContainer created but it keeps on adding > entries to config.xml. Also adding too many gbeans to existing configurations > is not a good design as I understand from advice given in the ML -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.