This is an automated email from the ASF dual-hosted git repository.

jlmonteiro pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomee.git


The following commit(s) were added to refs/heads/master by this push:
     new 9ad2a32  Of course, as we create the EJB versions by configuratoion, 
we need to remove the annotation otherwise, it gets deployed again by scanning, 
and also used by the Pojo mode
9ad2a32 is described below

commit 9ad2a322b458c4a4b98aa4f9a50f965d75d35f35
Author: Jean-Louis Monteiro <[email protected]>
AuthorDate: Thu Jan 20 14:54:27 2022 +0100

    Of course, as we create the EJB versions by configuratoion, we need to 
remove the annotation otherwise, it gets deployed again by scanning, and also 
used by the Pojo mode
---
 .../openejb/arquillian/tests/jaxws/WebServiceContextEJBTest.java     | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git 
a/arquillian/arquillian-tomee-tests/arquillian-tomee-jaxws-tests/src/test/java/org/apache/openejb/arquillian/tests/jaxws/WebServiceContextEJBTest.java
 
b/arquillian/arquillian-tomee-tests/arquillian-tomee-jaxws-tests/src/test/java/org/apache/openejb/arquillian/tests/jaxws/WebServiceContextEJBTest.java
index 706a178..abf6b2e 100644
--- 
a/arquillian/arquillian-tomee-tests/arquillian-tomee-jaxws-tests/src/test/java/org/apache/openejb/arquillian/tests/jaxws/WebServiceContextEJBTest.java
+++ 
b/arquillian/arquillian-tomee-tests/arquillian-tomee-jaxws-tests/src/test/java/org/apache/openejb/arquillian/tests/jaxws/WebServiceContextEJBTest.java
@@ -26,12 +26,10 @@ import org.jboss.shrinkwrap.api.spec.WebArchive;
 import org.jboss.shrinkwrap.descriptor.api.Descriptors;
 import org.jboss.shrinkwrap.descriptor.api.webapp31.WebAppDescriptor;
 import org.junit.Assert;
-import org.junit.Ignore;
 import org.junit.Test;
 import org.junit.runner.RunWith;
 
 import javax.annotation.Resource;
-import javax.ejb.Stateless;
 import javax.inject.Inject;
 import javax.jws.WebMethod;
 import javax.jws.WebParam;
@@ -57,7 +55,6 @@ import java.nio.charset.StandardCharsets;
 
 
 @RunWith(Arquillian.class)
-@Ignore
 public class WebServiceContextEJBTest {
     @ArquillianResource
     private URL url;
@@ -145,7 +142,7 @@ public class WebServiceContextEJBTest {
 
     @WebService(name = "Hello", targetNamespace = 
"http://jaxws.tests.arquillian.openejb.apache.org/";, serviceName = "Hello", 
portName = "HelloService")
     @SOAPBinding(style = SOAPBinding.Style.DOCUMENT, parameterStyle = 
SOAPBinding.ParameterStyle.WRAPPED, use = SOAPBinding.Use.LITERAL)
-    @Stateless
+    //@Stateless
     public static class HelloService implements HelloServicePort {
 
         @Resource

Reply via email to