[JBoss JIRA] (WFLY-10039) Backward-compatibility issues with eviction configuration between EAP 6 and 7
by Paul Ferraro (JIRA)
[ https://issues.jboss.org/browse/WFLY-10039?page=com.atlassian.jira.plugin... ]
Paul Ferraro commented on WFLY-10039:
-------------------------------------
[~pkremens] Was the default standalone-full-ha.xml from EAP6 used? If not, please attach.
> 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...
> 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)
8 years, 1 month
[JBoss JIRA] (WFLY-10044) enable_bundling property causes boot to fail
by Paul Ferraro (JIRA)
[ https://issues.jboss.org/browse/WFLY-10044?page=com.atlassian.jira.plugin... ]
Paul Ferraro reopened WFLY-10044:
---------------------------------
> enable_bundling property causes boot to fail
> --------------------------------------------
>
> Key: WFLY-10044
> URL: https://issues.jboss.org/browse/WFLY-10044
> Project: WildFly
> Issue Type: Bug
> Components: Clustering
> Affects Versions: 12.0.0.Final
> Reporter: Miroslav Novak
> Assignee: Paul Ferraro
> Priority: Critical
>
> When configuring JGroups udp stack then it no longer takes property {{enable_bundling}}:
> {code}
> <stack name="udp">
> <transport type="UDP" shared="false" socket-binding="jgroups-udp">
> <property name="enable_bundling">
> false
> </property>
> </transport>
> <protocol type="PING"/>
> <protocol type="MERGE3"/>
> <protocol type="FD_SOCK"/>
> <protocol type="FD_ALL"/>
> <protocol type="VERIFY_SUSPECT"/>
> <protocol type="pbcast.NAKACK2"/>
> <protocol type="UNICAST3"/>
> <protocol type="pbcast.STABLE"/>
> <protocol type="pbcast.GMS"/>
> <protocol type="UFC"/>
> <protocol type="MFC"/>
> <protocol type="FRAG3"/>
> <protocol type="TUNNEL">
> <property name="gossip_router_hosts">
> 0.0.0.0[12001]
> </property>
> </protocol>
> </stack>
> {code}
> If it's used then server does not boot and logs error:
> {code}
> 10:15:24,324 ERROR [org.jboss.msc.service.fail] (ServerService Thread Pool -- 74) MSC000001: Failed to start service org.wildfly.clustering.jgroups.channel.activemq-cluster: org.jboss.msc.service.StartException in service org.wildfly.clustering.jgroups.channel.activemq-cluster: java.lang.IllegalArgumentException: java.security.PrivilegedActionException: java.lang.IllegalArgumentException: Unrecognized UDP properties: [enable_bundling]
> at org.jboss.as.clustering.jgroups.subsystem.ChannelBuilder.start(ChannelBuilder.java:103)
> at org.wildfly.clustering.service.AsynchronousServiceBuilder.lambda$start$0(AsynchronousServiceBuilder.java:99) [wildfly-clustering-service-12.0.0.Final.jar:12.0.0.Final]
> at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) [jboss-threads-2.3.1.Final.jar:2.3.1.Final]
> at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:1985) [jboss-threads-2.3.1.Final.jar:2.3.1.Final]
> at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1487) [jboss-threads-2.3.1.Final.jar:2.3.1.Final]
> at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1378) [jboss-threads-2.3.1.Final.jar:2.3.1.Final]
> at java.lang.Thread.run(Thread.java:748) [rt.jar:1.8.0_131]
> at org.jboss.threads.JBossThread.run(JBossThread.java:485) [jboss-threads-2.3.1.Final.jar:2.3.1.Final]
> Caused by: java.lang.IllegalArgumentException: java.security.PrivilegedActionException: java.lang.IllegalArgumentException: Unrecognized UDP properties: [enable_bundling]
> at org.jboss.as.clustering.jgroups.subsystem.AbstractProtocolConfigurationBuilder.createProtocol(AbstractProtocolConfigurationBuilder.java:119)
> at org.jboss.as.clustering.jgroups.JChannelFactory.createChannel(JChannelFactory.java:102)
> at org.jboss.as.clustering.jgroups.subsystem.ChannelBuilder.start(ChannelBuilder.java:101)
> ... 7 more
> Caused by: java.security.PrivilegedActionException: java.lang.IllegalArgumentException: Unrecognized UDP properties: [enable_bundling]
> at org.wildfly.security.manager.WildFlySecurityManager.doUnchecked(WildFlySecurityManager.java:852) [wildfly-elytron-1.2.2.Final.jar:1.2.2.Final]
> at org.jboss.as.clustering.jgroups.subsystem.AbstractProtocolConfigurationBuilder.createProtocol(AbstractProtocolConfigurationBuilder.java:114)
> ... 9 more
> Caused by: java.lang.IllegalArgumentException: Unrecognized UDP properties: [enable_bundling]
> at org.jgroups.stack.Protocol.setProperties(Protocol.java:144)
> at org.jboss.as.clustering.jgroups.subsystem.AbstractProtocolConfigurationBuilder.lambda$createProtocol$0(AbstractProtocolConfigurationBuilder.java:108)
> at org.wildfly.security.manager.WildFlySecurityManager.doUnchecked(WildFlySecurityManager.java:850) [wildfly-elytron-1.2.2.Final.jar:1.2.2.Final]
> ... 10 more
> {code}
> This is change and backward compatibility issue against EAP 7.1/WF11.
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
8 years, 1 month
[JBoss JIRA] (WFLY-10044) enable_bundling property causes boot to fail
by Paul Ferraro (JIRA)
[ https://issues.jboss.org/browse/WFLY-10044?page=com.atlassian.jira.plugin... ]
Paul Ferraro closed WFLY-10044.
-------------------------------
Resolution: Rejected
Fixed status.
> enable_bundling property causes boot to fail
> --------------------------------------------
>
> Key: WFLY-10044
> URL: https://issues.jboss.org/browse/WFLY-10044
> Project: WildFly
> Issue Type: Bug
> Components: Clustering
> Affects Versions: 12.0.0.Final
> Reporter: Miroslav Novak
> Assignee: Paul Ferraro
> Priority: Critical
>
> When configuring JGroups udp stack then it no longer takes property {{enable_bundling}}:
> {code}
> <stack name="udp">
> <transport type="UDP" shared="false" socket-binding="jgroups-udp">
> <property name="enable_bundling">
> false
> </property>
> </transport>
> <protocol type="PING"/>
> <protocol type="MERGE3"/>
> <protocol type="FD_SOCK"/>
> <protocol type="FD_ALL"/>
> <protocol type="VERIFY_SUSPECT"/>
> <protocol type="pbcast.NAKACK2"/>
> <protocol type="UNICAST3"/>
> <protocol type="pbcast.STABLE"/>
> <protocol type="pbcast.GMS"/>
> <protocol type="UFC"/>
> <protocol type="MFC"/>
> <protocol type="FRAG3"/>
> <protocol type="TUNNEL">
> <property name="gossip_router_hosts">
> 0.0.0.0[12001]
> </property>
> </protocol>
> </stack>
> {code}
> If it's used then server does not boot and logs error:
> {code}
> 10:15:24,324 ERROR [org.jboss.msc.service.fail] (ServerService Thread Pool -- 74) MSC000001: Failed to start service org.wildfly.clustering.jgroups.channel.activemq-cluster: org.jboss.msc.service.StartException in service org.wildfly.clustering.jgroups.channel.activemq-cluster: java.lang.IllegalArgumentException: java.security.PrivilegedActionException: java.lang.IllegalArgumentException: Unrecognized UDP properties: [enable_bundling]
> at org.jboss.as.clustering.jgroups.subsystem.ChannelBuilder.start(ChannelBuilder.java:103)
> at org.wildfly.clustering.service.AsynchronousServiceBuilder.lambda$start$0(AsynchronousServiceBuilder.java:99) [wildfly-clustering-service-12.0.0.Final.jar:12.0.0.Final]
> at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) [jboss-threads-2.3.1.Final.jar:2.3.1.Final]
> at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:1985) [jboss-threads-2.3.1.Final.jar:2.3.1.Final]
> at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1487) [jboss-threads-2.3.1.Final.jar:2.3.1.Final]
> at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1378) [jboss-threads-2.3.1.Final.jar:2.3.1.Final]
> at java.lang.Thread.run(Thread.java:748) [rt.jar:1.8.0_131]
> at org.jboss.threads.JBossThread.run(JBossThread.java:485) [jboss-threads-2.3.1.Final.jar:2.3.1.Final]
> Caused by: java.lang.IllegalArgumentException: java.security.PrivilegedActionException: java.lang.IllegalArgumentException: Unrecognized UDP properties: [enable_bundling]
> at org.jboss.as.clustering.jgroups.subsystem.AbstractProtocolConfigurationBuilder.createProtocol(AbstractProtocolConfigurationBuilder.java:119)
> at org.jboss.as.clustering.jgroups.JChannelFactory.createChannel(JChannelFactory.java:102)
> at org.jboss.as.clustering.jgroups.subsystem.ChannelBuilder.start(ChannelBuilder.java:101)
> ... 7 more
> Caused by: java.security.PrivilegedActionException: java.lang.IllegalArgumentException: Unrecognized UDP properties: [enable_bundling]
> at org.wildfly.security.manager.WildFlySecurityManager.doUnchecked(WildFlySecurityManager.java:852) [wildfly-elytron-1.2.2.Final.jar:1.2.2.Final]
> at org.jboss.as.clustering.jgroups.subsystem.AbstractProtocolConfigurationBuilder.createProtocol(AbstractProtocolConfigurationBuilder.java:114)
> ... 9 more
> Caused by: java.lang.IllegalArgumentException: Unrecognized UDP properties: [enable_bundling]
> at org.jgroups.stack.Protocol.setProperties(Protocol.java:144)
> at org.jboss.as.clustering.jgroups.subsystem.AbstractProtocolConfigurationBuilder.lambda$createProtocol$0(AbstractProtocolConfigurationBuilder.java:108)
> at org.wildfly.security.manager.WildFlySecurityManager.doUnchecked(WildFlySecurityManager.java:850) [wildfly-elytron-1.2.2.Final.jar:1.2.2.Final]
> ... 10 more
> {code}
> This is change and backward compatibility issue against EAP 7.1/WF11.
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
8 years, 1 month
[JBoss JIRA] (WFLY-10046) Cannot create cluster with JGroups Gossip router
by Paul Ferraro (JIRA)
[ https://issues.jboss.org/browse/WFLY-10046?page=com.atlassian.jira.plugin... ]
Paul Ferraro commented on WFLY-10046:
-------------------------------------
Reducing priority until verified as a bug.
> Cannot create cluster with JGroups Gossip router
> ------------------------------------------------
>
> Key: WFLY-10046
> URL: https://issues.jboss.org/browse/WFLY-10046
> Project: WildFly
> Issue Type: Bug
> Components: Clustering
> Affects Versions: 12.0.0.Final
> Reporter: Miroslav Novak
> Assignee: Paul Ferraro
> Attachments: standalone-full-ha-gosship1.xml, standalone-full-ha-gosship2.xml
>
>
> I've used config from EAP 7.1.0/WF11 where gossip router was configured in udp stack like:
> {code}
> <stack name="udp">
> <transport type="UDP" shared="false" socket-binding="jgroups-udp"/>
> <protocol type="PING"/>
> <protocol type="MERGE3"/>
> <protocol type="FD_SOCK"/>
> <protocol type="FD_ALL"/>
> <protocol type="VERIFY_SUSPECT"/>
> <protocol type="pbcast.NAKACK2"/>
> <protocol type="UNICAST3"/>
> <protocol type="pbcast.STABLE"/>
> <protocol type="pbcast.GMS"/>
> <protocol type="UFC"/>
> <protocol type="MFC"/>
> <protocol type="FRAG2"/>
> <protocol type="TUNNEL">
> <property name="gossip_router_hosts">
> 0.0.0.0[12001]
> </property>
> </protocol>
> </stack>
> {code}
> Gossip router was started on localhost:
> {{java -cp $JBOSS_HOME//bin/client/jboss-client.jar org.jgroups.stack.GossipRouter -port 12001 -bindaddress 0.0.0.0}}
> but cluster does not form up. The same configuration works in EAP 7.1.
> Attaching xml config files for both of the servers.
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
8 years, 1 month
[JBoss JIRA] (WFLY-10046) Cannot create cluster with JGroups Gossip router
by Paul Ferraro (JIRA)
[ https://issues.jboss.org/browse/WFLY-10046?page=com.atlassian.jira.plugin... ]
Paul Ferraro commented on WFLY-10046:
-------------------------------------
[~mnovak] Please attach logs.
> Cannot create cluster with JGroups Gossip router
> ------------------------------------------------
>
> Key: WFLY-10046
> URL: https://issues.jboss.org/browse/WFLY-10046
> Project: WildFly
> Issue Type: Bug
> Components: Clustering
> Affects Versions: 12.0.0.Final
> Reporter: Miroslav Novak
> Assignee: Paul Ferraro
> Priority: Blocker
> Attachments: standalone-full-ha-gosship1.xml, standalone-full-ha-gosship2.xml
>
>
> I've used config from EAP 7.1.0/WF11 where gossip router was configured in udp stack like:
> {code}
> <stack name="udp">
> <transport type="UDP" shared="false" socket-binding="jgroups-udp"/>
> <protocol type="PING"/>
> <protocol type="MERGE3"/>
> <protocol type="FD_SOCK"/>
> <protocol type="FD_ALL"/>
> <protocol type="VERIFY_SUSPECT"/>
> <protocol type="pbcast.NAKACK2"/>
> <protocol type="UNICAST3"/>
> <protocol type="pbcast.STABLE"/>
> <protocol type="pbcast.GMS"/>
> <protocol type="UFC"/>
> <protocol type="MFC"/>
> <protocol type="FRAG2"/>
> <protocol type="TUNNEL">
> <property name="gossip_router_hosts">
> 0.0.0.0[12001]
> </property>
> </protocol>
> </stack>
> {code}
> Gossip router was started on localhost:
> {{java -cp $JBOSS_HOME//bin/client/jboss-client.jar org.jgroups.stack.GossipRouter -port 12001 -bindaddress 0.0.0.0}}
> but cluster does not form up. The same configuration works in EAP 7.1.
> Attaching xml config files for both of the servers.
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
8 years, 1 month
[JBoss JIRA] (WFLY-10046) Cannot create cluster with JGroups Gossip router
by Paul Ferraro (JIRA)
[ https://issues.jboss.org/browse/WFLY-10046?page=com.atlassian.jira.plugin... ]
Paul Ferraro updated WFLY-10046:
--------------------------------
Priority: Major (was: Blocker)
> Cannot create cluster with JGroups Gossip router
> ------------------------------------------------
>
> Key: WFLY-10046
> URL: https://issues.jboss.org/browse/WFLY-10046
> Project: WildFly
> Issue Type: Bug
> Components: Clustering
> Affects Versions: 12.0.0.Final
> Reporter: Miroslav Novak
> Assignee: Paul Ferraro
> Attachments: standalone-full-ha-gosship1.xml, standalone-full-ha-gosship2.xml
>
>
> I've used config from EAP 7.1.0/WF11 where gossip router was configured in udp stack like:
> {code}
> <stack name="udp">
> <transport type="UDP" shared="false" socket-binding="jgroups-udp"/>
> <protocol type="PING"/>
> <protocol type="MERGE3"/>
> <protocol type="FD_SOCK"/>
> <protocol type="FD_ALL"/>
> <protocol type="VERIFY_SUSPECT"/>
> <protocol type="pbcast.NAKACK2"/>
> <protocol type="UNICAST3"/>
> <protocol type="pbcast.STABLE"/>
> <protocol type="pbcast.GMS"/>
> <protocol type="UFC"/>
> <protocol type="MFC"/>
> <protocol type="FRAG2"/>
> <protocol type="TUNNEL">
> <property name="gossip_router_hosts">
> 0.0.0.0[12001]
> </property>
> </protocol>
> </stack>
> {code}
> Gossip router was started on localhost:
> {{java -cp $JBOSS_HOME//bin/client/jboss-client.jar org.jgroups.stack.GossipRouter -port 12001 -bindaddress 0.0.0.0}}
> but cluster does not form up. The same configuration works in EAP 7.1.
> Attaching xml config files for both of the servers.
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
8 years, 1 month
[JBoss JIRA] (DROOLS-2399) [Guided Decision Table] ValidationWebWorkerServlet fails to load web worker
by Jozef Marko (JIRA)
[ https://issues.jboss.org/browse/DROOLS-2399?page=com.atlassian.jira.plugi... ]
Jozef Marko updated DROOLS-2399:
--------------------------------
Description:
The guided decision tables are not validated. After user clicks on the _Validate_ button, the error [1] appears in the server log.
[1]
{code:log}
10:32:00,313 ERROR [org.drools.workbench.services.verifier.plugin.backend.VerifierWebWorkerServlet] (default task-43) Failed to load verifier web worker.
{code}
was:
The guided decision tables are not validated. After user clicks on the _Validate_ button, the error [1] appears in the server log.
Steps to reproduce:
# Create new Guided Decision Table
# Add simple Condition column into the table
# Insert new empty row into the table
# Click Validate button
** Panel with validation results won't appear
** The error in server log appear
[1]
{code:log}
10:32:00,313 ERROR [org.drools.workbench.services.verifier.plugin.backend.VerifierWebWorkerServlet] (default task-43) Failed to load verifier web worker.
{code}
> [Guided Decision Table] ValidationWebWorkerServlet fails to load web worker
> ---------------------------------------------------------------------------
>
> Key: DROOLS-2399
> URL: https://issues.jboss.org/browse/DROOLS-2399
> Project: Drools
> Issue Type: Bug
> Components: Guided Decision Table Editor
> Affects Versions: 7.0.0.Beta4
> Reporter: Jozef Marko
> Assignee: Toni Rikkola
> Priority: Minor
> Labels: beta5_smoketesting, dtable_testday_preparation, qe-test-day, reported-by-qe
>
> The guided decision tables are not validated. After user clicks on the _Validate_ button, the error [1] appears in the server log.
> [1]
> {code:log}
> 10:32:00,313 ERROR [org.drools.workbench.services.verifier.plugin.backend.VerifierWebWorkerServlet] (default task-43) Failed to load verifier web worker.
> {code}
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
8 years, 1 month
[JBoss JIRA] (DROOLS-2399) [Guided Decision Table] ValidationWebWorkerServlet fails to load web worker
by Jozef Marko (JIRA)
[ https://issues.jboss.org/browse/DROOLS-2399?page=com.atlassian.jira.plugi... ]
Jozef Marko updated DROOLS-2399:
--------------------------------
Steps to Reproduce:
# Create new Guided Decision Table
# Add simple Condition column into the table
# Insert new empty row into the table
# Click Validate button
** Panel with validation results won't appear
** The error in server log appear
> [Guided Decision Table] ValidationWebWorkerServlet fails to load web worker
> ---------------------------------------------------------------------------
>
> Key: DROOLS-2399
> URL: https://issues.jboss.org/browse/DROOLS-2399
> Project: Drools
> Issue Type: Bug
> Components: Guided Decision Table Editor
> Affects Versions: 7.0.0.Beta4
> Reporter: Jozef Marko
> Assignee: Toni Rikkola
> Priority: Minor
> Labels: beta5_smoketesting, dtable_testday_preparation, qe-test-day, reported-by-qe
>
> The guided decision tables are not validated. After user clicks on the _Validate_ button, the error [1] appears in the server log.
> [1]
> {code:log}
> 10:32:00,313 ERROR [org.drools.workbench.services.verifier.plugin.backend.VerifierWebWorkerServlet] (default task-43) Failed to load verifier web worker.
> {code}
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
8 years, 1 month
[JBoss JIRA] (DROOLS-2399) [Guided Decision Table] ValidationWebWorkerServlet fails to load web worker
by Jozef Marko (JIRA)
[ https://issues.jboss.org/browse/DROOLS-2399?page=com.atlassian.jira.plugi... ]
Jozef Marko updated DROOLS-2399:
--------------------------------
Tester: Jozef Marko
> [Guided Decision Table] ValidationWebWorkerServlet fails to load web worker
> ---------------------------------------------------------------------------
>
> Key: DROOLS-2399
> URL: https://issues.jboss.org/browse/DROOLS-2399
> Project: Drools
> Issue Type: Bug
> Components: Guided Decision Table Editor
> Affects Versions: 7.0.0.Beta4
> Reporter: Jozef Marko
> Assignee: Toni Rikkola
> Priority: Minor
> Labels: beta5_smoketesting, dtable_testday_preparation, qe-test-day, reported-by-qe
>
> The guided decision tables are not validated. After user clicks on the _Validate_ button, the error [1] appears in the server log.
> [1]
> {code:log}
> 10:32:00,313 ERROR [org.drools.workbench.services.verifier.plugin.backend.VerifierWebWorkerServlet] (default task-43) Failed to load verifier web worker.
> {code}
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
8 years, 1 month
[JBoss JIRA] (DROOLS-2399) [Guided Decision Table] ValidationWebWorkerServlet fails to load web worker
by Jozef Marko (JIRA)
[ https://issues.jboss.org/browse/DROOLS-2399?page=com.atlassian.jira.plugi... ]
Jozef Marko updated DROOLS-2399:
--------------------------------
Parent: (was: DROOLS-1830)
Issue Type: Bug (was: Sub-task)
> [Guided Decision Table] ValidationWebWorkerServlet fails to load web worker
> ---------------------------------------------------------------------------
>
> Key: DROOLS-2399
> URL: https://issues.jboss.org/browse/DROOLS-2399
> Project: Drools
> Issue Type: Bug
> Components: Guided Decision Table Editor
> Affects Versions: 7.0.0.Beta4
> Reporter: Jozef Marko
> Assignee: Toni Rikkola
> Priority: Minor
> Labels: beta5_smoketesting, dtable_testday_preparation, qe-test-day, reported-by-qe
>
> The guided decision tables are not validated. After user clicks on the _Validate_ button, the error [1] appears in the server log.
> Steps to reproduce:
> # Create new Guided Decision Table
> # Add simple Condition column into the table
> # Insert new empty row into the table
> # Click Validate button
> ** Panel with validation results won't appear
> ** The error in server log appear
> [1]
> {code:log}
> 10:32:00,313 ERROR [org.drools.workbench.services.verifier.plugin.backend.VerifierWebWorkerServlet] (default task-43) Failed to load verifier web worker.
> {code}
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
8 years, 1 month