Results 1 to 3 of 3

Thread: org.springframework.ws.transport.http.MessageDispa tcherServlet not a servlet class

  1. #1
    Join Date
    May 2009
    Posts
    4

    Unhappy org.springframework.ws.transport.http.MessageDispa tcherServlet not a servlet class

    Hi,

    I am trying to setup spring ws 1.5.6 on WAS 6.1.
    When I try to access the service, I get the following exception on the browser..Error 404: SRVE0201E: Servlet [org.springframework.ws.transport.http.MessageDispa tcherServlet]: not a servlet class

    I have added all dependent jars that came along with the package to the lib folder.

    Please help.

    web.xml
    Code:
    <servlet>
    		<servlet-name>spring-ws</servlet-name>
    		<servlet-class>
    			org.springframework.ws.transport.http.MessageDispatcherServlet</servlet-class>
    		<init-param>
    			<!-- Transform the location attributes in WSDLs -->
    			<param-name>transformWsdlLocations</param-name>
    			<param-value>true</param-value>
    		</init-param>
    	</servlet>
    
    	<servlet-mapping>
    		<servlet-name>spring-ws</servlet-name>
    		<url-pattern>/*</url-pattern>
    	</servlet-mapping>
    	<servlet-mapping>
    		<servlet-name>spring-ws</servlet-name>
    		<url-pattern>*.wsdl</url-pattern>
    	</servlet-mapping>

  2. #2
    Join Date
    May 2009
    Posts
    4

    Default

    Figured out. Added load on startup. It works.

  3. #3
    Join Date
    May 2010
    Posts
    1

    Default

    Quote Originally Posted by yassera View Post
    Figured out. Added load on startup. It works.
    Hi,

    I am facing the same problem with SpringWS and WAS6.1 in Rational Application Developer test environment. Load on start-up didn't solve the problem. Suppose it is a problem of fix packs for WAS. Could you tell what fix pack level is on your computer for WAS6.1 ?

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •