[JBoss JIRA] (JBWS-3667) Support to create deployment archives directly in testcase using shrinkwrap
by Petr Sakař (JIRA)
Petr Sakař created JBWS-3667:
--------------------------------
Summary: Support to create deployment archives directly in testcase using shrinkwrap
Key: JBWS-3667
URL: https://issues.jboss.org/browse/JBWS-3667
Project: JBoss Web Services
Issue Type: Enhancement
Security Level: Public (Everyone can see)
Components: jbossws-cxf
Affects Versions: jbossws-cxf-4.2
Reporter: Petr Sakař
Attachments: patch_jbossws_cxf_trunk_modules_testsuite_shrinkwrap_integration.txt, patch_jbossws_cxf_trunk_modules_testsuite_shrinkwrap_integration_example.txt
Support to create deployment archives directly in testcase in java using shrinkwrap instead of creating ant task.
Advantages
- test case does not require to run ant task before running
- test case can be easily run from IDE
- can be used for arquillian integration the future
- definition of deployed archives is visible in test case ant not in separate xml
the change requires adding shrinkwrap dependency in the modules/testsuite/pom.xml and optional change of JBossWSTestHelper to provide basic support
See attached patch patch_jbossws_cxf_trunk_modules_testsuite_shrinkwrap_integration.txt
and example usage in
patch_jbossws_cxf_trunk_modules_testsuite_shrinkwrap_integration_example.txt
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 4 months
[JBoss JIRA] (JBWS-3666) Eclipse import of existing maven projects - remove errors "Plugin execution not covered by lifecycle configuration"
by Alessio Soldano (JIRA)
[ https://issues.jboss.org/browse/JBWS-3666?page=com.atlassian.jira.plugin.... ]
Alessio Soldano updated JBWS-3666:
----------------------------------
Description:
add to the pom.xml maven profile which prevents errors "Plugin execution not covered by lifecycle configuration" during import of existing maven projects into eclipse with m2e
{code:xml}
<profile>
<id>eclipse-m2e</id>
<activation>
<property>
<name>!eclipse-m2e</name>
</property>
</activation>
<build>
<pluginManagement>
<plugins>
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself. -->
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<versionRange>[1.7,)</versionRange>
<goals>
<goal>run</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore />
</action>
</pluginExecution>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<versionRange>[2.4,)</versionRange>
<goals>
<goal>sources</goal>
<goal>copy</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore />
</action>
</pluginExecution>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<versionRange>[1.0.1,)</versionRange>
<goals>
<goal>enforce</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore />
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</profile>
{code}
was:
add to the pom.xml maven profile which prevents errors "Plugin execution not covered by lifecycle configuration" during import of existing maven projects into eclipse with m2e
<profile>
<id>eclipse-m2e</id>
<activation>
<property>
<name>!eclipse-m2e</name>
</property>
</activation>
<build>
<pluginManagement>
<plugins>
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself. -->
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<versionRange>[1.7,)</versionRange>
<goals>
<goal>run</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore />
</action>
</pluginExecution>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<versionRange>[2.4,)</versionRange>
<goals>
<goal>sources</goal>
<goal>copy</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore />
</action>
</pluginExecution>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<versionRange>[1.0.1,)</versionRange>
<goals>
<goal>enforce</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore />
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</profile>
> Eclipse import of existing maven projects - remove errors "Plugin execution not covered by lifecycle configuration"
> -------------------------------------------------------------------------------------------------------------------
>
> Key: JBWS-3666
> URL: https://issues.jboss.org/browse/JBWS-3666
> Project: JBoss Web Services
> Issue Type: Enhancement
> Security Level: Public(Everyone can see)
> Components: jbossws-cxf
> Affects Versions: jbossws-cxf-4.2
> Reporter: Petr Sakař
> Priority: Minor
> Fix For: jbossws-cxf-4.3
>
>
> add to the pom.xml maven profile which prevents errors "Plugin execution not covered by lifecycle configuration" during import of existing maven projects into eclipse with m2e
> {code:xml}
> <profile>
> <id>eclipse-m2e</id>
> <activation>
> <property>
> <name>!eclipse-m2e</name>
> </property>
> </activation>
> <build>
> <pluginManagement>
> <plugins>
> <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself. -->
> <plugin>
> <groupId>org.eclipse.m2e</groupId>
> <artifactId>lifecycle-mapping</artifactId>
> <version>1.0.0</version>
> <configuration>
> <lifecycleMappingMetadata>
> <pluginExecutions>
> <pluginExecution>
> <pluginExecutionFilter>
> <groupId>org.apache.maven.plugins</groupId>
> <artifactId>maven-antrun-plugin</artifactId>
> <versionRange>[1.7,)</versionRange>
> <goals>
> <goal>run</goal>
> </goals>
> </pluginExecutionFilter>
> <action>
> <ignore />
> </action>
> </pluginExecution>
> <pluginExecution>
> <pluginExecutionFilter>
> <groupId>org.apache.maven.plugins</groupId>
> <artifactId>maven-dependency-plugin</artifactId>
> <versionRange>[2.4,)</versionRange>
> <goals>
> <goal>sources</goal>
> <goal>copy</goal>
> </goals>
> </pluginExecutionFilter>
> <action>
> <ignore />
> </action>
> </pluginExecution>
> <pluginExecution>
> <pluginExecutionFilter>
> <groupId>org.apache.maven.plugins</groupId>
> <artifactId>maven-enforcer-plugin</artifactId>
> <versionRange>[1.0.1,)</versionRange>
> <goals>
> <goal>enforce</goal>
> </goals>
> </pluginExecutionFilter>
> <action>
> <ignore />
> </action>
> </pluginExecution>
> </pluginExecutions>
> </lifecycleMappingMetadata>
> </configuration>
> </plugin>
> </plugins>
> </pluginManagement>
> </build>
> </profile>
> {code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 4 months
[JBoss JIRA] (JBWS-3666) Eclipse import of existing maven projects - remove errors "Plugin execution not covered by lifecycle configuration"
by Alessio Soldano (JIRA)
[ https://issues.jboss.org/browse/JBWS-3666?page=com.atlassian.jira.plugin.... ]
Alessio Soldano updated JBWS-3666:
----------------------------------
Fix Version/s: jbossws-cxf-4.3
> Eclipse import of existing maven projects - remove errors "Plugin execution not covered by lifecycle configuration"
> -------------------------------------------------------------------------------------------------------------------
>
> Key: JBWS-3666
> URL: https://issues.jboss.org/browse/JBWS-3666
> Project: JBoss Web Services
> Issue Type: Enhancement
> Security Level: Public(Everyone can see)
> Components: jbossws-cxf
> Affects Versions: jbossws-cxf-4.2
> Reporter: Petr Sakař
> Priority: Minor
> Fix For: jbossws-cxf-4.3
>
>
> add to the pom.xml maven profile which prevents errors "Plugin execution not covered by lifecycle configuration" during import of existing maven projects into eclipse with m2e
> <profile>
> <id>eclipse-m2e</id>
> <activation>
> <property>
> <name>!eclipse-m2e</name>
> </property>
> </activation>
> <build>
> <pluginManagement>
> <plugins>
> <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself. -->
> <plugin>
> <groupId>org.eclipse.m2e</groupId>
> <artifactId>lifecycle-mapping</artifactId>
> <version>1.0.0</version>
> <configuration>
> <lifecycleMappingMetadata>
> <pluginExecutions>
> <pluginExecution>
> <pluginExecutionFilter>
> <groupId>org.apache.maven.plugins</groupId>
> <artifactId>maven-antrun-plugin</artifactId>
> <versionRange>[1.7,)</versionRange>
> <goals>
> <goal>run</goal>
> </goals>
> </pluginExecutionFilter>
> <action>
> <ignore />
> </action>
> </pluginExecution>
> <pluginExecution>
> <pluginExecutionFilter>
> <groupId>org.apache.maven.plugins</groupId>
> <artifactId>maven-dependency-plugin</artifactId>
> <versionRange>[2.4,)</versionRange>
> <goals>
> <goal>sources</goal>
> <goal>copy</goal>
> </goals>
> </pluginExecutionFilter>
> <action>
> <ignore />
> </action>
> </pluginExecution>
> <pluginExecution>
> <pluginExecutionFilter>
> <groupId>org.apache.maven.plugins</groupId>
> <artifactId>maven-enforcer-plugin</artifactId>
> <versionRange>[1.0.1,)</versionRange>
> <goals>
> <goal>enforce</goal>
> </goals>
> </pluginExecutionFilter>
> <action>
> <ignore />
> </action>
> </pluginExecution>
> </pluginExecutions>
> </lifecycleMappingMetadata>
> </configuration>
> </plugin>
> </plugins>
> </pluginManagement>
> </build>
> </profile>
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 4 months
[JBoss JIRA] (JBWS-3666) Eclipse import of existing maven projects - remove errors "Plugin execution not covered by lifecycle configuration"
by Alessio Soldano (JIRA)
[ https://issues.jboss.org/browse/JBWS-3666?page=com.atlassian.jira.plugin.... ]
Alessio Soldano commented on JBWS-3666:
---------------------------------------
Some info on the same issue at https://github.com/netty/netty/issues/87
> Eclipse import of existing maven projects - remove errors "Plugin execution not covered by lifecycle configuration"
> -------------------------------------------------------------------------------------------------------------------
>
> Key: JBWS-3666
> URL: https://issues.jboss.org/browse/JBWS-3666
> Project: JBoss Web Services
> Issue Type: Enhancement
> Security Level: Public(Everyone can see)
> Components: jbossws-cxf
> Affects Versions: jbossws-cxf-4.2
> Reporter: Petr Sakař
> Priority: Minor
>
> add to the pom.xml maven profile which prevents errors "Plugin execution not covered by lifecycle configuration" during import of existing maven projects into eclipse with m2e
> <profile>
> <id>eclipse-m2e</id>
> <activation>
> <property>
> <name>!eclipse-m2e</name>
> </property>
> </activation>
> <build>
> <pluginManagement>
> <plugins>
> <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself. -->
> <plugin>
> <groupId>org.eclipse.m2e</groupId>
> <artifactId>lifecycle-mapping</artifactId>
> <version>1.0.0</version>
> <configuration>
> <lifecycleMappingMetadata>
> <pluginExecutions>
> <pluginExecution>
> <pluginExecutionFilter>
> <groupId>org.apache.maven.plugins</groupId>
> <artifactId>maven-antrun-plugin</artifactId>
> <versionRange>[1.7,)</versionRange>
> <goals>
> <goal>run</goal>
> </goals>
> </pluginExecutionFilter>
> <action>
> <ignore />
> </action>
> </pluginExecution>
> <pluginExecution>
> <pluginExecutionFilter>
> <groupId>org.apache.maven.plugins</groupId>
> <artifactId>maven-dependency-plugin</artifactId>
> <versionRange>[2.4,)</versionRange>
> <goals>
> <goal>sources</goal>
> <goal>copy</goal>
> </goals>
> </pluginExecutionFilter>
> <action>
> <ignore />
> </action>
> </pluginExecution>
> <pluginExecution>
> <pluginExecutionFilter>
> <groupId>org.apache.maven.plugins</groupId>
> <artifactId>maven-enforcer-plugin</artifactId>
> <versionRange>[1.0.1,)</versionRange>
> <goals>
> <goal>enforce</goal>
> </goals>
> </pluginExecutionFilter>
> <action>
> <ignore />
> </action>
> </pluginExecution>
> </pluginExecutions>
> </lifecycleMappingMetadata>
> </configuration>
> </plugin>
> </plugins>
> </pluginManagement>
> </build>
> </profile>
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 4 months
[JBoss JIRA] (JBWS-3666) Eclipse import of existing maven projects - remove errors "Plugin execution not covered by lifecycle configuration"
by Petr Sakař (JIRA)
Petr Sakař created JBWS-3666:
--------------------------------
Summary: Eclipse import of existing maven projects - remove errors "Plugin execution not covered by lifecycle configuration"
Key: JBWS-3666
URL: https://issues.jboss.org/browse/JBWS-3666
Project: JBoss Web Services
Issue Type: Enhancement
Security Level: Public (Everyone can see)
Components: jbossws-cxf
Affects Versions: jbossws-cxf-4.2
Reporter: Petr Sakař
Priority: Minor
add to the pom.xml maven profile which prevents errors "Plugin execution not covered by lifecycle configuration" during import of existing maven projects into eclipse with m2e
<profile>
<id>eclipse-m2e</id>
<activation>
<property>
<name>!eclipse-m2e</name>
</property>
</activation>
<build>
<pluginManagement>
<plugins>
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself. -->
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<versionRange>[1.7,)</versionRange>
<goals>
<goal>run</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore />
</action>
</pluginExecution>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<versionRange>[2.4,)</versionRange>
<goals>
<goal>sources</goal>
<goal>copy</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore />
</action>
</pluginExecution>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<versionRange>[1.0.1,)</versionRange>
<goals>
<goal>enforce</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore />
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</profile>
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 4 months
[JBoss JIRA] (JBWS-3660) Intermittent failure in ResourceResolverDeploymentAspect
by Alessio Soldano (JIRA)
[ https://issues.jboss.org/browse/JBWS-3660?page=com.atlassian.jira.plugin.... ]
Alessio Soldano commented on JBWS-3660:
---------------------------------------
https://github.com/wildfly/wildfly/commit/f022f2ed503e98da179720e29d8e40b...
> Intermittent failure in ResourceResolverDeploymentAspect
> --------------------------------------------------------
>
> Key: JBWS-3660
> URL: https://issues.jboss.org/browse/JBWS-3660
> Project: JBoss Web Services
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: jbossws-cxf
> Affects Versions: jbossws-cxf-4.1.3
> Reporter: Jim Ma
> Assignee: Jim Ma
> Fix For: jbossws-cxf-4.2
>
>
> After EndpointLifeCyle is moved and executed in EndpointService.start() and EndpointService.stop(). The ResouceResolverDeploymentAspect.stop() will try to remove attachment from endpoint before EndpointService set it to Stopped or EndpointService.uninstall() is not called when stopServices is false.
> 14:36:55,337 ERROR [stderr] (default task-19) org.jboss.wsf.spi.deployment.WSFDeploymentException: java.lang.IllegalStateException: JBWS022105: Cannot modify endpoint in state STARTED: jboss.ws:context=ep-publish-test,endpoint=pattern
> 14:36:55,337 ERROR [stderr] (default task-19) at org.jboss.wsf.spi.deployment.WSFDeploymentException.rethrow(WSFDeploymentException.java:52)
> 14:36:55,337 ERROR [stderr] (default task-19) at org.jboss.ws.common.deployment.DeploymentAspectManagerImpl.failsafeStop(DeploymentAspectManagerImpl.java:184)
> 14:36:55,337 ERROR [stderr] (default task-19) at org.jboss.ws.common.deployment.DeploymentAspectManagerImpl.undeploy(DeploymentAspectManagerImpl.java:169)
> 14:36:55,338 ERROR [stderr] (default task-19) at org.jboss.as.webservices.publish.EndpointPublisherImpl.destroy(EndpointPublisherImpl.java:218)
> 14:36:55,338 ERROR [stderr] (default task-19) at org.jboss.test.ws.publish.EndpointPublishServlet.doGet(EndpointPublishServlet.java:117)
> 14:36:55,338 ERROR [stderr] (default task-19) at javax.servlet.http.HttpServlet.service(HttpServlet.java:687)
> 14:36:55,338 ERROR [stderr] (default task-19) at javax.servlet.http.HttpServlet.service(HttpServlet.java:790)
> 14:36:55,338 ERROR [stderr] (default task-19) at io.undertow.servlet.handlers.ServletHandler.handleRequest(ServletHandler.java:87)
> 14:36:55,338 ERROR [stderr] (default task-19) at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:130)
> 14:36:55,339 ERROR [stderr] (default task-19) at io.undertow.websockets.jsr.JsrWebSocketFilter.doFilter(JsrWebSocketFilter.java:138)
> 14:36:55,339 ERROR [stderr] (default task-19) at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:56)
> 14:36:55,339 ERROR [stderr] (default task-19) at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:132)
> 14:36:55,339 ERROR [stderr] (default task-19) at io.undertow.servlet.handlers.FilterHandler.handleRequest(FilterHandler.java:85)
> 14:36:55,339 ERROR [stderr] (default task-19) at io.undertow.servlet.handlers.security.ServletSecurityRoleHandler.handleRequest(ServletSecurityRoleHandler.java:56)
> 14:36:55,340 ERROR [stderr] (default task-19) at io.undertow.servlet.handlers.ServletDispatchingHandler.handleRequest(ServletDispatchingHandler.java:36)
> 14:36:55,340 ERROR [stderr] (default task-19) at org.wildfly.extension.undertow.security.SecurityContextAssociationHandler.handleRequest(SecurityContextAssociationHandler.java:78)
> 14:36:55,340 ERROR [stderr] (default task-19) at io.undertow.servlet.handlers.security.SSLInformationAssociationHandler.handleRequest(SSLInformationAssociationHandler.java:115)
> 14:36:55,340 ERROR [stderr] (default task-19) at io.undertow.security.handlers.AuthenticationCallHandler.handleRequest(AuthenticationCallHandler.java:52)
> 14:36:55,340 ERROR [stderr] (default task-19) at io.undertow.security.handlers.AbstractConfidentialityHandler.handleRequest(AbstractConfidentialityHandler.java:45)
> 14:36:55,341 ERROR [stderr] (default task-19) at io.undertow.servlet.handlers.security.CachedAuthenticatedSessionHandler.handleRequest(CachedAuthenticatedSessionHandler.java:65)
> 14:36:55,341 ERROR [stderr] (default task-19) at io.undertow.security.handlers.SecurityInitialHandler.handleRequest(SecurityInitialHandler.java:70)
> 14:36:55,341 ERROR [stderr] (default task-19) at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:25)
> 14:36:55,341 ERROR [stderr] (default task-19) at org.wildfly.extension.undertow.security.SecurityContextCreationHandler.handleRequest(SecurityContextCreationHandler.java:54)
> 14:36:55,341 ERROR [stderr] (default task-19) at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:25)
> 14:36:55,342 ERROR [stderr] (default task-19) at io.undertow.servlet.handlers.ServletInitialHandler.handleFirstRequest(ServletInitialHandler.java:131)
> 14:36:55,342 ERROR [stderr] (default task-19) at io.undertow.servlet.handlers.ServletInitialHandler.dispatchRequest(ServletInitialHandler.java:118)
> 14:36:55,342 ERROR [stderr] (default task-19) at io.undertow.servlet.handlers.ServletInitialHandler.access$000(ServletInitialHandler.java:47)
> 14:36:55,342 ERROR [stderr] (default task-19) at io.undertow.servlet.handlers.ServletInitialHandler$1.handleRequest(ServletInitialHandler.java:94)
> 14:36:55,342 ERROR [stderr] (default task-19) at io.undertow.server.HttpHandlers.executeRootHandler(HttpHandlers.java:36)
> 14:36:55,342 ERROR [stderr] (default task-19) at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:629)
> 14:36:55,343 ERROR [stderr] (default task-19) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
> 14:36:55,343 ERROR [stderr] (default task-19) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
> 14:36:55,343 ERROR [stderr] (default task-19) at java.lang.Thread.run(Thread.java:722)
> 14:36:55,343 ERROR [stderr] (default task-19) Caused by: java.lang.IllegalStateException: JBWS022105: Cannot modify endpoint in state STARTED: jboss.ws:context=ep-publish-test,endpoint=pattern
> 14:36:55,343 ERROR [stderr] (default task-19) at org.jboss.ws.common.deployment.AbstractDefaultEndpoint.assertEndpointSetterAccess(AbstractDefaultEndpoint.java:255)
> 14:36:55,344 ERROR [stderr] (default task-19) at org.jboss.ws.common.deployment.AbstractDefaultEndpoint.removeAttachment(AbstractDefaultEndpoint.java:235)
> 14:36:55,344 ERROR [stderr] (default task-19) at org.jboss.wsf.stack.cxf.deployment.aspect.ResourceResolverDeploymentAspect.stop(ResourceResolverDeploymentAspect.java:62)
> 14:36:55,344 ERROR [stderr] (default task-19) at org.jboss.ws.common.deployment.DeploymentAspectManagerImpl.failsafeStop(DeploymentAspectManagerImpl.java:180)
> 14:36:55,344 ERROR [stderr] (default task-19) ... 31 more
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 4 months
[JBoss JIRA] (JBWS-3660) Intermittent failure in ResourceResolverDeploymentAspect
by Alessio Soldano (JIRA)
[ https://issues.jboss.org/browse/JBWS-3660?page=com.atlassian.jira.plugin.... ]
Alessio Soldano updated JBWS-3660:
----------------------------------
Issue Type: Bug (was: Feature Request)
> Intermittent failure in ResourceResolverDeploymentAspect
> --------------------------------------------------------
>
> Key: JBWS-3660
> URL: https://issues.jboss.org/browse/JBWS-3660
> Project: JBoss Web Services
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: jbossws-cxf
> Affects Versions: jbossws-cxf-4.1.3
> Reporter: Jim Ma
> Assignee: Jim Ma
> Fix For: jbossws-cxf-4.2
>
>
> After EndpointLifeCyle is moved and executed in EndpointService.start() and EndpointService.stop(). The ResouceResolverDeploymentAspect.stop() will try to remove attachment from endpoint before EndpointService set it to Stopped or EndpointService.uninstall() is not called when stopServices is false.
> 14:36:55,337 ERROR [stderr] (default task-19) org.jboss.wsf.spi.deployment.WSFDeploymentException: java.lang.IllegalStateException: JBWS022105: Cannot modify endpoint in state STARTED: jboss.ws:context=ep-publish-test,endpoint=pattern
> 14:36:55,337 ERROR [stderr] (default task-19) at org.jboss.wsf.spi.deployment.WSFDeploymentException.rethrow(WSFDeploymentException.java:52)
> 14:36:55,337 ERROR [stderr] (default task-19) at org.jboss.ws.common.deployment.DeploymentAspectManagerImpl.failsafeStop(DeploymentAspectManagerImpl.java:184)
> 14:36:55,337 ERROR [stderr] (default task-19) at org.jboss.ws.common.deployment.DeploymentAspectManagerImpl.undeploy(DeploymentAspectManagerImpl.java:169)
> 14:36:55,338 ERROR [stderr] (default task-19) at org.jboss.as.webservices.publish.EndpointPublisherImpl.destroy(EndpointPublisherImpl.java:218)
> 14:36:55,338 ERROR [stderr] (default task-19) at org.jboss.test.ws.publish.EndpointPublishServlet.doGet(EndpointPublishServlet.java:117)
> 14:36:55,338 ERROR [stderr] (default task-19) at javax.servlet.http.HttpServlet.service(HttpServlet.java:687)
> 14:36:55,338 ERROR [stderr] (default task-19) at javax.servlet.http.HttpServlet.service(HttpServlet.java:790)
> 14:36:55,338 ERROR [stderr] (default task-19) at io.undertow.servlet.handlers.ServletHandler.handleRequest(ServletHandler.java:87)
> 14:36:55,338 ERROR [stderr] (default task-19) at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:130)
> 14:36:55,339 ERROR [stderr] (default task-19) at io.undertow.websockets.jsr.JsrWebSocketFilter.doFilter(JsrWebSocketFilter.java:138)
> 14:36:55,339 ERROR [stderr] (default task-19) at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:56)
> 14:36:55,339 ERROR [stderr] (default task-19) at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:132)
> 14:36:55,339 ERROR [stderr] (default task-19) at io.undertow.servlet.handlers.FilterHandler.handleRequest(FilterHandler.java:85)
> 14:36:55,339 ERROR [stderr] (default task-19) at io.undertow.servlet.handlers.security.ServletSecurityRoleHandler.handleRequest(ServletSecurityRoleHandler.java:56)
> 14:36:55,340 ERROR [stderr] (default task-19) at io.undertow.servlet.handlers.ServletDispatchingHandler.handleRequest(ServletDispatchingHandler.java:36)
> 14:36:55,340 ERROR [stderr] (default task-19) at org.wildfly.extension.undertow.security.SecurityContextAssociationHandler.handleRequest(SecurityContextAssociationHandler.java:78)
> 14:36:55,340 ERROR [stderr] (default task-19) at io.undertow.servlet.handlers.security.SSLInformationAssociationHandler.handleRequest(SSLInformationAssociationHandler.java:115)
> 14:36:55,340 ERROR [stderr] (default task-19) at io.undertow.security.handlers.AuthenticationCallHandler.handleRequest(AuthenticationCallHandler.java:52)
> 14:36:55,340 ERROR [stderr] (default task-19) at io.undertow.security.handlers.AbstractConfidentialityHandler.handleRequest(AbstractConfidentialityHandler.java:45)
> 14:36:55,341 ERROR [stderr] (default task-19) at io.undertow.servlet.handlers.security.CachedAuthenticatedSessionHandler.handleRequest(CachedAuthenticatedSessionHandler.java:65)
> 14:36:55,341 ERROR [stderr] (default task-19) at io.undertow.security.handlers.SecurityInitialHandler.handleRequest(SecurityInitialHandler.java:70)
> 14:36:55,341 ERROR [stderr] (default task-19) at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:25)
> 14:36:55,341 ERROR [stderr] (default task-19) at org.wildfly.extension.undertow.security.SecurityContextCreationHandler.handleRequest(SecurityContextCreationHandler.java:54)
> 14:36:55,341 ERROR [stderr] (default task-19) at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:25)
> 14:36:55,342 ERROR [stderr] (default task-19) at io.undertow.servlet.handlers.ServletInitialHandler.handleFirstRequest(ServletInitialHandler.java:131)
> 14:36:55,342 ERROR [stderr] (default task-19) at io.undertow.servlet.handlers.ServletInitialHandler.dispatchRequest(ServletInitialHandler.java:118)
> 14:36:55,342 ERROR [stderr] (default task-19) at io.undertow.servlet.handlers.ServletInitialHandler.access$000(ServletInitialHandler.java:47)
> 14:36:55,342 ERROR [stderr] (default task-19) at io.undertow.servlet.handlers.ServletInitialHandler$1.handleRequest(ServletInitialHandler.java:94)
> 14:36:55,342 ERROR [stderr] (default task-19) at io.undertow.server.HttpHandlers.executeRootHandler(HttpHandlers.java:36)
> 14:36:55,342 ERROR [stderr] (default task-19) at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:629)
> 14:36:55,343 ERROR [stderr] (default task-19) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
> 14:36:55,343 ERROR [stderr] (default task-19) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
> 14:36:55,343 ERROR [stderr] (default task-19) at java.lang.Thread.run(Thread.java:722)
> 14:36:55,343 ERROR [stderr] (default task-19) Caused by: java.lang.IllegalStateException: JBWS022105: Cannot modify endpoint in state STARTED: jboss.ws:context=ep-publish-test,endpoint=pattern
> 14:36:55,343 ERROR [stderr] (default task-19) at org.jboss.ws.common.deployment.AbstractDefaultEndpoint.assertEndpointSetterAccess(AbstractDefaultEndpoint.java:255)
> 14:36:55,344 ERROR [stderr] (default task-19) at org.jboss.ws.common.deployment.AbstractDefaultEndpoint.removeAttachment(AbstractDefaultEndpoint.java:235)
> 14:36:55,344 ERROR [stderr] (default task-19) at org.jboss.wsf.stack.cxf.deployment.aspect.ResourceResolverDeploymentAspect.stop(ResourceResolverDeploymentAspect.java:62)
> 14:36:55,344 ERROR [stderr] (default task-19) at org.jboss.ws.common.deployment.DeploymentAspectManagerImpl.failsafeStop(DeploymentAspectManagerImpl.java:180)
> 14:36:55,344 ERROR [stderr] (default task-19) ... 31 more
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 4 months
[JBoss JIRA] (JBWS-3660) Intermittent failure in ResourceResolverDeploymentAspect
by Alessio Soldano (JIRA)
[ https://issues.jboss.org/browse/JBWS-3660?page=com.atlassian.jira.plugin.... ]
Alessio Soldano updated JBWS-3660:
----------------------------------
Summary: Intermittent failure in ResourceResolverDeploymentAspect (was: intermittent failure in ResourceResolverDeploymentAspect)
> Intermittent failure in ResourceResolverDeploymentAspect
> --------------------------------------------------------
>
> Key: JBWS-3660
> URL: https://issues.jboss.org/browse/JBWS-3660
> Project: JBoss Web Services
> Issue Type: Feature Request
> Security Level: Public(Everyone can see)
> Components: jbossws-cxf
> Affects Versions: jbossws-cxf-4.1.3
> Reporter: Jim Ma
> Assignee: Jim Ma
> Fix For: jbossws-cxf-4.2
>
>
> After EndpointLifeCyle is moved and executed in EndpointService.start() and EndpointService.stop(). The ResouceResolverDeploymentAspect.stop() will try to remove attachment from endpoint before EndpointService set it to Stopped or EndpointService.uninstall() is not called when stopServices is false.
> 14:36:55,337 ERROR [stderr] (default task-19) org.jboss.wsf.spi.deployment.WSFDeploymentException: java.lang.IllegalStateException: JBWS022105: Cannot modify endpoint in state STARTED: jboss.ws:context=ep-publish-test,endpoint=pattern
> 14:36:55,337 ERROR [stderr] (default task-19) at org.jboss.wsf.spi.deployment.WSFDeploymentException.rethrow(WSFDeploymentException.java:52)
> 14:36:55,337 ERROR [stderr] (default task-19) at org.jboss.ws.common.deployment.DeploymentAspectManagerImpl.failsafeStop(DeploymentAspectManagerImpl.java:184)
> 14:36:55,337 ERROR [stderr] (default task-19) at org.jboss.ws.common.deployment.DeploymentAspectManagerImpl.undeploy(DeploymentAspectManagerImpl.java:169)
> 14:36:55,338 ERROR [stderr] (default task-19) at org.jboss.as.webservices.publish.EndpointPublisherImpl.destroy(EndpointPublisherImpl.java:218)
> 14:36:55,338 ERROR [stderr] (default task-19) at org.jboss.test.ws.publish.EndpointPublishServlet.doGet(EndpointPublishServlet.java:117)
> 14:36:55,338 ERROR [stderr] (default task-19) at javax.servlet.http.HttpServlet.service(HttpServlet.java:687)
> 14:36:55,338 ERROR [stderr] (default task-19) at javax.servlet.http.HttpServlet.service(HttpServlet.java:790)
> 14:36:55,338 ERROR [stderr] (default task-19) at io.undertow.servlet.handlers.ServletHandler.handleRequest(ServletHandler.java:87)
> 14:36:55,338 ERROR [stderr] (default task-19) at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:130)
> 14:36:55,339 ERROR [stderr] (default task-19) at io.undertow.websockets.jsr.JsrWebSocketFilter.doFilter(JsrWebSocketFilter.java:138)
> 14:36:55,339 ERROR [stderr] (default task-19) at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:56)
> 14:36:55,339 ERROR [stderr] (default task-19) at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:132)
> 14:36:55,339 ERROR [stderr] (default task-19) at io.undertow.servlet.handlers.FilterHandler.handleRequest(FilterHandler.java:85)
> 14:36:55,339 ERROR [stderr] (default task-19) at io.undertow.servlet.handlers.security.ServletSecurityRoleHandler.handleRequest(ServletSecurityRoleHandler.java:56)
> 14:36:55,340 ERROR [stderr] (default task-19) at io.undertow.servlet.handlers.ServletDispatchingHandler.handleRequest(ServletDispatchingHandler.java:36)
> 14:36:55,340 ERROR [stderr] (default task-19) at org.wildfly.extension.undertow.security.SecurityContextAssociationHandler.handleRequest(SecurityContextAssociationHandler.java:78)
> 14:36:55,340 ERROR [stderr] (default task-19) at io.undertow.servlet.handlers.security.SSLInformationAssociationHandler.handleRequest(SSLInformationAssociationHandler.java:115)
> 14:36:55,340 ERROR [stderr] (default task-19) at io.undertow.security.handlers.AuthenticationCallHandler.handleRequest(AuthenticationCallHandler.java:52)
> 14:36:55,340 ERROR [stderr] (default task-19) at io.undertow.security.handlers.AbstractConfidentialityHandler.handleRequest(AbstractConfidentialityHandler.java:45)
> 14:36:55,341 ERROR [stderr] (default task-19) at io.undertow.servlet.handlers.security.CachedAuthenticatedSessionHandler.handleRequest(CachedAuthenticatedSessionHandler.java:65)
> 14:36:55,341 ERROR [stderr] (default task-19) at io.undertow.security.handlers.SecurityInitialHandler.handleRequest(SecurityInitialHandler.java:70)
> 14:36:55,341 ERROR [stderr] (default task-19) at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:25)
> 14:36:55,341 ERROR [stderr] (default task-19) at org.wildfly.extension.undertow.security.SecurityContextCreationHandler.handleRequest(SecurityContextCreationHandler.java:54)
> 14:36:55,341 ERROR [stderr] (default task-19) at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:25)
> 14:36:55,342 ERROR [stderr] (default task-19) at io.undertow.servlet.handlers.ServletInitialHandler.handleFirstRequest(ServletInitialHandler.java:131)
> 14:36:55,342 ERROR [stderr] (default task-19) at io.undertow.servlet.handlers.ServletInitialHandler.dispatchRequest(ServletInitialHandler.java:118)
> 14:36:55,342 ERROR [stderr] (default task-19) at io.undertow.servlet.handlers.ServletInitialHandler.access$000(ServletInitialHandler.java:47)
> 14:36:55,342 ERROR [stderr] (default task-19) at io.undertow.servlet.handlers.ServletInitialHandler$1.handleRequest(ServletInitialHandler.java:94)
> 14:36:55,342 ERROR [stderr] (default task-19) at io.undertow.server.HttpHandlers.executeRootHandler(HttpHandlers.java:36)
> 14:36:55,342 ERROR [stderr] (default task-19) at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:629)
> 14:36:55,343 ERROR [stderr] (default task-19) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
> 14:36:55,343 ERROR [stderr] (default task-19) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
> 14:36:55,343 ERROR [stderr] (default task-19) at java.lang.Thread.run(Thread.java:722)
> 14:36:55,343 ERROR [stderr] (default task-19) Caused by: java.lang.IllegalStateException: JBWS022105: Cannot modify endpoint in state STARTED: jboss.ws:context=ep-publish-test,endpoint=pattern
> 14:36:55,343 ERROR [stderr] (default task-19) at org.jboss.ws.common.deployment.AbstractDefaultEndpoint.assertEndpointSetterAccess(AbstractDefaultEndpoint.java:255)
> 14:36:55,344 ERROR [stderr] (default task-19) at org.jboss.ws.common.deployment.AbstractDefaultEndpoint.removeAttachment(AbstractDefaultEndpoint.java:235)
> 14:36:55,344 ERROR [stderr] (default task-19) at org.jboss.wsf.stack.cxf.deployment.aspect.ResourceResolverDeploymentAspect.stop(ResourceResolverDeploymentAspect.java:62)
> 14:36:55,344 ERROR [stderr] (default task-19) at org.jboss.ws.common.deployment.DeploymentAspectManagerImpl.failsafeStop(DeploymentAspectManagerImpl.java:180)
> 14:36:55,344 ERROR [stderr] (default task-19) ... 31 more
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 4 months