1

I'm trying to expose my web service by extending SpringBeanAutowiringSupport. I'm using GlassFish 3.1 and Spring 3.0.5.RELEASE.

I'm following the tutorial here.

However, when I go to the URL of my web service I get a ClassCastException.

Any ideas on what I'm missing or doing wrong?

WARNING: StandardWrapperValve[GreetingService]: PWC1382: Allocate exception for servlet GreetingService
java.lang.ClassCastException: com.service.GreetingServiceEndpoint cannot be cast to javax.servlet.Servlet
    at com.sun.enterprise.web.WebContainer.createServletInstance(WebContainer.java:702)
    at com.sun.enterprise.web.WebModule.createServletInstance(WebModule.java:1958)
    at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1263)
    at org.apache.catalina.core.StandardWrapper.allocate(StandardWrapper.java:1070)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:189)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
    at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:655)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:595)
    at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:98)
    at com.sun.enterprise.web.PESessionLockingStandardPipeline.invoke(PESessionLockingStandardPipeline.java:91)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:162)
    at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:326)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:227)
    at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:170)
    at com.sun.grizzly.http.ProcessorTask.invokeAdapter(ProcessorTask.java:822)
    at com.sun.grizzly.http.ProcessorTask.doProcess(ProcessorTask.java:719)
    at com.sun.grizzly.http.ProcessorTask.process(ProcessorTask.java:1013)
    at com.sun.grizzly.http.DefaultProtocolFilter.execute(DefaultProtocolFilter.java:225)
    at com.sun.grizzly.DefaultProtocolChain.executeProtocolFilter(DefaultProtocolChain.java:137)
    at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:104)
    at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:90)
    at com.sun.grizzly.http.HttpProtocolChain.execute(HttpProtocolChain.java:79)
    at com.sun.grizzly.ProtocolChainContextTask.doCall(ProtocolChainContextTask.java:54)
    at com.sun.grizzly.SelectionKeyContextTask.call(SelectionKeyContextTask.java:59)
    at com.sun.grizzly.ContextTask.run(ContextTask.java:71)
    at com.sun.grizzly.util.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:532)
    at com.sun.grizzly.util.AbstractThreadPool$Worker.run(AbstractThreadPool.java:513)
    at java.lang.Thread.run(Thread.java:680)

Endpoint

@WebService (serviceName="GreetingService")
public class GreetingServiceEndpoint extends SpringBeanAutowiringSupport {
    @Autowired
    private GreetingService greetingService;

    @WebMethod
    public String sayHello () {
        return greetingService.sayHello();
    }
}

Service

@Service ("greetingService")
public class GreetingService {
    public String sayHello () {
        return "Hello from Greeting Service";
    }
}

web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
    id="WebApp_ID" version="3.0" metadata-complete="true">  

    <display-name>Archetype Created Web Application</display-name>
  <listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
  </listener>

  <welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
  </welcome-file-list>

  <servlet>
    <servlet-name>GreetingService</servlet-name>
    <servlet-class>com.service.GreetingServiceEndpoint</servlet-class>
  </servlet>
  <servlet-mapping>
    <servlet-name>GreetingService</servlet-name>
    <url-pattern>/GreetingService</url-pattern>
  </servlet-mapping>
</web-app>
AR3Y35
  • 596
  • 2
  • 9
  • 26

2 Answers2

2

Your class: com.service.GreetingServiceEndpoint is not an instance of javax.servlet.Servlet. You can't put it into your web.xml as a servlet. To run JAX-WS web services, JAX-WS servlet has to be declared in web.xml: com.sun.xml.ws.transport.http.servlet.WSServlet this servlet will serve the requests to your web service.

The full servlet declaration should look something like this:

<servlet>
    <servlet-name>Greeting</servlet-name>
    <servlet-class>com.sun.xml.ws.transport.http.servlet.WSServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
    <servlet-name>Greeting</servlet-name>
    <url-pattern>/services/Greeting</url-pattern>
</servlet-mapping>

Your com.service.GreetingServiceEndpoint class should be defined in sun-jaxws.xml file, something like this:

<endpoints xmlns="http://java.sun.com/xml/ns/jax-ws/ri/runtime" version="2.0">
    <endpoint name="Greeting" implementation="com.service.GreetingServiceEndpoint" url-pattern="/services/Greeting"/>
</endpoints>

This file has to be added into WEB-INF of your web app. Take a look at my post here. It should be helpful.

Community
  • 1
  • 1
Paulius Matulionis
  • 23,085
  • 22
  • 103
  • 143
  • YES! Your answer works. Not only that but the config makes a lot more sense to me now. Looking at the tutorial I was wondering how the servlet config was possible. – AR3Y35 Oct 12 '12 at 18:17
0

There's no need of registering com.service.GreetingServiceEndpoint as a Servlet in web.xml; as it doesn't extends HttpServlet.

Carlos Gavidia-Calderon
  • 7,145
  • 9
  • 34
  • 59