java.util.Date Marshaller is not added to the function
Brought to you by:
kinhnc
generator does not properly generate the java.util.Date Marshaller if encountered in the function.
e.g.
SoapSerializationEnvelope _envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11);
// code added manually - start
// Register Marshal for "xsd:dateTime" type
Marshal md = new MarshalDate ();
md.register (_envelope);
// code added manually - end
_envelope.bodyOut = _client;
AndroidHttpTransport _ht = new AndroidHttpTransport(Configuration.getWsUrl());
_ht.call("", _envelope);