Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

23
votes
3answers
5k views

What are the differences between LinFu.DynamicProxy and Castle.DynamicProxy?

I am looking at adding logic to a library I am working on that would require the need for a Dynamic Proxy. I would like to get some advice from user's who have used these two library's in a ...
7
votes
2answers
1k views

Applying AOP

I've been using some basic AOP style solutions for cross-cutting concerns like security, logging, validation, etc. My solution has envolved around Castle Windsor and DynamicProxy. I've gone down ...
5
votes
1answer
129 views

DynamicProxy Generation Speed

I'm trying to troubleshoot some startup time concerns. After doing some profiling, I've found the main culprit is ClassProxyGenerator.GenerateCode. This takes 400-600ms per type the first time. So if ...
5
votes
2answers
709 views

Castle DynamicProxy : How to Proxy Equals when proxying an interface?

I need to use Castle DynamicProxy to proxy an interface by providing an instance of it to ProxyGenerator.CreateInterfaceProxyWithTarget. I also need to make sure that calls to Equals, GetHashCode and ...
4
votes
2answers
456 views

Getting underlying type of a proxy object

I'm using Castle DynamicProxy and my ViewModels are a proxy, something like this: namespace MyApplication.ViewModels { public class MyViewModel : BaseViewModel, IMyViewModel { } } a proxy ...
4
votes
2answers
651 views

Why does getting the mocked instance created with Moq throw a System.BadImageFormatException?

This question may be related to another question and it certainly results with a System.BadImageFormatException. Maybe it's the same thing but exposed differently? I have the following the code: ...
3
votes
2answers
83 views

ASP.NET MVC3 controller AOP proxy not intercepting all methods, only IController.Execute

I have a project with several layers - among them the web front end (ASP.NET MVC3) and the service back end (mainly business logic). The project is a few months old, so everything is working as ...
3
votes
1answer
217 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
108 views

In Castle.DynamicProxy is it possible to change a mixin value after initialisation?

I noticed that DynamicProxy objects can implement an IChangeProxyTarget interface, which allows you to do something like ((IChangeProxyTarget)myProxyObj).ChangeInvocationTarget(newTarget). Is there a ...
3
votes
5answers
657 views

Make object dynamically implement an interface in code

I want to make this test pass - anyone got an idea how to do that? public class Something { public string Name {get; set} } public interface IWithId { public Guid Id {get; set} } public ...
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
2answers
428 views

Whats the difference between PostSharp and Castle Dynamic Proxy?

Just wondering what the main differences are between these libraries, how they differ in features and functionality. Hoping for more information than I could find with a Google query...
3
votes
4answers
452 views

How to detect if a Type is a generated DynamicProxy without referencing Castle DynamicProxy?

I am using castle DynamicProxy and was wondering if there is a way of detecting if a Type is a proxy without referencing Castle DynamicProxy? So while I am using Castle DynamicProxy as an example I ...
2
votes
0answers
71 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
1answer
238 views

Moq + Castle Dynamic Proxy - exception mocking nested generic interfaces

I'm receiving an argument exception from Castle Dynamic Proxy, while using Moq to create a mock of object that is implementing a nested generic interface with generic method that has an interface ...
2
votes
1answer
89 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
183 views

Ninject: Possible to use injection constructor when type is being proxied for AoP?

I'm doing a project ground up using Ninject 2 and one question bugs me: If you are to intercept methods on your type, you need to wrap it into proxy (castle dynamic proxy to be specific). Unless said ...
2
votes
2answers
354 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
192 views

How can multiple interfaces with multiple classes be merged using DynamicProxy?

Suppose we have an interface ICat that is derived from ICatBase and ICatExtension as shown below. For both distinct interfaces, an implementation is available, CatBase and CatExtension. How can ...
2
votes
3answers
436 views

Castle Windsor InternalsVisibleTo Silverlight

I'm using Castle Windsor for SL v2.5.1.0. I have it proxy internal classes (the interfaces are public of course, but the implementation is internal, so that the consumer is only aware of the ...
2
votes
1answer
141 views

Add attributes to class & properties on the fly

Is there anything in castle that can let me add attributes to a class on the fly? I have a dto in a project that I want to use as a data contract in a wcf service. I'd need to add a [DataContract] ...
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
1answer
445 views

Castle Windsor Interceptor for private/protected method

Is it true that in order for castle windsor's interceptor to intercept a method, that method needs to be declare public?
2
votes
1answer
495 views

Castle Windsor: How to retrieve proxy for specific instance?

I'm using Castle Windsor in my project. Some registered components are intercepted. Because the components are registered through interfaces, Castle Windsor creates interface proxies (Castle Windsor ...
1
vote
2answers
60 views

NuGet: NHibernate, Castle.Core 3.0 and where is ProxyFactoryFactory?

I installed with NuGet the packages NHibernate and Castle.Core 3.0 for a new project. Usually we copied around the dlls manually, it is the first time I do that with NuGet. Now I can't find out how ...
1
vote
1answer
43 views

Ninject Interception dynamic proxy problems

I'm trying to set up interception to work with Ninject which we have been using as our dependency injection framework for a while. I have downloaded the interception extension from NuGet and tried it ...
1
vote
1answer
42 views

Tool to create mock from a real execution

I'm working on this ,let's call it legacy, code that makes calls to another component using an interface (IFjuk). I realize that mocking is generally intended for unit testing, but I thought it might ...
1
vote
1answer
32 views

Can Mixins interact with the class using it in DynamicProxy?

