SOAPFaultException with JavaDelegate

Hi guys, I’m trying to call a service from a JavaDelegate ( I used wsimport ) but I get the following exception. Maybe there’s something wrong with the soap validation but I don’t know how to fix it.
The project: https://drive.google.com/file/d/1rAhdgKv4Th1mnQg3AoXpoIjNCquU75Sk/view?usp=sharing

Exception:

18:27:38,549 ERROR [org.camunda.bpm.engine.context] (default task-16) ENGINE-16004 Exception while closing command context: Unexpected element namedHelloResponse found. Expected {soseng.xsd}namedHelloResponse.: javax.xml.ws.soap.SOAPFaultException: Unexpected element namedHelloResponse found. Expected {soseng.xsd}namedHelloResponse.
. . .
Caused by: org.apache.cxf.interceptor.Fault: Unexpected element namedHelloResponse found. Expected {soseng.xsd}namedHelloResponse.
at org.apache.cxf.wsdl.interceptors.DocLiteralInInterceptor.validatePart(DocLiteralInInterceptor.java:281)
at org.apache.cxf.wsdl.interceptors.DocLiteralInInterceptor.handleMessage(DocLiteralInInterceptor.java:191)
at org.apache.cxf.phase.PhaseInterceptorChain.doIntercept(PhaseInterceptorChain.java:308)
at org.apache.cxf.endpoint.ClientImpl.onMessage(ClientImpl.java:829)
at org.apache.cxf.transport.http.HTTPConduit$WrappedOutputStream.handleResponseInternal(HTTPConduit.java:1696)
at org.apache.cxf.transport.http.HTTPConduit$WrappedOutputStream.handleResponse(HTTPConduit.java:1570)
at org.apache.cxf.transport.http.HTTPConduit$WrappedOutputStream.close(HTTPConduit.java:1371)
at org.apache.cxf.transport.AbstractConduit.close(AbstractConduit.java:56)
at org.apache.cxf.transport.http.HTTPConduit.close(HTTPConduit.java:671)
at org.apache.cxf.interceptor.MessageSenderInterceptor$MessageSenderEndingInterceptor.handleMessage(MessageSenderInterceptor.java:63)
at org.apache.cxf.phase.PhaseInterceptorChain.doIntercept(PhaseInterceptorChain.java:308)
at org.apache.cxf.endpoint.ClientImpl.doInvoke(ClientImpl.java:530)
at org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:441)
at org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:356)
at org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:314)
at org.apache.cxf.frontend.ClientProxy.invokeSync(ClientProxy.java:96)
at org.apache.cxf.jaxws.JaxWsClientProxy.invoke(JaxWsClientProxy.java:140)
… 238 more

Thank you all for reading.

Do you think the root cause of this error lies in the camunda library?

I tried to run the same code of the “CallJolieDelegate” class in a “main” method (without Camunda delegate) and it works. With the delegate method, I noticed that the server works well but Camunda can’t start the process due to the error I described above.

Please can someone help me? I really need to solve this problem