[Installation, Configuration & DEPLOYMENT] - Re: Fail to boot jboss
by prasanthijboss
Java Version is : jdk1.5.0_02
JBoss Version is : jboss-4.0.3SP1 and the StackTrace is as follows:
====================================================================================
| JBoss Bootstrap Environment
|
| JBOSS_HOME:C:\Documents and Settings\RAVI\Desktop\jboss-4.0.3SP1\bin\\..
|
| JAVA:C:\jdk1.5.0_02\bin\java
|
| JAVA_OPTS: -Dprogram.name=run.bat -Xms128m -Xmx512m
|
| CLASSPATH:C:\jdk1.5.0_02\lib\tools.jar;C:\Documents and Settings\RAVI\Desktop\jboss-4.0.3SP1\bin\\run.jar
|
| =====================================================================================
|
| Failed to boot JBoss:
| org.jboss.deployment.DeploymentException: Could not initialise deployment :file:/C:/Documents and Settings/RAVI/Desktop/jboss-4.0.3SP1/server/default/conf/jboss-service.xml; - nested throwable : (java.lang.NoClassDefFoundError: EDU/oswego/cs/dl/util/concurrent/ConcurrentReaderHashMap)
| at org.jboss.deployment.DeploymentException.rethrowAsDeploymentException(DeploymentException.java:39)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:785)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:753)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:737)
| 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:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:141)
| at org.jboss.mx.server.Invocation.Dispatch(Invocation.java:80)
| at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:118)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:74)
| at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:127)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:74)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:245)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:644)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:176)
| at org.$Proxy5.deploy(Unknown Source)
| at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:453)
| at org.jboss.system.server.ServerImpl.start(ServerImpl.java:330)
| at org.jboss.Main.boot(Main.java:187)
| at org.jboss.Main$1.run(Main.java:438)
| at java.lang.Thread.run(Thread.java:595)
| Caused by : java.lang.NoClassDefFoundError: EDU/oswego/cs/dl/util/concurrent/ConcurrentReaderHashMap
| at org.jboss.util.xml.JBossEntityResolver.<clinit>(JBossEntityResolver.java:43)
| at org.jboss.deployment.SARDeployer.parseDocument(SARDeployer.java:585)
| at org.jboss.deployment.SARDeployer.init(SARDeployer.java:164)
| at org.jboss.deployment.MainDeployer.init(MainDeployer.java:843)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:780)
| ... 21 more
|
Any help is welcome.
Thank Q
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4150921#4150921
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4150921
18 years, 2 months
[Clustering/JBoss] - failed unmarshalling message - Clustering 4.2.2 GA
by aneesh62003
I've two partitions in the same subnet. Using UDP for clustering. Each parttion contains two identical nodes.
First partition is of jboss version 4.0.2rc1
and second one is with 4.2.2 GA
I get the same error on both the partitions when both the partitions are alive.......
| 2008-05-14 08:00:49,092 WARN [org.jgroups.protocols.UDP] packet from 10.32.158.23:4187 has different version (12338) from ours (2.4.1). This may cause problems
| 2008-05-14 08:00:49,092 ERROR [org.jgroups.protocols.UDP] failed unmarshalling message
| java.io.EOFException
| at java.io.DataInputStream.readFully(DataInputStream.java:178)
| at org.jgroups.stack.IpAddress.readFrom(IpAddress.java:270)
| at org.jgroups.Message.readFrom(Message.java:612)
| at org.jgroups.protocols.TP.bufferToMessage(TP.java:974)
| at org.jgroups.protocols.TP.handleIncomingPacket(TP.java:830)
| at org.jgroups.protocols.TP.access$400(TP.java:46)
| at org.jgroups.protocols.TP$IncomingPacketHandler.run(TP.java:1297)
| at java.lang.Thread.run(Thread.java:595)
|
| |
| |
| | Any help is highly appreciated....
| |
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4150918#4150918
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4150918
18 years, 2 months
[JBoss Portal] - JBossRenderResponse createActionURL failed
by wlchung
I cannot use JBossRenderResponse.createActionURL(PortalNode) to create a url for the action request. It always return a url that seems to be the same as the createRenderURL(PortalNode), which I think the action=2 parameter is the point of problem.
The concerned system configuration is:
JBoss Portal Verion is 2.6.4 from download
JBoss AS version is 4.2.2
Database Vendor and Version is Mysql 5.0.45
OS Platform is winxp sp2.
| public static PortalNodeURL buildNodeActionPath
| ( ActionRequest request, ActionResponse response , String relPath ){
| JBossActionRequest jreq = (JBossActionRequest) request;
| JBossActionResponse jresp = (JBossActionResponse) response;
|
| PortalNode curNode = jreq.getPortalNode();
| PortalNode theRelativeNode = curNode.resolve(relPath);
| PortalNodeURL pageURL = jresp.createActionURL(theRelativeNode);
|
| return pageURL;
| }
|
|
Any idea if this is a problem or that the configuration is not correct?
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4150915#4150915
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4150915
18 years, 2 months
[Clustering/JBoss] - Re: Clustering with UDP or TCP - What is best?
by dmurphy
Ok thanks Brian.
My instinct is to go with the default configuration - UDP. And I also understand from your comments why this configuration will be the best for most cases.
The reason I ask is that about 3 years ago (before my time) it was reported that with our app (then using I think JBOSS 2.x) running Windows 2000 that when using UDP for JGroups some app servers would periodically hang while booting. This behavior was intermittent but when they hung there were error messages in the JGroups logs. I don't believe the root cause was ever discovered and so the decision was made to move to a TCP based configuration using the Gossip Router. This apparently stopped the 'hang during boot' behavior but we never understood the original problem.
Since then we have read MS articles saying that Windows networking using multi-homed machines (which our app servers are) can have trouble when talking UDP. MS have a patch for this and we will try that.
My question : have you guys at JBOSS ever heard of problem clustering JBOSS using UDP under Windows? If so, any details (especially resolution steps) you may have come across would be most welcome.
We are now planning to start using full blown JBOSS clustering (session replication, tree cache) etc and I would like to be able to use UDP for all networking configurations.
thx
David
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4150909#4150909
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4150909
18 years, 2 months