You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by mm...@apache.org on 2020/04/02 23:26:00 UTC

[geode-native] branch develop updated: GEODE-7868: Enhance ReflectionBasedAutoSerializer (#585)

This is an automated email from the ASF dual-hosted git repository.

mmartell pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode-native.git


The following commit(s) were added to refs/heads/develop by this push:
     new 11a9bc2  GEODE-7868: Enhance ReflectionBasedAutoSerializer (#585)
11a9bc2 is described below

commit 11a9bc20f30f4ecaf8c3a3e9e2aa2add003eaf03
Author: Michael Martell <mm...@pivotal.io>
AuthorDate: Thu Apr 2 16:25:54 2020 -0700

    GEODE-7868: Enhance ReflectionBasedAutoSerializer (#585)
    
    * Adds support for autoserializing unsigned types, guids, and decimal
    * Adds several new autoserializer tests to new test framework
---
 .../integration-test2/AutoSerializationTests.cs    | 1639 ++++++++++++++++++++
 clicache/integration-test2/CMakeLists.txt          |    1 +
 clicache/src/ReflectionBasedAutoSerializer.cpp     |  615 ++++----
 clicache/src/ReflectionBasedAutoSerializer.hpp     |   12 +-
 clicache/src/TypeRegistry.cpp                      |    2 +-
 clicache/src/impl/DotNetTypes.hpp                  |   10 +
 6 files changed, 2010 insertions(+), 269 deletions(-)

diff --git a/clicache/integration-test2/AutoSerializationTests.cs b/clicache/integration-test2/AutoSerializationTests.cs
new file mode 100644
index 0000000..d6c63f2
--- /dev/null
+++ b/clicache/integration-test2/AutoSerializationTests.cs
@@ -0,0 +1,1639 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+using System;
+using System.IO;
+using Xunit;
+using PdxTests;
+using System.Collections;
+using System.Collections.Generic;
+using Xunit.Abstractions;
+using System.Reflection;
+using System.Linq;
+
+namespace Apache.Geode.Client.IntegrationTests
+{
+  public class ApartmentLocation
+  {
+    int _aptNumber;
+    string _street;
+    string _city;
+
+    public ApartmentLocation()
+    { }
+    public override string ToString()
+    {
+      return _aptNumber + " :" + _street + " : " + _city;
+    }
+    public ApartmentLocation(int aptN, string street, string city)
+    {
+      _aptNumber = aptN;
+      _street = street;
+      _city = city;
+    }
+
+    public override bool Equals(object obj)
+    {
+      if (obj == null)
+        return false;
+      ApartmentLocation other = obj as ApartmentLocation;
+      if (other == null)
+        return false;
+      if (_aptNumber == other._aptNumber
+          && _street == other._street
+            && _city == other._city)
+        return true;
+      return false;
+    }
+    public override int GetHashCode()
+    {
+      return base.GetHashCode();
+    }
+  }
+
+  public class PdxTypesReflectionTest
+  {
+    char m_char;
+    bool m_bool;
+    sbyte m_byte;
+    sbyte m_sbyte;
+    short m_int16;
+    short m_uint16;
+    Int32 m_int32;
+    Int32 m_uint32;
+    long m_long;
+    Int64 m_ulong;
+    float m_float;
+    double m_double;
+
+    string m_string;
+
+    bool[] m_boolArray;
+    byte[] m_byteArray;
+    byte[] m_sbyteArray;
+
+    char[] m_charArray;
+
+    DateTime m_dateTime;
+
+    Int16[] m_int16Array;
+    Int16[] m_uint16Array;
+
+    Int32[] m_int32Array;
+    Int32[] m_uint32Array;
+
+    long[] m_longArray;
+    Int64[] m_ulongArray;
+
+    float[] m_floatArray;
+    double[] m_doubleArray;
+
+    byte[][] m_byteByteArray;
+
+    string[] m_stringArray;
+
+    List<object> m_arraylist = new List<object>();
+    IDictionary<object, object> m_map = new Dictionary<object, object>();
+    Hashtable m_hashtable = new Hashtable();
+    ArrayList m_vector = new ArrayList();
+
+    CacheableHashSet m_chs = CacheableHashSet.Create();
+    CacheableLinkedHashSet m_clhs = CacheableLinkedHashSet.Create();
+
+    byte[] m_byte252 = new byte[252];
+    byte[] m_byte253 = new byte[253];
+    byte[] m_byte65535 = new byte[65535];
+    byte[] m_byte65536 = new byte[65536];
+
+    pdxEnumTest m_pdxEnum = pdxEnumTest.pdx3;
+    ApartmentLocation[] m_address = new ApartmentLocation[10];
+
+    LinkedList<Object> m_LinkedList = new LinkedList<Object>();
+
+    public void Init()
+    {
+      m_char = 'C';
+      m_bool = true;
+      m_byte = 0x74;
+      m_sbyte = 0x67;
+      m_int16 = 0xab;
+      m_uint16 = 0x2dd5;
+      m_int32 = 0x2345abdc;
+      m_uint32 = 0x2a65c434;
+      m_long = 324897980;
+      m_ulong = 238749898;
+      m_float = 23324.324f;
+      m_double = 3243298498d;
+
+      m_string = "gfestring";
+
+      m_boolArray = new bool[] { true, false, true };
+      m_byteArray = new byte[] { 0x34, 0x64 };
+      m_sbyteArray = new byte[] { 0x34, 0x64 };
+
+      m_charArray = new char[] { 'c', 'v' };
+
+      long ticks = 634460644691540000L;
+      m_dateTime = new DateTime(ticks);
+
+      m_int16Array = new short[] { 0x2332, 0x4545 };
+      m_uint16Array = new short[] { 0x3243, 0x3232 };
+
+      m_int32Array = new int[] { 23, 676868, 34343, 2323 };
+      m_uint32Array = new int[] { 435, 234324, 324324, 23432432 };
+
+      m_longArray = new long[] { 324324L, 23434545L };
+      m_ulongArray = new Int64[] { 3245435, 3425435 };
+
+      m_floatArray = new float[] { 232.565f, 2343254.67f };
+      m_doubleArray = new double[] { 23423432d, 4324235435d };
+
+      m_byteByteArray = new byte[][]{new byte[] {0x23},
+                                           new byte[]{0x34, 0x55}
+                                          };
+
+      m_stringArray = new string[] { "one", "two" };
+
+      m_arraylist = new List<object>();
+      m_arraylist.Add(1);
+      m_arraylist.Add(2);
+
+      m_LinkedList = new LinkedList<Object>();
+      m_LinkedList.AddFirst("Item1");
+      m_LinkedList.AddLast("Item2");
+      m_LinkedList.AddLast("Item3");
+
+
+      m_map = new Dictionary<object, object>();
+      m_map.Add(1, 1);
+      m_map.Add(2, 2);
+
+      m_hashtable = new Hashtable();
+      m_hashtable.Add(1, "1111111111111111");
+      m_hashtable.Add(2, "2222222222221111111111111111");
+
+      m_vector = new ArrayList();
+      m_vector.Add(1);
+      m_vector.Add(2);
+      m_vector.Add(3);
+
+      m_chs.Add(1);
+      m_clhs.Add(1);
+      m_clhs.Add(2);
+      m_pdxEnum = pdxEnumTest.pdx3;
+
+      m_address = new ApartmentLocation[10];
+
+      for (int i = 0; i < m_address.Length; i++)
+      {
+        m_address[i] = new ApartmentLocation(i, "street" + i, "city" + i);
+      }
+    }
+
+    public PdxTypesReflectionTest()
+    {
+
+
+    }
+
+    public PdxTypesReflectionTest(bool initialize)
+    {
+      if (initialize)
+        Init();
+
+    }
+
+    public override bool Equals(object obj)
+    {
+      if (obj == null)
+        return false;
+
+      PdxTypesReflectionTest other = obj as PdxTypesReflectionTest;
+
+      if (other == null)
+        return false;
+
+      this.checkEquality(other);
+      return true;
+    }
+    public override int GetHashCode()
+    {
+      return base.GetHashCode();
+    }
+    #region IPdxSerializable Members
+    byte[][] compareByteByteArray(byte[][] baa, byte[][] baa2)
+    {
+      if (baa.Length == baa2.Length)
+      {
+        int i = 0;
+        while (i < baa.Length)
+        {
+          compareByteArray(baa[i], baa2[i]);
+          i++;
+        }
+        if (i == baa2.Length)
+          return baa2;
+      }
+
+      throw new IllegalStateException("Not got expected value for type: " + baa2.GetType().ToString());
+    }
+    bool compareBool(bool b, bool b2)
+    {
+      if (b == b2)
+        return b;
+      throw new IllegalStateException("Not got expected value for type: " + b2.GetType().ToString());
+    }
+    bool[] compareBoolArray(bool[] a, bool[] a2)
+    {
+      if (a.Length == a2.Length)
+      {
+        int i = 0;
+        while (i < a.Length)
+        {
+          if (a[i] != a2[i])
+            break;
+          else
+            i++;
+        }
+        if (i == a2.Length)
+          return a2;
+      }
+
+      throw new IllegalStateException("Not got expected value for type: " + a2.GetType().ToString());
+    }
+    byte compareByte(byte b, byte b2)
+    {
+      if (b == b2)
+        return b;
+      throw new IllegalStateException("Not got expected value for type: " + b2.GetType().ToString());
+    }
+    byte[] compareByteArray(byte[] a, byte[] a2)
+    {
+      if (a.Length == a2.Length)
+      {
+        int i = 0;
+        while (i < a.Length)
+        {
+          if (a[i] != a2[i])
+            break;
+          else
+            i++;
+        }
+        if (i == a2.Length)
+          return a2;
+      }
+
+      throw new IllegalStateException("Not got expected value for type: " + a2.GetType().ToString());
+    }
+    char[] compareCharArray(char[] a, char[] a2)
+    {
+      if (a.Length == a2.Length)
+      {
+        int i = 0;
+        while (i < a.Length)
+        {
+          if (a[i] != a2[i])
+            break;
+          else
+            i++;
+        }
+        if (i == a2.Length)
+          return a2;
+      }
+
+      throw new IllegalStateException("Not got expected value for type: " + a2.GetType().ToString());
+    }
+    List<object> compareCompareCollection(List<object> a, List<object> a2)
+    {
+      if (a.Count == a2.Count)
+      {
+        int i = 0;
+        while (i < a.Count)
+        {
+          if (!a[i].Equals(a2[i]))
+            break;
+          else
+            i++;
+        }
+        if (i == a2.Count)
+          return a2;
+      }
+
+      throw new IllegalStateException("Not got expected value for type: " + a2.GetType().ToString());
+    }
+
+    LinkedList<object> compareCompareCollection(LinkedList<object> a, LinkedList<object> a2)
+    {
+      if (a.Count == a2.Count)
+      {
+        LinkedList<Object>.Enumerator e1 = a.GetEnumerator();
+        LinkedList<Object>.Enumerator e2 = a2.GetEnumerator();
+        while (e1.MoveNext() && e2.MoveNext())
+        {
+          if (!e1.Current.Equals(e2.Current))
+            break;
+        }
+        return a2;
+      }
+      throw new IllegalStateException("Not got expected value for type: " + a2.GetType().ToString());
+    }
+
+    DateTime compareData(DateTime b, DateTime b2)
+    {
+      //TODO:
+      // return b;
+      if ((b.Ticks / 10000L) == (b2.Ticks / 10000L))
+        return b;
+      throw new IllegalStateException("Not got expected value for type: " + b2.GetType().ToString());
+    }
+    Double compareDouble(Double b, Double b2)
+    {
+      if (b == b2)
+        return b;
+      throw new IllegalStateException("Not got expected value for type: " + b2.GetType().ToString());
+    }
+    double[] compareDoubleArray(double[] a, double[] a2)
+    {
+      if (a.Length == a2.Length)
+      {
+        int i = 0;
+        while (i < a.Length)
+        {
+          if (a[i] != a2[i])
+            break;
+          else
+            i++;
+        }
+        if (i == a2.Length)
+          return a2;
+      }
+
+      throw new IllegalStateException("Not got expected value for type: " + a2.GetType().ToString());
+    }
+    float compareFloat(float b, float b2)
+    {
+      if (b == b2)
+        return b;
+      throw new IllegalStateException("Not got expected value for type: " + b2.GetType().ToString());
+    }
+    float[] compareFloatArray(float[] a, float[] a2)
+    {
+      if (a.Length == a2.Length)
+      {
+        int i = 0;
+        while (i < a.Length)
+        {
+          if (a[i] != a2[i])
+            break;
+          else
+            i++;
+        }
+        if (i == a2.Length)
+          return a2;
+      }
+
+      throw new IllegalStateException("Not got expected value for type: " + a2.GetType().ToString());
+    }
+    Int16 compareInt16(Int16 b, Int16 b2)
+    {
+      if (b == b2)
+        return b;
+      throw new IllegalStateException("Not got expected value for type: " + b2.GetType().ToString());
+    }
+    Int32 compareInt32(Int32 b, Int32 b2)
+    {
+      if (b == b2)
+        return b;
+      throw new IllegalStateException("Not got expected value for type: " + b2.GetType().ToString());
+    }
+    Int64 compareInt64(Int64 b, Int64 b2)
+    {
+      if (b == b2)
+        return b;
+      throw new IllegalStateException("Not got expected value for type: " + b2.GetType().ToString());
+    }
+    Int32[] compareIntArray(Int32[] a, Int32[] a2)
+    {
+      if (a.Length == a2.Length)
+      {
+        int i = 0;
+        while (i < a.Length)
+        {
+          if (a[i] != a2[i])
+            break;
+          else
+            i++;
+        }
+        if (i == a2.Length)
+          return a2;
+      }
+
+      throw new IllegalStateException("Not got expected value for type: " + a2.GetType().ToString());
+    }
+    long[] compareLongArray(long[] a, long[] a2)
+    {
+      if (a.Length == a2.Length)
+      {
+        int i = 0;
+        while (i < a.Length)
+        {
+          if (a[i] != a2[i])
+            break;
+          else
+            i++;
+        }
+        if (i == a2.Length)
+          return a2;
+      }
+
+      throw new IllegalStateException("Not got expected value for type: " + a2.GetType().ToString());
+    }
+    Int16[] compareSHortArray(Int16[] a, Int16[] a2)
+    {
+      if (a.Length == a2.Length)
+      {
+        int i = 0;
+        while (i < a.Length)
+        {
+          if (a[i] != a2[i])
+            break;
+          else
+            i++;
+        }
+        if (i == a2.Length)
+          return a2;
+      }
+
+      throw new IllegalStateException("Not got expected value for type: " + a2.GetType().ToString());
+    }
+    sbyte compareSByte(sbyte b, sbyte b2)
+    {
+      if (b == b2)
+        return b;
+      throw new IllegalStateException("Not got expected value for type: " + b2.GetType().ToString());
+    }
+    sbyte[] compareSByteArray(sbyte[] a, sbyte[] a2)
+    {
+      if (a.Length == a2.Length)
+      {
+        int i = 0;
+        while (i < a.Length)
+        {
+          if (a[i] != a2[i])
+            break;
+          else
+            i++;
+        }
+        if (i == a2.Length)
+          return a2;
+      }
+
+      throw new IllegalStateException("Not got expected value for type: " + a2.GetType().ToString());
+    }
+    string[] compareStringArray(string[] a, string[] a2)
+    {
+      if (a.Length == a2.Length)
+      {
+        int i = 0;
+        while (i < a.Length)
+        {
+          if (a[i] != a2[i])
+            break;
+          else
+            i++;
+        }
+        if (i == a2.Length)
+          return a2;
+      }
+
+      throw new IllegalStateException("Not got expected value for type: " + a2.GetType().ToString());
+    }
+    UInt16 compareUInt16(UInt16 b, UInt16 b2)
+    {
+      if (b == b2)
+        return b;
+      throw new IllegalStateException("Not got expected value for type: " + b2.GetType().ToString());
+    }
+    UInt32 compareUInt32(UInt32 b, UInt32 b2)
+    {
+      if (b == b2)
+        return b;
+      throw new IllegalStateException("Not got expected value for type: " + b2.GetType().ToString());
+    }
+    UInt64 compareUint64(UInt64 b, UInt64 b2)
+    {
+      if (b == b2)
+        return b;
+      throw new IllegalStateException("Not got expected value for type: " + b2.GetType().ToString());
+    }
+    UInt32[] compareUnsignedIntArray(UInt32[] a, UInt32[] a2)
+    {
+      if (a.Length == a2.Length)
+      {
+        int i = 0;
+        while (i < a.Length)
+        {
+          if (a[i] != a2[i])
+            break;
+          else
+            i++;
+        }
+        if (i == a2.Length)
+          return a2;
+      }
+
+      throw new IllegalStateException("Not got expected value for type: " + a2.GetType().ToString());
+    }
+    UInt64[] compareUnsignedLongArray(UInt64[] a, UInt64[] a2)
+    {
+      if (a.Length == a2.Length)
+      {
+        int i = 0;
+        while (i < a.Length)
+        {
+          if (a[i] != a2[i])
+            break;
+          else
+            i++;
+        }
+        if (i == a2.Length)
+          return a2;
+      }
+
+      throw new IllegalStateException("Not got expected value for type: " + a2.GetType().ToString());
+    }
+    UInt16[] compareUnsignedShortArray(UInt16[] a, UInt16[] a2)
+    {
+      if (a.Length == a2.Length)
+      {
+        int i = 0;
+        while (i < a.Length)
+        {
+          if (a[i] != a2[i])
+            break;
+          else
+            i++;
+        }
+        if (i == a2.Length)
+          return a2;
+      }
+
+      throw new IllegalStateException("Not got expected value for type: " + a2.GetType().ToString());
+    }
+
+    T[] GenericCompare<T>(T[] a, T[] a2)
+    {
+      if (a.Length == a2.Length)
+      {
+        int i = 0;
+        while (i < a.Length)
+        {
+          if (!a[i].Equals(a2[i]))
+            break;
+          else
+            i++;
+        }
+        if (i == a2.Length)
+          return a2;
+      }
+
+      throw new IllegalStateException("Not got expected value for type: " + a2.GetType().ToString());
+    }
+
+
+    T GenericValCompare<T>(T b, T b2)
+    {
+      if (b.Equals(b2))
+        return b;
+      throw new IllegalStateException("Not got expected value for type: " + b2.GetType().ToString());
+    }
+    public void checkEquality(PdxTypesReflectionTest other)
+    {
+      byte[][] baa = other.m_byteByteArray;
+      m_byteByteArray = compareByteByteArray(baa, m_byteByteArray);
+      m_char = GenericValCompare(other.m_char, m_char);
+
+      m_bool = GenericValCompare(other.m_bool, m_bool);
+      m_boolArray = GenericCompare(other.m_boolArray, m_boolArray);
+
+      m_byte = GenericValCompare(other.m_byte, m_byte);
+      m_byteArray = GenericCompare(other.m_byteArray, m_byteArray);
+      m_charArray = GenericCompare(other.m_charArray, m_charArray);
+
+      m_arraylist = compareCompareCollection(other.m_arraylist, m_arraylist);
+
+      m_LinkedList = compareCompareCollection(other.m_LinkedList, m_LinkedList);
+
+      IDictionary<object, object> tmpM = other.m_map;
+      if (tmpM.Count != m_map.Count)
+        throw new IllegalStateException("Not got expected value for type: " + m_map.GetType().ToString());
+
+      Hashtable tmpH = other.m_hashtable;
+
+      if (tmpH.Count != m_hashtable.Count)
+        throw new IllegalStateException("Not got expected value for type: " + m_hashtable.GetType().ToString());
+
+      ArrayList arrAl = other.m_vector;
+
+      if (arrAl.Count != m_vector.Count)
+        throw new IllegalStateException("Not got expected value for type: " + m_vector.GetType().ToString());
+
+      CacheableHashSet rmpChs = other.m_chs;
+
+      if (rmpChs.Count != m_chs.Count)
+        throw new IllegalStateException("Not got expected value for type: " + m_chs.GetType().ToString());
+
+      CacheableLinkedHashSet rmpClhs = other.m_clhs;
+
+      if (rmpClhs.Count != m_clhs.Count)
+        throw new IllegalStateException("Not got expected value for type: " + m_clhs.GetType().ToString());
+
+
+      m_string = GenericValCompare(other.m_string, m_string);
+
+      m_dateTime = compareData(other.m_dateTime, m_dateTime);
+
+      m_double = GenericValCompare(other.m_double, m_double);
+
+      m_doubleArray = GenericCompare(other.m_doubleArray, m_doubleArray);
+      m_float = GenericValCompare(other.m_float, m_float);
+      m_floatArray = GenericCompare(other.m_floatArray, m_floatArray);
+      m_int16 = GenericValCompare(other.m_int16, m_int16);
+      m_int32 = GenericValCompare(other.m_int32, m_int32);
+      m_long = GenericValCompare(other.m_long, m_long);
+      m_int32Array = GenericCompare(other.m_int32Array, m_int32Array);
+      m_longArray = GenericCompare(other.m_longArray, m_longArray);
+      m_int16Array = GenericCompare(other.m_int16Array, m_int16Array);
+      m_sbyte = GenericValCompare(other.m_sbyte, m_sbyte);
+      m_sbyteArray = GenericCompare(other.m_sbyteArray, m_sbyteArray);
+      m_stringArray = GenericCompare(other.m_stringArray, m_stringArray);
+      m_uint16 = GenericValCompare(other.m_uint16, m_uint16);
+      m_uint32 = GenericValCompare(other.m_uint32, m_uint32);
+      m_ulong = GenericValCompare(other.m_ulong, m_ulong);
+      m_uint32Array = GenericCompare(other.m_uint32Array, m_uint32Array);
+      m_ulongArray = GenericCompare(other.m_ulongArray, m_ulongArray);
+      m_uint16Array = GenericCompare(other.m_uint16Array, m_uint16Array);
+
+      byte[] ret = other.m_byte252;
+      if (ret.Length != 252)
+        throw new Exception("Array len 252 not found");
+
+      ret = other.m_byte253;
+      if (ret.Length != 253)
+        throw new Exception("Array len 253 not found");
+
+      ret = other.m_byte65535;
+      if (ret.Length != 65535)
+        throw new Exception("Array len 65535 not found");
+
+      ret = other.m_byte65536;
+      if (ret.Length != 65536)
+        throw new Exception("Array len 65536 not found");
+      if (other.m_pdxEnum != m_pdxEnum)
+        throw new Exception("Pdx enum is not equal");
+
+      ApartmentLocation[] otherA = other.m_address;
+      for (int i = 0; i < m_address.Length; i++)
+      {
+        if (!m_address[i].Equals(otherA[i]))
+          throw new Exception("ApartmentLocation array is not equal " + i);
+      }
+    }
+    #endregion
+  }
+
+  public class SerializePdx1
+  {
+    [PdxIdentityField] public int i1;
+    public int i2;
+    public string s1;
+    public string s2;
+
+    public SerializePdx1()
+    {
+    }
+
+    public SerializePdx1(bool init)
+    {
+      if (init)
+      {
+        i1 = 1;
+        i2 = 2;
+        s1 = "s1";
+        s2 = "s2";
+      }
+    }
+
+    public override bool Equals(object obj)
+    {
+      if (obj == null)
+        return false;
+      if (obj == this)
+        return true;
+
+      var other = obj as SerializePdx1;
+
+      if (other == null)
+        return false;
+
+      if (i1 == other.i1
+          && i2 == other.i2
+          && s1 == other.s1
+          && s2 == other.s2)
+        return true;
+
+      return false;
+    }
+
+    public override int GetHashCode()
+    {
+      return base.GetHashCode();
+    }
+  }
+
+  public class UnsupportedTypes
+  {
+    public struct Coords
+    {
+      public Coords(double x, double y)
+      {
+        X = x;
+        Y = y;
+      }
+
+      public double X { get; set; }
+      public double Y { get; set; }
+
+      public override bool Equals(object ob)
+      {
+        if (ob is Coords)
+        {
+          Coords c = (Coords)ob;
+          return X == c.X && Y == c.Y;
+        }
+        else
+        {
+          return false;
+        }
+      }
+
+      public override int GetHashCode()
+      {
+        return X.GetHashCode() ^ Y.GetHashCode();
+      }
+    }
+
+    [PdxIdentityField] public int i1;
+    public Coords coordsVal;
+
+    public UnsupportedTypes()
+    {
+    }
+
+    public UnsupportedTypes(bool init)
+    {
+      if (init)
+      {
+        i1 = 1;
+        coordsVal = new Coords(1,2);
+      }
+    }
+
+    public override bool Equals(object obj)
+    {
+      if (obj == null)
+        return false;
+      if (obj == this)
+        return true;
+
+      var other = obj as UnsupportedTypes;
+
+      if (other == null)
+        return false;
+
+      if (i1 == other.i1
+          && coordsVal.Equals(coordsVal))
+        return true;
+
+      return false;
+    }
+
+    public override int GetHashCode()
+    {
+      return base.GetHashCode();
+    }
+  }
+
+  public class SerializePdx2
+  {
+    public string s0;
+    [PdxIdentityField] public int i1;
+    public int i2;
+    public string s1;
+    public string s2;
+
+    public SerializePdx2()
+    {
+    }
+
+    public override string ToString()
+    {
+      return i1 + i2 + s1 + s2;
+    }
+
+    public SerializePdx2(bool init)
+    {
+      if (init)
+      {
+        s0 = "s9999999999999999999999999999999999";
+        i1 = 1;
+        i2 = 2;
+        s1 = "s1";
+        s2 = "s2";
+      }
+    }
+
+    public override bool Equals(object obj)
+    {
+      if (obj == null)
+        return false;
+      if (obj == this)
+        return true;
+
+      var other = obj as SerializePdx2;
+
+      if (other == null)
+        return false;
+
+      if (s0 == other.s0
+          && i1 == other.i1
+          && i2 == other.i2
+          && s1 == other.s1
+          && s2 == other.s2)
+        return true;
+
+      return false;
+    }
+
+    public override int GetHashCode()
+    {
+      return base.GetHashCode();
+    }
+  }
+
+  public class BaseClass
+  {
+    [NonSerialized]
+    private const int _const = 1003;
+
+    private int _baseclassmember;
+
+    public BaseClass()
+    {
+    }
+
+    public BaseClass(bool init)
+    {
+      if (init)
+      {
+        _baseclassmember = 101;
+      }
+    }
+
+    public override bool Equals(object obj)
+    {
+      if (obj == null)
+        return false;
+      var bc = obj as BaseClass;
+      if (bc == null)
+        return false;
+
+      if (bc == this)
+        return true;
+
+      if (bc._baseclassmember == _baseclassmember)
+      {
+        return true;
+      }
+
+      return false;
+    }
+
+    public override int GetHashCode()
+    {
+      return base.GetHashCode();
+    }
+
+    public void ToData(IPdxWriter w)
+    {
+      w.WriteInt("_baseclassmember", _baseclassmember);
+    }
+
+    public void FromData(IPdxReader r)
+    {
+      _baseclassmember = r.ReadInt("_baseclassmember");
+    }
+  }
+
+  public class AddressWithGuid
+  {
+    private static Guid oddGuid = new Guid("924243B5-9C2A-41d7-86B1-E0B905C7EED3");
+    private static Guid evenGuid = new Guid("47AA8F17-FF6B-4a7d-B398-D83790977574");
+    private string _street;
+    private string _aptName;
+    private int _flatNumber;
+    private Guid _guid;
+
+    public AddressWithGuid()
+    {
+    }
+
+    public AddressWithGuid(int id)
+    {
+      _flatNumber = id;
+      _aptName = id.ToString();
+      _street = id.ToString() + "_street";
+      if (id % 2 == 0)
+        _guid = evenGuid;
+      else
+        _guid = oddGuid;
+    }
+
+    public override string ToString()
+    {
+      return _flatNumber + " " + _aptName + " " + _street + "  " + _guid.ToString();
+    }
+
+    public override bool Equals(object obj)
+    {
+      if (obj == null)
+        return false;
+      var other = obj as AddressWithGuid;
+
+      if (other == null)
+        return false;
+
+      if (_street == other._street &&
+          _aptName == other._aptName &&
+          _flatNumber == other._flatNumber &&
+          _guid.Equals(other._guid))
+        return true;
+
+      return false;
+    }
+
+    public override int GetHashCode()
+    {
+      return base.GetHashCode();
+    }
+  }
+
+  public class SerializeAllTypes : BaseClass
+  {
+    public enum COLORS { RED, WHITE, BLUE };
+
+    [PdxIdentityField] private int identity;
+
+    private string stringVal;
+    private string[] stringArray;
+
+    public char charVal;
+    public char[] charArray;
+
+    public bool boolVal;
+    public bool[] boolArray;
+
+    public byte byteVal;
+    public byte[] byteArray;
+
+    public sbyte sbyteVal;
+    public sbyte[] sbyteArray;
+
+    public short shortVal;
+    public ushort ushortVal;
+    public short[] shortArray;
+    public ushort[] ushortArray;
+
+    public int intVal;
+    public uint uintVal;
+    public int[] intArray;
+    public uint[] uintArray;
+
+    public long longVal;
+    public ulong ulongVal;
+    public long[] longArray;
+    public ulong[] ulongArray;
+
+    public float floatVal;
+    public float[] floatArray;
+
+    public double doubleVal;
+    public double[] doubleArray;
+
+    public DateTime dateTimeVal;
+    public DateTime[] dateTimeArray;
+
+    public string s1;
+    public string s2;
+    private SerializePdx2 nestedObject;
+    private ArrayList _addressList;
+    private AddressWithGuid _address;
+
+    private Hashtable _hashTable;
+    private Stack _stack;
+    private Queue _queue;
+
+    public COLORS colorVal;
+    public Guid guid;
+    public Decimal decimalVal;
+
+    public SerializeAllTypes()
+          : base()
+    {
+    }
+
+    public SerializeAllTypes(bool init, int nAddress)
+      : base(init)
+    {
+      if (init)
+      {
+        stringVal = "Harry Potter is a gryffindor";
+        stringArray = new string[] { "Ron", "Hermeine", "Hagrid" };
+
+        identity = 1;
+
+        charVal = 'z';
+        charArray = new char[] { 'a', 'b', 'c' };
+
+        boolVal = true;
+        boolArray = new bool[] { true, false, true };
+
+        byteVal = 0xa0;
+        byteArray = new byte[] { (byte)(Byte.MaxValue - 1), (byte)(Byte.MaxValue - 10), (byte)(Byte.MaxValue - 20) };
+
+        sbyteVal = 0x10;
+        sbyteArray = new sbyte[] { -5, 2, 0x70 };
+
+        shortVal = -2;
+        ushortVal = 2;
+        shortArray = new short[] { 1, 11, 111 };
+        ushortArray = new ushort[] { (ushort)(UInt16.MaxValue - 1), (ushort)(UInt16.MaxValue - 11), (ushort)(UInt16.MaxValue - 111) };
+
+        intVal = -22;
+        uintVal = 22;
+        intArray = new int[] { 10, 110, 1110 };
+        uintArray = new uint[] { (uint)(UInt32.MaxValue - 10), (uint)(UInt32.MaxValue - 110), (uint)(UInt32.MaxValue - 1110) };
+
+        longVal = -222;
+        ulongVal = 222;
+        longArray = new long[] { 100, 1100, 11100 };
+        ulongArray = new ulong[] { (ulong)(UInt64.MaxValue - 100), (ulong)(UInt64.MaxValue - 1100), (ulong)(UInt64.MaxValue - 11100) };
+
+        floatVal = 1.6f;
+        floatArray = new float[] { 1.6f, 1600.1f, 1.2e7f };
+
+        doubleVal = 1.6;
+        doubleArray = new double[] { 2.6, 2600.1, 2.2e7 };
+
+        dateTimeVal = new DateTime(2009, 8, 1, 0, 0, 0);
+        dateTimeArray = new DateTime[] { dateTimeVal, dateTimeVal.AddDays(1), dateTimeVal.AddHours(1) };
+
+        s1 = "s1";
+        s2 = "s2";
+        nestedObject = new SerializePdx2(true);
+
+        _addressList = new ArrayList();
+        _hashTable = new Hashtable();
+        _stack = new Stack();
+        _queue = new Queue();
+
+        for (var i = 0; i < 10; i++)
+        {
+          _addressList.Add(new AddressWithGuid(i));
+          _hashTable.Add(i, new SerializePdx2(true));
+          _stack.Push(new SerializePdx2(true));
+          _queue.Enqueue(new SerializePdx2(true));
+        }
+
+        _address = new AddressWithGuid(nAddress);
+        colorVal = COLORS.RED;
+        guid = new Guid("924243B5-9C2A-41d7-86B1-E0B905C7EED3");
+        decimalVal = Decimal.MaxValue;
+      }
+    }
+
+    public override bool Equals(object obj)
+    {
+      if (obj == null)
+        return false;
+      if (obj == this)
+        return true;
+
+      var other = obj as SerializeAllTypes;
+
+      if (other == null)
+        return false;
+
+      if (stringVal == other.stringVal
+          && stringArray.SequenceEqual(other.stringArray)
+
+          && identity == other.identity
+
+          && charVal == other.charVal
+          && charArray.SequenceEqual(other.charArray)
+
+          && boolVal == other.boolVal
+          && boolArray.SequenceEqual(other.boolArray)
+
+          && byteVal == other.byteVal
+          && byteArray.SequenceEqual(other.byteArray)
+
+          && sbyteVal == other.sbyteVal
+          && sbyteArray.SequenceEqual(other.sbyteArray)
+
+          && shortVal == other.shortVal
+          && ushortVal == other.ushortVal
+          && shortArray.SequenceEqual(other.shortArray)
+          && ushortArray.SequenceEqual(other.ushortArray)
+
+          && intVal == other.intVal
+          && uintVal == other.uintVal
+          && intArray.SequenceEqual(other.intArray)
+          && uintArray.SequenceEqual(other.uintArray)
+
+          && longVal == other.longVal
+          && ulongVal == other.ulongVal
+          && longArray.SequenceEqual(other.longArray)
+          && ulongArray.SequenceEqual(other.ulongArray)
+
+          && floatVal == other.floatVal
+          && floatArray.SequenceEqual(other.floatArray)
+
+          && doubleVal == other.doubleVal
+          && doubleArray.SequenceEqual(other.doubleArray)
+
+          && dateTimeVal == other.dateTimeVal
+          && dateTimeArray.SequenceEqual(other.dateTimeArray)
+
+          && s1 == other.s1
+          && s2 == other.s2
+          && colorVal == other.colorVal
+          && guid == other.guid
+          && decimalVal == other.decimalVal)
+      {
+        var ret = nestedObject.Equals(other.nestedObject);
+
+        if (ret)
+        {
+          if (_addressList.Count == 10 &&
+              _addressList.Count == other._addressList.Count
+          )
+          {
+            for (var i = 0; i < _addressList.Count; i++)
+            {
+              ret = _addressList[i].Equals(other._addressList[i]);
+              if (!ret)
+                return false;
+            }
+
+            if (_hashTable.Count != other._hashTable.Count)
+              return false;
+
+            foreach (DictionaryEntry de in _hashTable)
+            {
+              var otherHe = other._hashTable[de.Key];
+              ret = de.Value.Equals(otherHe);
+              if (!ret)
+                return false;
+            }
+
+            if (_stack.Count != other._stack.Count)
+              return false;
+            foreach (Object o in _stack)
+            {
+              var otherO = other._stack.Pop();
+              ret = o.Equals(otherO);
+              if (!ret)
+                return false;
+            }
+
+            if (_queue.Count != other._queue.Count)
+              return false;
+            foreach (Object o in _queue)
+            {
+              var otherO = other._queue.Dequeue();
+              ret = o.Equals(otherO);
+              if (!ret)
+                return false;
+            }
+
+            if (!_address.Equals(other._address))
+              return false;
+
+            return base.Equals(other);
+          }
+        }
+      }
+      return false;
+    }
+
+    public override int GetHashCode()
+    {
+      return base.GetHashCode();
+    }
+  }
+
+  public class SerializePdx4 : BaseClass
+  {
+    private string s0;
+    [PdxIdentityField] private int i1;
+    public int i2;
+    public string s1;
+    public string s2;
+    private SerializePdx2 nestedObject;
+    private ArrayList _addressList;
+
+    private AddressWithGuid[] _addressArray;
+
+    //private int arrayCount = 10;
+    public SerializePdx4()
+      : base()
+    {
+    }
+
+    public override string ToString()
+    {
+      return i1 + ":" + i2 + ":" + s1 + ":" + s2 + nestedObject.ToString() + " add: " + _addressList[0].ToString();
+    }
+
+    public SerializePdx4(bool init)
+      : base(init)
+    {
+      if (init)
+      {
+        s0 = "s9999999999999999999999999999999999";
+        i1 = 1;
+        i2 = 2;
+        s1 = "s1";
+        s2 = "s2";
+        nestedObject = new SerializePdx2(true);
+
+        _addressList = new ArrayList();
+        _addressArray = new AddressWithGuid[10];
+
+        for (var i = 0; i < 10; i++)
+        {
+          _addressList.Add(new AddressWithGuid(i));
+          _addressArray[i] = new AddressWithGuid(i);
+        }
+      }
+    }
+
+    public override bool Equals(object obj)
+    {
+      if (obj == null)
+        return false;
+      if (obj == this)
+        return true;
+
+      var other = obj as SerializePdx4;
+
+      if (other == null)
+        return false;
+
+      if (s0 == other.s0
+          && i1 == other.i1
+          && i2 == other.i2
+          && s1 == other.s1
+          && s2 == other.s2)
+      {
+        var ret = nestedObject.Equals(other.nestedObject);
+        if (ret)
+        {
+          if (_addressList.Count == other._addressList.Count &&
+              _addressList[0].Equals(other._addressList[0]))
+          {
+            for (var i = 0; i < _addressList.Count; i++)
+            {
+              ret = _addressList[i].Equals(other._addressList[i]);
+              if (!ret)
+                return false;
+            }
+
+            for (var i = 0; i < _addressArray.Length; i++)
+            {
+              ret = _addressArray[i].Equals(other._addressArray[i]);
+              if (!ret)
+                return false;
+            }
+
+            return base.Equals(other);
+          }
+        }
+      }
+
+      return false;
+    }
+
+    public override int GetHashCode()
+    {
+      return base.GetHashCode();
+    }
+  }
+
+  public class PdxFieldTest
+  {
+    private string _notInclude = "default_value";
+    private int _nameChange;
+    private int _identityField;
+
+    public PdxFieldTest()
+    {
+    }
+
+    public string NotInclude
+    {
+      set { _notInclude = value; }
+    }
+
+    public PdxFieldTest(bool init)
+    {
+      if (init)
+      {
+        _notInclude = "valuechange";
+        _nameChange = 11213;
+        _identityField = 1038193;
+      }
+    }
+
+    public override bool Equals(object obj)
+    {
+      if (obj == null)
+        return false;
+
+      var other = obj as PdxFieldTest;
+
+      if (other == null)
+        return false;
+
+      if (_notInclude == other._notInclude
+          && _nameChange == other._nameChange
+          && _identityField == other._identityField)
+        return true;
+
+
+      return false;
+    }
+
+    public override int GetHashCode()
+    {
+      return base.GetHashCode();
+    }
+  }
+
+  public class SpecialAutoSerializer : ReflectionBasedAutoSerializer
+  {
+    public override bool IsIdentityField(FieldInfo fi, Type type)
+    {
+      if (fi.Name == "_identityField")
+        return true;
+      return base.IsIdentityField(fi, type);
+    }
+
+    public override string GetFieldName(FieldInfo fi, Type type)
+    {
+      if (fi.Name == "_nameChange")
+        return fi.Name + "NewName";
+
+      return fi.Name;
+    }
+
+    public override bool IsFieldIncluded(FieldInfo fi, Type type)
+    {
+      if (fi.Name == "_notInclude")
+        return false;
+      return base.IsFieldIncluded(fi, type);
+    }
+
+    public override FieldType GetFieldType(FieldInfo fi, Type type)
+    {
+      //if (fi.FieldType.Equals(Type.GetType("System.Guid")))
+      //    return FieldType.STRING;
+      return base.GetFieldType(fi, type);
+    }
+
+    public override object WriteTransform(FieldInfo fi, Type type, object originalValue)
+    {
+      if (fi.FieldType.Equals(Type.GetType("System.Guid")))
+      {
+        //writer.WriteField(fi.Name, fi.GetValue(o).ToString(), Type.GetType("System.String"));
+        return originalValue.ToString();
+      }
+      else
+        return base.WriteTransform(fi, type, originalValue);
+    }
+
+    public override object ReadTransform(FieldInfo fi, Type type, object serializeValue)
+    {
+      if (fi.FieldType.Equals(Type.GetType("System.Guid")))
+      {
+        var g = new Guid((string)serializeValue);
+
+        //fi.SetValue(o, g);
+        return g;
+      }
+      else
+        return base.ReadTransform(fi, type, serializeValue);
+    }
+
+    /*public override void SerializeField(object o, FieldInfo fi, IPdxWriter writer)
+    {
+      if (fi.FieldType.Equals(Type.GetType("System.Guid")))
+      {
+        writer.WriteField(fi.Name, fi.GetValue(o).ToString(), Type.GetType("System.String"));
+      }
+      else
+      base.SerializeField(o, fi, writer);
+    }*/
+
+    /* public override object DeserializeField(object o, FieldInfo fi, IPdxReader reader)
+     {
+       if (fi.FieldType.Equals(Type.GetType("System.Guid")))
+       {
+         string gStr = (string)reader.ReadField(fi.Name, Type.GetType("System.String"));
+         Guid g = new Guid(gStr);
+
+         //fi.SetValue(o, g);
+         return g;
+       }
+       else
+         return base.DeserializeField(o, fi, reader);
+     }*/
+  }
+
+  [Trait("Category", "Integration")]
+  public class AutoSerializationTests : TestBase
+  {
+    public AutoSerializationTests(ITestOutputHelper testOutputHelper) : base(testOutputHelper)
+    {
+    }
+
+    [Fact]
+    public void AutoPutGet()
+    {
+      using (var cluster = new Cluster(output, CreateTestCaseDirectoryName(), 1, 1))
+      {
+        Assert.True(cluster.Start());
+        Assert.Equal(0, cluster.Gfsh.create()
+
+            .region()
+            .withName("testRegion")
+            .withType("REPLICATE")
+            .execute());
+
+        var properties = new Dictionary<string, string>()
+                    {
+                        { "log-level", "debug" },
+                        { "log-file", "c:/temp/autoserializertest.log" }
+                    };
+
+        var cache = cluster.CreateCache(properties);
+
+        var region = cache.CreateRegionFactory(RegionShortcut.PROXY)
+            .SetPoolName("default")
+            .Create<object, object>("testRegion");
+        Assert.NotNull(region);
+
+        cache.TypeRegistry.PdxSerializer = new ReflectionBasedAutoSerializer();
+
+        for (var i = 0; i < 10; i++)
+        {
+          object put;
+          object ret;
+
+          Assert.ThrowsAny<Exception>(() =>
+          {
+            put = new UnsupportedTypes(true);
+            region[i] = put;
+            var val = region[i];
+            Console.WriteLine("Shouldn't be able to retrieve an unsupported type");
+          });
+
+          put = new SerializePdx1(true);
+          region[i] = put;
+          ret = region[i];
+          Assert.Equal(put, ret);
+
+          put = new SerializePdx2(true);
+          region[i + 10] = put;
+          ret = region[i + 10];
+          Assert.Equal(put, ret);
+
+          put = new PdxTypesReflectionTest(true);
+          region[i + 20] = put;
+          ret = region[i + 20];
+          Assert.Equal(put, ret);
+
+          put = new SerializeAllTypes(true, i % 2);
+          region[i + 30] = put;
+          ret = region[i + 30];
+          Assert.Equal(put, ret);
+
+          put = new SerializePdx4(true);
+          region[i + 40] = put;
+          ret = region[i + 40];
+          Assert.Equal(put, ret);
+
+          var p1 = region[i + 30];
+          var p2 = region[i + 40];
+          Assert.True(p1 != p2, "Should NOt be equal");
+        }
+      }
+    }
+
+    [Fact]
+    public void AutoPutAll()
+    {
+      using (var cluster = new Cluster(output, CreateTestCaseDirectoryName(), 1, 1))
+      {
+        Assert.True(cluster.Start());
+        Assert.Equal(0, cluster.Gfsh.create()
+            .region()
+            .withName("testRegion")
+            .withType("REPLICATE")
+            .execute());
+
+        var cache = cluster.CreateCache();
+
+        var region = cache.CreateRegionFactory(RegionShortcut.PROXY)
+            .SetPoolName("default")
+            .Create<object, object>("testRegion");
+        Assert.NotNull(region);
+
+        // Register the reflectionbased serializer
+        cache.TypeRegistry.PdxSerializer = new ReflectionBasedAutoSerializer();
+
+        IDictionary<object, object> collection = new Dictionary<object, object>();
+        collection.Add(100, new SerializeAllTypes(true, 0));
+        collection.Add(200, new SerializeAllTypes(true, 1));
+        collection.Add(300, new SerializePdx4(true));
+        region.PutAll(collection);
+      }
+    }
+
+    [Fact]
+    public void DerivedAutoSerializer()
+    {
+      using (var cluster = new Cluster(output, CreateTestCaseDirectoryName(), 1, 1))
+      {
+        Assert.True(cluster.Start());
+        Assert.Equal(0, cluster.Gfsh.create()
+          .region()
+          .withName("testRegion")
+          .withType("REPLICATE")
+          .execute());
+
+        var properties = new Dictionary<string, string>()
+                        {
+                            { "log-level", "debug" },
+                            { "log-file", "c:/temp/autoserializertest.log" }
+                        };
+
+        var cache = cluster.CreateCache(properties);
+
+        var region = cache.CreateRegionFactory(RegionShortcut.PROXY)
+            .SetPoolName("default")
+            .Create<object, object>("testRegion");
+        Assert.NotNull(region);
+
+        cache.TypeRegistry.PdxSerializer = new SpecialAutoSerializer();
+
+        for (var i = 0; i < 1; i++)
+        {
+          var pft = new PdxFieldTest(true);
+          region[i + 50] = pft;
+          var ret = region[i + 50];
+
+          Assert.NotEqual(pft, ret);
+
+          pft.NotInclude = "default_value";
+          Assert.Equal(pft, ret);
+        }
+      }
+    }
+  }
+}
diff --git a/clicache/integration-test2/CMakeLists.txt b/clicache/integration-test2/CMakeLists.txt
index 565afeb..1c7519c 100644
--- a/clicache/integration-test2/CMakeLists.txt
+++ b/clicache/integration-test2/CMakeLists.txt
@@ -46,6 +46,7 @@ add_library( ${PROJECT_NAME} SHARED
   geode.properties
   xunit.runner.json
   packages.config
+  AutoSerializationTests.cs
   SerializationTests.cs
   ClientSslKeys/client_keystore.password.pem
   ClientSslKeys/client_truststore.pem
diff --git a/clicache/src/ReflectionBasedAutoSerializer.cpp b/clicache/src/ReflectionBasedAutoSerializer.cpp
index a5de40c..a5f2176 100755
--- a/clicache/src/ReflectionBasedAutoSerializer.cpp
+++ b/clicache/src/ReflectionBasedAutoSerializer.cpp
@@ -31,45 +31,44 @@ namespace Apache
   {
     namespace Client
     {
-
-         ref class FieldWrapper
+      ref class FieldWrapper
+      {
+      private:
+        //static readonly Module Module = typeof(Program).Module;
+        static array<Type^>^ oneObj = gcnew array<Type^>(1) { Type::GetType("System.Object") };
+        static array<Type^>^ twoObj = gcnew array<Type^>(2) { Type::GetType("System.Object"), Type::GetType("System.Object") };
+        delegate void MySetter(Object^ t1, Object^ t2);
+        delegate Object^ MyGetter(Object^ t1);
+
+        static Type^ setterDelegateType = Type::GetType("Apache.Geode.Client.FieldWrapper+MySetter");
+        static Type^ getterDelegateType = Type::GetType("Apache.Geode.Client.FieldWrapper+MyGetter");
+
+        FieldInfo^ m_fi;
+        String^    m_fieldName;
+        bool       m_isIdentityField;
+        FieldType  m_fieldType;
+        int        m_pdxType;
+
+        MyGetter^ m_getter;
+        MySetter^ m_setter;
+
+        static MySetter^ createFieldSetter(FieldInfo^ fieldInfo)
         {
-          private:
-             //static readonly Module Module = typeof(Program).Module;
-            static array<Type^>^ oneObj = gcnew array<Type^>(1) { Type::GetType("System.Object") };
-            static array<Type^>^ twoObj = gcnew array<Type^>(2) { Type::GetType("System.Object"), Type::GetType("System.Object") };
-            delegate void MySetter(Object^ t1, Object^ t2);
-            delegate Object^ MyGetter(Object^ t1);
-
-            static Type^ setterDelegateType = Type::GetType("Apache.Geode.Client.FieldWrapper+MySetter");
-            static Type^ getterDelegateType = Type::GetType("Apache.Geode.Client.FieldWrapper+MyGetter");
-
-            FieldInfo^ m_fi;
-            String^    m_fieldName;
-            bool       m_isIdentityField;
-            FieldType  m_fieldType;
-            int        m_pdxType;
+          DynamicMethod^ dynam = gcnew DynamicMethod("", Internal::DotNetTypes::VoidType , twoObj, fieldInfo->DeclaringType, true);
+          ILGenerator^ il = dynam->GetILGenerator();
 
-            MyGetter^ m_getter;
-            MySetter^ m_setter;
+          if (!fieldInfo->IsStatic)
+            pushInstance(il, fieldInfo->DeclaringType);
 
-            static MySetter^ createFieldSetter(FieldInfo^ fieldInfo)
-            {
-              DynamicMethod^ dynam = gcnew DynamicMethod("", Internal::DotNetTypes::VoidType , twoObj, fieldInfo->DeclaringType, true);
-              ILGenerator^ il = dynam->GetILGenerator();
+          il->Emit(OpCodes::Ldarg_1);
+          unboxIfNeeded(il, fieldInfo->FieldType);
+          il->Emit(OpCodes::Stfld, fieldInfo);
+          il->Emit(OpCodes::Ret);
 
-              if (!fieldInfo->IsStatic)
-                pushInstance(il, fieldInfo->DeclaringType);
-
-              il->Emit(OpCodes::Ldarg_1);
-              unboxIfNeeded(il, fieldInfo->FieldType);
-              il->Emit(OpCodes::Stfld, fieldInfo);
-              il->Emit(OpCodes::Ret);
-
-              return (MySetter^)dynam->CreateDelegate( setterDelegateType );
-            }
+          return (MySetter^)dynam->CreateDelegate( setterDelegateType );
+        }
 
-            static MyGetter^ createFieldGetter(FieldInfo^ fieldInfo)
+        static MyGetter^ createFieldGetter(FieldInfo^ fieldInfo)
             {
               DynamicMethod^ dynam = gcnew DynamicMethod( "", Internal::DotNetTypes::ObjectType, oneObj, fieldInfo->DeclaringType, true);
               ILGenerator^ il = dynam->GetILGenerator();
@@ -84,26 +83,26 @@ namespace Apache
               return (MyGetter^)dynam->CreateDelegate(getterDelegateType);
             }
 
-            static void boxIfNeeded(ILGenerator^ il, Type^ type)
+        static void boxIfNeeded(ILGenerator^ il, Type^ type)
             {
               if (type->IsValueType)
                 il->Emit(OpCodes::Box, type);
             }
 
-            static void pushInstance( ILGenerator^ il, Type^ type)
+        static void pushInstance( ILGenerator^ il, Type^ type)
             {
               il->Emit(OpCodes::Ldarg_0);
               if (type->IsValueType)
                 il->Emit(OpCodes::Unbox, type);
             }
 
-            static void unboxIfNeeded( ILGenerator^ il, Type^ type)
+        static void unboxIfNeeded( ILGenerator^ il, Type^ type)
             {
               if (type->IsValueType)
                 il->Emit(OpCodes::Unbox_Any, type);
             }
-          public:
-            FieldWrapper(FieldInfo^ fi, String^ fieldName, bool isIdentityField, FieldType  fieldtype)
+        public:
+        FieldWrapper(FieldInfo^ fi, String^ fieldName, bool isIdentityField, FieldType  fieldtype)
             {
               m_fi = fi;
               m_fieldName = fieldName;
@@ -114,37 +113,37 @@ namespace Apache
               m_getter = createFieldGetter(fi);
             }
 
-            property bool isIdentityField
+        property bool isIdentityField
             {
               bool get(){return m_isIdentityField;}
             }
 
-            property Type^ FType
+        property Type^ FType
             {
                Type^ get() {return m_fi->FieldType;}
             }
 
-            property String^ FieldName
+        property String^ FieldName
             {
              String^ get(){return m_fieldName;}
             }
 
-            property FieldInfo^ FI
+        property FieldInfo^ FI
             {
               FieldInfo^  get(){return m_fi;}
             }
-            
-            void SetFieldValue(Object^ parent, Object^ val)
+        
+        void SetFieldValue(Object^ parent, Object^ val)
             {
               m_setter(parent, val);
             }
 
-            Object^ GetFieldValue(Object^ parent)
+        Object^ GetFieldValue(Object^ parent)
             {
               return m_getter(parent);
             }
 
-            void SerializeField(IPdxWriter^ w, Object^ value)
+        void SerializeField(IPdxWriter^ w, Object^ value)
             {
               switch(m_fieldType)
               {
@@ -160,12 +159,21 @@ namespace Apache
 			          case FieldType::SHORT:
                   w->WriteShort(m_fieldName, (short)value);
                 break;
+			          case FieldType::USHORT:
+                  w->WriteShort(m_fieldName, (short)(UInt16)value);
+                break;
 			          case FieldType::INT:
                   w->WriteInt(m_fieldName, (int)value);
                 break;
+			          case FieldType::UINT:
+                  w->WriteInt(m_fieldName, (int)(UInt32)value);
+                break;
 			          case FieldType::LONG:
                   w->WriteLong(m_fieldName, (Int64)value);
                 break;
+			          case FieldType::ULONG:
+                  w->WriteLong(m_fieldName, (long)(UInt64)value);
+                break;
 			          case FieldType::FLOAT:
                   w->WriteFloat(m_fieldName, (float)value);
                 break;
@@ -190,14 +198,26 @@ namespace Apache
 			          case FieldType::BYTE_ARRAY:
                   w->WriteByteArray(m_fieldName, (array<Byte>^)value);
                 break;
+			          case FieldType::SBYTE_ARRAY:
+                  w->WriteByteArray(m_fieldName, (array<Byte>^)value);
+                break;
 			          case FieldType::SHORT_ARRAY:
                   w->WriteShortArray(m_fieldName, (array<Int16>^)value);
                 break;
+			          case FieldType::USHORT_ARRAY:
+                  w->WriteShortArray(m_fieldName, (array<Int16>^)(array<UInt16>^)value);
+                break;
 			          case FieldType::INT_ARRAY:
                   w->WriteIntArray(m_fieldName, (array<Int32>^)value);
                 break;
+			          case FieldType::UINT_ARRAY:
+                  w->WriteIntArray(m_fieldName, (array<Int32>^)(array<UInt32>^)value);
+                break;
 			          case FieldType::LONG_ARRAY:
-                  w->WriteLongArray(m_fieldName, (array<System::Int64>^)value);
+                  w->WriteLongArray(m_fieldName, (array<Int64>^)value);
+                break;
+			          case FieldType::ULONG_ARRAY:
+                  w->WriteLongArray(m_fieldName, (array<Int64>^)(array<UInt64>^)value);
                 break;
 			          case FieldType::FLOAT_ARRAY:
                   w->WriteFloatArray(m_fieldName, (array<float>^)value);
@@ -214,12 +234,18 @@ namespace Apache
 			          case FieldType::ARRAY_OF_BYTE_ARRAYS:
                   w->WriteArrayOfByteArrays(m_fieldName, (array<array<Byte>^>^)value);
                 break;
+			          case FieldType::GUID:
+                     w->WriteByteArray(m_fieldName, ((System::Guid)value).ToByteArray());
+                     break;
+			          case FieldType::DECIMAL:
+                     w->WriteIntArray(m_fieldName, Decimal::GetBits((System::Decimal)value));
+                     break;
 			          default:
                   throw gcnew IllegalStateException("Not found FieldType: " + m_fieldType.ToString());
               }
             }
 
-            Object^ DeserializeField(IPdxReader^ r)
+        Object^ DeserializeField(IPdxReader^ r)
             {
              switch(m_fieldType)
               {
@@ -229,18 +255,30 @@ namespace Apache
 			          case FieldType::BYTE:
                   return r->ReadByte(m_fieldName);
                 break;
+			          case FieldType::SBYTE:
+                  return r->ReadByte(m_fieldName);
+                break;
 			          case FieldType::CHAR:
                   return r->ReadChar(m_fieldName);
                 break;
 			          case FieldType::SHORT:
                   return r->ReadShort(m_fieldName);
                 break;
+                case FieldType::USHORT:
+                  return (USHORT)r->ReadShort(m_fieldName);
+                break;
 			          case FieldType::INT:
                   return r->ReadInt(m_fieldName);
                 break;
+			          case FieldType::UINT:
+                  return (UINT)r->ReadInt(m_fieldName);
+                break;
 			          case FieldType::LONG:
                   return r->ReadLong(m_fieldName);
                 break;
+			          case FieldType::ULONG:
+                  return (ULONGLONG)r->ReadLong(m_fieldName);
+                break;
 			          case FieldType::FLOAT:
                   return r->ReadFloat(m_fieldName);
                 break;
@@ -265,15 +303,27 @@ namespace Apache
 			          case FieldType::BYTE_ARRAY:
                   return r->ReadByteArray(m_fieldName);
                 break;
+			          case FieldType::SBYTE_ARRAY:
+                  return (array<SByte>^)r->ReadByteArray(m_fieldName);
+                break;
 			          case FieldType::SHORT_ARRAY:
                   return r->ReadShortArray(m_fieldName);
                 break;
+			          case FieldType::USHORT_ARRAY:
+                  return (array<USHORT>^)r->ReadShortArray(m_fieldName);
+                break;
 			          case FieldType::INT_ARRAY:
                   return r->ReadIntArray(m_fieldName);
                 break;
+			          case FieldType::UINT_ARRAY:
+                  return (array<UINT>^)r->ReadIntArray(m_fieldName);
+                break;
 			          case FieldType::LONG_ARRAY:
                   return r->ReadLongArray(m_fieldName);
                 break;
+			          case FieldType::ULONG_ARRAY:
+                  return (array<ULONGLONG>^)r->ReadLongArray(m_fieldName);
+                break;
 			          case FieldType::FLOAT_ARRAY:
                   return r->ReadFloatArray(m_fieldName);
                 break;
@@ -289,267 +339,298 @@ namespace Apache
 			          case FieldType::ARRAY_OF_BYTE_ARRAYS:
                   return r->ReadArrayOfByteArrays(m_fieldName);
                 break;
+			          case FieldType::GUID:
+                  return gcnew Guid(r->ReadByteArray(m_fieldName));
+                break;
+			          case FieldType::DECIMAL:
+                  return gcnew Decimal(r->ReadIntArray(m_fieldName));
+                break;
 			          default:
                   throw gcnew IllegalStateException("Not found FieldType: " + m_fieldType.ToString());
               }
               return nullptr;
             }
-
-
-
-        };
-
-        ReflectionBasedAutoSerializer::ReflectionBasedAutoSerializer()
+      };
+
+      ReflectionBasedAutoSerializer::ReflectionBasedAutoSerializer()
+      {
+        PdxIdentityFieldAttribute^ pif = gcnew PdxIdentityFieldAttribute();
+        PdxIdentityFieldAttributeType = pif->GetType();
+        classNameVsFieldInfoWrapper = gcnew Dictionary<String^, List<FieldWrapper^>^>();
+      }
+
+		  bool ReflectionBasedAutoSerializer::ToData( Object^ o,IPdxWriter^ writer )
+      {
+        serializeFields(o, writer);
+        return true;
+      }
+
+      Object^ ReflectionBasedAutoSerializer::FromData(String^ o, IPdxReader^ reader)
+      {
+        return deserializeFields(o, reader);
+      }
+
+      void ReflectionBasedAutoSerializer::serializeFields(Object^ o,IPdxWriter^ writer )
+      {
+        Type^ ty = o->GetType();
+        for each(FieldWrapper^ fi in GetFields(o->GetType()))
         {
-          PdxIdentityFieldAttribute^ pif = gcnew PdxIdentityFieldAttribute();
-          PdxIdentityFieldAttributeType = pif->GetType();
-          classNameVsFieldInfoWrapper = gcnew Dictionary<String^, List<FieldWrapper^>^>();
-        }
+          Object^ originalValue = fi->GetFieldValue(o);
 
-		    bool ReflectionBasedAutoSerializer::ToData( Object^ o,IPdxWriter^ writer )
-        {
-          serializeFields(o, writer);
-          return true;
-        }
+          // Transform the value, in case the base class is overridden 
+          originalValue = WriteTransform(fi->FI, fi->FType, originalValue);
 
-        Object^ ReflectionBasedAutoSerializer::FromData(String^ o, IPdxReader^ reader)
-        {
-          return deserializeFields(o, reader);
-        }
+          fi->SerializeField(writer, originalValue);
 
-        void ReflectionBasedAutoSerializer::serializeFields(Object^ o,IPdxWriter^ writer )
-        {
-          Type^ ty = o->GetType();
-         // Log::Debug("ReflectionBasedAutoSerializer::serializeFields classname {0}: objectType {1}", o->GetType()->FullName,o->GetType());
-          for each(FieldWrapper^ fi in GetFields(o->GetType()))
+          if(fi->isIdentityField)
           {
-           // Log::Debug("ReflectionBasedAutoSerializer::serializeFields fieldName: {0}, fieldType: {1}", fi->FieldName, fi->FType);
-           // writer->WriteField(fi->Name, fi->GetValue(o), fi->FieldType);           
-           // SerializeField(o, fi, writer);
-            //Object^ originalValue = fi->FI->GetValue(o);
-            Object^ originalValue = fi->GetFieldValue(o);
-            //hook which can overide by app
-            originalValue = WriteTransform(fi->FI, fi->FType, originalValue);
-
-            fi->SerializeField(writer, originalValue);
-
-            if(fi->isIdentityField)
-            {
-             // Log::Debug("ReflectionBasedAutoSerializer::serializeFields fieldName: {0} is identity field.", fi->FieldName);
-              writer->MarkIdentityField(fi->FieldName);
-            }
+            writer->MarkIdentityField(fi->FieldName);
           }
-
-        //  serializeBaseClassFields(o, writer, ty->BaseType);
         }
+      }
 
-        Object^ ReflectionBasedAutoSerializer::deserializeFields(String^ className, IPdxReader^ reader)
+      Object^ ReflectionBasedAutoSerializer::deserializeFields(String^ className, IPdxReader^ reader)
+      {
+        Object^ object = this->CreateObject(className, reader->Cache);
+
+        for each(FieldWrapper^ fi in GetFields(object->GetType()))
         {
-          Object^ object = this->CreateObject(className, reader->Cache);
+          Object^ serializeValue = fi->DeserializeField(reader);
 
-          for each(FieldWrapper^ fi in GetFields(object->GetType()))
-          {
-            Object^ serializeValue = fi->DeserializeField(reader);
-            serializeValue = ReadTransform( fi->FI, fi->FType, serializeValue);
-            fi->SetFieldValue(object, serializeValue);
-          }
+          // Transform the value, in case the base class is overridden 
+          serializeValue = ReadTransform( fi->FI, fi->FType, serializeValue);
 
-          return object;
-        }
-        
-        Object^ ReflectionBasedAutoSerializer::CreateObject(String^ className, Cache^ cache)
-        {
-          return cache->TypeRegistry->CreateObject(className);
+          fi->SetFieldValue(object, serializeValue);
         }
 
-        bool ReflectionBasedAutoSerializer::IsPdxIdentityField(FieldInfo^ fi)
+        return object;
+      }
+      
+      Object^ ReflectionBasedAutoSerializer::CreateObject(String^ className, Cache^ cache)
+      {
+        return cache->TypeRegistry->CreateObject(className);
+      }
+
+      bool ReflectionBasedAutoSerializer::IsPdxIdentityField(FieldInfo^ fi)
+      {
+        array<Object^>^ cAttr=  fi->GetCustomAttributes(PdxIdentityFieldAttributeType, true);
+        if(cAttr != nullptr && cAttr->Length > 0)
         {
-          array<Object^>^ cAttr=  fi->GetCustomAttributes(PdxIdentityFieldAttributeType, true);
-          if(cAttr != nullptr && cAttr->Length > 0)
-          {
-            PdxIdentityFieldAttribute^ pifa = (PdxIdentityFieldAttribute^)(cAttr[0]);
-            return true;
-          }
-          return false;
+          PdxIdentityFieldAttribute^ pifa = (PdxIdentityFieldAttribute^)(cAttr[0]);
+          return true;
         }
-
-        List<FieldWrapper^>^ ReflectionBasedAutoSerializer::GetFields(Type^ domaimType)
+        return false;
+      }
+
+      List<FieldWrapper^>^ ReflectionBasedAutoSerializer::GetFields(Type^ domaimType)
+      {
+        List<FieldWrapper^>^ retVal = nullptr;
+
+        String^ className = domaimType->FullName;
+        System::Collections::Generic::Dictionary<String^, List<FieldWrapper^>^>^ tmp = classNameVsFieldInfoWrapper;
+        tmp->TryGetValue(className, retVal);
+        if(retVal != nullptr)
+          return retVal;
+        msclr::lock lockInstance(classNameVsFieldInfoWrapper);
         {
-          List<FieldWrapper^>^ retVal = nullptr;
-
-          String^ className = domaimType->FullName;
-          System::Collections::Generic::Dictionary<String^, List<FieldWrapper^>^>^ tmp = classNameVsFieldInfoWrapper;
+          tmp = classNameVsFieldInfoWrapper;
           tmp->TryGetValue(className, retVal);
           if(retVal != nullptr)
             return retVal;
-          msclr::lock lockInstance(classNameVsFieldInfoWrapper);
+           
+          List<FieldWrapper^>^ collectFields = gcnew List<FieldWrapper^>();
+          while(domaimType != nullptr)
           {
-            tmp = classNameVsFieldInfoWrapper;
-            tmp->TryGetValue(className, retVal);
-            if(retVal != nullptr)
-              return retVal;
-             
-            List<FieldWrapper^>^ collectFields = gcnew List<FieldWrapper^>();
-             while(domaimType != nullptr)
-             {
-                for each(FieldInfo^ fi in domaimType->GetFields(BindingFlags::Public| BindingFlags::NonPublic | BindingFlags::Instance
-                  |BindingFlags::DeclaredOnly
-                  ))
-                {
-                  if(!fi->IsNotSerialized && !fi->IsStatic && !fi->IsLiteral && !fi->IsInitOnly)
-                  {
-                    //to ignore the fild
-                    if(IsFieldIncluded(fi, domaimType))
-                    {                      
-                      //This are all hooks which app can implement
-
-                      String^ fieldName = GetFieldName(fi, domaimType);
-                      bool isIdentityField = IsIdentityField(fi, domaimType);
-                      FieldType ft = GetFieldType(fi, domaimType);
+            for each(FieldInfo^ fi in domaimType->GetFields(BindingFlags::Public| BindingFlags::NonPublic | BindingFlags::Instance
+              |BindingFlags::DeclaredOnly
+              ))
+            {
+              if(!fi->IsNotSerialized && !fi->IsStatic && !fi->IsLiteral && !fi->IsInitOnly)
+              {
+                //to ignore the fild
+                if(IsFieldIncluded(fi, domaimType))
+                {                      
+                  //This are all hooks which app can implement
+
+                  String^ fieldName = GetFieldName(fi, domaimType);
+                  bool isIdentityField = IsIdentityField(fi, domaimType);
+                  FieldType ft = GetFieldType(fi, domaimType);
   
-                      FieldWrapper^ fw = gcnew FieldWrapper(fi, fieldName, isIdentityField, ft);
+                  FieldWrapper^ fw = gcnew FieldWrapper(fi, fieldName, isIdentityField, ft);
 
-                      collectFields->Add(fw);
-                    }
-                  }
+                  collectFields->Add(fw);
                 }
-                domaimType = domaimType->BaseType;
-             }
-             tmp = gcnew System::Collections::Generic::Dictionary<String^, List<FieldWrapper^>^>(classNameVsFieldInfoWrapper); 
-             tmp->Add(className, collectFields);
-             classNameVsFieldInfoWrapper = tmp;
-
-             return collectFields;
+              }
+            }
+            domaimType = domaimType->BaseType;
           }
-        }
+          tmp = gcnew System::Collections::Generic::Dictionary<String^, List<FieldWrapper^>^>(classNameVsFieldInfoWrapper); 
+          tmp->Add(className, collectFields);
+          classNameVsFieldInfoWrapper = tmp;
 
-        
-        String^ ReflectionBasedAutoSerializer::GetFieldName(FieldInfo^ fi, Type^ type)
+          return collectFields;
+        }
+      }
+
+      String^ ReflectionBasedAutoSerializer::GetFieldName(FieldInfo^ fi, Type^ type)
+      {
+        return fi->Name;
+      }
+
+      bool ReflectionBasedAutoSerializer::IsIdentityField(FieldInfo^ fi, Type^ type)
+      {
+        return IsPdxIdentityField(fi);
+      }
+
+      FieldType ReflectionBasedAutoSerializer::GetFieldType(FieldInfo^ fi, Type^ type)
+      {
+        return getPdxFieldType(fi->FieldType);
+      }
+
+      bool ReflectionBasedAutoSerializer::IsFieldIncluded(FieldInfo^ fi, Type^ type)
+      {
+        return true;
+      }
+
+      Object^ ReflectionBasedAutoSerializer::WriteTransform(FieldInfo^ fi, Type^ type, Object^ originalValue)
+      {
+        return originalValue;
+      }
+
+      Object^ ReflectionBasedAutoSerializer::ReadTransform(FieldInfo^ fi, Type^ type, Object^ serializeValue)
+      {
+        return serializeValue;
+      }
+
+      FieldType ReflectionBasedAutoSerializer::getPdxFieldType( Type^ type)
+      {
+        if(type->Equals(Internal::DotNetTypes::IntType))
         {
-          return fi->Name;
+          return FieldType::INT;
         }
-
-        bool ReflectionBasedAutoSerializer::IsIdentityField(FieldInfo^ fi, Type^ type)
+        else if(type->Equals(Internal::DotNetTypes::UIntType))
         {
-          return IsPdxIdentityField(fi);
+          return FieldType::UINT;
         }
-
-        FieldType ReflectionBasedAutoSerializer::GetFieldType(FieldInfo^ fi, Type^ type)
+        else if(type->Equals(Internal::DotNetTypes::StringType))
         {
-          return getPdxFieldType(fi->FieldType);
+          return FieldType::STRING;
         }
-
-        bool ReflectionBasedAutoSerializer::IsFieldIncluded(FieldInfo^ fi, Type^ type)
+        else if(type->Equals(Internal::DotNetTypes::BooleanType))
         {
-          return true;
+          return FieldType::BOOLEAN;
         }
-
-        Object^ ReflectionBasedAutoSerializer::WriteTransform(FieldInfo^ fi, Type^ type, Object^ originalValue)
+        else if(type->Equals(Internal::DotNetTypes::FloatType))
         {
-          return originalValue;
+          return FieldType::FLOAT;
         }
-
-        Object^ ReflectionBasedAutoSerializer::ReadTransform(FieldInfo^ fi, Type^ type, Object^ serializeValue)
+        else if(type->Equals(Internal::DotNetTypes::DoubleType))
         {
-          return serializeValue;
+          return FieldType::DOUBLE;
         }
-
-        FieldType ReflectionBasedAutoSerializer::getPdxFieldType( Type^ type)
+        else if(type->Equals(Internal::DotNetTypes::CharType))
         {
-          if(type->Equals(Internal::DotNetTypes::IntType))
-          {
-            return FieldType::INT;
-          }
-          else if(type->Equals(Internal::DotNetTypes::StringType))
-          {
-            return FieldType::STRING;
-          }
-          else if(type->Equals(Internal::DotNetTypes::BooleanType))
-          {
-            return FieldType::BOOLEAN;
-          }
-          else if(type->Equals(Internal::DotNetTypes::FloatType))
-          {
-            return FieldType::FLOAT;
-          }
-          else if(type->Equals(Internal::DotNetTypes::DoubleType))
-          {
-            return FieldType::DOUBLE;
-          }
-          else if(type->Equals(Internal::DotNetTypes::CharType))
-          {
-            return FieldType::CHAR;
-          }
-          else if(type->Equals(Internal::DotNetTypes::SByteType))
-          {
-            return FieldType::BYTE;
-          }
-          else if(type->Equals(Internal::DotNetTypes::ShortType))
-          {
-            return FieldType::SHORT;
-          }
-          else if(type->Equals(Internal::DotNetTypes::LongType))
-          {
-            return FieldType::LONG;
-          }
-          else if(type->Equals(Internal::DotNetTypes::ByteArrayType))
-          {
-            return FieldType::BYTE_ARRAY;
-          }
-          else if(type->Equals(Internal::DotNetTypes::DoubleArrayType))
-          {
-            return FieldType::DOUBLE_ARRAY;
-          }
-          else if(type->Equals(Internal::DotNetTypes::FloatArrayType))
-          {
-            return FieldType::FLOAT_ARRAY;
-          }
-          else if(type->Equals(Internal::DotNetTypes::ShortArrayType))
-          {
-            return FieldType::SHORT_ARRAY;
-          }
-          else if(type->Equals(Internal::DotNetTypes::IntArrayType))
-          {
-            return FieldType::INT_ARRAY;
-          }
-          else if(type->Equals(Internal::DotNetTypes::LongArrayType))
-          {
-            return FieldType::LONG_ARRAY;
-          }
-          else if(type->Equals(Internal::DotNetTypes::BoolArrayType))
-          {
-            return FieldType::BOOLEAN_ARRAY;
-          }
-          else if(type->Equals(Internal::DotNetTypes::CharArrayType))
-          {
-            return FieldType::CHAR_ARRAY;
-          }
-          else if(type->Equals(Internal::DotNetTypes::StringArrayType))
-          {
-            return FieldType::STRING_ARRAY;
-          }
-          else if(type->Equals(Internal::DotNetTypes::DateType))
-          {
-            return FieldType::DATE;
-          }
-          else if(type->Equals(Internal::DotNetTypes::ByteArrayOfArrayType))
-          {
-            return FieldType::ARRAY_OF_BYTE_ARRAYS;
-          }
-          /*else if(type->Equals(Internal::DotNetTypes::ObjectArrayType))
-          {
-            //Giving more preference to arraylist instead of Object[] in java side
-            //return this->WriteObjectArray(fieldName, safe_cast<System::Collections::Generic::List<Object^>^>(fieldValue));
-            return FieldType::OBJECT_ARRAY;
-          }*/
-          else
-          {
-            return FieldType::OBJECT;
-            //throw gcnew IllegalStateException("WriteField unable to serialize  " 
-							//																	+ fieldName + " of " + type); 
+          return FieldType::CHAR;
+        }
+        else if(type->Equals(Internal::DotNetTypes::SByteType))
+        {
+          return FieldType::BYTE;
+        }
+        else if(type->Equals(Internal::DotNetTypes::ShortType))
+        {
+          return FieldType::SHORT;
+        }
+        else if(type->Equals(Internal::DotNetTypes::UShortType))
+        {
+          return FieldType::USHORT;
+        }
+        else if(type->Equals(Internal::DotNetTypes::LongType))
+        {
+          return FieldType::LONG;
+        }
+        else if(type->Equals(Internal::DotNetTypes::ULongType))
+        {
+          return FieldType::ULONG;
+        }
+        else if(type->Equals(Internal::DotNetTypes::ByteArrayType))
+        {
+          return FieldType::BYTE_ARRAY;
+        }
+        else if(type->Equals(Internal::DotNetTypes::SByteArrayType))
+        {
+          return FieldType::SBYTE_ARRAY;
+        }
+        else if(type->Equals(Internal::DotNetTypes::DoubleArrayType))
+        {
+          return FieldType::DOUBLE_ARRAY;
+        }
+        else if(type->Equals(Internal::DotNetTypes::FloatArrayType))
+        {
+          return FieldType::FLOAT_ARRAY;
+        }
+        else if(type->Equals(Internal::DotNetTypes::ShortArrayType))
+        {
+          return FieldType::SHORT_ARRAY;
+        }
+        else if(type->Equals(Internal::DotNetTypes::UShortArrayType))
+        {
+          return FieldType::USHORT_ARRAY;
+        }
+        else if(type->Equals(Internal::DotNetTypes::IntArrayType))
+        {
+          return FieldType::INT_ARRAY;
+        }
+        else if(type->Equals(Internal::DotNetTypes::UIntArrayType))
+        {
+          return FieldType::UINT_ARRAY;
+        }
+        else if(type->Equals(Internal::DotNetTypes::LongArrayType))
+        {
+          return FieldType::LONG_ARRAY;
+        }
+        else if(type->Equals(Internal::DotNetTypes::ULongArrayType))
+        {
+          return FieldType::ULONG_ARRAY;
+        }
+        else if(type->Equals(Internal::DotNetTypes::BoolArrayType))
+        {
+          return FieldType::BOOLEAN_ARRAY;
+        }
+        else if(type->Equals(Internal::DotNetTypes::CharArrayType))
+        {
+          return FieldType::CHAR_ARRAY;
+        }
+        else if(type->Equals(Internal::DotNetTypes::StringArrayType))
+        {
+          return FieldType::STRING_ARRAY;
+        }
+        else if(type->Equals(Internal::DotNetTypes::DateType))
+        {
+          return FieldType::DATE;
+        }
+        else if(type->Equals(Internal::DotNetTypes::ByteArrayOfArrayType))
+        {
+          return FieldType::ARRAY_OF_BYTE_ARRAYS;
+        }
+        else if(type->Equals(Internal::DotNetTypes::GuidType))
+        {
+          return FieldType::GUID;
+        }
+        else if(type->Equals(Internal::DotNetTypes::DecimalType))
+        {
+          return FieldType::DECIMAL;
+        }
+        /*else if(type->Equals(Internal::DotNetTypes::ObjectArrayType))
+        {
+          //Giving more preference to arraylist instead of Object[] in java side
+          //return this->WriteObjectArray(fieldName, safe_cast<System::Collections::Generic::List<Object^>^>(fieldValue));
+          return FieldType::OBJECT_ARRAY;
+        }*/
+        else
+        {
+          return FieldType::OBJECT;
+        }
+      }
     }  // namespace Client
   }  // namespace Geode
 }  // namespace Apache
-
-  }
-}
diff --git a/clicache/src/ReflectionBasedAutoSerializer.hpp b/clicache/src/ReflectionBasedAutoSerializer.hpp
index 9fff3f8..5ba876b 100755
--- a/clicache/src/ReflectionBasedAutoSerializer.hpp
+++ b/clicache/src/ReflectionBasedAutoSerializer.hpp
@@ -58,7 +58,17 @@ namespace Apache
 				DOUBLE_ARRAY,
 				STRING_ARRAY,
 				OBJECT_ARRAY,
-				ARRAY_OF_BYTE_ARRAYS
+				ARRAY_OF_BYTE_ARRAYS,
+        SBYTE,
+        USHORT,
+        UINT,
+        ULONG,
+        SBYTE_ARRAY,
+        USHORT_ARRAY,
+        UINT_ARRAY,
+        ULONG_ARRAY,
+        GUID,
+        DECIMAL
       };
 
         ref class FieldWrapper;
