Results 1 to 2 of 2

Thread: WSDLException On Websphere 6.1

Hybrid View

  1. #1
    Join Date
    Jul 2007
    Location
    Mauritius
    Posts
    127

    Default WSDLException On Websphere 6.1

    Hi guys,

    I have created a small Web Service which runs fine on Tomcat, but fails on WebSphere.

    I initially got a parser exception
    Code:
         DocumentBuilderFactoryImpl incompatible with javax.xml.parsers.DocumentBuilderFactory
    , which was due to the class loading. Hence, I have changed the classloading to the following

    classloader.PNG

    I am now getting the following error

    Code:
     E   [Servlet Error]-[spring-ws]: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'customerSearch': Invocation of init method failed; nested exception is WSDLException: faultCode=CONFIGURATION_ERROR: No Java extensionType found to represent a '{http://www.w3.org/2001/XMLSchema}schema' element in the context of a 'javax.wsdl.Types'.: 
    	at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1420)
    	at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:519)
    	at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:456)
    	at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:291)
    	at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222)
    	at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:288)
    	at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:190)
    	at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:580)
    	at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:895)
    	at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:425)
    	at org.springframework.web.servlet.FrameworkServlet.createWebApplicationContext(FrameworkServlet.java:442)
    	at org.springframework.web.servlet.FrameworkServlet.createWebApplicationContext(FrameworkServlet.java:458)
    	at org.springframework.web.servlet.FrameworkServlet.initWebApplicationContext(FrameworkServlet.java:339)
    	at org.springframework.web.servlet.FrameworkServlet.initServletBean(FrameworkServlet.java:306)
    	at org.springframework.web.servlet.HttpServletBean.init(HttpServletBean.java:127)
    	at javax.servlet.GenericServlet.init(GenericServlet.java:256)
    	at com.ibm.ws.webcontainer.servlet.ServletWrapper.init(ServletWrapper.java:229)
    	at com.ibm.ws.wswebcontainer.servlet.ServletWrapper.init(ServletWrapper.java:350)
    	at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:436)
    	at com.ibm.ws.wswebcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:534)
    	at com.ibm.ws.webcontainer.webapp.WebApp.handleRequest(WebApp.java:3548)
    	at com.ibm.ws.webcontainer.webapp.WebGroup.handleRequest(WebGroup.java:269)
    	at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:831)
    	at com.ibm.ws.wswebcontainer.WebContainer.handleRequest(WebContainer.java:1478)
    	at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:133)
    	at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:450)
    	at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewRequest(HttpInboundLink.java:508)
    	at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.processRequest(HttpInboundLink.java:296)
    	at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.ready(HttpInboundLink.java:270)
    	at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.sendToDiscriminators(NewConnectionInitialReadCallback.java:214)
    	at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.complete(NewConnectionInitialReadCallback.java:113)
    	at com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.futureCompleted(AioReadCompletionListener.java:165)
    	at com.ibm.io.async.AbstractAsyncFuture.invokeCallback(AbstractAsyncFuture.java:217)
    	at com.ibm.io.async.AsyncChannelFuture$1.run(AsyncChannelFuture.java:205)
    	at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1497)
    Caused by: WSDLException: faultCode=CONFIGURATION_ERROR: No Java extensionType found to represent a '{http://www.w3.org/2001/XMLSchema}schema' element in the context of a 'javax.wsdl.Types'.: 
    	at javax.wsdl.extensions.ExtensionRegistry.createExtension(ExtensionRegistry.java:341)
    	at org.springframework.ws.wsdl.wsdl11.provider.InliningXsdSchemaTypesProvider.addTypes(InliningXsdSchemaTypesProvider.java:102)
    	at org.springframework.ws.wsdl.wsdl11.ProviderBasedWsdl4jDefinition.afterPropertiesSet(ProviderBasedWsdl4jDefinition.java:233)
    	at org.springframework.ws.wsdl.wsdl11.DefaultWsdl11Definition.afterPropertiesSet(DefaultWsdl11Definition.java:182)
    	at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1477)
    	at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1417)
    	... 34 more

    Can you please let me know what should be done to get this corrected? Also, it would great if the solution is something that would work for both Tomcat and Websphere.

    Cheers
    Kris

  2. #2
    Join Date
    Jul 2007
    Location
    Mauritius
    Posts
    127

    Default

    Ok,
    to get it to work on WebSphere, the following classloader order had to be used

    classloader.PNG


    also, the following jar had to be excluded from the build

    Code:
    <exclusion>
                    	<groupId>xml-apis</groupId>
                    	<artifactId>xml-apis</artifactId>
                    </exclusion>
    Hope this will help someone else in the future.

    Cheers

Posting Permissions

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