[Beginner's Corner] - Re: EJB-JAR.XML AND JBOSS.XML SETUP
by Bruce Sanders
Bruce Sanders [https://community.jboss.org/people/brucesanders63] created the discussion
"Re: EJB-JAR.XML AND JBOSS.XML SETUP"
To view the discussion, visit: https://community.jboss.org/message/730427#730427
--------------------------------------------------------------
Been a while since I posted but I still have the same problem and find very little on the internet to assist. If I create my own enterprise java bean from source code using Xdoclet to assist the jar does deploy. I match the jboss.xml from the successful deploy
with one in the ejb I still get the deploy error below. See below:
jboss.xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE jboss PUBLIC "-//JBoss//DTD JBOSS 2.4//EN" " http://www.jboss.org/j2ee/dtd/jboss_2_4.dtd http://www.jboss.org/j2ee/dtd/jboss_2_4.dtd">
<jboss>
<enterprise-beans>
<session>
<ejb-name>CalculationAppealsManagerBean</ejb-name>
<jndi-name>ejb/CalculationAppealsManagerBean</jndi-name>
</session>
</enterprise-beans>
<resource-managers>
</resource-managers>
</jboss>
ejb-jar.xml
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ejb-jar PUBLIC "-//Sun Microsystems, Inc.//DTD Enterprise JavaBeans 2.0//EN" " http://java.sun.com/dtd/ejb-jar_2_0.dtd http://java.sun.com/dtd/ejb-jar_2_0.dtd">
<ejb-jar>
<enterprise-beans>
<session>
<description>Calculation Appeals Manager EJB</description>
<display-name>CalculationAppealsPortalManagerBean</display-name>
<ejb-name>CalculationAppealsManagerBean</ejb-name>
<home>com.spcs.intranet.calculationAppeals.business.ejb.CalculationAppealsManagerHome</home>
<remote>com.spcs.intranet.calculationAppeals.business.ejb.CalculationAppealsManager</remote>
<ejb-class>com.spcs.intranet.calculationAppeals.business.ejb.CalculationAppealsManagerBean</ejb-class>
<session-type>Stateless</session-type>
<transaction-type>Container</transaction-type>
<env-entry>
<env-entry-name>ejb.sessionTimeout</env-entry-name>
<env-entry-type>java.lang.String</env-entry-type>
<env-entry-value>600</env-entry-value>
</env-entry>
</session>
</enterprise-beans>
<assembly-descriptor>
<security-role>
<role-name>all</role-name>
</security-role>
<method-permission>
<role-name>all</role-name>
<method>
<ejb-name>CalculationAppealsManagerBean</ejb-name>
<method-name>*</method-name>
</method>
</method-permission>
<container-transaction>
<method>
<ejb-name>CalculationAppealsManagerBean</ejb-name>
<method-name>*</method-name>
</method>
<trans-attribute>Required</trans-attribute>
</container-transaction>
</assembly-descriptor>
</ejb-jar>
The deployment result is this:
org.jboss.deployment.DeploymentException
: Error in jboss.xml for Bean jmx/ejb/Adaptor: found in jboss.xml but not in ejb-jar.xmlat org.jboss.metadata.ApplicationMetaData.importJbossXml(
ApplicationMetaData.java:956)at org.jboss.metadata.XmlFileLoader.load(
XmlFileLoader.java:200)at org.jboss.ejb.EJBDeployer.create(
EJBDeployer.java:541)at sun.reflect.NativeMethodAccessorImpl.invoke0(
Native Method)at sun.reflect.NativeMethodAccessorImpl.invoke(
NativeMethodAccessorImpl.java:39)at sun.reflect.DelegatingMethodAccessorImpl.invoke(
DelegatingMethodAccessorImpl.java:25)at java.lang.reflect.Method.invoke(
Method.java:324)at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(
ReflectedDispatcher.java:155)at org.jboss.mx.server.Invocation.dispatch(
Invocation.java:94)at org.jboss.mx.interceptor.AbstractInterceptor.invoke(
AbstractInterceptor.java:133)at org.jboss.mx.server.Invocation.invoke(
Invocation.java:88)at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(
ModelMBeanOperationInterceptor.java:142)at org.jboss.mx.interceptor.DynamicInterceptor.invoke(
DynamicInterceptor.java:97)at org.jboss.system.InterceptorServiceMBeanSupport.invokeNext(
InterceptorServiceMBeanSupport.java:238)at org.jboss.ws.integration.jboss.DeployerInterceptor.create(
DeployerInterceptor.java:74)at org.jboss.ws.integration.jboss.DeployerInterceptorEJB.create(
DeployerInterceptorEJB.java:44)at org.jboss.deployment.SubDeployerInterceptorSupport$XMBeanInterceptor.create(
SubDeployerInterceptorSupport.java:180)at org.jboss.deployment.SubDeployerInterceptor.invoke(
SubDeployerInterceptor.java:91)at org.jboss.mx.server.Invocation.invoke(
Invocation.java:88)at org.jboss.mx.server.AbstractMBeanInvoker.invoke(
AbstractMBeanInvoker.java:264)at org.jboss.mx.server.MBeanServerImpl.invoke(
MBeanServerImpl.java:659)at org.jboss.mx.util.MBeanProxyExt.invoke(
MBeanProxyExt.java:210)at $Proxy26.create(Unknown Source)
at org.jboss.deployment.MainDeployer.create(
MainDeployer.java:969)at org.jboss.deployment.MainDeployer.deploy(
MainDeployer.java:818)at org.jboss.deployment.MainDeployer.deploy(
MainDeployer.java:782)at sun.reflect.GeneratedMethodAccessor29.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(
DelegatingMethodAccessorImpl.java:25)at java.lang.reflect.Method.invoke(
Method.java:324)at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(
ReflectedDispatcher.java:155)at org.jboss.mx.server.Invocation.dispatch(
Invocation.java:94)at org.jboss.mx.interceptor.AbstractInterceptor.invoke(
AbstractInterceptor.java:133)at org.jboss.mx.server.Invocation.invoke(
Invocation.java:88)at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(
ModelMBeanOperationInterceptor.java:142)at org.jboss.mx.server.Invocation.invoke(
Invocation.java:88)at org.jboss.mx.server.AbstractMBeanInvoker.invoke(
AbstractMBeanInvoker.java:264)at org.jboss.mx.server.MBeanServerImpl.invoke(
MBeanServerImpl.java:659)at org.jboss.mx.util.MBeanProxyExt.invoke(
MBeanProxyExt.java:210)at $Proxy8.deploy(Unknown Source)
at org.jboss.deployment.scanner.URLDeploymentScanner.deploy(
URLDeploymentScanner.java:421)at org.jboss.deployment.scanner.URLDeploymentScanner.scan(
URLDeploymentScanner.java:634)at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(
AbstractDeploymentScanner.java:263)at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.loop(
AbstractDeploymentScanner.java:274)at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.run(
AbstractDeploymentScanner.java:225)16:54:01,010 ERROR [MainDeployer] Could not create deployment: file:/C:/JBoss4.0/jboss-4.0.5.GA/server/default/deploy/CalculationAppeals_ejb.jar
org.jboss.deployment.DeploymentException
: Error in jboss.xml for Bean jmx/ejb/Adaptor: found in jboss.xml but not in ejb-jar.xmlat org.jboss.metadata.ApplicationMetaData.importJbossXml(
ApplicationMetaData.java:956)at org.jboss.metadata.XmlFileLoader.load(
XmlFileLoader.java:200)at org.jboss.ejb.EJBDeployer.create(
EJBDeployer.java:541)at sun.reflect.NativeMethodAccessorImpl.invoke0(
Native Method)at sun.reflect.NativeMethodAccessorImpl.invoke(
NativeMethodAccessorImpl.java:39)at sun.reflect.DelegatingMethodAccessorImpl.invoke(
DelegatingMethodAccessorImpl.java:25)at java.lang.reflect.Method.invoke(
Method.java:324)at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(
ReflectedDispatcher.java:155)at org.jboss.mx.server.Invocation.dispatch(
Invocation.java:94)at org.jboss.mx.interceptor.AbstractInterceptor.invoke(
AbstractInterceptor.java:133)at org.jboss.mx.server.Invocation.invoke(
Invocation.java:88)at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(
ModelMBeanOperationInterceptor.java:142)at org.jboss.mx.interceptor.DynamicInterceptor.invoke(
DynamicInterceptor.java:97)at org.jboss.system.InterceptorServiceMBeanSupport.invokeNext(
InterceptorServiceMBeanSupport.java:238)at org.jboss.ws.integration.jboss.DeployerInterceptor.create(
DeployerInterceptor.java:74)at org.jboss.ws.integration.jboss.DeployerInterceptorEJB.create(
DeployerInterceptorEJB.java:44)at org.jboss.deployment.SubDeployerInterceptorSupport$XMBeanInterceptor.create(
SubDeployerInterceptorSupport.java:180)at org.jboss.deployment.SubDeployerInterceptor.invoke(
SubDeployerInterceptor.java:91)at org.jboss.mx.server.Invocation.invoke(
Invocation.java:88)at org.jboss.mx.server.AbstractMBeanInvoker.invoke(
AbstractMBeanInvoker.java:264)at org.jboss.mx.server.MBeanServerImpl.invoke(
MBeanServerImpl.java:659)at org.jboss.mx.util.MBeanProxyExt.invoke(
MBeanProxyExt.java:210)at $Proxy26.create(Unknown Source)
at org.jboss.deployment.MainDeployer.create(
MainDeployer.java:969)at org.jboss.deployment.MainDeployer.deploy(
MainDeployer.java:818)at org.jboss.deployment.MainDeployer.deploy(
MainDeployer.java:782)at sun.reflect.GeneratedMethodAccessor29.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(
DelegatingMethodAccessorImpl.java:25)at java.lang.reflect.Method.invoke(
Method.java:324)at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(
ReflectedDispatcher.java:155)at org.jboss.mx.server.Invocation.dispatch(
Invocation.java:94)at org.jboss.mx.interceptor.AbstractInterceptor.invoke(
AbstractInterceptor.java:133)at org.jboss.mx.server.Invocation.invoke(
Invocation.java:88)at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(
ModelMBeanOperationInterceptor.java:142)at org.jboss.mx.server.Invocation.invoke(
Invocation.java:88)at org.jboss.mx.server.AbstractMBeanInvoker.invoke(
AbstractMBeanInvoker.java:264)at org.jboss.mx.server.MBeanServerImpl.invoke(
MBeanServerImpl.java:659)at org.jboss.mx.util.MBeanProxyExt.invoke(
MBeanProxyExt.java:210)at $Proxy8.deploy(Unknown Source)
at org.jboss.deployment.scanner.URLDeploymentScanner.deploy(
URLDeploymentScanner.java:421)at org.jboss.deployment.scanner.URLDeploymentScanner.scan(
URLDeploymentScanner.java:634)at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(
AbstractDeploymentScanner.java:263)at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.loop(
AbstractDeploymentScanner.java:274)at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.run(
AbstractDeploymentScanner.java:225)
--------------------------------------------------------------
Reply to this message by going to Community
[https://community.jboss.org/message/730427#730427]
Start a new discussion in Beginner's Corner at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1&con...]
13 years, 11 months
[Beginner's Corner] - Deployments binded to certain interfaces
by Miguel FC
Miguel FC [https://community.jboss.org/people/miguelfc] created the discussion
"Deployments binded to certain interfaces"
To view the discussion, visit: https://community.jboss.org/message/731925#731925
--------------------------------------------------------------
Hi,
I've been looking all over the web and the forums, and can't seem to find an answer to my question, so, here it goes.
Right now I need to implement a JBoss AS, with two network interfaces. The issue here is that I need to use one web application (lets call it app1) through the first interface (let's call it eth1), and another (app2) through the second interface (let's call it eth2).
I need to separate things so that app1 is only visible through eth1 and not accesible through eth2, and viceversa.
I know it can be done just by running one JBoss AS server in one interface with app1, and another JBoss AS server in the other interface with app2.
The thing is I want to have only one JBoss AS server in the machine, and want to know if it is doable.
Any ideas?
Thanks in advance.
MFC
--------------------------------------------------------------
Reply to this message by going to Community
[https://community.jboss.org/message/731925#731925]
Start a new discussion in Beginner's Corner at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1&con...]
13 years, 11 months
[Beginner's Corner] - Errors configuring web.xml and jboss-web.xml
by Carey Brown
Carey Brown [https://community.jboss.org/people/carey.brown] created the discussion
"Errors configuring web.xml and jboss-web.xml"
To view the discussion, visit: https://community.jboss.org/message/731740#731740
--------------------------------------------------------------
I'm trying to configure web.xml and jboss-web.xml for Jboss-7.1.1-Final and I'm getting this error. I'd appreciate any pointers you can give me.
*Here's the error:*
--------------------------------------
12:01:08,817 INFO [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015876: Starting deployment of "webapp.war"
12:01:09,114 ERROR [org.jboss.msc.service.fail] (MSC service thread 1-1) MSC00001: Failed to start service jboss.deployment.subunit.
"audit.ear"."webapp.war".POST_MODULE: org.jboss.msc.service.StartException in service jboss.deployment.subunit."audit.ear"."webapp.w
ar".POST_MODULE: Failed to process phase POST_MODULE of subdeployment "webapp.war" of deployment "audit.ear"
at org.jboss.as.server.deployment.DeploymentUnitPhaseService.start(DeploymentUnitPhaseService.java:119) [jboss-as-server-7.1
.1.Final.jar:7.1.1.Final]
at org.jboss.msc.service.ServiceControllerImpl$StartTask.startService(ServiceControllerImpl.java:1811) [jboss-msc-1.0.2.GA.j
ar:1.0.2.GA]
at org.jboss.msc.service.ServiceControllerImpl$StartTask.run(ServiceControllerImpl.java:1746) [jboss-msc-1.0.2.GA.jar:1.0.2.
GA]
at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886) [rt.jar:1.6.0_14]
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908) [rt.jar:1.6.0_14]
at java.lang.Thread.run(Thread.java:619) [rt.jar:1.6.0_14]
Caused by: org.jboss.as.server.deployment.DeploymentUnitProcessingException: JBAS011033: Could not load javax.sql.sybaseDS reference
d in env-entry
at org.jboss.as.ee.component.deployers.ResourceReferenceProcessor.getResourceRefEntries(ResourceReferenceProcessor.java:159)
at org.jboss.as.ee.component.deployers.ResourceReferenceProcessor.processDescriptorEntries(ResourceReferenceProcessor.java:7
3)
at org.jboss.as.ee.component.deployers.AbstractDeploymentDescriptorBindingsProcessor.deploy(AbstractDeploymentDescriptorBind
ingsProcessor.java:100)
at org.jboss.as.server.deployment.DeploymentUnitPhaseService.start(DeploymentUnitPhaseService.java:113) [jboss-as-server-7.1
.1.Final.jar:7.1.1.Final]
... 5 more
Caused by: java.lang.ClassNotFoundException: javax.sql.sybaseDS from [Module "deployment.audit.ear.webapp.war:main" from Service Mod
ule Loader]
at org.jboss.modules.ModuleClassLoader.findClass(ModuleClassLoader.java:190)
at org.jboss.modules.ConcurrentClassLoader.performLoadClassUnchecked(ConcurrentClassLoader.java:468)
at org.jboss.modules.ConcurrentClassLoader.performLoadClassChecked(ConcurrentClassLoader.java:456)
at org.jboss.modules.ConcurrentClassLoader.performLoadClass(ConcurrentClassLoader.java:398)
at org.jboss.modules.ConcurrentClassLoader.loadClass(ConcurrentClassLoader.java:120)
at org.jboss.as.ee.component.deployers.ResourceReferenceProcessor.getResourceRefEntries(ResourceReferenceProcessor.java:157)
... 8 more
12:01:09,411 INFO [org.jboss.as.server] (DeploymentScanner-threads - 1) JBAS015870: Deploy of deployment "audit.ear" was rolled bac
k with failure message {"JBAS014671: Failed services" => {"jboss.deployment.subunit.\"audit.ear\".\"webapp.war\".POST_MODULE" => "or
g.jboss.msc.service.StartException in service jboss.deployment.subunit.\"audit.ear\".\"webapp.war\".POST_MODULE: Failed to process p
hase POST_MODULE of subdeployment \"webapp.war\" of deployment \"audit.ear\""}}
12:01:09,520 INFO [org.jboss.as.server.deployment] (MSC service thread 1-2) JBAS015877: Stopped deployment common.jar in 116ms
12:01:09,895 INFO [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015877: Stopped deployment webapp.war in 491ms
12:01:09,942 INFO [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015877: Stopped deployment audit.ear in 532ms
12:01:09,942 INFO [org.jboss.as.controller] (DeploymentScanner-threads - 1) JBAS014774: Service status report
JBAS014777: Services which failed to start: service jboss.deployment.subunit."audit.ear"."webapp.war".POST_MODULE: org.jboss.
msc.service.StartException in service jboss.deployment.subunit."audit.ear"."webapp.war".POST_MODULE: Failed to process phase POST_MO
DULE of subdeployment "webapp.war" of deployment "audit.ear"
12:01:09,958 ERROR [org.jboss.as.server.deployment.scanner] (DeploymentScanner-threads - 2) {"JBAS014653: Composite operation failed
and was rolled back. Steps that failed:" => {"Operation step-2" => {"JBAS014671: Failed services" => {"jboss.deployment.subunit.\"a
udit.ear\".\"webapp.war\".POST_MODULE" => "org.jboss.msc.service.StartException in service jboss.deployment.subunit.\"audit.ear\".\"
webapp.war\".POST_MODULE: Failed to process phase POST_MODULE of subdeployment \"webapp.war\" of deployment \"audit.ear\""}}}}
--------------------------------------
Here's what I have:
*web.xml*
<web-app version="2.4"
xmlns=" http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee"
xmlns:xsi=" http://www.w3.org/2001/XMLSchema-instance http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=" http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee web-app_2_4.xsd">
...
<resource-ref>
<res-ref-name>sybaseDS</res-ref-name>
<res-type>javax.sql.sybaseDS</res-type>
<res-auth>Container</res-auth>
<res-sharing-scope>Shareable</res-sharing-scope>
</resource-ref>
</web-app>
*jboss-web.xml*
<jboss-web>
<resource-ref>
<res-ref-name>sybaseDS</res-ref-name>
<jndi-name>java:/sybaseDS</jndi-name>
</resource-ref>
</jboss-web>
*...\standalone\configuration\standalone.xml*
<subsystem xmlns="urn:jboss:domain:datasources:1.0">
...
<datasources>
<datasource jndi-name="java:jboss/datasources/SybaseDS" pool-name="SybaseDS" enabled="true">
<connection-url>jdbc:sybase:Tds:10.250.5.27:5000</connection-url>
<driver-class>com.sybase.jdbc4.jdbc.SybDriver</driver-class>
<driver>sybaseDriver</driver>
<security>
<user-name>sa</user-name>
<password>angels</password>
</security>
</datasource>
<drivers>
<driver name="sybaseDriver" module="com.sybaseDS.sybaseDriver"/>
</drivers>
</datasources>
...
</subsystem>
*...com\sybaseDS\sybase\main\module.xml*
<module xmlns="urn:jboss:module:1.1" name="com.sybaseDS.sybaseDriver">
<resources>
<resource-root path="jconn4.jar"/>
<!-- Insert resources here -->
</resources>
<dependencies>
<module name="javax.api"/>
</dependencies>
</module>
--------------------------------------------------------------
Reply to this message by going to Community
[https://community.jboss.org/message/731740#731740]
Start a new discussion in Beginner's Corner at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1&con...]
13 years, 11 months
[JBoss Tools] - Re: Unable to install in Eclipse Indigo Cocoa
by dabble-balancer
dabble-balancer [https://community.jboss.org/people/dabble-balancer] created the discussion
"Re: Unable to install in Eclipse Indigo Cocoa"
To view the discussion, visit: https://community.jboss.org/message/731975#731975
--------------------------------------------------------------
I am encountering a seemingly very similar issue when trying to install JBoss Tools 3.3 on Indigo 64-bit from the Marketplace. Here are the errors I get regardless of how many update sites are listed in Eclipse Preferences (including 0 - I removed them all).
Any suggestions? Thank you for your time.
An error occurred while collecting items to be installed
session context was:(profile=epp.package.jee, phase=org.eclipse.equinox.internal.p2.engine.phases.Collect, operand=, action=).
No repository found containing: osgi.bundle,org.hibernate.eclipse,3.4.0.v20120307-2104-H60-Beta1
No repository found containing: osgi.bundle,org.hibernate.eclipse.console,3.4.0.v20120307-2104-H60-Beta1
No repository found containing: org.eclipse.update.feature,org.hibernate.eclipse.feature,3.4.0.v20120307-2104-H60-Beta1
No repository found containing: osgi.bundle,org.hibernate.eclipse.help,3.4.0.v20120307-2104-H60-Beta1
No repository found containing: osgi.bundle,org.hibernate.eclipse.jdt.apt.ui,3.4.0.v20120307-2104-H60-Beta1
No repository found containing: osgi.bundle,org.hibernate.eclipse.jdt.ui,3.4.0.v20120307-2104-H60-Beta1
No repository found containing: osgi.bundle,org.hibernate.eclipse.libs,3.4.0.v20120307-2104-H60-Beta1
No repository found containing: osgi.bundle,org.hibernate.eclipse.mapper,3.4.0.v20120307-2104-H60-Beta1
No repository found containing: osgi.bundle,org.jboss.ide.eclipse.archives.core,3.2.1.v20120302-0154-H54-Beta1
No repository found containing: org.eclipse.update.feature,org.jboss.ide.eclipse.archives.feature,3.2.1.v20120302-0154-H54-Beta1
No repository found containing: osgi.bundle,org.jboss.ide.eclipse.archives.jdt.integration,3.2.1.v20120302-0154-H54-Beta1
No repository found containing: osgi.bundle,org.jboss.ide.eclipse.archives.ui,3.2.1.v20120302-0154-H54-Beta1
No repository found containing: osgi.bundle,org.jboss.ide.eclipse.archives.webtools,2.3.0.v20120321-1339-H91-Beta2
No repository found containing: org.eclipse.update.feature,org.jboss.ide.eclipse.as.archives.integration.feature,2.3.0.v20120321-1339-H91-Beta2
No repository found containing: osgi.bundle,org.jboss.ide.eclipse.as.classpath.core,2.3.0.v20120321-1339-H91-Beta2
No repository found containing: osgi.bundle,org.jboss.ide.eclipse.as.classpath.ui,2.3.0.v20120321-1339-H91-Beta2
No repository found containing: osgi.bundle,org.jboss.ide.eclipse.as.core,2.3.0.v20120321-1339-H91-Beta2
No repository found containing: osgi.bundle,org.jboss.ide.eclipse.as.dmr,2.3.0.v20120321-1339-H91-Beta2
No repository found containing: org.eclipse.update.feature,org.jboss.ide.eclipse.as.feature,2.3.0.v20120321-1339-H91-Beta2
No repository found containing: osgi.bundle,org.jboss.ide.eclipse.as.jmx.integration,2.3.0.v20120321-1339-H91-Beta2
No repository found containing: org.eclipse.update.feature,org.jboss.ide.eclipse.as.jmx.integration.feature,2.3.0.v20120321-1339-H91-Beta2
No repository found containing: osgi.bundle,org.jboss.ide.eclipse.as.management.as71,2.3.0.v20120321-1339-H91-Beta2
No repository found containing: osgi.bundle,org.jboss.ide.eclipse.as.management.core,2.3.0.v20120321-1339-H91-Beta2
No repository found containing: osgi.bundle,org.jboss.ide.eclipse.as.rse.core,2.3.0.v20120321-1339-H91-Beta2
No repository found containing: osgi.bundle,org.jboss.ide.eclipse.as.rse.ui,2.3.0.v20120321-1339-H91-Beta2
No repository found containing: org.eclipse.update.feature,org.jboss.ide.eclipse.as.server.rse.integration.feature,2.3.0.v20120321-1339-H91-Beta2
No repository found containing: org.eclipse.update.feature,org.jboss.ide.eclipse.as.serverAdapter.wtp.feature,2.3.0.v20120321-1339-H91-Beta2
No repository found containing: osgi.bundle,org.jboss.ide.eclipse.as.ui,2.3.0.v20120321-1339-H91-Beta2
No repository found containing: osgi.bundle,org.jboss.ide.eclipse.as.ui.mbeans,2.3.0.v20120321-1339-H91-Beta2
No repository found containing: osgi.bundle,org.jboss.ide.eclipse.as.wtp.core,2.3.0.v20120321-1339-H91-Beta2
No repository found containing: osgi.bundle,org.jboss.ide.eclipse.as.wtp.ui,2.3.0.v20120321-1339-H91-Beta2
No repository found containing: osgi.bundle,org.jboss.ide.eclipse.freemarker,1.2.0.v20120302-0152-H55-Beta1
No repository found containing: org.eclipse.update.feature,org.jboss.ide.eclipse.freemarker.feature,1.2.0.v20120302-0152-H55-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.cdi.core,1.2.0.v20120302-0255-H54-Beta1
No repository found containing: org.eclipse.update.feature,org.jboss.tools.cdi.feature,1.2.0.v20120302-0255-H54-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.cdi.seam.config.core,1.2.0.v20120302-0255-H54-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.cdi.seam.config.ui,1.2.0.v20120302-0255-H54-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.cdi.seam.core,1.2.0.v20120302-0255-H54-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.cdi.seam.faces.core,1.2.0.v20120302-0255-H54-Beta1
No repository found containing: org.eclipse.update.feature,org.jboss.tools.cdi.seam.feature,1.2.0.v20120302-0255-H54-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.cdi.seam.solder.core,1.2.0.v20120302-0255-H54-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.cdi.seam.text.ext,1.2.0.v20120302-0255-H54-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.cdi.text.ext,1.2.0.v20120302-0255-H54-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.cdi.ui,1.2.0.v20120302-0255-H54-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.cdi.xml,1.2.0.v20120302-0255-H54-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.cdi.xml.ui,1.2.0.v20120302-0255-H54-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.central,1.0.0.v20120307-1926-H67-Beta1
No repository found containing: org.eclipse.update.feature,org.jboss.tools.central.feature,1.0.0.v20120307-1926-H67-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.common,3.3.0.v20120302-0132-H47-Beta1
No repository found containing: org.eclipse.update.feature,org.jboss.tools.common.core.feature,3.3.0.v20120302-0132-H47-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.common.el.core,3.3.0.v20120302-0132-H47-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.common.el.ui,3.3.0.v20120302-0132-H47-Beta1
No repository found containing: org.eclipse.update.feature,org.jboss.tools.common.feature,3.3.0.v20120302-0132-H47-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.common.gef,3.3.0.v20120302-0132-H47-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.common.jdt,3.3.0.v20120302-0132-H47-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.common.jdt.debug,3.3.0.v20120302-0132-H47-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.common.jdt.debug.ui,3.3.0.v20120302-0132-H47-Beta1
No repository found containing: org.eclipse.update.feature,org.jboss.tools.common.jdt.feature,3.3.0.v20120302-0132-H47-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.common.jdt.ui,3.3.0.v20120302-0132-H47-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.common.model,3.3.0.v20120302-0132-H47-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.common.model.ui,3.3.0.v20120302-0132-H47-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.common.model.ui.capabilities,3.3.0.v20120302-0132-H47-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.common.mylyn,3.3.0.v20120302-0132-H47-Beta1
No repository found containing: org.eclipse.update.feature,org.jboss.tools.common.mylyn.feature,3.3.0.v20120302-0132-H47-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.common.projecttemplates,3.3.0.v20120302-0132-H47-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.common.resref.core,3.3.0.v20120302-0132-H47-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.common.resref.ui,3.3.0.v20120302-0132-H47-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.common.text.ext,3.3.0.v20120302-0132-H47-Beta1
No repository found containing: org.eclipse.update.feature,org.jboss.tools.common.text.ext.feature,3.3.0.v20120302-0132-H47-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.common.text.xml,3.3.0.v20120302-0132-H47-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.common.ui,3.3.0.v20120302-0132-H47-Beta1
No repository found containing: org.eclipse.update.feature,org.jboss.tools.common.ui.feature,3.3.0.v20120302-0132-H47-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.common.validation,3.3.0.v20120302-0132-H47-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.common.verification,3.3.0.v20120302-0132-H47-Beta1
No repository found containing: org.eclipse.update.feature,org.jboss.tools.common.verification.feature,3.3.0.v20120302-0132-H47-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.common.verification.ui,3.3.0.v20120302-0132-H47-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.community.project.examples,1.2.1.v20120320-2046-H78-Beta2
No repository found containing: org.eclipse.update.feature,org.jboss.tools.community.project.examples.feature,1.2.1.v20120320-2046-H78-Beta2
No repository found containing: osgi.bundle,org.jboss.tools.forge.core,1.0.0.v20120328-1255-H60-Beta2
No repository found containing: org.eclipse.update.feature,org.jboss.tools.forge.feature,1.0.0.v20120328-1255-H60-Beta2
No repository found containing: osgi.bundle,org.jboss.tools.forge.runtime,1.0.0.v20120328-1255-H60-Beta2
No repository found containing: osgi.bundle,org.jboss.tools.forge.runtime.ext,1.0.0.v20120328-1255-H60-Beta2
No repository found containing: osgi.bundle,org.jboss.tools.forge.ui,1.0.0.v20120328-1255-H60-Beta2
No repository found containing: osgi.bundle,org.jboss.tools.hibernate.jpt.core,3.4.0.v20120307-2104-H60-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.hibernate.jpt.ui,3.4.0.v20120307-2104-H60-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.hibernate.ui,3.4.0.v20120307-2104-H60-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.hibernate.xml,3.4.0.v20120307-2104-H60-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.hibernate.xml.ui,3.4.0.v20120307-2104-H60-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.hibernate3_5,3.4.0.v20120307-2104-H60-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.hibernate3_6,3.4.0.v20120307-2104-H60-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.hibernate4_0,3.4.0.v20120307-2104-H60-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.jmx.core,1.2.0.v20120302-0157-H43-Beta1
No repository found containing: org.eclipse.update.feature,org.jboss.tools.jmx.feature,1.2.0.v20120302-0157-H43-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.jmx.ui,1.2.0.v20120302-0157-H43-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.jsf,3.3.0.v20120302-0331-H69-Beta1
No repository found containing: org.eclipse.update.feature,org.jboss.tools.jsf.feature,3.3.0.v20120302-0331-H69-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.jsf.text.ext,3.3.0.v20120302-0331-H69-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.jsf.text.ext.facelets,3.3.0.v20120302-0331-H69-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.jsf.text.ext.richfaces,3.3.0.v20120302-0331-H69-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.jsf.ui,3.3.0.v20120302-0331-H69-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.jsf.verification,3.3.0.v20120302-0331-H69-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.jsf.vpe.ajax4jsf,3.3.0.v20120302-0331-H69-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.jsf.vpe.facelets,3.3.0.v20120302-0331-H69-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.jsf.vpe.jbpm,3.3.0.v20120302-0331-H69-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.jsf.vpe.jsf,3.3.0.v20120302-0331-H69-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.jsf.vpe.jstl,3.3.0.v20120302-0331-H69-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.jsf.vpe.myfaces,3.3.0.v20120302-0331-H69-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.jsf.vpe.richfaces,3.3.0.v20120302-0331-H69-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.jsf.vpe.seam,3.3.0.v20120302-0331-H69-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.jst.css,3.3.0.v20120302-0221-H55-Beta1
No repository found containing: org.eclipse.update.feature,org.jboss.tools.jst.feature,3.3.0.v20120302-0221-H55-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.jst.firstrun,3.3.0.v20120302-0221-H55-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.jst.jsp,3.3.0.v20120302-0221-H55-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.jst.text.ext,3.3.0.v20120302-0221-H55-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.jst.web,3.3.0.v20120302-0221-H55-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.jst.web.kb,3.3.0.v20120302-0221-H55-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.jst.web.tiles,3.3.0.v20120302-0221-H55-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.jst.web.tiles.ui,3.3.0.v20120302-0221-H55-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.jst.web.ui,3.3.0.v20120302-0221-H55-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.jst.web.verification,3.3.0.v20120302-0221-H55-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.maven.cdi,1.3.0.v20120327-1922-H83-Beta2
No repository found containing: org.eclipse.update.feature,org.jboss.tools.maven.cdi.feature,1.3.0.v20120327-1922-H83-Beta2
No repository found containing: osgi.bundle,org.jboss.tools.maven.core,1.3.0.v20120327-1922-H83-Beta2
No repository found containing: org.eclipse.update.feature,org.jboss.tools.maven.feature,1.3.0.v20120327-1922-H83-Beta2
No repository found containing: osgi.bundle,org.jboss.tools.maven.hibernate,1.3.0.v20120327-1922-H83-Beta2
No repository found containing: org.eclipse.update.feature,org.jboss.tools.maven.hibernate.feature,1.3.0.v20120327-1922-H83-Beta2
No repository found containing: osgi.bundle,org.jboss.tools.maven.jaxrs,1.3.0.v20120327-1922-H83-Beta2
No repository found containing: org.eclipse.update.feature,org.jboss.tools.maven.jaxrs.feature,1.3.0.v20120327-1922-H83-Beta2
No repository found containing: osgi.bundle,org.jboss.tools.maven.jbosspackaging,1.3.0.v20120327-1922-H83-Beta2
No repository found containing: org.eclipse.update.feature,org.jboss.tools.maven.jbosspackaging.feature,1.3.0.v20120327-1922-H83-Beta2
No repository found containing: osgi.bundle,org.jboss.tools.maven.jpa,1.3.0.v20120327-1922-H83-Beta2
No repository found containing: org.eclipse.update.feature,org.jboss.tools.maven.jpa.feature,1.3.0.v20120327-1922-H83-Beta2
No repository found containing: osgi.bundle,org.jboss.tools.maven.jsf,1.3.0.v20120327-1922-H83-Beta2
No repository found containing: org.eclipse.update.feature,org.jboss.tools.maven.jsf.feature,1.3.0.v20120327-1922-H83-Beta2
No repository found containing: osgi.bundle,org.jboss.tools.maven.portlet,1.3.0.v20120327-1922-H83-Beta2
No repository found containing: org.eclipse.update.feature,org.jboss.tools.maven.portlet.feature,1.3.0.v20120327-1922-H83-Beta2
No repository found containing: osgi.bundle,org.jboss.tools.maven.profiles.core,1.3.0.v20120327-1922-H83-Beta2
No repository found containing: org.eclipse.update.feature,org.jboss.tools.maven.profiles.feature,1.3.0.v20120327-1922-H83-Beta2
No repository found containing: osgi.bundle,org.jboss.tools.maven.profiles.ui,1.3.0.v20120327-1922-H83-Beta2
No repository found containing: osgi.bundle,org.jboss.tools.maven.project.examples,1.3.0.v20120327-1922-H83-Beta2
No repository found containing: org.eclipse.update.feature,org.jboss.tools.maven.project.examples.feature,1.3.0.v20120327-1922-H83-Beta2
No repository found containing: osgi.bundle,org.jboss.tools.maven.seam,1.3.0.v20120327-1922-H83-Beta2
No repository found containing: org.eclipse.update.feature,org.jboss.tools.maven.seam.feature,1.3.0.v20120327-1922-H83-Beta2
No repository found containing: osgi.bundle,org.jboss.tools.maven.ui,1.3.0.v20120327-1922-H83-Beta2
No repository found containing: osgi.bundle,org.jboss.tools.openshift.egit.core,2.3.0.v20120322-1632-H66-Beta2
No repository found containing: org.eclipse.update.feature,org.jboss.tools.openshift.egit.integration.feature,2.3.0.v20120322-1632-H66-Beta2
No repository found containing: osgi.bundle,org.jboss.tools.openshift.egit.ui,2.3.0.v20120322-1632-H66-Beta2
No repository found containing: osgi.bundle,org.jboss.tools.openshift.express.client,2.3.0.v20120322-1632-H66-Beta2
No repository found containing: org.eclipse.update.feature,org.jboss.tools.openshift.express.feature,2.3.0.v20120322-1632-H66-Beta2
No repository found containing: osgi.bundle,org.jboss.tools.openshift.express.ui,2.3.0.v20120322-1632-H66-Beta2
No repository found containing: osgi.bundle,org.jboss.tools.portlet.core,1.2.0.v20120302-2132-H56-Beta1
No repository found containing: org.eclipse.update.feature,org.jboss.tools.portlet.feature,1.2.0.v20120302-2132-H56-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.portlet.ui,1.2.0.v20120302-2132-H56-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.project.examples,1.2.1.v20120320-2046-H78-Beta2
No repository found containing: osgi.bundle,org.jboss.tools.project.examples.cheatsheet,1.2.1.v20120320-2046-H78-Beta2
No repository found containing: org.eclipse.update.feature,org.jboss.tools.project.examples.feature,1.2.1.v20120320-2046-H78-Beta2
No repository found containing: org.eclipse.update.feature,org.jboss.tools.richfaces.feature,3.3.0.v20120302-0331-H69-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.runtime.as.detector,1.3.0.v20120307-2045-H73-Beta1
No repository found containing: org.eclipse.update.feature,org.jboss.tools.runtime.as.detector.feature,1.3.0.v20120307-2045-H73-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.runtime.core,1.3.0.v20120307-2045-H73-Beta1
No repository found containing: org.eclipse.update.feature,org.jboss.tools.runtime.core.feature,1.3.0.v20120307-2045-H73-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.runtime.seam.detector,1.3.0.v20120307-2045-H73-Beta1
No repository found containing: org.eclipse.update.feature,org.jboss.tools.runtime.seam.detector.feature,1.3.0.v20120307-2045-H73-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.runtime.ui,1.3.0.v20120307-2045-H73-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.seam.core,3.3.0.v20120302-2019-H81-Beta1
No repository found containing: org.eclipse.update.feature,org.jboss.tools.seam.feature,3.3.0.v20120302-2019-H81-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.seam.pages.xml,3.3.0.v20120302-2019-H81-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.seam.text.ext,3.3.0.v20120302-2019-H81-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.seam.ui,3.3.0.v20120302-2019-H81-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.seam.ui.pages,3.3.0.v20120302-2019-H81-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.seam.xml,3.3.0.v20120302-2019-H81-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.seam.xml.ui,3.3.0.v20120302-2019-H81-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.usage,1.1.0.v20120302-0148-H44-Beta1
No repository found containing: org.eclipse.update.feature,org.jboss.tools.usage.feature,1.1.0.v20120302-0148-H44-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.vpe,3.3.0.v20120302-0244-H56-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.vpe.browsersim,3.3.0.v20120322-2257-H61-Beta2
No repository found containing: osgi.bundle,org.jboss.tools.vpe.browsersim.browser,3.3.0.v20120322-2257-H61-Beta2
No repository found containing: osgi.bundle,org.jboss.tools.vpe.browsersim.eclipse,3.3.0.v20120322-2257-H61-Beta2
No repository found containing: org.eclipse.update.feature,org.jboss.tools.vpe.browsersim.feature,3.3.0.v20120322-2257-H61-Beta2
No repository found containing: osgi.bundle,org.jboss.tools.vpe.docbook,3.3.0.v20120302-0244-H56-Beta1
No repository found containing: org.eclipse.update.feature,org.jboss.tools.vpe.feature,3.3.0.v20120302-0244-H56-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.vpe.html,3.3.0.v20120302-0244-H56-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.vpe.jsp,3.3.0.v20120302-0244-H56-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.vpe.resref,3.3.0.v20120302-0244-H56-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.vpe.spring,3.3.0.v20120302-0244-H56-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.vpe.ui.palette,3.3.0.v20120302-0244-H56-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.vpe.xulrunner,3.3.0.v20120302-0244-H56-Beta1
No repository found containing: osgi.bundle,org.jboss.tools.ws.core,1.2.2.v20120323-1522-H83-Beta2
No repository found containing: osgi.bundle,org.jboss.tools.ws.creation.core,1.2.2.v20120323-1522-H83-Beta2
No repository found containing: osgi.bundle,org.jboss.tools.ws.creation.ui,1.2.2.v20120323-1522-H83-Beta2
No repository found containing: org.eclipse.update.feature,org.jboss.tools.ws.feature,1.2.2.v20120323-1522-H83-Beta2
No repository found containing: osgi.bundle,org.jboss.tools.ws.jaxrs.core,1.2.2.v20120323-1522-H83-Beta2
No repository found containing: org.eclipse.update.feature,org.jboss.tools.ws.jaxrs.feature,1.2.2.v20120323-1522-H83-Beta2
No repository found containing: osgi.bundle,org.jboss.tools.ws.jaxrs.ui,1.2.2.v20120323-1522-H83-Beta2
No repository found containing: osgi.bundle,org.jboss.tools.ws.ui,1.2.2.v20120323-1522-H83-Beta2
No repository found containing: osgi.bundle,org.jboss.tools.xulrunner.initializer,3.3.0.v20120322-2257-H61-Beta2
--------------------------------------------------------------
Reply to this message by going to Community
[https://community.jboss.org/message/731975#731975]
Start a new discussion in JBoss Tools at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1&con...]
13 years, 11 months
[jBPM] - Where is org.jbpm.integration.console.ManagementFactoryImpl?
by Márton Steierlein
Márton Steierlein [https://community.jboss.org/people/stmarci] created the discussion
"Where is org.jbpm.integration.console.ManagementFactoryImpl?"
To view the discussion, visit: https://community.jboss.org/message/731921#731921
--------------------------------------------------------------
Hi there!
I would like to know which war/jar can I find the implementation of ManagamentFactory. I would like to find a way to implement a proper user management for human tasks in jBPM 5.2 because at the moment the default "UserManagement" class has very unfortunate user and group handling:
import java.util.ArrayList;
import java.util.List;
public class UserManagement implements org.jboss.bpm.console.server.integration.UserManagement {
public List<String> getActorsForGroup(String groupName) {
// TODO: fixme
List<String> result = new ArrayList<String>();
result.add("admin");
return result;
}
public List<String> getGroupsForActor(String actorId) {
// TODO: fixme
List<String> result = new ArrayList<String>();
result.add("admins");
return result;
}
}
If that is possible I would like to replace this implementation with my own and create a new ManagementFactory, but I don't see where this default implementation resides.
Any help would be greatly appreciated.
Márton
--------------------------------------------------------------
Reply to this message by going to Community
[https://community.jboss.org/message/731921#731921]
Start a new discussion in jBPM at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1&con...]
13 years, 11 months