[jboss-jira] [JBoss JIRA] (WFLY-10039) Backward-compatibility issues with eviction configuration between EAP 6 and 7
Petr Kremensky (JIRA)
issues at jboss.org
Mon Mar 19 12:11:00 EDT 2018
[ https://issues.jboss.org/browse/WFLY-10039?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13547975#comment-13547975 ]
Petr Kremensky commented on WFLY-10039:
---------------------------------------
[~pferraro] Yes, the default was used.
Node: the only difference between 6.4.0 and 6.4.19 is domain model version, otherwise these are same as well.
{code:diff}
$ diff ${EAP_6_4_0}/standalone/configuration/standalone-full-ha.xml ${EAP_6_4_19}/standalone/configuration/standalone-full-ha.xml
< <server xmlns="urn:jboss:domain:1.7">
---
> <server xmlns="urn:jboss:domain:1.8">
{code}
> Backward-compatibility issues with eviction configuration between EAP 6 and 7
> -----------------------------------------------------------------------------
>
> Key: WFLY-10039
> URL: https://issues.jboss.org/browse/WFLY-10039
> Project: WildFly
> Issue Type: Bug
> Components: Clustering
> Reporter: Petr Kremensky
> Assignee: Paul Ferraro
> Priority: Blocker
>
> Deploying jboss-kitchensink quickstart on server using migrated configuration from EAP 6.4 fails with
> {noformat}
> 12:21:17,131 ERROR [org.jboss.msc.service.fail] (MSC service thread 1-1) MSC000001: Failed to start service org.wildfly.clustering.infinispan.cache-configuration.ejb.client-mappings: org.jboss.msc.service.StartException in service org.wildfly.clustering.infinispan.cache-configuration.ejb.client-mappings: Failed to start service
> at org.jboss.msc.service.ServiceControllerImpl$StartTask.execute(ServiceControllerImpl.java:1706)
> at org.jboss.msc.service.ServiceControllerImpl$ControllerTask.run(ServiceControllerImpl.java:1540)
> at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35)
> at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:1985)
> at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1487)
> at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1378)
> at java.lang.Thread.run(Thread.java:748)
> Caused by: org.infinispan.commons.CacheConfigurationException: ISPN000424: Eviction size value cannot be less than or equal to zero if eviction is enabled
> at org.infinispan.configuration.cache.MemoryConfigurationBuilder.validate(MemoryConfigurationBuilder.java:185)
> at org.infinispan.configuration.cache.ConfigurationBuilder.validate(ConfigurationBuilder.java:233)
> at org.infinispan.configuration.cache.ConfigurationBuilder.build(ConfigurationBuilder.java:290)
> at org.infinispan.configuration.cache.ConfigurationBuilder.build(ConfigurationBuilder.java:280)
> at org.wildfly.clustering.infinispan.spi.service.ConfigurationBuilder.start(ConfigurationBuilder.java:88)
> at org.jboss.msc.service.ServiceControllerImpl$StartTask.startService(ServiceControllerImpl.java:1714)
> at org.jboss.msc.service.ServiceControllerImpl$StartTask.execute(ServiceControllerImpl.java:1693)
> ... 6 more
> {noformat}
> *Introduced by:*
> https://issues.jboss.org/browse/WFLY-9344 - Let Infinispan manage eviction for distributed web sessions and @Stateful EJBs
> https://github.com/wildfly/wildfly/pull/10986
> *Steps to reproduce:*
> {noformat}
> # https://access.qa.redhat.com/documentation/en-us/red_hat_jboss_enterprise_application_platform/7.1/html-single/migration_guide/#management_cli_migration_operation
> WORKSPACE=`pwd`
> CONFIG=standalone-full-ha.xml
> unzip -q jboss-eap-6.4.19-full-build.zip
> EAP6_HOME=${WORKSPACE}/jboss-eap-6.4
> # workaround https://issues.jboss.org/browse/WFLY-9877
> pushd ${EAP6_HOME}/standalone/configuration/
> grep -lr 'NAKACK' . | xargs sed -i 's/NAKACK/NAKACK2/g'
> grep -lr 'UNICAST2' . | xargs sed -i 's/UNICAST2/UNICAST3/g'
> grep -lr 'MERGE2' . | xargs sed -i 's/MERGE2/MERGE3/g'
> popd
> cp -r ${WILDFLY}/dist/target/wildfly-13.0.0.Alpha1-SNAPSHOT .
> EAP7_HOME=${WORKSPACE}/wildfly-13.0.0.Alpha1-SNAPSHOT
> cp ${EAP6_HOME}/standalone/configuration/${CONFIG} ${EAP7_HOME}/standalone/configuration
> ${EAP7_HOME}/bin/standalone.sh -c ${CONFIG} --start-mode=admin-only &
> ${EAP7_HOME}/bin/jboss-cli.sh --connect --controller=remote://localhost:9999
> /subsystem=jacorb:migrate
> /subsystem=messaging:migrate
> /subsystem=web:migrate
> /subsystem=cmp:remove
> /extension=org.jboss.as.cmp:remove
> /subsystem=jaxr:remove
> /extension=org.jboss.as.jaxr:remove
> /subsystem=threads:remove
> /extension=org.jboss.as.threads:remove
> /subsystem=logging/pattern-formatter=COLOR-PATTERN:add(pattern="%K{level}%d{HH:mm:ss,SSS} %-5p [%c] (%t) %s%e%n")
> /subsystem=logging/console-handler=CONSOLE:add(level=INFO, named-formatter=COLOR-PATTERN)
> /subsystem=logging/root-logger=ROOT:add-handler(name=CONSOLE)
> reload
> deploy jboss-kitchensink.war
> {noformat}
> *server side log*
> {noformat}
> 12:21:17,131 ERROR [org.jboss.msc.service.fail] (MSC service thread 1-1) MSC000001: Failed to start service org.wildfly.clustering.infinispan.cache-configuration.ejb.client-mappings: org.jboss.msc.service.StartException in service org.wildfly.clustering.infinispan.cache-configuration.ejb.client-mappings: Failed to start service
> at org.jboss.msc.service.ServiceControllerImpl$StartTask.execute(ServiceControllerImpl.java:1706)
> at org.jboss.msc.service.ServiceControllerImpl$ControllerTask.run(ServiceControllerImpl.java:1540)
> at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35)
> at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:1985)
> at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1487)
> at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1378)
> at java.lang.Thread.run(Thread.java:748)
> Caused by: org.infinispan.commons.CacheConfigurationException: ISPN000424: Eviction size value cannot be less than or equal to zero if eviction is enabled
> at org.infinispan.configuration.cache.MemoryConfigurationBuilder.validate(MemoryConfigurationBuilder.java:185)
> at org.infinispan.configuration.cache.ConfigurationBuilder.validate(ConfigurationBuilder.java:233)
> at org.infinispan.configuration.cache.ConfigurationBuilder.build(ConfigurationBuilder.java:290)
> at org.infinispan.configuration.cache.ConfigurationBuilder.build(ConfigurationBuilder.java:280)
> at org.wildfly.clustering.infinispan.spi.service.ConfigurationBuilder.start(ConfigurationBuilder.java:88)
> at org.jboss.msc.service.ServiceControllerImpl$StartTask.startService(ServiceControllerImpl.java:1714)
> at org.jboss.msc.service.ServiceControllerImpl$StartTask.execute(ServiceControllerImpl.java:1693)
> ... 6 more
> 12:21:17,137 ERROR [org.jboss.as.controller.management-operation] (management-handler-thread - 1) WFLYCTL0013: Operation ("deploy") failed - address: ({"deployment" => "jboss-kitchensink.war"}) - failure description: {
> "WFLYCTL0412: Required services that are not installed:" => [
> "jboss.ejb.association",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.faces.webapp.FacetTag\".START",
> "jboss.undertow.deployment.default-server.default-host./jboss-kitchensink",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.servlet.jsp.jstl.tlv.PermittedTaglibsTLV\".START",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".ejb3.client-context.registration-service",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".component.MemberRegistration.START",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"com.sun.faces.config.ConfigureListener\".START",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"org.jboss.weld.module.web.servlet.WeldInitialListener\".START",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.servlet.jsp.jstl.tlv.ScriptFreeTLV\".START",
> "jboss.deployment.discovery.\"jboss-kitchensink.war\"",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"org.jboss.weld.module.web.servlet.WeldTerminalListener\".START"
> ],
> "WFLYCTL0180: Services with missing/unavailable dependencies" => [
> "jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"org.jboss.weld.module.web.servlet.WeldInitialListener\".START is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".ejb3.client-context.registration-service]",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.servlet.jsp.jstl.tlv.PermittedTaglibsTLV\".START is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".ejb3.client-context.registration-service]",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".WeldEndInitService is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.faces.webapp.FacetTag\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.servlet.jsp.jstl.tlv.PermittedTaglibsTLV\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"org.jboss.weld.module.web.servlet.WeldInitialListener\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.MemberRegistration.START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.servlet.jsp.jstl.tlv.ScriptFreeTLV\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"com.sun.faces.config.ConfigureListener\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"org.jboss.weld.module.web.servlet.WeldTerminalListener\".START]",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".component.MemberRegistration.START is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".ejb3.client-context.registration-service]",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".ejb3.client-context.registration-service is missing [jboss.deployment.discovery.\"jboss-kitchensink.war\"]",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"com.sun.faces.config.ConfigureListener\".START is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".ejb3.client-context.registration-service]",
> "jboss.deployment.discovery.\"jboss-kitchensink.war\" is missing [jboss.ejb.association]",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"org.jboss.weld.module.web.servlet.WeldTerminalListener\".START is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".ejb3.client-context.registration-service]",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".deploymentCompleteService is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.faces.webapp.FacetTag\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.servlet.jsp.jstl.tlv.PermittedTaglibsTLV\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"org.jboss.weld.module.web.servlet.WeldInitialListener\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.MemberRegistration.START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.servlet.jsp.jstl.tlv.ScriptFreeTLV\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"com.sun.faces.config.ConfigureListener\".START, jboss.undertow.deployment.default-server.default-host./jboss-kitchensink, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"org.jboss.weld.module.web.servlet.WeldTerminalListener\".START]",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.servlet.jsp.jstl.tlv.ScriptFreeTLV\".START is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".ejb3.client-context.registration-service]",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.faces.webapp.FacetTag\".START is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".ejb3.client-context.registration-service]",
> "jboss.undertow.deployment.default-server.default-host./jboss-kitchensink is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.faces.webapp.FacetTag\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.servlet.jsp.jstl.tlv.PermittedTaglibsTLV\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"org.jboss.weld.module.web.servlet.WeldInitialListener\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.MemberRegistration.START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.servlet.jsp.jstl.tlv.ScriptFreeTLV\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"com.sun.faces.config.ConfigureListener\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"org.jboss.weld.module.web.servlet.WeldTerminalListener\".START]",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".moduleDeploymentRuntimeInformationStart is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".component.MemberRegistration.START]"
> ]
> }
> 12:21:17,141 ERROR [org.jboss.as.server] (management-handler-thread - 1) WFLYSRV0021: Deploy of deployment "jboss-kitchensink.war" was rolled back with the following failure message:
> {
> "WFLYCTL0412: Required services that are not installed:" => [
> "jboss.ejb.association",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.faces.webapp.FacetTag\".START",
> "jboss.undertow.deployment.default-server.default-host./jboss-kitchensink",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.servlet.jsp.jstl.tlv.PermittedTaglibsTLV\".START",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".ejb3.client-context.registration-service",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".component.MemberRegistration.START",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"com.sun.faces.config.ConfigureListener\".START",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"org.jboss.weld.module.web.servlet.WeldInitialListener\".START",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.servlet.jsp.jstl.tlv.ScriptFreeTLV\".START",
> "jboss.deployment.discovery.\"jboss-kitchensink.war\"",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"org.jboss.weld.module.web.servlet.WeldTerminalListener\".START"
> ],
> "WFLYCTL0180: Services with missing/unavailable dependencies" => [
> "jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"org.jboss.weld.module.web.servlet.WeldInitialListener\".START is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".ejb3.client-context.registration-service]",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.servlet.jsp.jstl.tlv.PermittedTaglibsTLV\".START is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".ejb3.client-context.registration-service]",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".WeldEndInitService is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.faces.webapp.FacetTag\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.servlet.jsp.jstl.tlv.PermittedTaglibsTLV\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"org.jboss.weld.module.web.servlet.WeldInitialListener\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.MemberRegistration.START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.servlet.jsp.jstl.tlv.ScriptFreeTLV\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"com.sun.faces.config.ConfigureListener\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"org.jboss.weld.module.web.servlet.WeldTerminalListener\".START]",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".component.MemberRegistration.START is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".ejb3.client-context.registration-service]",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".ejb3.client-context.registration-service is missing [jboss.deployment.discovery.\"jboss-kitchensink.war\"]",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"com.sun.faces.config.ConfigureListener\".START is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".ejb3.client-context.registration-service]",
> "jboss.deployment.discovery.\"jboss-kitchensink.war\" is missing [jboss.ejb.association]",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"org.jboss.weld.module.web.servlet.WeldTerminalListener\".START is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".ejb3.client-context.registration-service]",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".deploymentCompleteService is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.faces.webapp.FacetTag\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.servlet.jsp.jstl.tlv.PermittedTaglibsTLV\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"org.jboss.weld.module.web.servlet.WeldInitialListener\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.MemberRegistration.START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.servlet.jsp.jstl.tlv.ScriptFreeTLV\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"com.sun.faces.config.ConfigureListener\".START, jboss.undertow.deployment.default-server.default-host./jboss-kitchensink, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"org.jboss.weld.module.web.servlet.WeldTerminalListener\".START]",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.servlet.jsp.jstl.tlv.ScriptFreeTLV\".START is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".ejb3.client-context.registration-service]",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.faces.webapp.FacetTag\".START is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".ejb3.client-context.registration-service]",
> "jboss.undertow.deployment.default-server.default-host./jboss-kitchensink is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.faces.webapp.FacetTag\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.servlet.jsp.jstl.tlv.PermittedTaglibsTLV\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"org.jboss.weld.module.web.servlet.WeldInitialListener\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.MemberRegistration.START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.servlet.jsp.jstl.tlv.ScriptFreeTLV\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"com.sun.faces.config.ConfigureListener\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"org.jboss.weld.module.web.servlet.WeldTerminalListener\".START]",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".moduleDeploymentRuntimeInformationStart is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".component.MemberRegistration.START]"
> ]
> }
> {noformat}
> *client side log*
> {noformat}
> {"WFLYCTL0062: Composite operation failed and was rolled back. Steps that failed:" => {"Operation step-2" => {"WFLYCTL0412: Required services that are not installed:" => ["jboss.ejb.association","jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.faces.webapp.FacetTag\".START","jboss.undertow.deployment.default-server.default-host./jboss-kitchensink","jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.servlet.jsp.jstl.tlv.PermittedTaglibsTLV\".START","jboss.deployment.unit.\"jboss-kitchensink.war\".ejb3.client-context.registration-service","jboss.deployment.unit.\"jboss-kitchensink.war\".component.MemberRegistration.START","jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"com.sun.faces.config.ConfigureListener\".START","jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"org.jboss.weld.module.web.servlet.WeldInitialListener\".START","jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.servlet.jsp.jstl.tlv.ScriptFreeTLV\".START","jboss.deployment.discovery.\"jboss-kitchensink.war\"","jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"org.jboss.weld.module.web.servlet.WeldTerminalListener\".START"],"WFLYCTL0180: Services with missing/unavailable dependencies" => ["jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"org.jboss.weld.module.web.servlet.WeldInitialListener\".START is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".ejb3.client-context.registration-service]","jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.servlet.jsp.jstl.tlv.PermittedTaglibsTLV\".START is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".ejb3.client-context.registration-service]","jboss.deployment.unit.\"jboss-kitchensink.war\".WeldEndInitService is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.faces.webapp.FacetTag\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.servlet.jsp.jstl.tlv.PermittedTaglibsTLV\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"org.jboss.weld.module.web.servlet.WeldInitialListener\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.MemberRegistration.START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.servlet.jsp.jstl.tlv.ScriptFreeTLV\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"com.sun.faces.config.ConfigureListener\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"org.jboss.weld.module.web.servlet.WeldTerminalListener\".START]","jboss.deployment.unit.\"jboss-kitchensink.war\".component.MemberRegistration.START is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".ejb3.client-context.registration-service]","jboss.deployment.unit.\"jboss-kitchensink.war\".ejb3.client-context.registration-service is missing [jboss.deployment.discovery.\"jboss-kitchensink.war\"]","jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"com.sun.faces.config.ConfigureListener\".START is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".ejb3.client-context.registration-service]","jboss.deployment.discovery.\"jboss-kitchensink.war\" is missing [jboss.ejb.association]","jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"org.jboss.weld.module.web.servlet.WeldTerminalListener\".START is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".ejb3.client-context.registration-service]","jboss.deployment.unit.\"jboss-kitchensink.war\".deploymentCompleteService is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.faces.webapp.FacetTag\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.servlet.jsp.jstl.tlv.PermittedTaglibsTLV\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"org.jboss.weld.module.web.servlet.WeldInitialListener\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.MemberRegistration.START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.servlet.jsp.jstl.tlv.ScriptFreeTLV\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"com.sun.faces.config.ConfigureListener\".START, jboss.undertow.deployment.default-server.default-host./jboss-kitchensink, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"org.jboss.weld.module.web.servlet.WeldTerminalListener\".START]","jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.servlet.jsp.jstl.tlv.ScriptFreeTLV\".START is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".ejb3.client-context.registration-service]","jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.faces.webapp.FacetTag\".START is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".ejb3.client-context.registration-service]","jboss.undertow.deployment.default-server.default-host./jboss-kitchensink is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.faces.webapp.FacetTag\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.servlet.jsp.jstl.tlv.PermittedTaglibsTLV\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"org.jboss.weld.module.web.servlet.WeldInitialListener\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.MemberRegistration.START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.servlet.jsp.jstl.tlv.ScriptFreeTLV\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"com.sun.faces.config.ConfigureListener\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"org.jboss.weld.module.web.servlet.WeldTerminalListener\".START]","jboss.deployment.unit.\"jboss-kitchensink.war\".moduleDeploymentRuntimeInformationStart is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".component.MemberRegistration.START]"]}}}
> {noformat}
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
More information about the jboss-jira
mailing list