Tagged Questions

0
votes
2answers
170 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 foll …
3
votes
3answers
282 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 libr …
1
vote
1answer
23 views

can you use castle dynamic proxies on web services references?

Hi, 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 …
0
votes
0answers
16 views

Problems with Castle DynamicProxy2 on .Net 3.5 SP1 on Win2003 Server

I've an mvc + nh asp.net application. On my dev machine (win 7 Ent) all works fine, if deployed on a Win 2k3 (tried 2 different vm and one phisical machine) I got the following err …
1
vote
1answer
21 views

Castle Windsor Interceptor for private/protected method

Hi all, Is it true that in order for castle windsor's interceptor to intercept a method, that method needs to be declare public?
2
votes
2answers
157 views

Using dynamic proxy on NHibernate objects

Hi, 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 …
0
votes
1answer
58 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 qu …
0
votes
1answer
79 views

NHibernate Proxy Validator changes in 2.1

Can someone please help me understand the following: In the previous version of NHibernate (2.0.1) the following property will validate and is compatible with the Castle Proxies: …
0
votes
2answers
228 views

Generic IPropertyChangedNotifier using Dynamic Proxy and wcf serialization problem

I have implemented a generic IPropertyChangedNotifier using castle dynamic proxy. Here I intercept setter call in Proxy objects so that i don't have to raise PropertyChanged event …
0
votes
0answers
25 views

castle dynamic proxy creation

I am implementing a design where my layer would sit between client and server, and whatever objects i get from server, i would wrap it in a transparent proxy and give to the client …
0
votes
1answer
30 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 …
1
vote
1answer
109 views

Castle Windsor: How to retrieve proxy for specific instance?

Hi! I'm using Castle Windsor in my project. Some registered components are intercepted. Because the components are registered through interfaces, Castle Windsor creates interface …
0
votes
2answers
54 views

Castle.DynamicProxy2 generate proxy of delegate type

Is there a way to create a proxy of a delegate type and have it implement additional interfaces in DynamicProxy2 and also being able to intercept calls to the generated delegate? …
0
votes
4answers
135 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 DynamicPro …
1
vote
1answer
64 views

Castle.DynamicProxy2 and Adding a Property at Run Time

I am using Castle.DynamicProxy2 and I am instantiating my proxy as such: private static T GenerateProxy() { ArrayList addtlInterfaces = new ArrayList(); addtlInterface …

1 2 next
15 30 50 per page