Constructor<?> constructor = this.getConstructorProxyDefault();
assert constructor != null : "Constructor for Default Proxy was null; perhaps the "
+ SessionProxyFactory.class.getSimpleName() + " was not properly started?";
// Create a new InvocationHandler
SessionProxyInvocationHandler handler = this.createInvocationHandler((String) null);
try
{
// Create a new Proxy instance, and return
return constructor.newInstance(handler);