Hi,
Thank you for your support. In my client code i have done the
call.registerTypeMapping for any custom classes which i want to sent
across the wire over soap. All my custom classes are based on the
JAVABEAN pattern so that they are serialized by axis's serializer's.
From the exceptions is seems that axis is looking for serializing
AbstractList$Itr i.e. the Itr inner class from java.util package. I am
really stuck here.
Any help would be greatly appreciated

Thanks and Regards
Munesh

vairamuthu thayapavan wrote:

hi
make sure u have registered ur type in the followin way or any other
way in the client side.


call.registerTypeMapping(PurchaseOrder.class, q1,


new
org.apache.axis.encoding.ser.BeanSerializerFactory(PurchaseOrder.class,
q1),

new
org.apache.axis.encoding.ser.BeanDeserializerFactory(PurchaseOrder.class,
q1));



regards

vtpavan

    ----- Original Message -----
    From: munesh <mailto:[EMAIL PROTECTED]>
    To: [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>
    Sent: Friday, September 12, 2003 6:26 PM
    Subject: java.io.IOException: No serializer found for class
    java.util.AbstractList$Itr

    Hi,
    I am new to axis and webservices. I am using axis 1.1 and while
    invoking our custom webservice i am getting the following
    exception on the client side

    java.io.IOException: No serializer found for class
    java.util.AbstractList$Itr in registry
    [EMAIL PROTECTED]

    All our custom objects used to send across the wire use the Java
    Bean pattern and thay are registered using the <beanMapping> element
    in the server-config.wsdd file.
    I have no clue regarding the exception. I am stuck here. Could
    somebody help me out on this.

    Thanks in advance
    Munesh






Reply via email to