Re: Running JBoss Dashbuilder on TomEE

2015-07-09 Thread jmutawa
Correction: it was both removing the "final" keyword and making a new WAR file based on the Weblogic assembly that solved the problem. Thanks again. -- View this message in context: http://tomee-openejb.979440.n4.nabble.com/Running-JBoss-Dashbuilder-on-TomEE-tp4675437p4675480.html

Re: Running JBoss Dashbuilder on TomEE

2015-07-06 Thread jmutawa
now I have the application working on TomEE. Thank you for your prompt support. Jalal Almutawa -- View this message in context: http://tomee-openejb.979440.n4.nabble.com/Running-JBoss-Dashbuilder-on-TomEE-tp4675437p4675450.html Sent from the TomEE Users mailing list archive at Nabble.com.

Re: Running JBoss Dashbuilder on TomEE

2015-07-03 Thread Romain Manni-Bucau
> > > This seems to be the code it was originally complaining about: > > > > > > > / > > > > > > > package org.jboss.dashboard.ui.config.treeNodes; > > > > > > > > > > > > > > import javax.annotation.PostConstruct; > &g

Re: Running JBoss Dashbuilder on TomEE

2015-07-03 Thread John D. Ament
org.jboss.dashboard.ui.config.AbstractNode; > > > > > > import org.jboss.dashboard.ui.config.TreeNode; > > > > > > > > > > > > public final class RootNode extends AbstractNode { > > > > > > > > > > > > @Inject > > > > > > private WorkspacesNode workspacesNode; > > > > > > > > > > > > @Inject > > > > > > private ResourcesNode resourcesNode; > > > > > > > > > > > > @Inject > > > > > > private GlobalPermissionsNode globalPermissionsNode; > > > > > > > > > > > > @PostConstruct > > > > > > protected void init() { > > > > > > super.setSubnodes(new TreeNode[] {workspacesNode, > > > > resourcesNode, > > > > > > globalPermissionsNode}); > > > > > > } > > > > > > > > > > > > public String getId() { > > > > > > return "root"; > > > > > > } > > > > > > } > > > > > > / > > > > > > > > > > > > > > > > Yes, remiving final before class would be the fix. > > > > > > > > > > > > > I'm actually very surprised that weld is allowing this. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > -- > > > > > > View this message in context: > > > > > > > > > > > > > > > > > > > > http://tomee-openejb.979440.n4.nabble.com/Running-JBoss-Dashbuilder-on-TomEE-tp4675437p4675441.html > > > > > > Sent from the TomEE Users mailing list archive at Nabble.com. > > > > > > > > > > > > > > >

Re: Running JBoss Dashbuilder on TomEE

2015-07-03 Thread Romain Manni-Bucau
ashboard.ui.config.AbstractNode; > > > > > import org.jboss.dashboard.ui.config.TreeNode; > > > > > > > > > > public final class RootNode extends AbstractNode { > > > > > > > > > > @Inject > > > > > private Workspac

Re: Running JBoss Dashbuilder on TomEE

2015-07-03 Thread John D. Ament
te WorkspacesNode workspacesNode; > > > > > > > > @Inject > > > > private ResourcesNode resourcesNode; > > > > > > > > @Inject > > > > private GlobalPermissionsNode globalPermissionsNode; > > > > > > > > @PostConstruct > > > > protected void init() { > > > > super.setSubnodes(new TreeNode[] {workspacesNode, > > resourcesNode, > > > > globalPermissionsNode}); > > > > } > > > > > > > > public String getId() { > > > > return "root"; > > > > } > > > > } > > > > / > > > > > > > > > > Yes, remiving final before class would be the fix. > > > > > > > I'm actually very surprised that weld is allowing this. > > > > > > > > > > > > > > > > > > > -- > > > > View this message in context: > > > > > > > > > http://tomee-openejb.979440.n4.nabble.com/Running-JBoss-Dashbuilder-on-TomEE-tp4675437p4675441.html > > > > Sent from the TomEE Users mailing list archive at Nabble.com. > > > > > >

Re: Running JBoss Dashbuilder on TomEE

2015-07-03 Thread Romain Manni-Bucau
Node; > > > > > > @PostConstruct > > > protected void init() { > > > super.setSubnodes(new TreeNode[] {workspacesNode, > resourcesNode, > > > globalPermissionsNode}); > > > } > > > > > > public String getId() { > > > return "root"; > > > } > > > } > > > / > > > > > > > Yes, remiving final before class would be the fix. > > > > I'm actually very surprised that weld is allowing this. > > > > > > > > > > > > > -- > > > View this message in context: > > > > > http://tomee-openejb.979440.n4.nabble.com/Running-JBoss-Dashbuilder-on-TomEE-tp4675437p4675441.html > > > Sent from the TomEE Users mailing list archive at Nabble.com. > > >

Re: Running JBoss Dashbuilder on TomEE

2015-07-03 Thread John D. Ament
gt; > > > @PostConstruct > > protected void init() { > > super.setSubnodes(new TreeNode[] {workspacesNode, resourcesNode, > > globalPermissionsNode}); > > } > > > > public String getId() { > > return "root&qu

Re: Running JBoss Dashbuilder on TomEE

2015-07-03 Thread Romain Manni-Bucau
de; > > @PostConstruct > protected void init() { > super.setSubnodes(new TreeNode[] {workspacesNode, resourcesNode, > globalPermissionsNode}); > } > > public String getId() { > return "root"; > } > } > / > Yes, remiving final befor

Re: Running JBoss Dashbuilder on TomEE

2015-07-03 Thread jmutawa
protected void init() { super.setSubnodes(new TreeNode[] {workspacesNode, resourcesNode, globalPermissionsNode}); } public String getId() { return "root"; } } / -- View this message in context: http://tomee-openejb.979440.n4.nabble.com/Running-JBoss-Dashbuilde

Re: Running JBoss Dashbuilder on TomEE

2015-07-02 Thread Romain Manni-Bucau
nfig.treeNodes.RootNode/ > > The application runs fine on Tomcat, but we are trying to standardize on > TomEE. Appreciate guidance on what should I do to make this application > work. > > Regards, > Jalal Almutawa > > > > -- > View this message in context:

Running JBoss Dashbuilder on TomEE

2015-07-02 Thread jmutawa
al Almutawa -- View this message in context: http://tomee-openejb.979440.n4.nabble.com/Running-JBoss-Dashbuilder-on-TomEE-tp4675437.html Sent from the TomEE Users mailing list archive at Nabble.com.