diff --git a/clicache/src/TypeRegistry.cpp b/clicache/src/TypeRegistry.cpp
index 9809c62..0845eb5 100644
--- a/clicache/src/TypeRegistry.cpp
+++ b/clicache/src/TypeRegistry.cpp
@@ -661,7 +661,7 @@ namespace Apache
 
         ConstructorInfo^ ctorInfo = type->GetConstructor(Type::EmptyTypes);
         if (ctorInfo == nullptr) {
-          Log::Error("Object missing public no arg constructor");
+          Log::Error("Can't deserialize {0} because this type has no public no arg constructor", type->Name);
           throw gcnew IllegalStateException("Object missing public no arg constructor");
         }
 
diff --git a/clicache/src/impl/DotNetTypes.hpp b/clicache/src/impl/DotNetTypes.hpp
index 75d5245..837df27 100755
--- a/clicache/src/impl/DotNetTypes.hpp
+++ b/clicache/src/impl/DotNetTypes.hpp
@@ -31,6 +31,7 @@ namespace Apache
           {
           public:
               static Type^ IntType = Int32::typeid;
+              static Type^ UIntType = UInt32::typeid;
               static Type^ StringType = String::typeid;
               static Type^ BooleanType = Boolean::typeid;
               static Type^ FloatType = float::typeid;
@@ -38,13 +39,19 @@ namespace Apache
               static Type^ CharType = Char::typeid;
               static Type^ SByteType = SByte::typeid;
               static Type^ ShortType = Int16::typeid;
+              static Type^ UShortType = UInt16::typeid;
               static Type^ LongType = Int64::typeid;
+              static Type^ ULongType = UInt64::typeid;
               static Type^ ByteArrayType = Type::GetType("System.Byte[]");
+              static Type^ SByteArrayType = Type::GetType("System.SByte[]");
               static Type^ DoubleArrayType = Type::GetType("System.Double[]");
               static Type^ FloatArrayType = Type::GetType("System.Single[]");
               static Type^ ShortArrayType = Type::GetType("System.Int16[]");
+              static Type^ UShortArrayType = Type::GetType("System.UInt16[]");
               static Type^ IntArrayType = Type::GetType("System.Int32[]");
+              static Type^ UIntArrayType = Type::GetType("System.UInt32[]");
               static Type^ LongArrayType = Type::GetType("System.Int64[]");
+              static Type^ ULongArrayType = Type::GetType("System.UInt64[]");
               static Type^ BoolArrayType = Type::GetType("System.Boolean[]");
               static Type^ CharArrayType = Type::GetType("System.Char[]");
               static Type^ StringArrayType = Type::GetType("System.String[]");
@@ -54,6 +61,9 @@ namespace Apache
 
               static Type^ VoidType = Type::GetType("System.Void");
               static Type^ ObjectType = Type::GetType("System.Object");
+
+              static Type^ GuidType = Guid::typeid;
+              static Type^ DecimalType = Decimal::typeid;
           };
     }  // namespace Client
   }  // namespace Geode