[JBoss Seam] - Filter Problem
by bulloncito
Hi there, I'm running into a weird problem, while searching the forums has not brought enlightenment to my path.
I'm getting a
ERROR [org.jboss.seam.web.ExceptionFilter] uncaught exception javax.servlet.ServletException: Provided id of the wrong type. Expected: class java.lang.Long, got class java.lang.String
| (full stack at bottom)
whenever I update things like this
<s:decorate>
| <h:selectOneMenu id="schedule-category" value="#{schedule.category}" required="true">
| <s:selectItems value="#{categories.resultList}" var="category" label="#{category.name}" noSelectionLabel="#{messages.please_select_one}"/>
| <s:convertEntity />
| <a:support event="onblur" reRender="schedule-category-errors"/>
| </h:selectOneMenu>
| <br/>
| <a:outputPanel id="schedule-category-errors">
| <h:messages for="schedule-category" />
| </a:outputPanel>
| </s:decorate>
| ...
| <h:commandButton value="#{messages.schedule_edit}" action="#{scheduleHome.update}" rendered="#{scheduleHome.managed}"/>
I'm extending HomeObject, the weird thing is, it did work sometime ago, since I'm still learning(developing) havent used update feature much, now it's not working again, don't know why, updated seam version a couple of times from then on, AND, if I update objects with no <h:select[One|Many]Menu> HomeObject work great for creating and updating, and stuff. Am I missing some converters ? <s:convertEntity /> is the one that should do the trick, or am I missing something else? it used to work with old <ec:convertEntity /> (now deprecated for seam version)
Any help will do.
Here's a more complete stack:
ERROR [org.jboss.seam.web.ExceptionFilter] uncaught exception
| javax.servlet.ServletException: Provided id of the wrong type. Expected: class java.lang.Long, got class java.lang.String
| at javax.faces.webapp.FacesServlet.service(FacesServlet.java:152)
| at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
| at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
| at org.jboss.seam.web.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:63)
| ...
| 2007-05-16 17:27:46,713 ERROR [org.jboss.seam.web.ExceptionFilter] exception root cause
| java.lang.IllegalArgumentException: Provided id of the wrong type. Expected: class java.lang.Long, got class java.lang.String
| at org.hibernate.ejb.AbstractEntityManagerImpl.find(AbstractEntityManagerImpl.java:188)
| at org.jboss.seam.persistence.EntityManagerProxy.find(EntityManagerProxy.java:78)
| at org.jboss.seam.ui.EntityConverter.loadEntityFromPersistenceContext(EntityConverter.java:224)
| at org.jboss.seam.ui.EntityConverter.getAsObject(EntityConverter.java:200)
| at org.apache.myfaces.shared_impl.renderkit.RendererUtils.getConvertedUIOutputValue(RendererUtils.java:651)
| ...
| Caused by: org.hibernate.TypeMismatchException: Provided id of the wrong type. Expected: class java.lang.Long, got class java.lang.String
| at org.hibernate.event.def.DefaultLoadEventListener.onLoad(DefaultLoadEventListener.java:84)
| at org.hibernate.impl.SessionImpl.fireLoad(SessionImpl.java:878)
| at org.hibernate.impl.SessionImpl.get(SessionImpl.java:815)
| at org.hibernate.impl.SessionImpl.get(SessionImpl.java:808)
| at org.hibernate.ejb.AbstractEntityManagerImpl.find(AbstractEntityManagerImpl.java:174)
| ...
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4046325#4046325
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4046325
19 years
[JBoss Seam] - Re: Target Unreachable
by amontobin
Here is the log file without seam.properties :
I'm running on JBoss 5.0.0Beta1.
00:13:19,905 INFO [ServerImpl] Starting JBoss (Microcontainer)...
00:13:19,908 INFO [ServerImpl] Release ID: JBoss [Morpheus] 5.0.0.Beta1 (build: CVSTag=https://svn.jboss.org/repos/jbossas/tags/JBoss_5_0_0_Beta1 date=200611191849)
00:13:19,908 INFO [ServerImpl] Home Dir: /home/sebastien/java/jboss/jboss-5.0.0.Beta1
00:13:19,909 INFO [ServerImpl] Home URL: file:/home/sebastien/java/jboss/jboss-5.0.0.Beta1/
00:13:19,909 INFO [ServerImpl] Library URL: file:/home/sebastien/java/jboss/jboss-5.0.0.Beta1/lib/
00:13:19,911 INFO [ServerImpl] Patch URL: null
00:13:19,911 INFO [ServerImpl] Server Name: default
00:13:19,911 INFO [ServerImpl] Server Home Dir: /home/sebastien/java/jboss/jboss-5.0.0.Beta1/server/default
00:13:19,912 INFO [ServerImpl] Server Home URL: file:/home/sebastien/java/jboss/jboss-5.0.0.Beta1/server/default/
00:13:19,912 INFO [ServerImpl] Server Data Dir: /home/sebastien/java/jboss/jboss-5.0.0.Beta1/server/default/data
00:13:19,912 INFO [ServerImpl] Server Temp Dir: /home/sebastien/java/jboss/jboss-5.0.0.Beta1/server/default/tmp
00:13:19,913 INFO [ServerImpl] Server Config URL: file:/home/sebastien/java/jboss/jboss-5.0.0.Beta1/server/default/conf/
00:13:19,913 INFO [ServerImpl] Server Library URL: file:/home/sebastien/java/jboss/jboss-5.0.0.Beta1/server/default/lib/
00:13:19,913 INFO [ServerImpl] Root Deployment Filename: jboss-service.xml
00:13:20,016 INFO [ServerImpl] Starting Microcontainer, bootstrapURL=file:/home/sebastien/java/jboss/jboss-5.0.0.Beta1/server/default/conf/bootstrap-beans.xml
00:13:20,726 INFO [ProfileImpl] Using profile root:/home/sebastien/java/jboss/jboss-5.0.0.Beta1/bin/file:/home/sebastien/java/jboss/jboss-5.0.0.Beta1/server/default/profile
00:13:22,797 INFO [ServerInfo] Java VM: Java HotSpot(TM) Server VM 1.5.0_11-b03,Sun Microsystems Inc.
00:13:22,797 INFO [ServerInfo] OS-System: Linux 2.6.20-15-generic,i386
00:13:22,877 INFO [JMXKernel] Legacy JMX core initialized
00:13:30,734 INFO [WebService] Using RMI server codebase: http://misr:8083/
00:13:31,390 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
00:13:37,030 INFO [Embedded] Catalina naming disabled
00:13:37,053 INFO [ClusterRuleSetFactory] Unable to find a cluster rule set in the classpath. Will load the default rule set.
00:13:37,054 INFO [ClusterRuleSetFactory] Unable to find a cluster rule set in the classpath. Will load the default rule set.
00:13:37,271 INFO [AprLifecycleListener] The Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: /usr/lib/jvm/java-1.5.0-sun-1.5.0.11/jre/lib/i386/server:/usr/lib/jvm/java-1.5.0-sun-1.5.0.11/jre/lib/i386:/usr/lib/jvm/java-1.5.0-sun-1.5.0.11/jre/../lib/i386
00:13:37,417 INFO [Http11Protocol] Initializing Coyote HTTP/1.1 on http-0.0.0.0-8080
00:13:37,418 INFO [AjpProtocol] Initializing Coyote AJP/1.3 on ajp-0.0.0.0-8009
00:13:37,418 INFO [Catalina] Initialization processed in 363 ms
00:13:37,418 INFO [StandardService] Starting service jboss.web
00:13:37,421 INFO [StandardEngine] Starting Servlet Engine: JBossWeb/2.0.0.Beta1
00:13:37,473 INFO [StandardHost] XML validation disabled
00:13:37,490 INFO [Catalina] Server startup in 71 ms
00:13:54,601 INFO [ServiceEndpointManager] WebServices: jbossws-2.0.0.CR2.DEV (date=200611171751)
00:13:54,863 INFO [TomcatDeployment] deploy, ctxPath=/web-console, warUrl=.../deploy/management/console-mgr.sar/web-console.war/
00:13:55,225 INFO [WebappLoader] Dual registration of jndi stream handler: factory already defined
00:13:56,326 INFO [[/web-console]] MonitorsFolder: Failed to init plugin, null
00:13:56,331 INFO [[/web-console]] UCLs: Failed to init plugin, null
00:13:56,354 INFO [[/web-console]] JMS Message: Failed to init plugin, null
00:13:56,365 INFO [[/web-console]] JSR77 WebModule: Failed to init plugin, null
00:13:56,370 INFO [[/web-console]] J2EEFolder: Failed to init plugin, null
00:13:56,382 INFO [[/web-console]] AOPFolder: Failed to init plugin, null
00:13:56,383 INFO [[/web-console]] SystemFolder: Failed to init plugin, null
00:13:56,391 INFO [[/web-console]] MBeans: Failed to init plugin, null
00:13:56,395 INFO [[/web-console]] JSR77 Domains and Servers: Failed to init plugin, null
00:13:56,398 INFO [[/web-console]] JSR77 EJBModules and EJBs: Failed to init plugin, null
00:13:56,402 INFO [[/web-console]] JSR77 J2EE Apps: Failed to init plugin, null
00:13:56,486 INFO [StandardContext] Container org.apache.catalina.core.ContainerBase.[jboss.web].[localhost].[/web-console] has already been started
00:13:56,559 INFO [TomcatDeployment] deploy, ctxPath=/invoker, warUrl=.../deploy/http-invoker.sar/invoker.war/
00:13:57,367 INFO [StandardContext] Container org.apache.catalina.core.ContainerBase.[jboss.web].[localhost].[/invoker] has already been started
00:13:58,097 INFO [TomcatDeployment] deploy, ctxPath=/, warUrl=.../deploy/ROOT.war/
00:13:58,365 INFO [StandardContext] Container org.apache.catalina.core.ContainerBase.[jboss.web].[localhost].[/] has already been started
00:13:59,274 INFO [RARDeployment] Required license terms exist, view .../deploy/quartz-ra.rar!/META-INF/ra.xml
00:13:59,388 INFO [SimpleThreadPool] Job execution threads will use class loader of thread: main
00:13:59,425 INFO [QuartzScheduler] Quartz Scheduler v.1.5.2 created.
00:13:59,428 INFO [RAMJobStore] RAMJobStore initialized.
00:13:59,429 INFO [StdSchedulerFactory] Quartz scheduler 'DefaultQuartzScheduler' initialized from default resource file in Quartz package: 'quartz.properties'
00:13:59,429 INFO [StdSchedulerFactory] Quartz scheduler version: 1.5.2
00:13:59,429 INFO [QuartzScheduler] Scheduler DefaultQuartzScheduler_$_NON_CLUSTERED started.
00:13:59,429 INFO [RARDeployment] Required license terms exist, view .../deploy/mail-ra.rar!/META-INF/ra.xml
00:13:59,448 INFO [RARDeployment] Required license terms exist, view .../deploy/jboss-ha-local-jdbc.rar!/META-INF/ra.xml
00:13:59,449 INFO [RARDeployment] Required license terms exist, view .../deploy/jms-ra.rar!/META-INF/ra.xml
00:13:59,455 INFO [RARDeployment] Required license terms exist, view .../deploy/jboss-local-jdbc.rar!/META-INF/ra.xml
00:13:59,458 INFO [RARDeployment] Required license terms exist, view .../deploy/jboss-xa-jdbc.rar!/META-INF/ra.xml
00:13:59,458 INFO [RARDeployment] Required license terms exist, view .../deploy/jboss-ha-xa-jdbc.rar!/META-INF/ra.xml
00:13:59,603 INFO [WrapperDataSourceService] Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=testDatasource' to JNDI name 'java:testDatasource'
00:14:00,291 INFO [WrapperDataSourceService] Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=DefaultDS' to JNDI name 'java:DefaultDS'
00:14:00,512 WARN [QuartzTimerServiceFactory] sql failed: CREATE TABLE qrtz_job_details(JOB_NAME VARCHAR(80) NOT NULL, JOB_GROUP VARCHAR(80) NOT NULL, DESCRIPTION VARCHAR(120) NULL, JOB_CLASS_NAME VARCHAR(128) NOT NULL, IS_DURABLE VARCHAR(1) NOT NULL, IS_VOLATILE VARCHAR(1) NOT NULL, IS_STATEFUL VARCHAR(1) NOT NULL, REQUESTS_RECOVERY VARCHAR(1) NOT NULL, JOB_DATA BINARY NULL, PRIMARY KEY (JOB_NAME,JOB_GROUP))
00:14:00,589 INFO [SimpleThreadPool] Job execution threads will use class loader of thread: main
00:14:00,592 INFO [QuartzScheduler] Quartz Scheduler v.1.5.2 created.
00:14:00,592 INFO [JobStoreCMT] Using db table-based data access locking (synchronization).
00:14:00,634 INFO [JobStoreCMT] Removed 0 Volatile Trigger(s).
00:14:00,634 INFO [JobStoreCMT] Removed 0 Volatile Job(s).
00:14:00,635 INFO [JobStoreCMT] JobStoreCMT initialized.
00:14:00,635 INFO [StdSchedulerFactory] Quartz scheduler 'JBossEJB3QuartzScheduler' initialized from an externally provided properties instance.
00:14:00,635 INFO [StdSchedulerFactory] Quartz scheduler version: 1.5.2
00:14:00,636 INFO [JobStoreCMT] Freed 0 triggers from 'acquired' / 'blocked' state.
00:14:00,638 INFO [JobStoreCMT] Recovering 0 jobs that were in-progress at the time of the last shut-down.
00:14:00,638 INFO [JobStoreCMT] Recovery complete.
00:14:00,638 INFO [JobStoreCMT] Removed 0 'complete' triggers.
00:14:00,638 INFO [JobStoreCMT] Removed 0 stale fired job entries.
00:14:00,641 INFO [QuartzScheduler] Scheduler JBossEJB3QuartzScheduler_$_NON_CLUSTERED started.
00:14:00,665 WARN [JDBCPersistenceManager]
JBoss Messaging Warning: DataSource connection transaction isolation should be READ_COMMITTED, but it is currently NONE.
Using an isolation level less strict than READ_COMMITTED may lead to data consistency problems.
Using an isolation level more strict than READ_COMMITTED may lead to deadlock.
00:14:00,900 INFO [ServerPeer] JBoss Messaging 1.0.1.GA server [server.0] started
00:14:00,938 INFO [Queue] Queue[/queue/DLQ] started, fullSize=75000, pageSize=2000, downCacheSize=2000
00:14:00,956 INFO [Queue] Queue[/queue/testQueue] started, fullSize=75000, pageSize=2000, downCacheSize=2000
00:14:00,968 INFO [Topic] Topic[/topic/testTopic] started, fullSize=75000, pageSize=2000, downCacheSize=2000
00:14:01,430 INFO [ConnectionFactory] Connector socket://127.0.0.1:4457 has leasing enabled, lease period 20000 milliseconds
00:14:01,431 INFO [ConnectionFactory] [/ConnectionFactory, /XAConnectionFactory, java:/ConnectionFactory, java:/XAConnectionFactory] deployed
00:14:01,542 INFO [ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=ConnectionFactoryBinding,name=JmsXA' to JNDI name 'java:JmsXA'
00:14:01,835 INFO [TomcatDeployment] deploy, ctxPath=/jbossws, warUrl=.../tmp/deploy/jbossws-context36699-exp.war/
00:14:01,905 WARN [TomcatInjectionContainer] could not find servlet class org.jboss.ws.integration.jboss.PortComponentLinkServlet in classpath when processing annotations.
00:14:02,016 INFO [StandardContext] Container org.apache.catalina.core.ContainerBase.[jboss.web].[localhost].[/jbossws] has already been started
00:14:02,144 INFO [TomcatDeployment] deploy, ctxPath=/jmx-console, warUrl=.../deploy/jmx-console.war/
00:14:02,468 INFO [StandardContext] Container org.apache.catalina.core.ContainerBase.[jboss.web].[localhost].[/jmx-console] has already been started
00:14:02,749 INFO [WrapperDataSourceService] Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=bookingDatasource' to JNDI name 'java:bookingDatasource'
00:14:02,754 INFO [TomcatDeployment] deploy, ctxPath=/extranet-backoffice, warUrl=.../tmp/deploy/extranet-backoffice36700-exp.war/
00:14:03,706 INFO [ServletContextListener] Welcome to Seam 1.2.0.PATCH1
00:14:03,732 INFO [Scanner] scanning: /tmp/nestedjar36541.tmp
00:14:03,783 INFO [Initialization] Namespace: http://jboss.com/products/seam/security, package: org.jboss.seam.security, prefix: org.jboss.seam.security
00:14:03,785 INFO [Initialization] Namespace: http://jboss.com/products/seam/drools, package: org.jboss.seam.drools, prefix: org.jboss.seam.drools
00:14:03,785 INFO [Initialization] Namespace: http://jboss.com/products/seam/mail, package: org.jboss.seam.mail, prefix: org.jboss.seam.mail
00:14:03,785 INFO [Initialization] Namespace: http://jboss.com/products/seam/web, package: org.jboss.seam.web, prefix: org.jboss.seam.web
00:14:03,785 INFO [Initialization] Namespace: http://jboss.com/products/seam/theme, package: org.jboss.seam.theme, prefix: org.jboss.seam.theme
00:14:03,785 INFO [Initialization] Namespace: http://jboss.com/products/seam/core, package: org.jboss.seam.core, prefix: org.jboss.seam.core
00:14:03,785 INFO [Initialization] Namespace: http://jboss.com/products/seam/jms, package: org.jboss.seam.jms, prefix: org.jboss.seam.jms
00:14:03,785 INFO [Initialization] Namespace: http://jboss.com/products/seam/framework, package: org.jboss.seam.framework, prefix: org.jboss.seam.core.framework
00:14:03,797 INFO [Scanner] scanning: /tmp/nestedjar36346.tmp
00:14:03,801 INFO [Scanner] scanning: /home/sebastien/java/jboss/jboss-5.0.0.Beta1/server/default/tmp/deploy/extranet-backoffice36700-exp.war/WEB-INF/lib/jboss-seam-ui-1.2.1.GA.jar
00:14:03,809 INFO [Initialization] reading /WEB-INF/components.xml
00:14:03,836 INFO [Initialization] reading jar:file:/tmp/nestedjar36541.tmp!/META-INF/components.xml
00:14:03,851 INFO [Initialization] reading properties from: /seam.properties
00:14:03,851 INFO [Initialization] reading properties from: /jndi.properties
00:14:03,857 INFO [Initialization] initializing Seam
00:14:03,944 INFO [Scanner] scanning: /tmp/nestedjar36346.tmp
00:14:04,177 INFO [Scanner] scanning: /home/sebastien/java/jboss/jboss-5.0.0.Beta1/server/default/tmp/deploy/extranet-backoffice36700-exp.war/WEB-INF/lib/jboss-seam-ui-1.2.1.GA.jar
00:14:04,305 INFO [Scanner] scanning: /tmp/nestedjar36541.tmp
00:14:05,754 INFO [Initialization] two components with same name, higher precedence wins: org.jboss.seam.persistence.persistenceProvider
00:14:05,809 INFO [Initialization] two components with same name, higher precedence wins: org.jboss.seam.security.identity
00:14:05,878 INFO [Component] Component: org.jboss.seam.core.init, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.Init
00:14:06,002 INFO [Initialization] Installing components...
00:14:06,063 INFO [Component] Component: org.jboss.seam.core.applicationContext, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.ApplicationContext
00:14:06,069 INFO [Component] Component: org.jboss.seam.core.businessProcessContext, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.BusinessProcessContext
00:14:06,072 INFO [Component] Component: org.jboss.seam.core.conversation, scope: CONVERSATION, type: JAVA_BEAN, class: org.jboss.seam.core.Conversation
00:14:06,075 INFO [Component] Component: org.jboss.seam.core.conversationContext, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.ConversationContext
00:14:06,076 INFO [Component] Component: org.jboss.seam.core.conversationEntries, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.core.ConversationEntries
00:14:06,079 INFO [Component] Component: org.jboss.seam.core.conversationList, scope: PAGE, type: JAVA_BEAN, class: org.jboss.seam.core.ConversationList
00:14:06,080 INFO [Component] Component: org.jboss.seam.core.conversationStack, scope: PAGE, type: JAVA_BEAN, class: org.jboss.seam.core.ConversationStack
00:14:06,081 INFO [Component] Component: org.jboss.seam.core.eventContext, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.EventContext
00:14:06,082 INFO [Component] Component: org.jboss.seam.core.events, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.core.Events
00:14:06,144 INFO [Component] Component: org.jboss.seam.core.exceptions, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.Exceptions
00:14:06,156 INFO [Component] Component: org.jboss.seam.core.expressions, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.Expressions
00:14:06,167 INFO [Component] Component: org.jboss.seam.core.facesContext, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.FacesContext
00:14:06,169 INFO [Component] Component: org.jboss.seam.core.facesMessages, scope: CONVERSATION, type: JAVA_BEAN, class: org.jboss.seam.core.FacesMessages
00:14:06,175 INFO [Component] Component: org.jboss.seam.core.facesPage, scope: PAGE, type: JAVA_BEAN, class: org.jboss.seam.core.FacesPage
00:14:06,202 INFO [Component] Component: org.jboss.seam.core.httpError, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.HttpError
00:14:06,203 INFO [Component] Component: org.jboss.seam.core.image, scope: CONVERSATION, type: JAVA_BEAN, class: org.jboss.seam.core.Image
00:14:06,235 INFO [Component] Component: org.jboss.seam.core.interpolator, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.core.Interpolator
00:14:06,237 INFO [Component] Component: org.jboss.seam.core.isUserInRole, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.IsUserInRole
00:14:06,263 INFO [Component] Component: org.jboss.seam.core.locale, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.core.Locale
00:14:06,265 INFO [Component] Component: org.jboss.seam.core.localeSelector, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.core.LocaleSelector
00:14:06,295 INFO [Component] Component: org.jboss.seam.core.manager, scope: EVENT, type: JAVA_BEAN, class: org.jboss.seam.core.Manager
00:14:06,339 INFO [Component] Component: org.jboss.seam.core.messages, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.core.Messages
00:14:06,341 INFO [Component] Component: org.jboss.seam.core.methodContext, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.MethodContext
00:14:06,342 INFO [Component] Component: org.jboss.seam.core.pageContext, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.PageContext
00:14:06,343 INFO [Component] Component: org.jboss.seam.core.pages, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.Pages
00:14:06,386 INFO [Component] Component: org.jboss.seam.core.persistenceContexts, scope: CONVERSATION, type: JAVA_BEAN, class: org.jboss.seam.core.PersistenceContexts
00:14:06,387 INFO [Component] Component: org.jboss.seam.core.redirect, scope: CONVERSATION, type: JAVA_BEAN, class: org.jboss.seam.core.Redirect
00:14:06,389 INFO [Component] Component: org.jboss.seam.core.resourceBundle, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.core.ResourceBundle
00:14:06,392 INFO [Component] Component: org.jboss.seam.core.safeActions, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.SafeActions
00:14:06,394 INFO [Component] Component: org.jboss.seam.core.sessionContext, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.SessionContext
00:14:06,395 INFO [Component] Component: org.jboss.seam.core.switcher, scope: PAGE, type: JAVA_BEAN, class: org.jboss.seam.core.Switcher
00:14:06,397 INFO [Component] Component: org.jboss.seam.core.uiComponent, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.core.UiComponent
00:14:06,398 INFO [Component] Component: org.jboss.seam.core.userPrincipal, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.UserPrincipal
00:14:06,492 INFO [Component] Component: org.jboss.seam.core.validation, scope: EVENT, type: JAVA_BEAN, class: org.jboss.seam.core.Validation
00:14:06,494 INFO [Component] Component: org.jboss.seam.core.validators, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.Validators
00:14:06,495 INFO [Component] Component: org.jboss.seam.framework.currentDate, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.framework.CurrentDate
00:14:06,563 INFO [Component] Component: org.jboss.seam.framework.currentDatetime, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.framework.CurrentDatetime
00:14:06,581 INFO [Component] Component: org.jboss.seam.framework.currentTime, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.framework.CurrentTime
00:14:06,583 INFO [Component] Component: org.jboss.seam.mail.mailSession, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.mail.MailSession
00:14:06,616 INFO [Component] Component: org.jboss.seam.security.configuration, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.security.Configuration
00:14:06,619 INFO [Component] Component: org.jboss.seam.security.identity, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.security.Identity
00:14:06,628 INFO [Component] Component: org.jboss.seam.servlet.exceptionFilter, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.web.ExceptionFilter
00:14:06,636 INFO [Component] Component: org.jboss.seam.servlet.multipartFilter, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.web.MultipartFilter
00:14:06,637 INFO [Component] Component: org.jboss.seam.servlet.redirectFilter, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.web.RedirectFilter
00:14:06,639 INFO [Component] Component: org.jboss.seam.theme.theme, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.theme.Theme
00:14:06,640 INFO [Component] Component: org.jboss.seam.theme.themeSelector, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.theme.ThemeSelector
00:14:06,642 INFO [Component] Component: org.jboss.seam.ui.entityConverter, scope: CONVERSATION, type: JAVA_BEAN, class: org.jboss.seam.ui.EntityConverter
00:14:06,656 INFO [Component] Component: org.jboss.seam.ui.entityConverterStore, scope: PAGE, type: JAVA_BEAN, class: org.jboss.seam.ui.EntityConverterStore
00:14:06,657 INFO [Component] Component: org.jboss.seam.ui.graphicImage.dynamicImageResource, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.ui.graphicImage.DynamicImageResource
00:14:06,662 INFO [Component] Component: org.jboss.seam.ui.graphicImage.dynamicImageStore, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.ui.graphicImage.DynamicImageStore
00:14:06,663 INFO [Component] Component: org.jboss.seam.ui.resource.webResource, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.ui.resource.WebResource
00:14:06,665 INFO [Lifecycle] starting up: org.jboss.seam.servlet.multipartFilter
00:14:06,666 INFO [Lifecycle] starting up: org.jboss.seam.servlet.redirectFilter
00:14:06,667 INFO [Lifecycle] starting up: org.jboss.seam.servlet.exceptionFilter
00:14:06,668 INFO [Lifecycle] starting up: org.jboss.seam.ui.resource.webResource
00:14:06,669 INFO [Lifecycle] starting up: org.jboss.seam.ui.graphicImage.dynamicImageResource
00:14:06,671 INFO [Initialization] done initializing Seam
00:14:06,692 INFO [StandardContext] Container org.apache.catalina.core.ContainerBase.[jboss.web].[localhost].[/extranet-backoffice] has already been started
00:14:06,705 INFO [TomcatDeployment] deploy, ctxPath=/extranet-customer, warUrl=.../tmp/deploy/extranet-customer36701-exp.war/
00:14:06,826 INFO [StandardContext] Container org.apache.catalina.core.ContainerBase.[jboss.web].[localhost].[/extranet-customer] has already been started
00:14:07,213 INFO [TomcatDeployment] deploy, ctxPath=/extranet-partner, warUrl=.../tmp/deploy/extranet-partner36702-exp.war/
00:14:08,010 INFO [StandardContext] Container org.apache.catalina.core.ContainerBase.[jboss.web].[localhost].[/extranet-partner] has already been started
00:14:08,029 INFO [TomcatDeployment] deploy, ctxPath=/internet, warUrl=.../tmp/deploy/internet36703-exp.war/
00:14:08,251 INFO [StandardContext] Container org.apache.catalina.core.ContainerBase.[jboss.web].[localhost].[/internet] has already been started
00:14:08,436 INFO [MailService] Mail Service bound to java:/Mail
00:14:15,816 INFO [MCKernelAbstraction] installing bean: jboss.j2ee:ear=assurix.ear,jar=jboss-seam-1.2.1.GA.jar,name=Dispatcher,service=EJB3 with dependencies:
00:14:16,006 INFO [EJBContainer] STARTED EJB: org.jboss.seam.core.Dispatcher ejbName: Dispatcher
00:14:16,056 INFO [MCKernelAbstraction] installing bean: jboss.j2ee:ear=assurix.ear,jar=jboss-seam-1.2.1.GA.jar,name=TransactionListener,service=EJB3 with dependencies:
00:14:16,103 INFO [EJBContainer] STARTED EJB: org.jboss.seam.core.TransactionListener ejbName: TransactionListener
00:14:16,136 INFO [MCKernelAbstraction] installing bean: persistence.units:ear=assurix.ear,jar=presentation-1.0-SNAPSHOT.jar,unitName=bookingDatabase with dependencies:
00:14:16,181 INFO [Version] Hibernate EntityManager 3.2.0.GA
00:14:16,217 INFO [Version] Hibernate Annotations 3.2.0.GA
00:14:16,230 INFO [Environment] Hibernate 3.2.1
00:14:16,241 INFO [Environment] hibernate.properties not found
00:14:16,244 INFO [Environment] Bytecode provider name : javassist
00:14:16,257 INFO [Environment] using JDK 1.4 java.sql.Timestamp handling
00:14:16,469 WARN [Ejb3Configuration] Persistence provider caller does not implements the EJB3 spec correctly. PersistenceUnitInfo.getNewTempClassLoader() is null.
00:14:16,477 INFO [Configuration] Reading mappings from resource : META-INF/orm.xml
00:14:16,481 INFO [Ejb3Configuration] [PersistenceUnit: bookingDatabase] no META-INF/orm.xml found
00:14:16,594 INFO [ConnectionProviderFactory] Initializing connection provider: org.hibernate.ejb.connection.InjectedDataSourceConnectionProvider
00:14:16,614 INFO [InjectedDataSourceConnectionProvider] Using provided datasource
00:14:16,640 INFO [SettingsFactory] RDBMS: HSQL Database Engine, version: 1.8.0
00:14:16,640 INFO [SettingsFactory] JDBC driver: HSQL Database Engine Driver, version: 1.8.0
00:14:16,713 INFO [Dialect] Using dialect: org.hibernate.dialect.HSQLDialect
00:14:16,813 INFO [TransactionFactoryFactory] Transaction strategy: org.hibernate.ejb.transaction.JoinableCMTTransactionFactory
00:14:16,818 INFO [TransactionManagerLookupFactory] instantiating TransactionManagerLookup: org.hibernate.transaction.JBossTransactionManagerLookup
00:14:16,823 INFO [TransactionManagerLookupFactory] instantiated TransactionManagerLookup
00:14:16,825 INFO [SettingsFactory] Automatic flush during beforeCompletion(): disabled
00:14:16,825 INFO [SettingsFactory] Automatic session close at end of transaction: disabled
00:14:16,825 INFO [SettingsFactory] JDBC batch size: 15
00:14:16,825 INFO [SettingsFactory] JDBC batch updates for versioned data: disabled
00:14:16,828 INFO [SettingsFactory] Scrollable result sets: enabled
00:14:16,828 INFO [SettingsFactory] JDBC3 getGeneratedKeys(): disabled
00:14:16,828 INFO [SettingsFactory] Connection release mode: auto
00:14:16,830 INFO [SettingsFactory] Default batch fetch size: 1
00:14:16,830 INFO [SettingsFactory] Generate SQL with comments: disabled
00:14:16,830 INFO [SettingsFactory] Order SQL updates by primary key: disabled
00:14:16,831 INFO [SettingsFactory] Query translator: org.hibernate.hql.ast.ASTQueryTranslatorFactory
00:14:16,837 INFO [ASTQueryTranslatorFactory] Using ASTQueryTranslatorFactory
00:14:16,839 INFO [SettingsFactory] Query language substitutions: {}
00:14:16,839 INFO [SettingsFactory] JPA-QL strict compliance: enabled
00:14:16,839 INFO [SettingsFactory] Second-level cache: enabled
00:14:16,839 INFO [SettingsFactory] Query cache: disabled
00:14:16,840 INFO [SettingsFactory] Cache provider: org.hibernate.cache.HashtableCacheProvider
00:14:16,843 INFO [SettingsFactory] Optimize cache for minimal puts: disabled
00:14:16,843 INFO [SettingsFactory] Structured second-level cache entries: disabled
00:14:16,858 INFO [SettingsFactory] Echoing all SQL to stdout
00:14:16,858 INFO [SettingsFactory] Statistics: disabled
00:14:16,858 INFO [SettingsFactory] Deleted entity synthetic identifier rollback: disabled
00:14:16,860 INFO [SettingsFactory] Default entity-mode: pojo
00:14:16,920 INFO [SessionFactoryImpl] building session factory
00:14:16,931 INFO [SessionFactoryObjectFactory] Not binding factory to JNDI, no JNDI name configured
00:14:16,944 INFO [SchemaExport] Running hbm2ddl schema export
00:14:16,947 INFO [SchemaExport] exporting generated schema to database
00:14:16,948 INFO [SchemaExport] schema export complete
00:14:16,954 INFO [NamingHelper] JNDI InitialContext properties:{java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory, java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces}
00:14:16,990 INFO [MCKernelAbstraction] installing bean: jboss.j2ee:ear=assurix.ear,jar=presentation-1.0-SNAPSHOT.jar,name=LoginController,service=EJB3 with dependencies:
00:14:17,006 INFO [EJBContainer] STARTED EJB: com.assurix.presentation.extranet.backoffice.LoginController ejbName: LoginController
00:14:17,013 INFO [MCKernelAbstraction] installing bean: jboss.j2ee:ear=assurix.ear,jar=presentation-1.0-SNAPSHOT.jar,name=TestAction,service=EJB3 with dependencies:
00:14:17,014 INFO [MCKernelAbstraction] persistence.units:ear=assurix.ear,jar=presentation-1.0-SNAPSHOT.jar,unitName=bookingDatabase
00:14:17,034 INFO [EJBContainer] STARTED EJB: com.assurix.presentation.TestAction ejbName: TestAction
00:14:17,070 INFO [Http11Protocol] Starting Coyote HTTP/1.1 on http-0.0.0.0-8080
00:14:17,096 INFO [AjpProtocol] Starting Coyote AJP/1.3 on ajp-0.0.0.0-8009
00:14:17,108 INFO [ServerImpl] JBoss (Microcontainer) [5.0.0.Beta1 (build: CVSTag=https://svn.jboss.org/repos/jbossas/tags/JBoss_5_0_0_Beta1 date=200611191849)] Started in 57s:190ms
00:14:18,449 INFO [Lifecycle] starting up: org.jboss.seam.security.identity
00:14:27,760 WARN [lifecycle] /index.jsp(15,15) '#{test.userName}' Target Unreachable, identifier 'test' resolved to null
org.apache.jasper.el.JspPropertyNotFoundException: /index.jsp(15,15) '#{test.userName}' Target Unreachable, identifier 'test' resolved to null
at org.apache.jasper.el.JspValueExpression.getType(JspValueExpression.java:61)
at com.sun.faces.renderkit.html_basic.HtmlBasicInputRenderer.getConvertedValue(HtmlBasicInputRenderer.java:129)
at javax.faces.component.UIInput.getConvertedValue(UIInput.java:936)
at javax.faces.component.UIInput.validate(UIInput.java:861)
at javax.faces.component.UIInput.executeValidate(UIInput.java:1071)
at javax.faces.component.UIInput.processValidators(UIInput.java:663)
at javax.faces.component.UIComponentBase.processValidators(UIComponentBase.java:1040)
at javax.faces.component.UIForm.processValidators(UIForm.java:229)
at javax.faces.component.UIComponentBase.processValidators(UIComponentBase.java:1040)
at javax.faces.component.UIViewRoot.processValidators(UIViewRoot.java:667)
at com.sun.faces.lifecycle.ProcessValidationsPhase.execute(ProcessValidationsPhase.java:100)
at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:244)
at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:113)
at javax.faces.webapp.FacesServlet.service(FacesServlet.java:244)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:228)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:174)
at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:86)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:212)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:818)
at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:624)
at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:445)
at java.lang.Thread.run(Thread.java:595)
00:14:27,763 WARN [lifecycle] executePhase(PROCESS_VALIDATIONS 3,com.sun.faces.context.FacesContextImpl@2938d8) threw exception
javax.faces.FacesException: /index.jsp(15,15) '#{test.userName}' Target Unreachable, identifier 'test' resolved to null
at com.sun.faces.lifecycle.ProcessValidationsPhase.execute(ProcessValidationsPhase.java:108)
at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:244)
at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:113)
at javax.faces.webapp.FacesServlet.service(FacesServlet.java:244)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:228)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:174)
at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:86)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:212)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:818)
at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:624)
at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:445)
at java.lang.Thread.run(Thread.java:595)
Caused by: org.apache.jasper.el.JspPropertyNotFoundException: /index.jsp(15,15) '#{test.userName}' Target Unreachable, identifier 'test' resolved to null
at org.apache.jasper.el.JspValueExpression.getType(JspValueExpression.java:61)
at com.sun.faces.renderkit.html_basic.HtmlBasicInputRenderer.getConvertedValue(HtmlBasicInputRenderer.java:129)
at javax.faces.component.UIInput.getConvertedValue(UIInput.java:936)
at javax.faces.component.UIInput.validate(UIInput.java:861)
at javax.faces.component.UIInput.executeValidate(UIInput.java:1071)
at javax.faces.component.UIInput.processValidators(UIInput.java:663)
at javax.faces.component.UIComponentBase.processValidators(UIComponentBase.java:1040)
at javax.faces.component.UIForm.processValidators(UIForm.java:229)
at javax.faces.component.UIComponentBase.processValidators(UIComponentBase.java:1040)
at javax.faces.component.UIViewRoot.processValidators(UIViewRoot.java:667)
at com.sun.faces.lifecycle.ProcessValidationsPhase.execute(ProcessValidationsPhase.java:100)
... 20 more
00:14:27,768 ERROR [[Faces Servlet]] Servlet.service() for servlet Faces Servlet threw exception
org.apache.jasper.el.JspPropertyNotFoundException: /index.jsp(15,15) '#{test.userName}' Target Unreachable, identifier 'test' resolved to null
at org.apache.jasper.el.JspValueExpression.getType(JspValueExpression.java:61)
at com.sun.faces.renderkit.html_basic.HtmlBasicInputRenderer.getConvertedValue(HtmlBasicInputRenderer.java:129)
at javax.faces.component.UIInput.getConvertedValue(UIInput.java:936)
at javax.faces.component.UIInput.validate(UIInput.java:861)
at javax.faces.component.UIInput.executeValidate(UIInput.java:1071)
at javax.faces.component.UIInput.processValidators(UIInput.java:663)
at javax.faces.component.UIComponentBase.processValidators(UIComponentBase.java:1040)
at javax.faces.component.UIForm.processValidators(UIForm.java:229)
at javax.faces.component.UIComponentBase.processValidators(UIComponentBase.java:1040)
at javax.faces.component.UIViewRoot.processValidators(UIViewRoot.java:667)
at com.sun.faces.lifecycle.ProcessValidationsPhase.execute(ProcessValidationsPhase.java:100)
at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:244)
at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:113)
at javax.faces.webapp.FacesServlet.service(FacesServlet.java:244)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:228)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:174)
at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:86)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:212)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:818)
at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:624)
at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:445)
at java.lang.Thread.run(Thread.java:595)
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4046319#4046319
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4046319
19 years
[Clustering/JBoss] - IIOP URL doesn't seem to work against a cluster
by danlee
Any of the following IIOP URL doesn't seem to work against a cluster, in which <host1> is part of. Is this normal?
corbaloc::<host1>:3528/
corbaloc::<host1>/
iiop://<host1>:3528/
iiop://<host1>/
With these URLs, I am getting the following error:
Caused by: javax.naming.CommunicationException: Could not obtain connection to any of these urls: corbaloc::host1.myco.com and discovery failed with error: javax.naming.CommunicationException: Receive timed out [Root exception is java.net.SocketTimeoutException: Receive timed out] [Root exception is javax.naming.CommunicationException: Failed to connect to server corbaloc:1099 [Root exception is javax.naming.ServiceUnavailableException: Failed to connect to server corbaloc:1099 [Root exception is java.net.UnknownHostException: corbaloc: corbaloc]]]
at org.jnp.interfaces.NamingContext.checkRef(NamingContext.java:1414)
at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:594)
at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:587)
at javax.naming.InitialContext.lookup(Unknown Source)
at com.filenet.apiimpl.util.SessionLocator.locateEJBByPath(SessionLocator.java:778)
... 43 more
Caused by: javax.naming.CommunicationException: Failed to connect to server corbaloc:1099 [Root exception is javax.naming.ServiceUnavailableException: Failed to connect to server corbaloc:1099 [Root exception is java.net.UnknownHostException: corbaloc: corbaloc]]
at org.jnp.interfaces.NamingContext.getServer(NamingContext.java:269)
at org.jnp.interfaces.NamingContext.checkRef(NamingContext.java:1385)
... 47 more
Caused by: javax.naming.ServiceUnavailableException: Failed to connect to server corbaloc:1099 [Root exception is java.net.UnknownHostException: corbaloc: corbaloc]
at org.jnp.interfaces.NamingContext.getServer(NamingContext.java:243)
... 48 more
Caused by: java.net.UnknownHostException: corbaloc: corbaloc
at java.net.InetAddress.getAllByName0(Unknown Source)
at java.net.InetAddress.getAllByName0(Unknown Source)
at java.net.InetAddress.getAllByName(Unknown Source)
at java.net.InetAddress.getByName(Unknown Source)
at org.jnp.interfaces.TimedSocketFactory.createSocket(TimedSocketFactory.java:76)
at org.jnp.interfaces.NamingContext.getServer(NamingContext.java:239)
... 48 more
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4046318#4046318
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4046318
19 years