/**
* The original createProxy method assumes that the proxy doesn't want to
* share conversation state so sets the conversation object to null
*/
public <T> T createProxy(Class<T> interfaze, RuntimeWire wire) throws ProxyCreationException {
ServiceReference<T> serviceReference = new ServiceReferenceImpl(interfaze, wire, this);
return createProxy(serviceReference);
}