Tagged Questions
The dynamic-proxy tag has no wiki summary.
11
votes
2answers
2k views
Alternatives to java.lang.reflect.Proxy for creating proxies of abstract classes (rather than interfaces)
According to the documentation:
[java.lang.reflect.]Proxy provides static methods for
creating dynamic proxy classes and
instances, and it is also the
superclass of all dynamic proxy
...
9
votes
2answers
2k views
Performance cost of Java dynamic proxy
Many modern frameworks (Spring, Hibernate) provide very nice dynamic behaviors with use of Java dynamic proxies, but what's the exact performance cost associated with it? Are there public benchmarks ...
6
votes
4answers
2k views
What are Dynamic Proxy classes and why would I use one?
What is a use case for using a dynamic proxy?
How do they relate to bytecode generation and reflection?
Any recommended reading?
5
votes
1answer
478 views
Should I enable or disable dynamic proxies with entity framework 4.1 and MVC3?
Could someone offer up some advice or point out some blogs/articles that could help with making this decision? The proxies seem very foreign to me and I'm hesitant to use them. I like the ability to ...
5
votes
1answer
417 views
How-to proxy-remote a .NET IEnumerable with fixed-size batches over the network?
.NET remoting can generate transparent proxy remotes for an interface with serializable members, such as:
public interface INetworkInterface {
bool login(string username, string password);
bool ...
5
votes
2answers
2k views
In Java how instance of and type cast(i.e (ClassName)) works on proxy object?
Java generates a proxy class for a given interface and provides the instance of the proxy class. But when we type cast the proxy object to our specific Object, how java handles this internally? Is ...
4
votes
3answers
246 views
Generate intercepting proxy from concrete class?
I need to create a proxy which intercepts properties in a class. I know how to create a dynamic proxy with Emit from an interface, but what if I don't have an interface? I've seen samples which use ...
4
votes
1answer
1k views
Creating an INotifyPropertyChanged proxy to dispatch calls to UI thread
I would like to create a dynamic proxy for binding WinForms controls to objects changed by a different (non-GUI) thread. Such a proxy would intercept the PropertyChanged event and dispatch it using ...
3
votes
3answers
107 views
Java Annotation and Processor to mark a method as so it can be called once and only once?
I need to be able to mark methods so that they throw a RuntimeException if they are called more than once.
I am trying to enforce some single assignment semantics and the number of parameters to my ...
3
votes
1answer
219 views
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 following code:
class Program
{
static void Main(string[] args)
{
var c = ...
3
votes
1answer
382 views
spring scoped proxy and JAXB
JAXBContext is thread-safe but the Unmarshaller is not. I'd like to make the unmarshaller a request scope bean, and I'm doing this:
<bean id="jaxbContext" class="javax.xml.bind.JAXBContext"
...
3
votes
5answers
433 views
What's the best way to implement a dynamic proxy in C#?
I've got a need to create a dynamic proxy in C#. I want this class to wrap another class, and take on it's public interface, forwarding calls for those functions:
class MyRootClass
{
public ...
3
votes
3answers
894 views
Why does JDK dynamic Proxy only work with Interfaces?
The JDK Proxy class only accepts interfaces in the factory mehtod newProxyInstance().
Is there a workaround available, or alternative implementations?
The use cases are limited if I have to extract ...
3
votes
2answers
600 views
Usefulness of java dynamic proxies vs regular proxies
I need some advice to which scenarios a dynamic proxy would prove more useful than a regular proxy.
I've put alot of effort into learning how to use dynamic proxies effectively. In this question, ...
3
votes
2answers
391 views
Are all methods proxied when using Spring AOP?
When using Spring AOP to create a proxy for a class using NameMatchMethodPointcutAdvisor and BeanNameAutoProxyCreator does this essentially proxy every call to the object, but only apply the advice to ...
3
votes
2answers
932 views
Using dynamic proxy on NHibernate objects
I'm trying to use Castle.DynamicProxy2 to cleanup code within NHibernate persisted classes. Here is a simple version of it.
The Pet class:
public class Pet
{
public int Id { get; set; }
...
3
votes
3answers
3k views
How can I use a dynamic proxy on constructors that take arguments?
I've tried to use the code Sun posted on their Proxy usage page, and I tried to use the DebugProxy to print which method is invoked. The thing is, the object I'm creating a proxy for, needs to have ...
3
votes
3answers
2k views
Whats the difference between C# delegates, Dynamic Proxy, Closures and function pointers?
What are useful definitions for the common methods of passing a method or function as data, such as:
Delegates
Closures
Function pointers
Invocation by dynamic proxy and
First class methods?
2
votes
0answers
73 views
Dynamic Proxying IEnumerable<T>
I'm trying to create a dynamic proxy to a list of objects of a specific class.
For example:
var proxy = generator.CreateInterfaceProxyWithoutTarget(typeof (IEnumerable<string>),
...
2
votes
2answers
107 views
Duck typing / dynamic proxies on existing instances of objects
I have an object handed into our library and passed through various processes. I need to attach some additional information to these objects as they pass through various stages and out the other end - ...
2
votes
3answers
132 views
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 in the interface?
I'm trying to make a dynamic proxy ...
2
votes
1answer
576 views
C# Clone System.Data.Entity.DynamicProxies to the actual (non proxied) class?
I'm trying to figure out how to clone or convert a System.Data.Entity.DynamicProxies into it's actual class. Eg:
System.Data.Entity.DynamicProxies.Currency_F4008E27DE_etc is the proxy class
...
2
votes
1answer
90 views
Is it possible to create dynamic proxies without having base class or interface?
Is it possible to create a dynamic proxy using common libraries like Castle Dynamic Proxy without having any base class or interface? I'm indeed interested to have dynamic on-the-fly classes in ...
2
votes
1answer
261 views
Multiplexing interface method calls into a single delegate and demultiplexing
The short version of what I am looking for is this:
I am looking for a mechanism which, given an interface, will dynamically generate a pair of classes for that interface, one multiplexer and one ...
2
votes
1answer
110 views
Best practice for assembly and class names when generating dynamic assemblies and types?
I'm generating a dynamic proxy in .NET with TypeBuilder and Emit and there are lots of names going on - assembly name, module name and type names. Is there a best practice or a set of general good ...
2
votes
1answer
198 views
Reflection-based injection vs. dynamic proxy: Practical considerations?
I'm working on some framework-ish code designed to execute a huge number of operations (hundreds of thousands), all of which use the same basic components, but need to accept operation-specific ...
2
votes
1answer
159 views
Using AOP techniques to intercept ADO.Net
I have quite a large code base using a variety of different ADO technologies (i.e. some EF and in some cases using ADO.Net directly).
I'm wondering if there is any way to globally intercept any ...
2
votes
2answers
360 views
Autofac: Tips for increasing performance when using DynamicProxy?
I just start using DynamicProxy2 today. And found it caused significant performance drop.
See the code below. Test1 is 10 times slower than Test2.
Any tips for increasing performance when using ...
2
votes
1answer
281 views
Dynamic Proxy - Class Loader parameter when creating a new proxy instance
I was wondering about when you call the "newProxyInstance" method when creating a dynamic proxy instance, what exactly is the ClassLoader argument for?
public static Object ...
2
votes
3answers
415 views
How to have a Spring dynamic proxy with 2 interfaces?
I have an object that is injected into my class by Spring (JdbcCursorItemReader if you care).
It implements 5 interfaces, two of which I care about (ItemReader, ItemStream). If I code my class to one ...
2
votes
4answers
529 views
How to create a proxy of an interface in Java?
How can one create a proxy for an interface without creating a class that implements it?
I have a concrete example: I have an interface, Contact, and need to create a proxy object that acts as a ...
2
votes
2answers
257 views
Dynamic proxy and checked exceptions
How can I make my dynamic proxy throw checked exceptions?
I need a transparent wrapper for an interface which sometimes throws checked exceptions such as IOException. Is it possible without 3rd party ...
2
votes
4answers
454 views
how to reattach singleton Spring beans upon deserialization
I want to reinject singleton-scoped dependencies into prototype Spring beans, after they have been deserialized.
Say I've got a Process bean, which depends on a Repository bean. The Repository ...
2
votes
1answer
99 views
Is it possible to add a property to a type, via a DynamicProxy?
I'm using Castle DynamicProxy to create a proxy of a given type at runtime - including a couple mixins.
I'm trying to figure out if it's possible to also add arbitrary properties to the proxy, e.g.:
...
2
votes
2answers
805 views
EF 4.0 Dynamic Proxies POCO Object Does not match target type
I am using EF 4.0 and POCO's. I stumbled across this error while inserting to records into the data base.
Property accessor 'QualityReasonID' on object 'BI.Entities.QualityReason' threw the ...
1
vote
3answers
98 views
In spring batch framework, what is the difference between 'lazy-init=true' and 'scope=step'?
When I defined a 'MethodInvokingFactory' bean with 'scope=step', I got an error that the type of the bean can't be determined. It worked fine when I replaced 'scope=step' with 'lazy-init=true'. As per ...
1
vote
1answer
65 views
EF4.1, POCOS, Dynamic Proxies and collections
Is there any particular reason why adding an item to an EF4.1 collection, saving it to the database and then selecting that collection out again would produce weird results?
When I do the initial ...
1
vote
1answer
44 views
Looking for an one file AOP proxy generator
I'm working on an automatic pageable collection for WPF. I'm using internally the excellent library LinFu.DynamicProxy. I would like to minimize the dependencies, and I did not find any "one file" ...
1
vote
0answers
227 views
Set ProxySelector and Authenticator back to their default
I was tasked to write a custom ProxySelector implementation for our current OSGi project. In order to use authentication for proxies I also had to write a custom Authenticator.
Setting these custom ...
1
vote
2answers
199 views
Mixing in side-table data with NHibernate interceptors and DynamicProxy
I'm working on a problem in which I have a number of entities, each of which has a corresponding one-to-many translations table, which specify the localized versions of entity's fields. (all of this ...
1
vote
2answers
118 views
Apply Dynamic Proxy to all the classes in an application
I want to apply the Dynamic Proxy I created to all the classes that are part of my application. But, I also want to be able to use dependency injection (Spring) instead of writing something like ...
1
vote
2answers
463 views
Detailed ServiceDescription / Proxy from WSDL
I am using the classes ServiceDescription / ServiceDescriptionImporter to dynamically call web services. I'd like to dig a bit deeper into the WSDL description and get
1) Parameter info for each of ...
1
vote
0answers
347 views
How to use Dynamic Proxies with JSF when the method signature contains Object … args
I'm having some trouble with Spring, JPA and Dynamic Proxy DAO classes which are initialized as Spring Beans. This particular project has been plaguing me on the persistence/transaction side for some ...
1
vote
3answers
398 views
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 created using java.lang.reflect.Proxy.newProxyInstance()
Thank you.
1
vote
1answer
83 views
Is is possible to proxy a COM interface using Spring.Net?
I am trying to create a dynamic proxy using Spring.NET and C# for a COM interface. I am currently experimenting using code, not config files.
I have code similar to the following:
Type ...
1
vote
1answer
297 views
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 the presence of that attribute replace the method bodies with a different implementation. ...
1
vote
1answer
516 views
Intercept Properties With Castle Windsor IInterceptor
Does anyone have a suggestion on a better way to intercept a properties with Castle DynamicProxy? Specifcally, I need the PropertyInfo that I'm intercepting, but it's not directly on the IInvocation, ...
1
vote
1answer
184 views
Dynamic, reflective SignalHandler in Java
How do I install signal handling logic iff sun.misc.Signal is available?
Background
First generation of my code, which assumed signal handling availability, looked something like this:
class MyApp {
...
1
vote
2answers
348 views
Why won't DynamicProxy's interceptor get called for *each* virtual method call?
An example explains it best :
public interface IA {
void foo();
void bar();
}
public class A : IA {
public virtual void foo(){
Console.Write("foo");
bar(); //call ...
1
vote
1answer
193 views
can you use castle dynamic proxies on web services references?
Is it possible to create a dynamic proxy on the a web service reference that has been added to a visual studio project?
I've added the web service reference in the normal way and tried to create a ...