4 Replies Latest reply on Jan 6, 2006 12:27 PM by kneeraaz1

    java.io.IOException: No serializer found for class gov.ed.fs

    kneeraaz1

      I am trying to setup a sample web-service "QualityControlService" under JBoss 4.0.3. I followed the JBoss web-service development process and created skeleton classes using WSCOMPILE tool. But when I try to run my web-service client following error message pops up:
      -----------------------------------------------------------------------------------------------------------------------------------------------------------------------
      java.io.IOException: No serializer found for class gov.ed.fsa.payment.dto.QualityControlListingReqEDXDTO in registry org.jboss.axis.encoding.TypeMappingImpl@9505f
      -----------------------------------------------------------------------------------------------------------------------------------------------------------------------
      1. Below is the signature of remote web-service Interface:

      package gov.ed.fsa.payment.webservice;

      public interface QualityControlService extends Remote {
      public gov.ed.fsa.core.dto.PageableListDTO getQualityControlListing(gov.ed.fsa.payment.dto.QualityControlListingReqEDXDTO reqDTO) throws java.rmi.RemoteException;
      }

      2. WSCOMPILE tool has generated one "QualityControlListingReqEDXDTO_LiteralSerializer" class and I guess this class acts as serializer for my DTO object "QualityControlListingReqEDXDTO".

      So theoretically my web-service client should not complain about missing serializer as is the case. If some one can send me the directory structure for web-service client part that would be very helpful.

      Thanks,
      Neeraj