this is my request format and i cant create a request like this. Already try KvmSerializable and marshal. how can i set a list of data to kotDetails? on my try it show exception and only one value of list is taken to request.
what i am doing is ..
PropertyInfo pi11 = new PropertyInfo();
pi11.name = "KotDetList";
pi11.setValue(kotDetails);
pi11.setType(kotDetails.getClass());
request.addProperty(pi11);
envelope.addMapping(AppConstants.NAMESPACE, "KotDetails", kotDetails.getClass());
that class kotDetails is implimented KvmSerializable. Whats can i do?
this is my request format and i cant create a request like this. Already try KvmSerializable and marshal. how can i set a list of data to kotDetails? on my try it show exception and only one value of list is taken to request. what i am doing is .. PropertyInfo pi11 = new PropertyInfo(); pi11.name = "KotDetList"; pi11.setValue(kotDetails); pi11.setType(kotDetails.getClass()); request.addProperty(pi11);
envelope.addMapping(AppConstants.NAMESPACE, "KotDetails", kotDetails.getClass()); that class kotDetails is implimented KvmSerializable. Whats can i do?