Exemplo n.º 1
0
 public void register(SoapSerializationEnvelope cm)
 {
     cm.addMapping(cm.xsd, "int", PropertyInfo.INTEGER_CLASS, this);
     cm.addMapping(cm.xsd, "long", PropertyInfo.LONG_CLASS, this);
     cm.addMapping(cm.xsd, "string", PropertyInfo.STRING_CLASS, this);
     cm.addMapping(cm.xsd, "boolean", PropertyInfo.BOOLEAN_CLASS, this);
 }
Exemplo n.º 2
0
 public void register(SoapSerializationEnvelope cm)
 {
     cm.addMapping(cm.xsd, "dateTime", MarshalDate.DATE_CLASS, this);
 }
Exemplo n.º 3
0
 public void register(SoapSerializationEnvelope cm)
 {
     cm.addMapping(cm.xsd, "base64Binary", MarshalBase64.BYTE_ARRAY_CLASS, this);
     cm.addMapping(SoapEnvelope.ENC, "base64", MarshalBase64.BYTE_ARRAY_CLASS, this);
 }
Exemplo n.º 4
0
 public void register(SoapSerializationEnvelope cm)
 {
     envelope = cm;
     cm.addMapping(MarshalHashtable.NAMESPACE, MarshalHashtable.NAME, HASHTABLE_CLASS, this);
 }
Exemplo n.º 5
0
 public void register(SoapSerializationEnvelope cm)
 {
     cm.addMapping(cm.xsd, "float", typeof(float), this);
     cm.addMapping(cm.xsd, "double", typeof(double), this);
     cm.addMapping(cm.xsd, "decimal", typeof(Decimal), this);
 }