[Design of POJO Server] - ObjectModelFactories parsing empty xml elements
by anil.saldhana@jboss.com
What should be the exact behavior of the ObjectModelFactory be for parsing the following security-domain element.
| <container-configurations>
| <!-- A stateless session config that is not secured -->
| <container-configuration extends="Standard Stateless SessionBean">
| <container-name>Unsecure Stateless SessionBean</container-name>
| <security-domain/>
| </container-configuration>
| </container-configurations>
|
Currently the JBossEjbObjectFactory has a setValue method on the ConfigurationMetaData, but I see that a setValue call is not happening for the security-domain tag.
A similar concept exists for web.xml "auth-constraint" empty tag, but the way the WebMetaDataObjectFactory handles this is via a new AuthConstraint() object which can be either populated with 1 or more roles.
Is there a need for a SecurityDomain object to handle this case?
Note that the following setting works fine:
| <!-- A stateless session config that uses the spec-test-domain -->
| <container-configuration extends="Standard Stateless SessionBean">
| <container-name>Domain Stateless SessionBean</container-name>
| <security-domain>java:/jaas/spec-test-domain</security-domain>
| </container-configuration>
|
My question in general is how should the following xml element C be handled by an ObjectModelFactory?
| <A name="xyz">
| <B>Hello Again</B>
| <C/>
| </A>
|
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3997803#3997803
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3997803
18 years, 3 months
[Design of JBoss jBPM] - Re: releasing 3.2.Beta1
by david.lloyd@jboss.com
"jeffdelong" wrote : anonymous wrote : Also one question I have is this: when a process starts that does not have a task on the start state (and therefore, I presume, no reason to wait), should the token automatically proceed out of the start state? Right now the user must signal the token manually in this case.
|
| In this situation the client should signal the token via the api, i.e, the web app should signal the token.
In this case I have to establish the criteria for signalling the token. The start node might have multiple transitions, so I presume that I'd only signal if there is a default leaving transition (node.getDefaultLeavingTransition() != null). The main thing that concerns me though is, how do we know that the start token isn't intended to be a wait state, for whatever reason. In a normal Node, we rely on the execute() method to determine whether a transition is immediately taken or the Node is a wait state. However, since StartState's execute() is an illegal operation (in other words, the Token is just pointed at the Node without calling execute()), you never "arrive" in the start state; therefore the start state node never has an opportunity to establish its intention.
My personal opinion is that the start state should be executed like any other node, but of course I'm probably missing critical background on the issue. :-)
I think the best I can do with what we've got now, is something like this: if (no start task instance && initial node has a default leaving transition) { signal the token along the default transition }
Make sense?
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3997776#3997776
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3997776
18 years, 3 months
[Design of JBoss jBPM] - Re: releasing 3.2.Beta1
by david.lloyd@jboss.com
Ok, with that fix I've done the following:
- The "new tasks" list is now a list of created tasks, not assigned tasks. This should fix the problem that no tasks are being presented on the screen when a process is started having a start task and no swimlanes or assignment magic.
- Fixed another NPE that happens on task instance view if there is no forms.xml.
- Added a "signal" button to the token list to allow a token to be moved along transitions.
I did run across a new problem. Some of the nodes that I create in the GPD have a width and height of -1 in gpd.xml, making the process diagram fail to work properly. Also, I have one more screen to make tonight that links to a new process instance in the case where a process definition is started which contains an initial wait state, but no tasks (right now there's no direct link to take you to the newly created process instance, as I realized in today's testing session).
Also one question I have is this: when a process starts that does not have a task on the start state (and therefore, I presume, no reason to wait), should the token automatically proceed out of the start state? Right now the user must signal the token manually in this case.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3997772#3997772
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3997772
18 years, 3 months
[Design of JBoss Labs] - Re: Problems compiling JBoss Labs
by phillips4jc
After building successfully, I get an OutOfMemoryError Here is the output
[root@B-0359 bin]# ./run.sh -c all
=========================================================================
JBoss Bootstrap Environment
JBOSS_HOME: /usr/local/portal
JAVA: /usr/lib/jdk1.5.0_09//bin/java
JAVA_OPTS: -Djava.security.auth.login.config=../conf/jaas.conf -javaagent:pluggable-instrumentor.jar -Dprogram.name=run.sh
CLASSPATH: /usr/local/portal/bin/run.jar:/usr/lib/jdk1.5.0_09//lib/tools.jar
=========================================================================
16:37:32,077 INFO [Server] Starting JBoss (MX MicroKernel)...
16:37:32,079 INFO [Server] Release ID: JBoss [Zion] 4.0.4.GA (build: CVSTag=JBoss_4_0_4_GA date=200605151000)
16:37:32,081 INFO [Server] Home Dir: /usr/local/portal
16:37:32,081 INFO [Server] Home URL: file:/usr/local/portal/
16:37:32,082 INFO [Server] Patch URL: null
16:37:32,082 INFO [Server] Server Name: all
16:37:32,083 INFO [Server] Server Home Dir: /usr/local/portal/server/all
16:37:32,083 INFO [Server] Server Home URL: file:/usr/local/portal/server/all/
16:37:32,083 INFO [Server] Server Log Dir: /usr/local/portal/server/all/log
16:37:32,083 INFO [Server] Server Temp Dir: /usr/local/portal/server/all/tmp
16:37:32,084 INFO [Server] Root Deployment Filename: jboss-service.xml
16:37:32,674 INFO [ServerInfo] Java version: 1.5.0_09,Sun Microsystems Inc.
16:37:32,675 INFO [ServerInfo] Java VM: Java HotSpot(TM) Client VM 1.5.0_09-b01,Sun Microsystems Inc.
16:37:32,675 INFO [ServerInfo] OS-System: Linux 2.6.9-42.0.3.EL,i386
16:37:33,502 INFO [Server] Core system initialized
16:37:37,033 INFO [WebService] Using RMI server codebase: http://B-0359:8083/
16:37:37,071 INFO [Log4jService$URLWatchTimerTask] Configuring from URL: resource:log4j.xml
16:37:37,389 INFO [NamingService] JNDI bootstrap JNP=/0.0.0.0:1099, RMI=/0.0.0.0:1098, backlog=50, no client SocketFactory, Server SocketFactory=class org.jboss.net.sockets.DefaultSocketFactory
16:37:39,755 INFO [SocketServerInvoker] Invoker started for locator: InvokerLocator [socket://127.0.0.1:3873/]
16:37:41,552 INFO [AspectDeployer] Deployed AOP: file:/usr/local/portal/server/all/deploy/shotoku-aop.aop
16:37:41,759 INFO [AspectDeployer] Deployed AOP: file:/usr/local/portal/server/all/deploy/ejb3-interceptors-aop.xml
16:37:46,828 INFO [AspectDeployer] Deployed AOP: file:/usr/local/portal/server/all/deploy/jboss-portal.sar/portal-aop.xml
16:37:50,854 ERROR [STDERR] [warn] AOP Instrumentor failed to transform org.jboss.forge.common.projects.Projects
16:37:50,855 ERROR [STDERR] org.jboss.aop.instrument.TransformationException: Failed to aspectize class org.jboss.forge.common.projects.Projects. Could not find class it references org.jboss.forge.common.projects.ProjectDescriptor It may not be in your classpath and you may not be getting field and constructor weaving for this class.
16:37:50,856 ERROR [STDERR] at org.jboss.aop.instrument.Instrumentor.convertReferences(Instrumentor.java:619)
16:37:50,856 ERROR [STDERR] at org.jboss.aop.instrument.Instrumentor.transform(Instrumentor.java:673)
16:37:50,856 ERROR [STDERR] at org.jboss.aop.AspectManager.translate(AspectManager.java:970)
16:37:50,856 ERROR [STDERR] at org.jboss.aop.AspectManager.transform(AspectManager.java:882)
16:37:50,856 ERROR [STDERR] at org.jboss.aop.standalone.AOPTransformer.aspectTransform(AOPTransformer.java:88)
16:37:50,856 ERROR [STDERR] at org.jboss.aop.standalone.AOPTransformer.transform(AOPTransformer.java:75)
16:37:50,857 ERROR [STDERR] at sun.instrument.TransformerManager.transform(TransformerManager.java:122)
16:37:50,857 ERROR [STDERR] at sun.instrument.InstrumentationImpl.transform(InstrumentationImpl.java:155)
16:37:50,857 ERROR [STDERR] at java.lang.ClassLoader.defineClass1(Native Method)
16:37:50,857 ERROR [STDERR] at java.lang.ClassLoader.defineClass(ClassLoader.java:620)
16:37:50,857 ERROR [STDERR] at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:124)
16:37:50,857 ERROR [STDERR] at java.net.URLClassLoader.defineClass(URLClassLoader.java:260)
16:37:50,857 ERROR [STDERR] at java.net.URLClassLoader.access$100(URLClassLoader.java:56)
16:37:50,857 ERROR [STDERR] at java.net.URLClassLoader$1.run(URLClassLoader.java:195)
16:37:50,858 ERROR [STDERR] at java.security.AccessController.doPrivileged(Native Method)
16:37:50,858 ERROR [STDERR] at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
16:37:50,858 ERROR [STDERR] at org.jboss.mx.loading.RepositoryClassLoader.findClassLocally(RepositoryClassLoader.java:672)
16:37:50,858 ERROR [STDERR] at org.jboss.mx.loading.RepositoryClassLoader.findClass(RepositoryClassLoader.java:652)
16:37:50,858 ERROR [STDERR] at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
16:37:50,858 ERROR [STDERR] at org.jboss.mx.loading.RepositoryClassLoader.loadClassLocally(RepositoryClassLoader.java:190)
16:37:50,858 ERROR [STDERR] at org.jboss.mx.loading.ClassLoadingTask$ThreadTask.run(ClassLoadingTask.java:131)
16:37:50,858 ERROR [STDERR] at org.jboss.mx.loading.LoadMgr3.nextTask(LoadMgr3.java:399)
16:37:50,859 ERROR [STDERR] at org.jboss.mx.loading.RepositoryClassLoader.loadClassImpl(RepositoryClassLoader.java:517)
16:37:50,859 ERROR [STDERR] at org.jboss.mx.loading.RepositoryClassLoader.loadClass(RepositoryClassLoader.java:405)
16:37:50,859 ERROR [STDERR] at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
16:37:50,859 ERROR [STDERR] at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
16:37:50,859 ERROR [STDERR] at java.lang.Class.getDeclaredMethods0(Native Method)
16:37:50,859 ERROR [STDERR] at java.lang.Class.privateGetDeclaredMethods(Class.java:2395)
16:37:50,860 ERROR [STDERR] at java.lang.Class.getDeclaredMethods(Class.java:1763)
16:37:50,860 ERROR [STDERR] at org.jboss.portal.common.mx.JavaBeanModelMBeanBuilder.(JavaBeanModelMBeanBuilder.java:89)
16:37:50,860 ERROR [STDERR] at org.jboss.portal.common.mx.JavaBeanModelMBeanBuilder.build(JavaBeanModelMBeanBuilder.java:287)
16:37:50,860 ERROR [STDERR] at org.jboss.portal.common.system.JBossServiceModelMBean.(JBossServiceModelMBean.java:76)
16:37:50,860 ERROR [STDERR] at sun.reflect.GeneratedConstructorAccessor11.newInstance(Unknown Source)
16:37:50,860 ERROR [STDERR] at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
16:37:50,860 ERROR [STDERR] at java.lang.reflect.Constructor.newInstance(Constructor.java:494)
16:37:50,861 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.instantiate(MBeanServerImpl.java:1233)
16:37:50,861 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.instantiate(MBeanServerImpl.java:286)
16:37:50,861 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.createMBean(MBeanServerImpl.java:344)
16:37:50,861 ERROR [STDERR] at org.jboss.system.ServiceCreator.install(ServiceCreator.java:181)
16:37:50,861 ERROR [STDERR] at org.jboss.system.ServiceConfigurator.internalInstall(ServiceConfigurator.java:449)
16:37:50,861 ERROR [STDERR] at org.jboss.system.ServiceConfigurator.install(ServiceConfigurator.java:171)
16:37:50,861 ERROR [STDERR] at org.jboss.system.ServiceController.install(ServiceController.java:226)
16:37:50,861 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
16:37:50,861 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
16:37:50,862 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
16:37:50,862 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585)
16:37:50,862 ERROR [STDERR] at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
16:37:50,863 ERROR [STDERR] at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
16:37:50,863 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
16:37:50,863 ERROR [STDERR] at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
16:37:50,863 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
16:37:50,863 ERROR [STDERR] at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
16:37:50,863 ERROR [STDERR] at $Proxy4.install(Unknown Source)
16:37:50,864 ERROR [STDERR] at org.jboss.deployment.SARDeployer.create(SARDeployer.java:249)
16:37:50,865 ERROR [STDERR] at org.jboss.deployment.MainDeployer.create(MainDeployer.java:953)
16:37:50,865 ERROR [STDERR] at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:807)
16:37:50,865 ERROR [STDERR] at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:771)
16:37:50,865 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
16:37:50,865 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
16:37:50,865 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
16:37:50,866 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585)
16:37:50,866 ERROR [STDERR] at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
16:37:50,866 ERROR [STDERR] at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
16:37:50,866 ERROR [STDERR] at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
16:37:50,866 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
16:37:50,866 ERROR [STDERR] at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
16:37:50,866 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
16:37:50,866 ERROR [STDERR] at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
16:37:50,866 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
16:37:50,867 ERROR [STDERR] at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
16:37:50,867 ERROR [STDERR] at $Proxy8.deploy(Unknown Source)
16:37:50,867 ERROR [STDERR] at org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:421)
16:37:50,867 ERROR [STDERR] at org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:634)
16:37:50,867 ERROR [STDERR] at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:263)
16:37:50,867 ERROR [STDERR] at org.jboss.deployment.scanner.AbstractDeploymentScanner.startService(AbstractDeploymentScanner.java:336)
16:37:50,867 ERROR [STDERR] at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
16:37:50,868 ERROR [STDERR] at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
16:37:50,868 ERROR [STDERR] at sun.reflect.GeneratedMethodAccessor8.invoke(Unknown Source)
16:37:50,868 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
16:37:50,869 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585)
16:37:50,869 ERROR [STDERR] at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
16:37:50,869 ERROR [STDERR] at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
16:37:50,869 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
16:37:50,869 ERROR [STDERR] at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
16:37:50,869 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
16:37:50,869 ERROR [STDERR] at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978)
16:37:50,870 ERROR [STDERR] at $Proxy0.start(Unknown Source)
16:37:50,870 ERROR [STDERR] at org.jboss.system.ServiceController.start(ServiceController.java:417)
16:37:50,870 ERROR [STDERR] at sun.reflect.GeneratedMethodAccessor9.invoke(Unknown Source)
16:37:50,870 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
16:37:50,870 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585)
16:37:50,870 ERROR [STDERR] at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
16:37:50,871 ERROR [STDERR] at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
16:37:50,871 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
16:37:50,871 ERROR [STDERR] at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
16:37:50,871 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
16:37:50,871 ERROR [STDERR] at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
16:37:50,871 ERROR [STDERR] at $Proxy4.start(Unknown Source)
16:37:50,871 ERROR [STDERR] at org.jboss.deployment.SARDeployer.start(SARDeployer.java:302)
16:37:50,871 ERROR [STDERR] at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1007)
16:37:50,872 ERROR [STDERR] at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:808)
16:37:50,872 ERROR [STDERR] at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:771)
16:37:50,872 ERROR [STDERR] at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:755)
16:37:50,872 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
16:37:50,872 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
16:37:50,872 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
16:37:50,872 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585)
16:37:50,872 ERROR [STDERR] at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
16:37:50,872 ERROR [STDERR] at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
16:37:50,873 ERROR [STDERR] at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
16:37:50,873 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
16:37:50,873 ERROR [STDERR] at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
16:37:50,873 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
16:37:50,873 ERROR [STDERR] at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
16:37:50,873 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
16:37:50,873 ERROR [STDERR] at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
16:37:50,873 ERROR [STDERR] at $Proxy5.deploy(Unknown Source)
16:37:50,873 ERROR [STDERR] at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:482)
16:37:50,874 ERROR [STDERR] at org.jboss.system.server.ServerImpl.start(ServerImpl.java:362)
16:37:50,874 ERROR [STDERR] at org.jboss.Main.boot(Main.java:200)
16:37:50,874 ERROR [STDERR] at org.jboss.Main$1.run(Main.java:464)
16:37:50,874 ERROR [STDERR] at java.lang.Thread.run(Thread.java:595)
16:37:57,942 INFO [SubscriptionManager] Bound event dispatcher to java:/EventDispatcher
16:38:08,957 INFO [Ejb3Deployment] EJB3 deployment time took: 814
16:38:09,191 INFO [JmxKernelAbstraction] installing MBean: jboss.j2ee:jar=shotoku-base.ejb3,name=ShotokuServiceImpl,service=EJB3 with dependencies:
16:38:09,624 INFO [EJBContainer] STARTED EJB: org.jboss.shotoku.service.ShotokuServiceImpl ejbName: ShotokuServiceImpl
16:38:09,880 INFO [AdministratedService] Creating Shotoku service...
16:38:10,416 INFO [ContentManager] Added content manager: default, org.jboss.shotoku.svn.SvnContentManager
16:38:10,417 INFO [AdministratedService] ContentManager setup completed. Getting the default service timer interval...
16:38:10,417 INFO [AdministratedService] Shotoku service created.
16:38:10,421 INFO [AdministratedService] Starting Shotoku service...
16:38:10,421 INFO [AdministratedService] Starting main update thread...
16:38:10,430 INFO [AdministratedService] Starting update threads...
16:38:10,435 INFO [AdministratedService] Update thread count set to: 10.
16:38:10,436 INFO [AdministratedService] Reseting keys during update in cache items...
16:38:10,436 INFO [AdministratedService] Shotoku service started.
16:38:10,438 INFO [EJB3Deployer] Deployed: file:/usr/local/portal/server/all/deploy/shotoku.sar/shotoku-base.ejb3
16:38:11,996 INFO [SnmpAgentService] SNMP agent going active
16:38:12,334 INFO [AspectDeployer] Deployed AOP: file:/usr/local/portal/server/all/deploy/tc5-cluster.sar/tc5-cluster.aop
16:38:13,127 INFO [TreeCache] setting cluster properties from xml to: UDP(down_thread=false;enable_bundling=true;ip_ttl=2;loopback=false;max_bundle_size=64000;max_bundle_timeout=30;mcast_addr=230.1.2.7;mcast_port=45577;mcast_recv_buf_size=25000000;mcast_send_buf_size=640000;ucast_recv_buf_size=20000000;ucast_send_buf_size=640000;up_thread=false;use_incoming_packet_handler=true;use_outgoing_packet_handler=true):PING(down_thread=false;num_initial_members=3;timeout=2000;up_thread=false):MERGE2(down_thread=false;max_interval=100000;min_interval=20000;up_thread=false):FD(down_thread=false;max_tries=5;shun=true;timeout=2500;up_thread=false):VERIFY_SUSPECT(down_thread=false;timeout=1500;up_thread=false):pbcast.NAKACK(discard_delivered_msgs=true;down_thread=false;gc_lag=50;max_xmit_size=60000;retransmit_timeout=100,200,300,600,1200,2400,4800;up_thread=false;use_mcast_xmit=false):UNICAST(down_thread=false;timeout=300,600,1200,2400,3600;up_thread=false):pbcast.STABLE(desired_avg_gossip=50000;down_thread=false;max_bytes=2100000;stability_delay=1000;up_thread=false):pbcast.GMS(down_thread=false;join_retry_timeout=2000;join_timeout=3000;print_local_addr=true;shun=true;up_thread=false):FC(down_thread=false;max_credits=10000000;min_threshold=0.20;up_thread=false):FRAG2(down_thread=false;frag_size=60000;up_thread=false):pbcast.STATE_TRANSFER(down_thread=false;up_thread=false)
16:38:13,177 INFO [TreeCache] interceptor chain is:
class org.jboss.cache.interceptors.CallInterceptor
class org.jboss.cache.interceptors.PessimisticLockInterceptor
class org.jboss.cache.interceptors.UnlockInterceptor
class org.jboss.cache.interceptors.ReplicationInterceptor
16:38:13,178 INFO [TreeCache] cache mode is REPL_ASYNC
16:38:15,952 INFO [STDOUT]
-------------------------------------------------------
GMS: address is localhost:32845
-------------------------------------------------------
16:38:18,183 INFO [TreeCache] viewAccepted(): [localhost:32845|0] [localhost:32845]
16:38:18,215 INFO [TreeCache] my local address is localhost:32845
16:38:18,222 INFO [TreeCache] new cache is null (may be first member in cluster)
16:38:18,222 INFO [TreeCache] state could not be retrieved (must be first member in group)
16:38:18,222 INFO [TreeCache] Cache is started!!
16:38:18,684 INFO [Embedded] Catalina naming disabled
16:38:18,918 INFO [ClusterRuleSetFactory] Unable to find a cluster rule set in the classpath. Will load the default rule set.
16:38:18,921 INFO [ClusterRuleSetFactory] Unable to find a cluster rule set in the classpath. Will load the default rule set.
16:38:19,849 INFO [Http11BaseProtocol] Initializing Coyote HTTP/1.1 on http-0.0.0.0-8080
16:38:19,859 INFO [Catalina] Initialization processed in 938 ms
16:38:19,859 INFO [StandardService] Starting service jboss.web
16:38:19,871 INFO [StandardEngine] Starting Servlet Engine: Apache Tomcat/5.5.17
16:38:19,997 INFO [StandardHost] XML validation disabled
16:38:20,052 INFO [Catalina] Server startup in 193 ms
16:38:20,593 INFO [TomcatDeployer] deploy, ctxPath=/invoker, warUrl=.../deploy/httpha-invoker.sar/invoker.war/
16:38:21,379 INFO [WebappLoader] Dual registration of jndi stream handler: factory already defined
16:38:22,408 INFO [TomcatDeployer] deploy, ctxPath=/portal-cms, warUrl=.../deploy/jboss-portal.sar/portal-cms.war/
16:38:22,677 INFO [TomcatDeployer] deploy, ctxPath=/portal-core, warUrl=.../deploy/jboss-portal.sar/portal-core.war/
16:38:24,214 INFO [FacesConfigurator] Reading standard config org/apache/myfaces/resource/standard-faces-config.xml
16:38:24,442 INFO [FacesConfigurator] Reading config jar:file:/usr/local/portal/server/all/tmp/deploy/tmp62208jsf-facelets.jar!/META-INF/faces-config.xml
16:38:24,458 INFO [FacesConfigurator] Reading config jar:file:/usr/local/portal/server/all/tmp/deploy/tmp62226tomahawk.jar!/META-INF/faces-config.xml
16:38:24,556 INFO [FacesConfigurator] Reading config jar:file:/usr/local/portal/server/all/tmp/deploy/tmp62243tomahawk.jar!/META-INF/faces-config.xml
16:38:24,637 INFO [FacesConfigurator] Reading config /WEB-INF/faces-config.xml
16:38:25,096 ERROR [LocaleUtils] Locale name null or empty, ignoring
16:38:27,345 INFO [StartupServletContextListener] ServletContext '/usr/local/portal/server/all/./deploy/jboss-portal.sar/portal-core.war/' initialized.
16:38:27,586 INFO [TomcatDeployer] deploy, ctxPath=/portal, warUrl=.../deploy/jboss-portal.sar/portal-server.war/
16:38:28,149 INFO [TomcatDeployer] deploy, ctxPath=/jbossws, warUrl=.../tmp/deploy/tmp62257jbossws-exp.war/
16:38:28,453 INFO [TomcatDeployer] deploy, ctxPath=/juddi, warUrl=.../deploy/juddi-service.sar/juddiws.war/
16:38:28,635 INFO [RegistryServlet] Loading jUDDI configuration.
16:38:28,636 INFO [RegistryServlet] Resources loaded from: /WEB-INF/juddi.properties
16:38:28,637 INFO [RegistryServlet] Initializing jUDDI components.
16:38:31,150 INFO [Ejb3Deployment] EJB3 deployment time took: 107
16:38:31,221 INFO [JmxKernelAbstraction] installing MBean: jboss.j2ee:jar=forge-service.ejb3,name=ForgeService,service=EJB3 with dependencies:
16:38:31,221 INFO [JmxKernelAbstraction] shotoku:service=shotoku
16:38:31,279 INFO [EJBContainer] STARTED EJB: org.jboss.forge.service.ForgeService ejbName: ForgeService
16:38:31,326 INFO [AdministratedService] Creating Forge service...
16:38:32,620 INFO [ForgeService] Forge service created, with timer interval: 30000
16:38:32,621 INFO [AdministratedService] Starting Forge service...
16:38:32,622 INFO [AdministratedService] Forge service started.
16:38:32,622 INFO [EJB3Deployer] Deployed: file:/usr/local/portal/server/all/deploy/w-jboss-forge.sar/forge-service.ejb3
16:38:33,602 INFO [DefaultPartition] Initializing
16:38:33,764 INFO [STDOUT]
-------------------------------------------------------
GMS: address is localhost:32848 (additional data: 14 bytes)
-------------------------------------------------------
16:38:35,779 INFO [DefaultPartition] Number of cluster members: 1
16:38:35,779 INFO [DefaultPartition] Other members: 0
16:38:35,779 INFO [DefaultPartition] Fetching state (will wait for 30000 milliseconds):
16:38:35,779 INFO [DefaultPartition] New cluster view for partition DefaultPartition (id: 0, delta: 0) : [127.0.0.1:1099]
16:38:35,800 INFO [DefaultPartition] I am (127.0.0.1:1099) received membershipChanged event:
16:38:35,801 INFO [DefaultPartition] Dead members: 0 ([])
16:38:35,801 INFO [DefaultPartition] New Members : 0 ([])
16:38:35,801 INFO [DefaultPartition] All Members : 1 ([127.0.0.1:1099])
16:38:35,998 INFO [HANamingService] Started ha-jndi bootstrap jnpPort=1100, backlog=50, bindAddress=/0.0.0.0
16:38:36,017 INFO [DetachedHANamingService$AutomaticDiscovery] Listening on 0.0.0.0/0.0.0.0:1102, group=230.0.0.4, HA-JNDI address=127.0.0.1:1100
16:38:38,520 INFO [TomcatDeployer] deploy, ctxPath=/jbossmq-httpil, warUrl=.../deploy-hasingleton/jms/jbossmq-httpil.sar/jbossmq-httpil.war/
16:38:39,166 INFO [TreeCache] setting cluster properties from xml to: UDP(ip_mcast=true;ip_ttl=64;loopback=false;mcast_addr=228.1.2.3;mcast_port=45551;mcast_recv_buf_size=80000;mcast_send_buf_size=150000;ucast_recv_buf_size=80000;ucast_send_buf_size=150000):PING(down_thread=false;num_initial_members=3;timeout=2000;up_thread=false):MERGE2(max_interval=20000;min_interval=10000):FD(down_thread=true;shun=true;up_thread=true):VERIFY_SUSPECT(down_thread=false;timeout=1500;up_thread=false):pbcast.NAKACK(down_thread=false;gc_lag=50;max_xmit_size=8192;retransmit_timeout=600,1200,2400,4800;up_thread=false):UNICAST(down_thread=false;min_threshold=10;timeout=600,1200,2400;window_size=100):pbcast.STABLE(desired_avg_gossip=20000;down_thread=false;up_thread=false):FRAG(down_thread=false;frag_size=8192;up_thread=false):pbcast.GMS(join_retry_timeout=2000;join_timeout=5000;print_local_addr=true;shun=true):pbcast.STATE_TRANSFER(down_thread=false;up_thread=false)
16:38:39,244 INFO [TreeCache] setEvictionPolicyConfig(): [config: null]
16:38:39,262 WARN [TreeCache] No transaction manager lookup class has been defined. Transactions cannot be used
16:38:39,299 INFO [TreeCache] interceptor chain is:
class org.jboss.cache.interceptors.CallInterceptor
class org.jboss.cache.interceptors.PessimisticLockInterceptor
class org.jboss.cache.interceptors.CacheLoaderInterceptor
class org.jboss.cache.interceptors.UnlockInterceptor
class org.jboss.cache.interceptors.ReplicationInterceptor
class org.jboss.cache.interceptors.CacheStoreInterceptor
16:38:39,366 INFO [TreeCache] cache mode is REPL_SYNC
16:38:39,386 INFO [STDOUT]
-------------------------------------------------------
GMS: address is localhost:32851
-------------------------------------------------------
16:38:41,389 INFO [TreeCache] my local address is localhost:32851
16:38:41,389 INFO [TreeCache] state could not be retrieved (must be first member in group)
16:38:41,390 INFO [LRUPolicy] Starting eviction policy using the provider: org.jboss.ejb3.cache.tree.StatefulEvictionPolicy
16:38:41,390 INFO [LRUPolicy] Starting a eviction timer with wake up interval of (secs) 1
16:38:41,390 INFO [TreeCache] viewAccepted(): [localhost:32851|0] [localhost:32851]
16:38:41,390 INFO [TreeCache] new cache is null (may be first member in cluster)
16:38:41,391 INFO [TreeCache] Cache is started!!
16:38:41,488 INFO [TreeCache] setting cluster properties from xml to: UDP(ip_mcast=true;ip_ttl=2;loopback=false;mcast_addr=228.1.2.3;mcast_port=43333;mcast_recv_buf_size=80000;mcast_send_buf_size=150000;ucast_recv_buf_size=80000;ucast_send_buf_size=150000):PING(down_thread=false;num_initial_members=3;timeout=2000;up_thread=false):MERGE2(max_interval=20000;min_interval=10000):FD(down_thread=true;shun=true;up_thread=true):VERIFY_SUSPECT(down_thread=false;timeout=1500;up_thread=false):pbcast.NAKACK(down_thread=false;gc_lag=50;max_xmit_size=8192;retransmit_timeout=600,1200,2400,4800;up_thread=false):UNICAST(down_thread=false;min_threshold=10;timeout=600,1200,2400;window_size=100):pbcast.STABLE(desired_avg_gossip=20000;down_thread=false;up_thread=false):FRAG(down_thread=false;frag_size=8192;up_thread=false):pbcast.GMS(join_retry_timeout=2000;join_timeout=5000;print_local_addr=true;shun=true):pbcast.STATE_TRANSFER(down_thread=false;up_thread=false)
16:38:41,516 INFO [TreeCache] setEvictionPolicyConfig(): [config: null]
16:38:41,542 INFO [TreeCache] interceptor chain is:
class org.jboss.cache.interceptors.CallInterceptor
class org.jboss.cache.interceptors.PessimisticLockInterceptor
class org.jboss.cache.interceptors.UnlockInterceptor
class org.jboss.cache.interceptors.ReplicationInterceptor
16:38:41,547 INFO [TreeCache] cache mode is REPL_SYNC
16:38:41,646 INFO [STDOUT]
-------------------------------------------------------
GMS: address is localhost:32854
-------------------------------------------------------
16:38:43,650 INFO [TreeCache] my local address is localhost:32854
16:38:43,650 INFO [TreeCache] state could not be retrieved (must be first member in group)
16:38:43,650 INFO [LRUPolicy] Starting eviction policy using the provider: org.jboss.cache.eviction.LRUPolicy
16:38:43,650 INFO [LRUPolicy] Starting a eviction timer with wake up interval of (secs) 5
16:38:43,650 INFO [TreeCache] viewAccepted(): [localhost:32854|0] [localhost:32854]
16:38:43,651 INFO [TreeCache] new cache is null (may be first member in cluster)
16:38:43,651 INFO [TreeCache] Cache is started!!
16:38:50,304 INFO [CorbaNamingService] Naming: [IOR:000000000000002B49444C3A6F6D672E6F72672F436F734E616D696E672F4E616D696E67436F6E746578744578743A312E3000000000000200000000000000D0000102000000000A3132372E302E302E31000DC8000000114A426F73732F4E616D696E672F726F6F74000000000000050000000000000008000000004A414300000000010000001C00000000000100010000000105010001000101090000000105010001000000210000004C000000000000000100000000000000240000001C0000007E00000000000000010000000A3132372E302E302E31000DC9000000000000000000000000000000000000000000000000000000000000002000000004000000000000001F0000000400000003000000010000002000000000000000020000002000000004000000000000001F0000000400000003]
16:38:51,003 INFO [CorbaTransactionService] TransactionFactory: [IOR:000000000000003049444C3A6F72672F6A626F73732F746D2F69696F702F5472616E73616374696F6E466163746F72794578743A312E30000000000200000000000000D0000102000000000A3132372E302E302E31000DC8000000144A426F73732F5472616E73616374696F6E732F46000000050000000000000008000000004A414300000000010000001C00000000000100010000000105010001000101090000000105010001000000210000004C000000000000000100000000000000240000001C0000007E00000000000000010000000A3132372E302E302E31000DC9000000000000000000000000000000000000000000000000000000000000002000000004000000000000001F0000000400000003000000010000002000000000000000020000002000000004000000000000001F0000000400000003]
16:38:53,447 INFO [TomcatDeployer] deploy, ctxPath=/web-console, warUrl=.../deploy/management/console-mgr.sar/web-console.war/
16:38:59,848 INFO [MailService] Mail Service bound to java:/Mail
16:39:00,340 INFO [RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/jboss-ha-local-jdbc.rar
16:39:00,971 INFO [RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/jboss-ha-xa-jdbc.rar
16:39:01,041 INFO [RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/jboss-local-jdbc.rar
16:39:01,114 INFO [RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/jboss-xa-jdbc.rar
16:39:01,773 INFO [RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/jms/jms-ra.rar
16:39:01,856 INFO [RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/mail-ra.rar
16:39:02,518 INFO [RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/quartz-ra.rar
16:39:03,357 INFO [QuartzResourceAdapter] start quartz!!!
16:39:03,408 ERROR [STDERR] [warn] AOP Instrumentor failed to transform org.quartz.impl.StdSchedulerFactory
16:39:03,408 ERROR [STDERR] org.jboss.aop.instrument.TransformationException: Failed to aspectize class org.quartz.impl.StdSchedulerFactory. Could not find class it references org.quartz.utils.PoolingConnectionProvider It may not be in your classpath and you may not be getting field and constructor weaving for this class.
16:39:03,409 ERROR [STDERR] at org.jboss.aop.instrument.Instrumentor.convertReferences(Instrumentor.java:619)
16:39:03,409 ERROR [STDERR] at org.jboss.aop.instrument.Instrumentor.transform(Instrumentor.java:673)
16:39:03,409 ERROR [STDERR] at org.jboss.aop.AspectManager.translate(AspectManager.java:970)
16:39:03,409 ERROR [STDERR] at org.jboss.aop.AspectManager.transform(AspectManager.java:882)
16:39:03,410 ERROR [STDERR] at org.jboss.aop.standalone.AOPTransformer.aspectTransform(AOPTransformer.java:88)
16:39:03,410 ERROR [STDERR] at org.jboss.aop.standalone.AOPTransformer.transform(AOPTransformer.java:75)
16:39:03,410 ERROR [STDERR] at sun.instrument.TransformerManager.transform(TransformerManager.java:122)
16:39:03,410 ERROR [STDERR] at sun.instrument.InstrumentationImpl.transform(InstrumentationImpl.java:155)
16:39:03,410 ERROR [STDERR] at java.lang.ClassLoader.defineClass1(Native Method)
16:39:03,410 ERROR [STDERR] at java.lang.ClassLoader.defineClass(ClassLoader.java:620)
16:39:03,410 ERROR [STDERR] at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:124)
16:39:03,410 ERROR [STDERR] at java.net.URLClassLoader.defineClass(URLClassLoader.java:260)
16:39:03,410 ERROR [STDERR] at java.net.URLClassLoader.access$100(URLClassLoader.java:56)
16:39:03,411 ERROR [STDERR] at java.net.URLClassLoader$1.run(URLClassLoader.java:195)
16:39:03,411 ERROR [STDERR] at java.security.AccessController.doPrivileged(Native Method)
16:39:03,411 ERROR [STDERR] at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
16:39:03,411 ERROR [STDERR] at org.jboss.mx.loading.RepositoryClassLoader.findClassLocally(RepositoryClassLoader.java:672)
16:39:03,412 ERROR [STDERR] at org.jboss.mx.loading.RepositoryClassLoader.findClass(RepositoryClassLoader.java:652)
16:39:03,412 ERROR [STDERR] at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
16:39:03,412 ERROR [STDERR] at org.jboss.mx.loading.RepositoryClassLoader.loadClassLocally(RepositoryClassLoader.java:190)
16:39:03,412 ERROR [STDERR] at org.jboss.mx.loading.ClassLoadingTask$ThreadTask.run(ClassLoadingTask.java:131)
16:39:03,412 ERROR [STDERR] at org.jboss.mx.loading.LoadMgr3.nextTask(LoadMgr3.java:399)
16:39:03,412 ERROR [STDERR] at org.jboss.mx.loading.RepositoryClassLoader.loadClassImpl(RepositoryClassLoader.java:517)
16:39:03,412 ERROR [STDERR] at org.jboss.mx.loading.RepositoryClassLoader.loadClass(RepositoryClassLoader.java:405)
16:39:03,413 ERROR [STDERR] at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
16:39:03,413 ERROR [STDERR] at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
16:39:03,413 ERROR [STDERR] at org.jboss.resource.adapter.quartz.inflow.QuartzResourceAdapter.start(QuartzResourceAdapter.java:53)
16:39:03,413 ERROR [STDERR] at org.jboss.resource.deployment.RARDeployment.startService(RARDeployment.java:109)
16:39:03,413 ERROR [STDERR] at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
16:39:03,413 ERROR [STDERR] at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
16:39:03,413 ERROR [STDERR] at org.jboss.system.ServiceDynamicMBeanSupport.invoke(ServiceDynamicMBeanSupport.java:124)
16:39:03,414 ERROR [STDERR] at org.jboss.mx.server.RawDynamicInvoker.invoke(RawDynamicInvoker.java:164)
16:39:03,414 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
16:39:03,414 ERROR [STDERR] at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978)
16:39:03,414 ERROR [STDERR] at $Proxy0.start(Unknown Source)
16:39:03,414 ERROR [STDERR] at org.jboss.system.ServiceController.start(ServiceController.java:417)
16:39:03,414 ERROR [STDERR] at sun.reflect.GeneratedMethodAccessor9.invoke(Unknown Source)
16:39:03,414 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
16:39:03,414 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585)
16:39:03,415 ERROR [STDERR] at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
16:39:03,415 ERROR [STDERR] at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
16:39:03,415 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
16:39:03,416 ERROR [STDERR] at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
16:39:03,416 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
16:39:03,416 ERROR [STDERR] at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
16:39:03,416 ERROR [STDERR] at $Proxy123.start(Unknown Source)
16:39:03,416 ERROR [STDERR] at org.jboss.deployment.SimpleSubDeployerSupport.startService(SimpleSubDeployerSupport.java:345)
16:39:03,416 ERROR [STDERR] at org.jboss.deployment.SimpleSubDeployerSupport.start(SimpleSubDeployerSupport.java:127)
16:39:03,416 ERROR [STDERR] at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1007)
16:39:03,416 ERROR [STDERR] at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:808)
16:39:03,416 ERROR [STDERR] at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:771)
16:39:03,417 ERROR [STDERR] at sun.reflect.GeneratedMethodAccessor26.invoke(Unknown Source)
16:39:03,417 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
16:39:03,417 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585)
16:39:03,417 ERROR [STDERR] at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
16:39:03,417 ERROR [STDERR] at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
16:39:03,417 ERROR [STDERR] at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
16:39:03,417 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
16:39:03,418 ERROR [STDERR] at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
16:39:03,418 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
16:39:03,418 ERROR [STDERR] at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
16:39:03,418 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
16:39:03,418 ERROR [STDERR] at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
16:39:03,418 ERROR [STDERR] at $Proxy8.deploy(Unknown Source)
16:39:03,418 ERROR [STDERR] at org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:421)
16:39:03,418 ERROR [STDERR] at org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:634)
16:39:03,418 ERROR [STDERR] at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:263)
16:39:03,419 ERROR [STDERR] at org.jboss.deployment.scanner.AbstractDeploymentScanner.startService(AbstractDeploymentScanner.java:336)
16:39:03,419 ERROR [STDERR] at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
16:39:03,419 ERROR [STDERR] at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
16:39:03,419 ERROR [STDERR] at sun.reflect.GeneratedMethodAccessor8.invoke(Unknown Source)
16:39:03,419 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
16:39:03,419 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585)
16:39:03,419 ERROR [STDERR] at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
16:39:03,419 ERROR [STDERR] at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
16:39:03,420 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
16:39:03,420 ERROR [STDERR] at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
16:39:03,420 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
16:39:03,420 ERROR [STDERR] at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978)
16:39:03,420 ERROR [STDERR] at $Proxy0.start(Unknown Source)
16:39:03,420 ERROR [STDERR] at org.jboss.system.ServiceController.start(ServiceController.java:417)
16:39:03,420 ERROR [STDERR] at sun.reflect.GeneratedMethodAccessor9.invoke(Unknown Source)
16:39:03,420 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
16:39:03,421 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585)
16:39:03,421 ERROR [STDERR] at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
16:39:03,421 ERROR [STDERR] at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
16:39:03,421 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
16:39:03,421 ERROR [STDERR] at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
16:39:03,421 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
16:39:03,421 ERROR [STDERR] at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
16:39:03,421 ERROR [STDERR] at $Proxy4.start(Unknown Source)
16:39:03,421 ERROR [STDERR] at org.jboss.deployment.SARDeployer.start(SARDeployer.java:302)
16:39:03,422 ERROR [STDERR] at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1007)
16:39:03,422 ERROR [STDERR] at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:808)
16:39:03,422 ERROR [STDERR] at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:771)
16:39:03,422 ERROR [STDERR] at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:755)
16:39:03,422 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
16:39:03,422 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
16:39:03,422 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
16:39:03,422 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585)
16:39:03,422 ERROR [STDERR] at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
16:39:03,423 ERROR [STDERR] at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
16:39:03,423 ERROR [STDERR] at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
16:39:03,423 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
16:39:03,423 ERROR [STDERR] at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
16:39:03,423 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
16:39:03,423 ERROR [STDERR] at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
16:39:03,423 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
16:39:03,423 ERROR [STDERR] at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
16:39:03,424 ERROR [STDERR] at $Proxy5.deploy(Unknown Source)
16:39:03,424 ERROR [STDERR] at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:482)
16:39:03,424 ERROR [STDERR] at org.jboss.system.server.ServerImpl.start(ServerImpl.java:362)
16:39:03,424 ERROR [STDERR] at org.jboss.Main.boot(Main.java:200)
16:39:03,424 ERROR [STDERR] at org.jboss.Main$1.run(Main.java:464)
16:39:03,424 ERROR [STDERR] at java.lang.Thread.run(Thread.java:595)
16:39:06,357 INFO [SimpleThreadPool] Job execution threads will use class loader of thread: main
16:39:07,167 INFO [QuartzScheduler] Quartz Scheduler v.1.5.2 created.
16:39:07,730 INFO [RAMJobStore] RAMJobStore initialized.
16:39:07,731 INFO [StdSchedulerFactory] Quartz scheduler 'DefaultQuartzScheduler' initialized from default resource file in Quartz package: 'quartz.properties'
16:39:07,731 INFO [StdSchedulerFactory] Quartz scheduler version: 1.5.2
16:39:07,732 INFO [QuartzScheduler] Scheduler DefaultQuartzScheduler_$_NON_CLUSTERED started.
16:39:09,487 INFO [ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=LabsDS' to JNDI name 'java:LabsDS'
16:39:33,617 INFO [ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=DefaultDS' to JNDI name 'java:DefaultDS'
16:40:07,877 ERROR [STDERR] [warn] AOP Instrumentor failed to transform org.hsqldb.persist.NIOScaledRAFile
16:40:07,877 ERROR [STDERR] java.lang.OutOfMemoryError: Java heap space
*** java.lang.instrument ASSERTION FAILED ***: "!errorOutstanding" with message can't create byte arrau at ../../../src/share/instrument/JPLISAgent.c line: 801
16:41:58,836 WARN [ServiceController] Problem starting service jboss.mq:service=DestinationManager
java.lang.OutOfMemoryError: Java heap space
16:42:11,338 ERROR [BasicMBeanRegistry] Cannot register MBean
java.lang.OutOfMemoryError: Java heap space
16:42:24,420 ERROR [BasicMBeanRegistry] Cannot register MBean
java.lang.OutOfMemoryError: Java heap space
16:42:27,280 ERROR [BasicMBeanRegistry] Cannot register MBean
java.lang.OutOfMemoryError: Java heap space
16:42:40,520 ERROR [MainDeployer] Could not initialise deployment: file:/usr/local/portal/server/all/deploy/jms/hajndi-jms-ds.xml
java.lang.OutOfMemoryError: Java heap space
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3997742#3997742
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3997742
18 years, 3 months