[jbosstools-issues] [JBoss JIRA] (JBIDE-19946) running webservice test gives errors

Alessio Soldano (JIRA) issues at jboss.org
Mon Jun 22 04:03:05 EDT 2015


    [ https://issues.jboss.org/browse/JBIDE-19946?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13082019#comment-13082019 ] 

Alessio Soldano commented on JBIDE-19946:
-----------------------------------------

Brian, Max, let me comment a bit on the issues here:
* The JAX-WS tooling implementation that you're testing here is the one provided by the old JBossWS-Native stack and has been available till EAP 5 series. EAP6 do not include the JAX-WS implementation of JBossWS-Native, it uses the JBossWS-CXF one intestead.
* AFAIK, EAP 5 has not and is not going to be certified with JDK8: https://access.redhat.com/articles/113083#Cert_5
* The "java.lang.UnsupportedOperationException: setProperty must be overridden by all subclasses of SOAPMessage" issue in a comment from Max above is an old and known issue of JBossWS-Native with JDK 6+, see https://issues.jboss.org/browse/JBWS-1439 and was caused by missing endorsing of some ws libraries (basically JBossWS Native implementation of JAX-WS required JBossWS Native implementation of SAAJ)
* The "com.sun.tools.javac.Main is not available in the classpath, requires Suns JDK version 5.0 or latter" issue in a comment from Brian above is most likely caused by a JRE being used instead of JDK, which causes tools.jar to be missing in the classpath. See https://issues.jboss.org/browse/JBWS-2687 for a discussion on this.
* The JBossWS team is not testing JBossWS Native tools since years; the JBossWS CXF tools are continuously tested instead and in particular currently using JDK 1.8.0_40 when running against WildFly 9.x (and are working properly).

> running webservice test gives errors
> ------------------------------------
>
>                 Key: JBIDE-19946
>                 URL: https://issues.jboss.org/browse/JBIDE-19946
>             Project: Tools (JBoss Tools)
>          Issue Type: Bug
>          Components: webservices
>            Reporter: Max Rydahl Andersen
>            Assignee: Brian Fitzpatrick
>             Fix For: 4.3.0.Beta2
>
>
> running 4.3.0.Beta1x with jdk's defined I get this error:
> {code}
> -------------------------------------------------------
>  T E S T S
> -------------------------------------------------------
> Running org.jboss.tools.ws.creation.core.test.JBossWSCreationCoreTestSuite
> Retrieving document at 'file:/Users/max/code/jbosstools/jbosstools-webservices/tests/org.jboss.tools.ws.creation.core.test/target/work/data/JBossWSTestProject/hello_world.wsdl'.
> null
> null
> Retrieving document at '/Users/max/code/jbosstools/jbosstools-webservices/tests/org.jboss.tools.ws.creation.core.test/target/work/data/JBossWSTestProject/hello_world.wsdl'.
> Tests run: 7, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 272.543 sec <<< FAILURE! - in org.jboss.tools.ws.creation.core.test.JBossWSCreationCoreTestSuite
> testDeployResult(org.jboss.tools.ws.creation.core.test.command.JBossWSTopDownCommandTest)  Time elapsed: 82.428 sec
> testDeployResult(org.jboss.tools.ws.creation.core.test.command.JBossWSJavaFirstCommandTest)  Time elapsed: 127.267 sec  <<< FAILURE!
> junit.framework.AssertionFailedError: ***********************
> Create Web Service Client...
> Create Web Service...
> Create Web Service Operation...
> Exception in thread "main" javax.xml.ws.WebServiceException: java.lang.UnsupportedOperationException: setProperty must be overridden by all subclasses of SOAPMessage
> 	at org.jboss.ws.core.jaxws.client.ClientImpl.handleRemoteException(ClientImpl.java:404)
> 	at org.jboss.ws.core.jaxws.client.ClientImpl.invoke(ClientImpl.java:314)
> 	at org.jboss.ws.core.jaxws.client.ClientProxy.invoke(ClientProxy.java:172)
> 	at org.jboss.ws.core.jaxws.client.ClientProxy.invoke(ClientProxy.java:152)
> 	at com.sun.proxy.$Proxy14.sayHello(Unknown Source)
> 	at org.example.www.helloworld.clientsample.ClientSample.main(ClientSample.java:14)
> Caused by: java.lang.UnsupportedOperationException: setProperty must be overridden by all subclasses of SOAPMessage
> 	at javax.xml.soap.SOAPMessage.setProperty(SOAPMessage.java:439)
> 	at org.jboss.ws.core.soap.SOAPMessageImpl.<init>(SOAPMessageImpl.java:83)
> 	at org.jboss.ws.core.soap.MessageFactoryImpl.createMessage(MessageFactoryImpl.java:171)
> 	at org.jboss.ws.core.CommonSOAP11Binding.createMessage(CommonSOAP11Binding.java:59)
> 	at org.jboss.ws.core.CommonSOAPBinding.bindRequestMessage(CommonSOAPBinding.java:158)
> 	at org.jboss.ws.core.CommonClient.invoke(CommonClient.java:291)
> 	at org.jboss.ws.core.jaxws.client.ClientImpl.invoke(ClientImpl.java:302)
> 	... 4 more
> 	at junit.framework.Assert.fail(Assert.java:57)
> 	at junit.framework.Assert.assertTrue(Assert.java:22)
> 	at junit.framework.TestCase.assertTrue(TestCase.java:192)
> 	at org.jboss.tools.ws.creation.core.test.command.JBossWSJavaFirstCommandTest.checkText(JBossWSJavaFirstCommandTest.java:163)
> 	at org.jboss.tools.ws.creation.core.test.command.JBossWSJavaFirstCommandTest.testDeployResult(JBossWSJavaFirstCommandTest.java:116)
> testInitialClientCommand(org.jboss.tools.ws.creation.core.test.command.JBossWSClientCommandTest)  Time elapsed: 15.26 sec
> testClientCodeGenerationCommand(org.jboss.tools.ws.creation.core.test.command.JBossWSClientCommandTest)  Time elapsed: 17.628 sec
> testRemoveClientJarsCommand(org.jboss.tools.ws.creation.core.test.command.JBossWSClientCommandTest)  Time elapsed: 14.25 sec
> testMergeWebXMLCommand(org.jboss.tools.ws.creation.core.test.command.JBossWSMergeWebXMLCommandTest)  Time elapsed: 9.174 sec
> testJBIDE6175(org.jboss.tools.ws.creation.core.test.command.JBossWSClientSampleCreationCommandTest)  Time elapsed: 6.416 sec
> Results :
> Failed tests:
>   JBossWSJavaFirstCommandTest.testDeployResult:116->checkText:163 ***********************
> Create Web Service Client...
> Create Web Service...
> Create Web Service Operation...
> Exception in thread "main" javax.xml.ws.WebServiceException: java.lang.UnsupportedOperationException: setProperty must be overridden by all subclasses of SOAPMessage
> 	at org.jboss.ws.core.jaxws.client.ClientImpl.handleRemoteException(ClientImpl.java:404)
> 	at org.jboss.ws.core.jaxws.client.ClientImpl.invoke(ClientImpl.java:314)
> 	at org.jboss.ws.core.jaxws.client.ClientProxy.invoke(ClientProxy.java:172)
> 	at org.jboss.ws.core.jaxws.client.ClientProxy.invoke(ClientProxy.java:152)
> 	at com.sun.proxy.$Proxy14.sayHello(Unknown Source)
> 	at org.example.www.helloworld.clientsample.ClientSample.main(ClientSample.java:14)
> Caused by: java.lang.UnsupportedOperationException: setProperty must be overridden by all subclasses of SOAPMessage
> 	at javax.xml.soap.SOAPMessage.setProperty(SOAPMessage.java:439)
> 	at org.jboss.ws.core.soap.SOAPMessageImpl.<init>(SOAPMessageImpl.java:83)
> 	at org.jboss.ws.core.soap.MessageFactoryImpl.createMessage(MessageFactoryImpl.java:171)
> 	at org.jboss.ws.core.CommonSOAP11Binding.createMessage(CommonSOAP11Binding.java:59)
> 	at org.jboss.ws.core.CommonSOAPBinding.bindRequestMessage(CommonSOAPBinding.java:158)
> 	at org.jboss.ws.core.CommonClient.invoke(CommonClient.java:291)
> 	at org.jboss.ws.core.jaxws.client.ClientImpl.invoke(ClientImpl.java:302)
> 	... 4 more
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


More information about the jbosstools-issues mailing list