2 Replies Latest reply on Feb 20, 2006 4:39 AM by thomas.diesler

    Issues with backport of JBossWS

      So I have deployed the WSRP soap endpoints.

      When invoking the simplest one (ServiceDescription), the stack issues me a method not found exception for this method :

      public void setUseNoArgCtorIfFound(boolean useNoArgCtorIfFound)


      14:16:29,047 ERROR [[ServiceDescriptionService]] Servlet.service() for servlet ServiceDescriptionService threw exception
      java.lang.NoSuchMethodError: org.jboss.xb.binding.sunday.unmarshalling.SchemaBinding.setUseNoArgCtorIfFound(Z)V
       at org.jboss.ws.jaxb.JAXBUnmarshallerImpl.initSchemaBinding(JAXBUnmarshallerImpl.java:314)
       at org.jboss.ws.jaxb.JAXBUnmarshallerImpl.unmarshal(JAXBUnmarshallerImpl.java:105)
       at org.jboss.ws.jaxrpc.encoding.JAXBDeserializer.deserialize(JAXBDeserializer.java:97)
       at org.jboss.ws.soap.SOAPContentElement.getObjectValue(SOAPContentElement.java:262)
       at org.jboss.ws.binding.EndpointInvocation.transformPayloadValue(EndpointInvocation.java:233)
       at org.jboss.ws.binding.EndpointInvocation.getRequestParamValue(EndpointInvocation.java:103)
       at org.jboss.ws.binding.EndpointInvocation.getRequestPayload(EndpointInvocation.java:117)
       at org.jboss.ws.server.ServiceEndpointInvokerJSE.invokeServiceEndpoint(ServiceEndpointInvokerJSE.java:86)
      


      So what I did was to take the jboss-xml-binding.jar from head and replace the one in 4.0.4RC1.

      It looks like it resolves the problem. Now I just have a different kind of errors that I am going to investigate.

      Any comment on that ?