Hi,
I am upgrading a project from Grails 2.x to Grails 3.x. In Grails 2 project, there are few endpoints with value expose = EndpointType.JAX_WS_WSDL
Sample code is
@GrailsCxfEndpoint(address = 'someService', expose = EndpointType.JAX_WS_WSDL)
As per the updated document of Grails 3, I should still be able to use EndpointType.JAX_WS_WSDL to expose a service endpoint as a wsdl first jax web service endpoint. However, JAX_WS_WSDL isn't part of EndpointType enum anymore.
What do you suggest?
Hi,
I am upgrading a project from Grails 2.x to Grails 3.x. In Grails 2 project, there are few endpoints with value
expose = EndpointType.JAX_WS_WSDLSample code is
@GrailsCxfEndpoint(address = 'someService', expose = EndpointType.JAX_WS_WSDL)As per the updated document of Grails 3, I should still be able to use EndpointType.JAX_WS_WSDL to expose a service endpoint as a wsdl first jax web service endpoint. However,
JAX_WS_WSDLisn't part of EndpointType enum anymore.What do you suggest?