Hi, is it possible to setup a jax-ws endpoint so that it implements multiple port interfaces? Something like:
<jaxws:endpoint id="mockService"
address="/mockService"
implementor="com.mock.service.MockServiceImpl">
</jaxws:endpoint>
public class MockServiceImpl implements Service1Port, Service2Port,...,
ServiceNPort {
...
}
In other words, how could I unify all the SEIs' services implementations to
access them trough a unique address?
Thanks in advance
BR,
Marcos