Is using Interceptors the only way for a mixin to interact with the calling class other mixins? I'm looking to do something like below. PsuedoCode class speak void Greet() { ...
1
vote
0answers
30 views

Why no IChangeProxyTarget on IInvocation instances generated by ProxyGenerator.CreateClassProxyTypeWithTarget via InheritanceInvocationTypeGenerator?

Is it by design to prevent changing the proxy target for concrete types? If so, why? Background: I have a concrete class that I want to proxy. Further, I want to replace the target of the proxy at ...
1
vote
1answer
47 views

method selector on one of many interceptors for a service registered in Castle.Windsor

Using Castle.Windsor, how would I go about adding a IProxyGenerationHook or selector for one of several interceptors defined for a specific service. For example consider the following component ...
1
vote
1answer
130 views

Expanding selenium2 functionality PageFactory

I want to add a functionality to selenium2 PageFactory. What I want is that FindsByAttribute was compatible with SelectedElement. The problem that I discovered that if I'm adding property with ...
1
vote
1answer
194 views

Using Castle Dynamic Proxy - Possible to control and/or remove interceptors

I made a simple test of the Castle Dynamic Proxy library: public class Printer { public virtual void Write(string msg) { Console.Write(msg); } } public class CastleDynamicProxy ...
1
vote
2answers
196 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
109 views

Add an extra interface using Castle Dynamic Proxy 2?

I would like to create a dynamic proxy to an existing type, but add an implementation of a new interface, that isn't already declared on the target type. I can't figure out how to achieve this. Any ...
1
vote
2answers
233 views

Castle Windsor proxies, implicit interfaces and WPF Binding

I am attempting to implement a WPF ViewModel using Castle Windsor Dynamic Proxies. The idea is that I want to supply an interface (IPerson below should suffice as an example), a concrete backing ...
1
vote
0answers
121 views

automapper proxy base type

how can I set BaseTypeForInterfaceProxy on Automapper.
1
vote
1answer
258 views

AOP Separating Cross-cutting Concerns

I'm trying to start taking advantage of Aspect-Oriented programming for repetitive tasks. I'm not sure how to go about separating concerns. I'm using C# and for AOP I'm using Castle.DynamicProxy ...
1
vote
0answers
254 views

Trying to make a Logging Interceptor for StructureMap using DynamicProxy

I'm trying to log calls from the UI (DNN module) to some of various services it uses, in a effort to profile how people are interacting with the site. I'm using StructureMap 2.5.3.0 and Log4Net I got ...
1
vote
4answers
388 views

What's the simplest way to intercept a method call for added functionality?

Suppose i have a repository that returns a list of Posts. The repository interface has a GetAll() method which does what it suggests. Now in keeping with the theory that i shouldn't be putting domain ...
1
vote
0answers
362 views

Improving performance of Castle's DynamicProxy?

I'm currently trying to implement an AOP system to add automatic audits to decorated attributes of objects (done by an extended version of INotifyPropertyChanged). The automatic audit contains the ...
1
vote
1answer
337 views

Need to intercept all LINQ-to-SQL entities with Castle Dynamic Proxy, perhaps with AutoMapper

I have a need to encrypt the value of a specific set of fields when stored in the DB. I am using LINQ-to-SQL. My approach: To transparently encrypt the value of the matching properties in the entity ...
1
vote
1answer
336 views

Castle Windsor DynamicProxy Interception IInvocation Documentation

On a Castle Castle.DynamicProxy.IInvocation, what's the difference between GetConcreteMethod GetConcreteMethodInvocationTarget Method I read the documentation, but I don't understand the ...
1
vote
1answer
724 views

Cannot Serialize a List<> of DynamicProxy2-generated objects with DataContractJsonSerializer

I'm running into an issue using System.Runtime.Serialization.Json.DataContractJsonSerializer to serialize a List<T> of proxied objects. It works fine with a single proxied object, but the List ...
1
vote
1answer
286 views

Managed Extensibility Framework, Interception and Dynamic Proxy

easy task, but couldn't find any direction. i want to intercept object creation of MEF and return proxy (using castle dynamic proxy) of my object either then the object itself. is it possible to do ...
1
vote
1answer
279 views

How to “really” down-cast a DynamicProxy back to its original type (to send over WCF)

OK, the situation is we have a class, PatientDto, and a DynamicProxy generated by Castle, PatientDtoProxy. We're using this proxy in the Silverlight client, then want to send it back to the server ...
1
vote
1answer
172 views

Datacontact for Castle.Proxies.EntityProxy failed

How to send Castle.Proxies.EntityProxy via WCF Channel? How to set the proxy as KnownType?
1
vote
1answer
371 views

How can I create a DynamicProxy for a WCF proxy that is generated by ChannelFactory<T>?

I am using ChannelFactory to create a proxy at run-time for a WCF service. I would like to use the DynamicProxy Castle project to create a dynamic proxy on top of the WCF proxy so that I can intercept ...
1
vote
1answer
115 views

Overridding GetHashCode and Equals in Castle Dynamic Proxy 2.1 IModelInterceptorsSelector

I've read that in order to get caching and push performance when using an Interceptor Selector when using Castle Dynamic Proxy that I need to override GetType(), GetHashCode() and Equals() Where can ...
1
vote
1answer
184 views

Register multiple interceptors in castle windsor fluent

How do I register multiple interceptors using the fluent API?
1
vote
1answer
183 views

Can I specify to Castle Windsor which virtual methods to override in a class proxy?

I have many virtual methods in a class, but only one should be intercepted, Can I tell Castle Windsor to override only that method so I dont have to do validation in the Intercept method? Edit: I ...

1 2 3