It looks like you are serializing an incorrect number of parameters. Where is the code you are using to read the return value? Have you tested your service with an Apache SOAP client? If you post the complete code for both the Apache SOAP client and the MS SOAP Toolkit client, it may be possible to see the problem.
Scott ----- Original Message ----- From: "Vaibhav Joshi" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, April 19, 2002 5:27 PM Subject: How to retrive a Element type in MS Apache Soap > Hi, > I have a method deployed in java returning a Element type. I want to call > this using a VB client which i am failing to do so. Can you please send me > some sample code i can look at . > My method siganture is:: > public Element getxxxx(String S,String S1,String S2,String S3,String S4) > throws Exception. > -------- > MY VB CODE--- > Serializer.startElement "s" > Serializer.SoapAttribute "xsi:type", , "xsd:string" > Serializer.writeString "11" > Serializer.endElement > > Serializer.startElement "s1" > Serializer.SoapAttribute "xsi:type", , "xsd:string" > Serializer.writeString "vaibhavj_vbclinet_test" > Serializer.endElement > > Serializer.startElement "s1" > Serializer.SoapAttribute "xsi:type", , "xsd:string" > Serializer.writeString "12341" > Serializer.endElement > > 'Serializer.startElement "s2" > 'Serializer.SoapAttribute "xsi:type", , "xsd:string" > 'Serializer.writeString "MultiChat" > 'Serializer.endElement > > 'Serializer.startElement "s3" > ' Serializer.SoapAttribute "xsi:type", , "xsd:string" > ' Serializer.writeString "123324" > ' Serializer.endElement > > > > Serializer.endElement > > Serializer.endBody > > Does any one have any idea ??why i am nto able to retrive an element