1 Reply Latest reply on Aug 31, 2005 10:01 AM by siddhik1982

    could not find deserializer for type

    thomas.diesler

      You could:

      1. check if there is a mapping for the missing type in jaxrpc-mapping.xml
      2. check if the mapped type is in your deployment
      3. check the generated *.wsdd in ${jboss.data.dir}/wsdl for the missing type

      You could also use [ code ] instead of [ quote ] when posting

        • 1. Re: could not find deserializer for type
          siddhik1982

          I've added the follwing ws4ee-deployment.xml it's working. And I'm able to send WebServiceDO object to the client but member variable values are going as nill string. Pls tell me what might be the problem here.


          ws4ee-deployment.xml

          
          <deployment xmlns='http://xml.apache.org/axis/wsdd/'
           xmlns:java='http://xml.apache.org/axis/wsdd/providers/java' xmlns:soap='http://schemas.xmlsoap.org/soap/encoding/'
           xmlns:xsi='http://www.w3.org/2000/10/XMLSchema-instance'
           xmlns:xsd='http://www.w3.org/2001/XMLSchema'>
          <typeMapping qname='ns2:getMetaDataResponse' xmlns:ns2='http://com.test.csda.imaging/ws_acceptrequest/types' type='java:com.test.csda.imaging.common.WebServiceDO' serializer='org.jboss.axis.encoding.ser.BeanSerializerFactory' deserializer='org.jboss.axis.encoding.ser.BeanDeserializerFactory'
          encodingStyle=''/>
          </deployment>