Top "Dynamic-proxy" questions

A Dynamic Proxy is a class that implements a list of interfaces specified at runtime such that a method invocation through one of the interfaces on an instance of the class will be encoded and dispatched to another object through a uniform interface.

How to unwrap the original object from a dynamic proxy

what's the best approach to unwrap a dynamic proxy to retrieve the original object beneath? The dynamic proxy has been …

java reflection proxy-classes dynamic-proxy
Usage examples for Jetty's ProxyServlet.Transparent class

I am trying to use jetty7 to build a transparent proxy setup. Idea is to hide origin servers behind the …

proxy jetty transparent dynamic-proxy
Convert System.Data.Entity.DynamicProxies to (non proxy) class in C#

I am getting some data from the database and storing this in a global variable as shown: //Global Variable public …

c# database entity-framework dynamic-proxy
C# Clone System.Data.Entity.DynamicProxies to the actual (non proxied) class?

Possible Duplicate: EF4 Cast DynamicProxies to underlying object I'm trying to figure out how to clone or convert a System.…

c# entity-framework poco dynamic-proxy cloning
How can I convert a dynamic proxy into a POCO?

I was trying trying to serialize a domain model and ran into an issue where I need to convert a …

c# asp.net-mvc-3 serialization entity-framework-4.1 dynamic-proxy
How do I replace a method implementation at runtime?

I'd like to have property getters and methods that I can decorate with my own custom attribute and based on …

c# .net aop dynamic-programming dynamic-proxy
Why does JDK dynamic Proxy only work with Interfaces?

The JDK Proxy class only accepts interfaces in the factory method newProxyInstance(). Is there a workaround available, or alternative implementations? …

java dynamic-proxy
Is there a way to create a DynamicObject that supports an Interface?

Can I define a class which derives from DynamicObject and supports an interface (ICanDoManyThings) without having to implement each method …

c# c#-4.0 dynamic-proxy dynamicobject
Castle Dynamic Proxy not intercepting method calls when invoked from within the class

I have run into a bit of (what I think is) strange behaviour when using Castle's Dynamic Proxy. With the …

c# castle-dynamicproxy dynamic-proxy