[JBoss Seam] - Re: ICEfaces v1.6.0 DR#3
by gus888
This is great news. I used the ICEfaces v1.6.0 DR#3 to run Seam CVS20070417 icefaces example on JBoss AS4.2.0.CR2, no exception happens again, but you have to add the following codes in web.xml:
* This parameter indicates to ICEfaces to use the standard JSF implementation of EVENT scope. ICEfaces applications that do not use Seam may set this false, and store application information within the RequestMap in the ExternalContext for longer than a single Request or Server initiated render cycle.
<context-param>
| <param-name>com.icesoft.faces.standardRequestScope</param-name>
| <param-value>true</param-value>
| </context-param>
* The following Listener must also be defined in your web.xml file:
<listener>
| <listener-class>com.icesoft.faces.webapp.http.servlet.SessionDispatcher$Listener</listener-class>
| </listener>
|
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4039287#4039287
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4039287
19 years
[Installation, Configuration & Deployment] - java.lang.NoClassDefFoundError: com/sun/corba/se/internal/ii
by tnine
Hi all,
I'm running the JBoss all server on Sun's JDK 1.6.0_01-b06. Whenever I start the "all" server, I receive the following stack trace in server.log. Any help would be greatly appreciated in removing this. Also, I am only using the all server for the clustering an HA JNDI. Is there any documentation on installing clustering an HA JNDI in to the default server, or would I be better off removing components I don't need in the all server?
Thanks,
| 2007-04-20 09:58:57,650 DEBUG [org.jboss.system.ServiceController] starting service jboss:service=CorbaORB
| 2007-04-20 09:58:57,650 DEBUG [org.jboss.iiop.CorbaORBService] Starting jboss:service=CorbaORB
| 2007-04-20 09:58:57,652 DEBUG [org.jboss.iiop.CorbaORBService] Using OAIAddr=null
| 2007-04-20 09:58:57,658 DEBUG [org.jboss.iiop.CorbaORBService] Ignoring sunJDK14IsLocalBugFix=true due to inability to load
| org.jboss.iiop.SunJDK14IsLocalBugFix
| java.lang.NoClassDefFoundError: com/sun/corba/se/internal/iiop/ShutdownUtilDelegate
| at java.lang.ClassLoader.defineClass1(Native Method)
| at java.lang.ClassLoader.defineClass(ClassLoader.java:620)
| at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:124)
| at java.net.URLClassLoader.defineClass(URLClassLoader.java:260)
| at java.net.URLClassLoader.access$000(URLClassLoader.java:56)
| at java.net.URLClassLoader$1.run(URLClassLoader.java:195)
| at java.security.AccessController.doPrivileged(Native Method)
| at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
| at org.jboss.mx.loading.RepositoryClassLoader.findClassLocally(RepositoryClassLoader.java:672)
| at org.jboss.mx.loading.RepositoryClassLoader.findClass(RepositoryClassLoader.java:652)
| at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
| at org.jboss.mx.loading.RepositoryClassLoader.loadClassLocally(RepositoryClassLoader.java:190)
| at org.jboss.mx.loading.ClassLoadingTask$ThreadTask.run(ClassLoadingTask.java:131)
| at org.jboss.mx.loading.LoadMgr3.nextTask(LoadMgr3.java:399)
| at org.jboss.mx.loading.RepositoryClassLoader.loadClassImpl(RepositoryClassLoader.java:517)
| at org.jboss.mx.loading.RepositoryClassLoader.loadClass(RepositoryClassLoader.java:405)
| at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
| at org.jboss.iiop.CorbaORBService.startService(CorbaORBService.java:193)
| at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
| at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
| at sun.reflect.GeneratedMethodAccessor2.invoke(Unknown Source)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:597)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
|
|
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4039279#4039279
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4039279
19 years