@Webservice & IBM Websphere 8
I am deploying a Spring 3.x web application with a Spring managed web service and things are not working quite right. I can see the web service is deployed as per the Websphere console, however, the service is not available through a browser request. The Spring docs suggest that the following registered bean
<bean class="org.springframework.remoting.jaxws.SimpleJa xWsServiceExporter" p:baseAddress="http://localhost:8888/services/"/>
should export the following class as an endpoint.
@Component
@WebService(serviceName="CircleService")
public class CircleFunctions {
Am I missing something here?