deserialization error: no deserializer is registered for schema type: hashMap
-
Hi, I am consuming a Java web service from my .NET client application. I am able to send and receive all primitive types but when I send ArrayList of Hashmaps to Java Web Service, I am getting the following error. "caught exception while handling request: deserialization error: no deserializer is registered for schema type: hashMap" Please find the code that I wrote given below. Kindly help me to fix this problem. private void Form2_Load(object sender, EventArgs e) { object[] objarray = new object[1]; MyWebService1 ts = new MyWebService1(); arrayList al = new arrayList(); hashMap hMap = new hashMap(); mapEntry[] mEntryArray = new mapEntry[1]; mapEntry mEntry = new mapEntry(); mEntry.key = "ert"; mEntry.value = "54"; mEntryArray[0] = mEntry; hMap.mapEntry = mEntryArray; objarray[0] = hMap; al.item = objarray; // = objarray; arrayList alt; alt = ts.testArrayListOfArrayListOfHashmap(al); }
M-o-h-a-n