active questions tagged castle-dynamicproxy - Stack Overflow most recent 30 from stackoverflow.com 2010-03-12T01:50:31Z http://stackoverflow.com/feeds/tag/castle-dynamicproxy http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/2326009/caste-dynamic-proxy-in-windsor-container 0 Caste Dynamic Proxy in Windsor Container Iffy http://stackoverflow.com/users/202471 2010-02-24T12:42:17Z 2010-02-25T15:13:47Z <p>Hi, I've got a bit of a problem. I'm working in the Caste Windsor IOC Container. Now what i wanted to do is just mess about with some AOP principles and what i specifically want to do is based on a method name perform some logging. I have been looking at Interceptors and at the moment i am using the IInterceptor interface implemented as a class to perform this logging using aspects. The issue is if i want to perform the logging on a specific method then it gets messy as i need to put in some logic into my implemented aspect to check the method name etc...</p> <p>I have read that you can do all of this using Dynamic Proxies and the IInterceptorSelector interface and the IProxyGenerationHook interface. I have seen a few examples of this done on the net but i am quite confused how this all fits into the Windsor container. I mean i am using the windsor container which in my code is actually a ref to the IWindsorContainer interface to create all my objects. All my configuration is done in code rather than XML. </p> <p>Firstly does anyone know of a way to perform method specific AOP in the windsor container besides the way i am currently doing it.</p> <p>Secondly how do i use the Dynamic Proxy in the windsor container ?</p> <p>Below i have added the code where i am creating my proxy and registering my class with the interceptors</p> <pre><code> ProxyGenerator _generator = new ProxyGenerator(new PersistentProxyBuilder()); IInterceptorSelector _selector = new CheckLoggingSelector(); var loggingAspect = new LoggingAspect(); var options = new ProxyGenerationOptions(new LoggingProxyGenerationHook()) { Selector = _selector }; var proxy = _generator.CreateClassProxy(typeof(TestClass), options, loggingAspect); TestClass testProxy = proxy as TestClass; windsorContainer.Register( Component.For&lt;LoggingAspect&gt;(), Component.For&lt;CheckLoggingAspect&gt;(), Component.For&lt;ExceptionCatchAspect&gt;(), Component.For&lt;ITestClass&gt;() .ImplementedBy&lt;TestClass&gt;() .Named("ATestClass") .Parameters(Parameter.ForKey("Name").Eq("Testing")) .Proxy.MixIns(testProxy)); </code></pre> <p>The Test Class is below:</p> <pre><code>public class TestClass : ITestClass { public TestClass() { } public string Name { get; set; } public void Checkin() { Name = "Checked In"; } } </code></pre> <p>as for the interceptors they are very simple and just enter a method if the name starts with Check.</p> <p>Now when i resolve my TestClass from the container i get an error.</p> <p>{"This is a DynamicProxy2 error: Mixin type TestClassProxy implements IProxyTargetAccessor which is a DynamicProxy infrastructure interface and you should never implement it yourself. Are you trying to mix in an existing proxy?"}</p> <p>I know i'm using the proxy in the wrong way but as i haven't seen any concrete example in how to use a proxy with the windsor container it's kind of confusing.</p> <p>I mean if i want to use the LoggingProxyGenerationHook which just tell the interceptors to first for methods that start with the word "check" then is this the correct way to do it or am i completely on the wrong path. I just went down the proxy way as it seems very powerfull and i would like to understand how to use these proxies for future programming efforts.</p> <p>Thanks a lot.</p> http://stackoverflow.com/questions/2289361/why-am-i-getting-invalid-internal-state-reflection-exception-with-castle-dynami 0 Why am I getting "Invalid Internal state" reflection exception with Castle DynamicProxy? charoco http://stackoverflow.com/users/228133 2010-02-18T14:40:15Z 2010-02-18T20:00:12Z <p>We added DynamicProxy to our ASP.NET web app a couple of weeks ago. The code ran fine in dev and QA, but when we pushed to production, we got the following exception (top of stack trace only):</p> <pre><code>[ArgumentNullException: Invalid internal state.] </code></pre> <p>System.Reflection.Emit.TypeBuilder._InternalSetMethodIL(Int32 methodHandle, Boolean isInitLocals, Byte[] body, Byte[] LocalSig, Int32 sigLength, Int32 maxStackSize, Int32 numExceptions, __ExceptionInstance[] exceptions, Int32[] tokenFixups, Int32[] rvaFixups, Module module) +0 System.Reflection.Emit.TypeBuilder.InternalSetMethodIL(Int32 methodHandle, Boolean isInitLocals, Byte[] body, Byte[] LocalSig, Int32 sigLength, Int32 maxStackSize, Int32 numExceptions, __ExceptionInstance[] exceptions, Int32[] tokenFixups, Int32[] rvaFixups, Module module) +56 System.Reflection.Emit.TypeBuilder.CreateTypeNoLock() +1033 System.Reflection.Emit.TypeBuilder.CreateType() +99 Castle.DynamicProxy.Generators.Emitters.AbstractTypeEmitter.CreateType(TypeBuilder type) +72 Castle.DynamicProxy.Generators.Emitters.AbstractTypeEmitter.BuildType() +96 Castle.DynamicProxy.Generators.ClassProxyGenerator.GenerateType(String name, Type[] interfaces, INamingScope namingScope) +854 Castle.DynamicProxy.Generators.ClassProxyGenerator.GenerateCode(Type[] interfaces, ProxyGenerationOptions options) +834 Castle.DynamicProxy.DefaultProxyBuilder.CreateClassProxyType(Type classToProxy, Type[] additionalInterfacesToProxy, ProxyGenerationOptions options) +133 Castle.DynamicProxy.ProxyGenerator.CreateClassProxyType(Type classToProxy, Type[] additionalInterfacesToProxy, ProxyGenerationOptions options) +52 Castle.DynamicProxy.ProxyGenerator.CreateClassProxy(Type classToProxy, Type[] additionalInterfacesToProxy, ProxyGenerationOptions options, Object[] constructorArguments, IInterceptor[] interceptors) +308 Castle.DynamicProxy.ProxyGenerator.CreateClassProxy(Type classToProxy, Type[] additionalInterfacesToProxy, ProxyGenerationOptions options, IInterceptor[] interceptors) +48 Castle.DynamicProxy.ProxyGenerator.CreateClassProxy(Type classToProxy, ProxyGenerationOptions options, IInterceptor[] interceptors) +44</p> <p>It worked fine when we first pushed the code, and an IIS reset fixed it, so I'm assuming it's thread related, but I couldn't find anything on the interwebs regarding best practices for thread-safety proxy generation. Suggestions?</p> <p>UPDATE: After reading some more on the issue, especially <a href="http://kozmic.pl/archive/2009/10/30/castle-dynamic-proxy-tutorial-part-xv-patterns-and-antipatterns.aspx" rel="nofollow">here</a>, I realized one potential issue -- namely that I had not overwritten Equals/GetHashCode for the implementation of IProxyGenerationHook I had written, which would prevent DynamicProxy from caching it's types. As I can find next to nothing on the exception I saw in general let alone related to DP, I'm gonna assume that it was the lack of caching of types caused by my omission that was the root cause of the problem, though I'd love a confirmation.</p> <p>For the record, my object creation is pretty vanilla:</p> <pre><code>private T CreateProxy(MyArgs args) { var options = new ProxyGenerationOptions(new MyMethodSelector()); options.AddMixinInstance(new MyMixin()); return Generator.CreateClassProxy( TargetType, options, new[] { new MyInterceptor(args) }) as T; } </code></pre> http://stackoverflow.com/questions/2186180/castle-dynamicproxy-v1-exception-when-proxy-ing-methods-with-parameters 0 Castle DynamicProxy v1 exception when proxy-ing methods with parameters? Cristi Diaconescu http://stackoverflow.com/users/11545 2010-02-02T17:26:42Z 2010-02-02T18:43:34Z <p>I'm having problems proxying metods with parameters using Castle DynamicProxy v1.1.5.0. - I get the exception "Index was outside the bounds of the array." </p> <p>If I only use methods with no parameters, OR DynamicProxy v2, everything works ok.<br> Unfortunately, I'm having trouble convincing the leads on my project to add a dependency to v2 (we're already using v1 as it comes with NHibernate).</p> <p>So my question boils down to: can this be done in v1? Am I using it wrong?</p> <p>Here's the nitty-gritty.</p> <p>I've implemented a mechanism that simulates inheritance without having compile-time dependencies to the base class. Pleeease don't ask why, the reasons are ugly :(</p> <p>Here is a complete example showing how this breaks. I'm referencing Castle.DynamicProxy.dll (v1). If I change the references to Castle.DynamicProxy[b]2[/b].dll (+ Castle.Core.dll), un-comment the #define at the beginning of the code.</p> <p>Sorry for the long-ish code, but I was afraid I might let out some vital detail...<br> Also: DISCLAIMER: The code sample has some NASTY bugs! (Probably more than I found, too :)</p> <pre><code>//#define DynamicProxyV2 using System; using System.Collections.Generic; using System.Diagnostics; using System.Reflection; #if DynamicProxyV2 using Castle.Core.Interceptor; #endif using Castle.DynamicProxy; namespace ProxyTest { public interface IMyInterface { void Foo(object a); void Bar(object a); void Baz(object a); } public interface IParam { string Value { get;} } public class DefaultImplementation : IMyInterface{ public virtual void Foo(object a) { Console.WriteLine("Default Foo"); Bar(null); } public virtual void Bar(object a){ Baz(null); } public virtual void Baz(object a){ Console.WriteLine("Default Baz"); } } class DerivedImpl : ProxyDerivedImplementation { public DerivedImpl(IMyInterface i_baseImpl) : base(i_baseImpl) { } public override void Foo(object a) { Console.WriteLine("Derived - Foo!"); base.Bar(null); } public override void Baz(object a) { Console.WriteLine("Derived - Baz!"); } } public class DoStuff { [STAThread] public static void Main() { Type t = typeof(DefaultImplementation); IMyInterface defaultImpl = (IMyInterface)Activator.CreateInstance(t); DerivedImpl derived = new DerivedImpl(defaultImpl); derived.Foo(null); } } public class ProxyDerivedImplementation : IMyInterface, IInterceptor { private IMyInterface m_proxy; public ProxyDerivedImplementation(IMyInterface i_defaultImplementation) { ProxyGenerator pg = new ProxyGenerator(); Type tt = i_defaultImplementation.GetType(); m_proxy = (IMyInterface)pg.CreateClassProxy(tt, this); } #if DynamicProxyV2 #region DynProxy v2 public void Intercept(IInvocation invocation) { try { MethodInfo i_method = invocation.Method; List&lt;Type&gt; types = new List&lt;Type&gt;(); foreach (ParameterInfo info in i_method.GetParameters()) { types.Add(info.ParameterType); } MethodInfo method = this.GetType().GetMethod(i_method.Name, types.ToArray()); object[] attrs = method.GetCustomAttributes(typeof(NotOverridenAttribute), false); if (attrs.Length &gt; 0) { invocation.Proceed(); } else { invocation.ReturnValue = method.Invoke(this, invocation.Arguments); } } catch (Exception ex) { Debug.Fail(ex.Message); //return null; } } #endregion #else #region DynProxy v1 public object Intercept(IInvocation i_invocation, params object[] args) { try { MethodInfo proxiedMethod = i_invocation.Method; List&lt;Type&gt; types = new List&lt;Type&gt;(); foreach (ParameterInfo info in proxiedMethod.GetParameters()) { types.Add(info.ParameterType); } //find the corresponding method in the inheritance tree having this class as root MethodInfo localMethod = this.GetType().GetMethod(proxiedMethod.Name, types.ToArray()); object[] attrs = localMethod.GetCustomAttributes(typeof(NotOverridenAttribute), false); if (attrs.Length &gt; 0) { //it's one of the methods in THIS class, i.e. it's not overridden //-&gt; we can't call the method in this class, because it will re-trigger this intercept // and we'd get an infinite loop // =&gt; just dispatch the method to the original proxied type // return i_invocation.Proceed(); } //else we have an override for this method - call it. return localMethod.Invoke(this, args); } catch (Exception ex) { Debug.Fail(ex.Message); return null; } } #endregion #endif [NotOverriden] public virtual void Foo(object a) { m_proxy.Foo(a); } [NotOverriden] public virtual void Bar(object a) { m_proxy.Bar(a); } [NotOverriden] public virtual void Baz(object a) { m_proxy.Baz(a); } } class NotOverridenAttribute : Attribute { } } </code></pre> <p>Whew! That's a mouthful. Here's the exception that occurs when using v1:</p> <pre><code>{"Index was outside the bounds of the array."} [System.IndexOutOfRangeException]: {"Index was outside the bounds of the array."} Data: {System.Collections.ListDictionaryInternal} HelpLink: null InnerException: null Message: "Index was outside the bounds of the array." Source: "DynamicAssemblyProxyGen" StackTrace: " at CProxyTypeDefaultImplementationProxyTest0.__delegate_2.Call(Object[] )\r\n at Castle.DynamicProxy.Invocation.AbstractInvocation.Proceed(Object[] args)\r\n at ProxyTest.ProxyDerivedImplementation.Intercept(IInvocation i_invocation, Object[] args) in D:\\My Documents\\Visual Studio 2005\\Projects\\DefaultImpl\\AddedValue\\AddedValue.cs:line 133" TargetSite: {System.Object Call(System.Object[])} </code></pre> <p>When running with v2, all I get is the correct output:</p> <blockquote> <p>Derived - Foo! Derived - Baz!</p> </blockquote> <p>...Help?</p> http://stackoverflow.com/questions/2117345/create-an-interfaceproxywithouttarget-with-a-default-constructor 1 Create an InterfaceProxyWithoutTarget with a default constructor fredlegrain http://stackoverflow.com/users/249722 2010-01-22T13:08:02Z 2010-01-22T16:32:32Z <p>Hi all,</p> <p>Using Castle.DynamicProxy, I "simply" would like to get an Interface-Proxy-Without-Target, but... With a default-constructor so I be able to reuse the proxy-type.</p> <p><strong>UPDATE</strong></p> <p>I mean doing something like...</p> <pre><code>var proxy = generator.CreateInterfaceProxyWithoutTarget(typeof(TInterface) ...); var proxyType = proxy.GetType(); var newproxy = Activator.CreateInstance(proxyType); </code></pre> <p>...Except that generated type do not implement default-constructor.</p> <p>My actual context is related to WCF customization, but that's another story.</p> http://stackoverflow.com/questions/2109873/intercept-only-interface-methods-with-dynamicproxy 0 Intercept only interface methods with DynamicProxy Rafael Mueller http://stackoverflow.com/users/50227 2010-01-21T14:24:30Z 2010-01-21T17:33:37Z <p>I got an interface like this</p> <pre><code>public interface IService { void InterceptedMethod(); } </code></pre> <p>A class that implements that interface and also has another method</p> <pre><code>public class Service : IService { public virtual void InterceptedMethod() { Console.WriteLine("InterceptedMethod"); } public virtual void SomeMethod() { Console.WriteLine("SomeMethod"); } } </code></pre> <p>And an Interceptor</p> <pre><code>public class MyInterceptor : IInterceptor { public void Intercept(IInvocation invocation) { Console.WriteLine("Intercepting"); invocation.Proceed(); } } </code></pre> <p>I want to intercept only the methods on Service that exists on IService (i.e I want to intercept InterceptedMethod() but not SomeMethod()), but I don't want to use ShouldInterceptMethod from IProxyGenerationHook.</p> <p>I can do like this, but since its return an Interface, I can't call SomeMethod on this object</p> <pre><code>var generator = new ProxyGenerator(); var proxy = generator.CreateInterfaceProxyWithTargetInterface&lt;IService&gt;(new Service(), new MyInterceptor()); proxy.InterceptedMethod(); // works proxy.SomeMethod(); // Compile error, proxy is an IService </code></pre> <p>One thing that can work is removing the <em>virtual</em> from SomeMethod() and do like this</p> <pre><code>var proxy = generator.CreateClassProxy&lt;Service&gt;(new MyInterceptor()); </code></pre> <p>But I don't like this solution.</p> <p>I dont like using ShouldInterceptMethod from IProxyGenerationHook, because everytime that I change the interface I also need to change ShouldInterceptMethod, also someone someday can refactor the method name and the method is not intercepted anymore.</p> <p>There's any other way to do this?</p> http://stackoverflow.com/questions/2090340/invoking-2-targets-with-castle-dynamicproxy 0 invoking 2 targets with Castle.DynamicProxy Paperino http://stackoverflow.com/users/185173 2010-01-19T00:55:32Z 2010-01-20T00:39:46Z <p>Say I have an interface IInterface. Say I have 2 implementations of the same IInterface (foo &amp; bar). Is it possible to invoke the same method on both targets?</p> http://stackoverflow.com/questions/2058045/windsor-method-interception-aop 0 Windsor Method interception (AOP) Allan http://stackoverflow.com/users/249955 2010-01-13T15:55:53Z 2010-01-13T17:09:47Z <p>Hi there guys,</p> <p>I'm trying to create interceptors for specific methods but I'm having a hard time. I can't bind an aspect to a specific method. I create the faicilities most of examples show but it still doesn't work. Can anyone give me an example of how to do this? I prefer xml conifguration, if possible.</p> <p>Another question, I have this code: </p> <pre><code>&lt;component id="SampleAspect" service="WindsorSample.Aspect.SampleAspect, WindsorSample" type="WindsorSample.Aspect.SampleAspect, WindsorSample"&gt; &lt;/component&gt; &lt;component id="HtmlTitleRetriever" type="WindsorSample.DummyObject, WindsorSample"&gt; &lt;parameters&gt; &lt;interceptors&gt; &lt;interceptor&gt;${SampleAspect}&lt;/interceptor&gt; &lt;/interceptors&gt; &lt;/parameters&gt; &lt;/component&gt; </code></pre> <p>Then...</p> <pre><code>IWindsorContainer container = new WindsorContainer(new XmlInterpreter()); IDummyObject retriever = container.Resolve&lt;DummyObject&gt;(); retriever.SomeMethod(); </code></pre> <p>This aspect is not executed. Am I missing something? Am I using the wrong approach for aop?</p> <p>Thanks</p> http://stackoverflow.com/questions/2025205/dynamicproxy2-and-proxy-chaining 1 DynamicProxy2 and Proxy Chaining Adam Driscoll http://stackoverflow.com/users/13688 2010-01-08T03:01:57Z 2010-01-08T19:03:58Z <p>I have the need to proxy the property types of a proxy. So the case would be:</p> <p>I have interface IMyInterface:</p> <pre><code>public interface IMyInterface { public String Name {get; set;} public Int Id {get;set;} } </code></pre> <p>I can mock the interface just fine but I want to be able to mock, for instance, the Name property. I realize that String cannot be mocked because it is sealed. The functionality that I would like to see would be:</p> <pre><code>IMyInterfaceMock.Name.Equals() </code></pre> <p>should be handled by an Interceptor. I can't envision that this is even possible with the existing framework because I would be changing the type of the property but I was wondering if there was a clever way to achieve this. Is there any way I could interject into the proxy generation and modify the proxy's property's return type? </p> <p>I don't think it's possible with DynamicProxy2 as it stands but I was wondering if anyone knew some magic. </p> http://stackoverflow.com/questions/1929643/wrapping-existing-objects-to-intercept-method-property-calls-in-net 1 Wrapping existing objects to intercept method/property calls in .NET Tobias Hertkorn http://stackoverflow.com/users/33827 2009-12-18T17:34:47Z 2009-12-18T20:08:14Z <p>I have a situation where I would like to intercept calls to properties in .NET. I have been looking at DynamicProxy in Castle and it seems to work fine. But it seems in order to use it I have to start with a new object, meaning I can't do something like this:</p> <pre><code>MyType myType = new MyType(); myType.Property = "Test"; ... MyType wrappedMyType = proxyBuilder.Wrap(myType, new MyInterceptor()); wrappedMyType.Property = "Test2"; </code></pre> <p>Am I just missing something?</p> <p>EDIT:</p> <p>Oh god, it should of course be wrappedMyType. Big mistake. Sorry. :(</p> http://stackoverflow.com/questions/1924914/should-castle-dynamicproxy-iinterceptor-or-proxygenerator-be-cached 0 Should Castle DynamicProxy IInterceptor or ProxyGenerator be cached? Chris Marisic http://stackoverflow.com/users/37055 2009-12-17T22:04:40Z 2009-12-17T23:27:03Z <p>I'm using StructureMap to Enrich some of my objects with an instance call to</p> <p><code>ProxyGenerator.CreateInterfaceProxyWithTarget(myObject, MYInterceptor)</code></p> <p>Currently I have the <code>MYInterceptor</code> inside my container, should I implement any type of caching for the interceptor?</p> <p>The second question should I register my <code>ProxyGenerator</code> inside my container and if so, should I apply any type of caching to it?</p> http://stackoverflow.com/questions/1688666/problems-with-castle-dynamicproxy2-on-net-3-5-sp1-on-win2003-server 0 Problems with Castle DynamicProxy2 on .Net 3.5 SP1 on Win2003 Server Andrea Balducci http://stackoverflow.com/users/54215 2009-11-06T16:22:58Z 2009-12-09T00:04:48Z <p>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 error..</p> <p>anyone can help? Cannot explain this issue (tried the same build, so i think it'a machine configuration issue)..</p> <p>Derived method 'set_ID' in type 'CustomerProxy75950979a2a048e889584c21696f7f1b' from assembly 'DynamicProxyGenAssembly2, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null' cannot reduce access</p> <p>[TypeLoadException: Derived method 'set_ID' in type 'CustomerProxy75950979a2a048e889584c21696f7f1b' from assembly 'DynamicProxyGenAssembly2, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null' cannot reduce access.] System.Reflection.Emit.TypeBuilder._TermCreateClass(Int32 handle, Module module) +0 System.Reflection.Emit.TypeBuilder.CreateTypeNoLock() +915 System.Reflection.Emit.TypeBuilder.CreateType() +108 Castle.DynamicProxy.Generators.Emitters.AbstractTypeEmitter.BuildType() +48 Castle.DynamicProxy.Generators.ClassProxyGenerator.GenerateCode(Type[] interfaces, ProxyGenerationOptions options) +3821 Castle.DynamicProxy.DefaultProxyBuilder.CreateClassProxy(Type classToProxy, Type[] additionalInterfacesToProxy, ProxyGenerationOptions options) +84 Castle.DynamicProxy.ProxyGenerator.CreateClassProxy(Type classToProxy, Type[] additionalInterfacesToProxy, ProxyGenerationOptions options, Object[] constructorArguments, IInterceptor[] interceptors) +92 Castle.DynamicProxy.ProxyGenerator.CreateClassProxy(Type classToProxy, Type[] additionalInterfacesToProxy, IInterceptor[] interceptors) +21 NHibernate.ByteCode.Castle.ProxyFactory.GetProxy(Object id, ISessionImplementor session) +283</p> http://stackoverflow.com/questions/1829776/help-building-castle-dynamic-proxy 1 help building castle dynamic proxy mrblah http://stackoverflow.com/users/68183 2009-12-01T23:50:33Z 2009-12-04T15:49:38Z <p>So I pulled the source from <a href="https://svn.castleproject.org/svn/castle/DynamicProxy/trunk/" rel="nofollow">https://svn.castleproject.org/svn/castle/DynamicProxy/trunk/</a></p> <p>Open it up in vs.net 2008</p> <p>problems:</p> <ol> <li>vs.net can't open the assembly.cs</li> <li>assembly signing failed</li> </ol> <p>What am I doing, rather NOT doing?</p> <p><b>Update</b></p> <p>So I downloaded nant, setup the .bat file in my PATH so it works in cmd prompt.</p> <p>I ran:</p> <p>nant default.build</p> <p>Getting this error:</p> <p>build failed, \buildscripts\common-project.xml (48,3) invalid element . Unknown task or datatype.</p> <p>How exactly do I build the dynamicProxy project now?</p> <p><b>update</b> This is what I did, see screenshot:</p> <p>oh and my nant is:</p> <p>@echo off "E:\dev\tools\nant-bin\nant-0.86-nightly-2009-05-05\bin\Nant.exe" %*</p> <p><img src="http://img697.imageshack.us/img697/5623/castlebuildscreenshot.png" alt="http://img697.imageshack.us/img697/5623/castlebuildscreenshot.png"></p> http://stackoverflow.com/questions/1557761/whats-the-difference-between-postsharp-and-castle-dynamic-proxy 0 Whats the difference between PostSharp and Castle Dynamic Proxy? jfar http://stackoverflow.com/users/25300 2009-10-13T01:03:28Z 2009-12-03T13:22:34Z <p>Just wondering what the main differences are between these libraries, how they differ in features and functionality.</p> <p>Hoping for more information than I could find with a Google query...</p> http://stackoverflow.com/questions/1433531/castle-dynamic-proxy-creation 0 castle dynamic proxy creation ashish.s http://stackoverflow.com/users/64668 2009-09-16T14:56:05Z 2009-12-03T13:20:10Z <p>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, that way i can keep a track of what changed in the object, so when saving it back, i would only send changed information.</p> <p>I looked at castle dynamic proxy, linfu, although they can generate a proxy type, but they cant take existing objects and wrap them instead.</p> <p>Wondering if its possible to do with these frameworks, or if there any other frameworks that enable this...</p> http://stackoverflow.com/questions/873913/why-does-getting-the-mocked-instance-created-with-moq-throw-a-system-badimageform 0 Why does getting the mocked instance created with Moq throw a System.BadImageFormatException? Jonathon Watney http://stackoverflow.com/users/59180 2009-05-17T04:38:53Z 2009-11-18T04:30:35Z <p>This question may be related to <a href="http://stackoverflow.com/questions/305345/moq-multi-interface-question">another</a> question and it certainly results with a System.BadImageFormatException. Maybe it's the same thing but exposed differently?</p> <p>I have the following the code:</p> <pre><code>public interface IFoo&lt;T&gt; where T : class, new() { T FooMethod(object o); } public interface IFooRepo { F GetFoo&lt;T, F&gt;() where T : class, new() where F : IFoo&lt;T&gt;; } </code></pre> <p>Then I have a test that mocks IFooRepo using Moq like so:</p> <pre><code>var instance = new Mock&lt;IFooRepo&gt;().Object; </code></pre> <p>The above code runs fine except when debugging the test with Visual Studio 2008. When I step over the above line a System.BadImageFormatException is thrown from System.Reflection.Emit via Castle.DynamicProxy. Could this be similar to <a href="http://groups.google.com/group/RhinoMocks/msg/500daa19f20c9748" rel="nofollow">something</a> Ayende Rahien posted?</p> <p>Now the workaround is to implement a fake for IFooRepo but I'm curious as to why a bad image is generated for this kind of scenario and is there a fix? Is System.Reflection.Emit buggy? Or am I missing something obvious in my own code?</p> <p><strong>EDIT</strong>: Posted the incorrect signature for GetFoo(). Corrected the signature to GetFoo&lt;T, F&gt;(), which correctly reproduces the problem. With the GDR installed this problem persists.</p> <p><strong>EDIT</strong>: It seems that if the constraint on F includes type parameter T BadImageFormatException is raised. But I change it to, say <code>where F : class, new()</code>, then everything works as expected.</p> http://stackoverflow.com/questions/1406762/what-are-the-differences-between-linfu-dynamicproxy-and-castle-dynamicproxy 4 What are the differences between LinFu.DynamicProxy and Castle.DynamicProxy? Dale Ragan http://stackoverflow.com/users/1117 2009-09-10T17:55:12Z 2009-11-17T21:36:36Z <p>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 production environment. Does one out perform the other, were there any shortcoming's which made you have to switch to the other, etc. Basically tell me your experiences with the library's. The answers will help me decide which one to use.</p> <p>-- Edit --</p> <p><hr /></p> <p>I forgot to mention that the library I am developing will support Mono, therefore any knowledge you can share about the two libraries and their support for Mono would be great also.</p> http://stackoverflow.com/questions/1728218/can-you-use-castle-dynamic-proxies-on-web-services-references 1 can you use castle dynamic proxies on web services references? Kieran H http://stackoverflow.com/users/112148 2009-11-13T09:43:48Z 2009-11-16T13:23:03Z <p>Hi, Is it possible to create a dynamic proxy on the a web service reference that has been added to a visual studio project?</p> <p>I've added the web service reference in the normal way and tried to create a dynamic proxy using castle to wrap the method invocation in a try/catch to translate any SoapExceptions, but on running it I'm getting a lot of errors around non serializable classes?</p> <p>has anyone done anything like this?</p> <p>thanks</p> http://stackoverflow.com/questions/1669049/castle-windsor-interceptor-for-private-protected-method 1 Castle Windsor Interceptor for private/protected method Herman http://stackoverflow.com/users/31206 2009-11-03T17:53:58Z 2009-11-04T05:12:56Z <p>Hi all,</p> <p>Is it true that in order for castle windsor's interceptor to intercept a method, that method needs to be declare public?</p> http://stackoverflow.com/questions/1587869/using-dynamic-proxy-on-nhibernate-objects 3 Using dynamic proxy on NHibernate objects ca7l0s http://stackoverflow.com/users/178356 2009-10-19T10:04:30Z 2009-10-20T03:58:56Z <p>Hi,</p> <p>I'm trying to use Castle.DynamicProxy2 to cleanup code within NHibernate persisted classes. Here is a simple version of it.</p> <p>The Pet class:</p> <pre><code>public class Pet { public int Id { get; set; } public string Name { get; set; } public int Age { get; set; } } </code></pre> <p>And its mapping file:</p> <pre><code>&lt;class name="Pet" table="Pet"&gt; &lt;id name="Id" column="Id" unsaved-value="0"&gt; &lt;generator class="native"/&gt; &lt;/id&gt; &lt;property name="Name" column="Name"/&gt; &lt;property name="Age" column="Age"/&gt; &lt;/class&gt; </code></pre> <p>There is a need to audit instances of the Pet class. Normally, the properties Name and Age would not be auto-properties and would contain logic to record value changes. Now, I'm thinking of using proxies to inject auditing logic within property setters. To do that, I created the Auditor IInterceptor:</p> <pre><code>public class Auditor : IInterceptor { public void Intercept(IInvocation invocation) { // Do something to record changes invocation.Proceed(); } } </code></pre> <p>It's simple enough to create an audited instance of the Pet class using Castle.DynamicProxy2.</p> <pre><code>Pet aPet = proxyGenerator.CreateClassProxy&lt;Pet&gt;(new Auditor()); aPet.Name = "Muffles"; // The Auditor instance would record this. aPet.Age = 4; // and this too... </code></pre> <p>Now here comes the problem. Since Pet is persisted, the system would need to work on instances of Pet fetched via NHibernate. What I want to happen is that NHibernate to return instances of Pet proxy automatically like so:</p> <pre><code>// I would imagine an instance of Auditor being created implicitly ICriteria criteria = session.CreateCriteria(typeof(Pet)); criteria.Add(Expression.Expression.Eq("Name", "Muffles")); // return a list of Pet proxies instead // so changes can be recorded. IList&lt;Pet&gt; result = criteria.List&lt;Pet&gt;(); Pet aPet = result[0]; aPet.Age = aPet.Age + 1; // I expect this to succeed since the proxy is still a Pet instance session.Save(aPet); </code></pre> <p>I've though of something like this to get around it:</p> <pre><code>ICriteria criteria = session.CreateCriteria(ProxyHelper.GetProxyType&lt;Pet&gt;()); criteria.Add(Expression.Expression.Eq("Name", "Muffles")); // use List() instead of List&lt;T&gt;() // and IList instead of IList&lt;Pet&gt; IList results = criteria.List(); </code></pre> <p>where <code>ProxyHelper.GetProxyType&lt;Pet&gt;()</code> would return the cached Pet proxy type. The main disadvantage is that this solution would not work on generic lists (e.g. <code>IList&lt;Pet&gt;</code>). The existing system I'm trying to clean up makes use of them extensively.</p> <p>So I'm hoping if anyone has any workaround or any insight on whether or not what I'm doing is advisable.</p> <p>Thanks a million,</p> <p>Carlos</p> http://stackoverflow.com/questions/1485127/nhibernate-proxy-validator-changes-in-2-1 0 NHibernate Proxy Validator changes in 2.1 Brendan Kowitz http://stackoverflow.com/users/25767 2009-09-28T02:17:57Z 2009-09-28T03:57:01Z <p>Can someone please help me understand the following:</p> <p>In the previous version of NHibernate (2.0.1) the following property will validate and is compatible with the Castle Proxies:</p> <pre><code>internal virtual BusinessObject Parent { get { /*code*/ } } </code></pre> <p>However, in 2.1 it errors saying that the types should be 'public/protected virtual' or 'protected internal virtual'. I have issues with this because marking a property with 'protected internal' exposes the property to inherited types in OTHER assemblies (effectively protected OR internal). Given that this was never a requirement before, it feels like a bit of a bad requirement to impose now.</p> <p>Can someone please explain why this requirement is now there and what it is trying to enforce so I can at least understand what it is intending to achieve.</p> <p>If this restriction is not entirely needed, and I am 100% certain these types of properties will NEVER map to DB properties I am intending to create my own Mashup ByteCode provider using the Castle proxy factory and the Type Validator from 2.0.1. However, I'm definitely open to any advice.</p> http://stackoverflow.com/questions/1053328/generic-ipropertychangednotifier-using-dynamic-proxy-and-wcf-serialization-proble 0 Generic IPropertyChangedNotifier using Dynamic Proxy and wcf serialization problem Deepak N http://stackoverflow.com/users/69362 2009-06-27T17:58:25Z 2009-09-22T10:00:02Z <p>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 in setters of my domain objects.</p> <p>The purpose was to use these proxy objects to bind it UI in a silevrlight application. </p> <p>The Problem is serialization of proxy object fails in WCF service call which is due to absence of [DataContract] on proxy object. to get around the problem I had to keep a copy of instance in my interceptor and send this object for serialization.IPropertyChangedNotifier</p> <p>This has resulted in complicated code which is difficult to debug or understand. Is there a simple way to solve the serialization problem in WCF to tell the serializer to use [DataContract] attribute of base class(instance) while sending a proxy in service call.</p> http://stackoverflow.com/questions/1415675/getting-underlying-type-of-a-proxy-object 1 Getting underlying type of a proxy object Hadi Eskandari http://stackoverflow.com/users/54538 2009-09-12T17:34:18Z 2009-09-14T10:44:06Z <p>I'm using Castle DynamicProxy and my ViewModels are a proxy, something like this:</p> <pre> namespace MyApplication.ViewModels { public class MyViewModel : BaseViewModel, IMyViewModel { } } </pre> <p>a proxy of my viewmodel looks like this though:</p> <p>{Name = "IRootViewModelProxyffecb133f590422098ca7c0ac13b8f98" FullName = "IRootViewModelProxyffecb133f590422098ca7c0ac13b8f98"}</p> <p>I want to get the actual type or namespace of the actual type that is being proxied. Is there any way to do this? I want something that returns MyApplication.ViewModels.MyViewModel type. If I'm using concreate class as proxies, BaseType returns the actual class that is being proxied, but when using the interface, BaseType would return System.Object.</p> http://stackoverflow.com/questions/1410351/castle-windsor-how-to-retrieve-proxy-for-specific-instance 1 Castle Windsor: How to retrieve proxy for specific instance? Oliver Hanappi http://stackoverflow.com/users/128709 2009-09-11T11:26:05Z 2009-09-12T06:16:00Z <p>Hi!</p> <p>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 creates a standalone type which implements the interface and delegates to the real implementation by using composition). Unfortunately you cannot execute methods within the real implementation of the interface, because the proxy would be bypassed.</p> <p>Is there a way to get the instance of the proxy which represents the real implementation within the real implementation?</p> <p>Here is an example of what I would like to achieve. I want to intercept always the Get method. Please don't come with alternative ways to refactor this sample because this is not my production code but just something invented for demonstration.</p> <pre><code>public interface IProvider { bool IsEmpty { get; } object Get(); } public class ProxyBypassingProvider : IProvider { public bool IsEmpty { // Calls method directly, not through the proxy. get { return Get() == null; } } public object Get() { return new Object(); } } public class InterceptedProvider : IProvider { private IProvider _this; // Should hold the proxy instance. public bool IsEmpty { // Calls method through proxy. get { return _this.Get() == null; } } public object Get() { return new Object(); } } </code></pre> <p>How can I set the field _this to the instance of the proxy?</p> <p>Best Regards<br /> Oliver Hanappi</p> <p>PS: Here is a real world example.</p> <pre><code>public interface IPresentationModel { IView View { get; } } public interface IView { void SetModel(IPresentationModel model); } public PresentationModel : IPresentationModel { public IView View { get; private set; } public PresentationModel(IView view) { View = view; View.SetModel(this); } } </code></pre> <p>I'm resolving a transient presentation model. It gets a transient view injected. Because the view needs to know about the presentation model, the presentation model calls IView.SetModel(this) to let the view know about its presentation model.<br /> The problem is now, that although the resolved IPresentationModel is a proxy, the SetModel method gets only the real implementation. Therefore, when the view calls methods on the presentation model, no interceptors are being fired.</p> <p>The only solution I have found until now, is to set the view's presentation model manually after I have resolved my presentation model.</p> <pre><code>var model = _container.Resolve&lt;IPresentationModel&gt;(); model.View.SetModel(model); </code></pre> <p>I think, this solution is not really solved very well.</p> http://stackoverflow.com/questions/1394965/castle-dynamicproxy2-generate-proxy-of-delegate-type 0 Castle.DynamicProxy2 generate proxy of delegate type Patrik Hägne http://stackoverflow.com/users/46187 2009-09-08T16:34:56Z 2009-09-09T19:25:11Z <p>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?</p> <p>The way i normaly generate proxies throws an exception because delegate types are sealed.</p> http://stackoverflow.com/questions/1193366/how-to-detect-if-a-type-is-a-generated-dynamicproxy-without-referencing-castle-dy 1 How to detect if a Type is a generated DynamicProxy without referencing Castle DynamicProxy? Simon http://stackoverflow.com/users/53158 2009-07-28T11:01:50Z 2009-08-31T20:49:17Z <p>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?</p> <p>So while I am using Castle DynamicProxy as an example I would like code that would work for any in memory generated type.</p> <pre><code>var generator = new ProxyGenerator(); var classProxy = generator.CreateClassProxy&lt;Hashtable&gt;(); Debug.WriteLine(classProxy.GetType().Is....); var interfaceProxy = generator.CreateInterfaceProxyWithoutTarget&lt;ICollection&gt;(); Debug.WriteLine(interfaceProxy.GetType().Is....); </code></pre> <p>Thanks</p> http://stackoverflow.com/questions/1173122/castle-dynamicproxy2-and-adding-a-property-at-run-time 1 Castle.DynamicProxy2 and Adding a Property at Run Time joshlrogers http://stackoverflow.com/users/127126 2009-07-23T16:59:21Z 2009-08-06T18:16:14Z <p>I am using Castle.DynamicProxy2 and I am instantiating my proxy as such:</p> <pre><code>private static T GenerateProxy() { ArrayList addtlInterfaces = new ArrayList(); addtlInterfaces.Add(typeof (INotifyPropertyChanged)); addtlInterfaces.Add(typeof (EntityStatus)); object entityProxy = ProxyGenerator.CreateClassProxy(typeof(T), addtlInterfaces.ToArray(typeof(Type)) as Type[], ProxyGenerationOptions.Default, new IInterceptor[] { new LazyInterceptor() }); return (T)entityProxy; } </code></pre> <p>My interface of IEntityStatus looks like such:</p> <pre><code>public interface IEntityStatus { bool IsDirty { get; set;} } </code></pre> <p>I need to be able to use that property during run time so that when my DTO has a property changed event the event could set the DTO to dirty. However because it is an interface and has no explicit implementation I am at a loss as to how to do this. Creating a delegate for the get and set method is an option I would like to avoid. So is there another way to achieve what I am looking to achieve?</p> <p>I realize I could set up a collection of all my active DTOs and when the property changed event fires on one of the DTOs I could update that collection to show that this particular DTO is dirty, but I would really like for this information to be a part of the proxied DTO for pure syntactic ease.</p> <p>Look forward to responses!</p> http://stackoverflow.com/questions/1140359/using-generics-when-type-is-not-known-at-compile-time 0 Using generics when type is not known at compile time joshlrogers http://stackoverflow.com/users/127126 2009-07-16T21:17:39Z 2009-07-16T23:18:30Z <p>Platform: C# 2.0 WinForms</p> <p>I have a factory class that provides an instantiation of a particular data mapper depending on the type that I send it, the code is as such:</p> <pre><code>public static IDataMapper&lt;T&gt; GetMapper&lt;T&gt;() where T: IDto { Type mapperType = MapperLocator.GetMapper(typeof(T)); return (IDataMapper&lt;T&gt;)mapperType.Assembly.CreateInstance(mapperType.FullName); } </code></pre> <p>I am using DynamicProxy2 to intercept method calls to my DTO objects. In my intercept method I am trying to call the above factory using the type from Invocation.TargetType. However this comes back with the exception:</p> <p>The type or namespace name 'invocation' could not be found.</p> <p>Obviously this is because any calls to a generic method need to know the type explicitly from what I understand at compile time. Obviously I can't do that in this case and I definitely am not going to do a switch statement across all of my DTO objects.</p> <p>So, can you guys suggest a strategy or point out what I am doing wrong? I am trying to make this as generic as possible so that it could fit across all of my objects and any new ones as well as code portability to other projects.</p> <p>Thanks in advance!</p> http://stackoverflow.com/questions/1054692/retaining-base-class-attributes-in-dynamic-proxies 0 Retaining Base Class Attributes in Dynamic Proxies Deepak N http://stackoverflow.com/users/69362 2009-06-28T10:43:32Z 2009-06-28T12:09:32Z <p>I am using Castle DynamicProxy2. Is it possible to tell proxy object to inherit attributes on its Base Class(proxied class) and attributes on Properities of Base class. If not possible in Castle. Any other library for this purpose??</p> <p>I have posted source of problem here <a href="http://stackoverflow.com/questions/1053328/generic-ipropertychangednotifier-using-dynamic-proxy-and-wcf-serialization-proble">http://stackoverflow.com/questions/1053328/generic-ipropertychangednotifier-using-dynamic-proxy-and-wcf-serialization-proble</a></p> http://stackoverflow.com/questions/826673/castle-dynamicproxy2-get-the-target-inside-an-interceptor 1 Castle DynamicProxy2: Get the Target inside an Interceptor? Jordan http://stackoverflow.com/users/98144 2009-05-05T20:01:05Z 2009-05-13T10:45:57Z <p>I'm using Castle DynamicProxy2 to "tack on" interfaces to retrieve fields from a dictionary. For example, given the following class:</p> <pre><code>public class DataContainer : IDataContainer { private Dictionary&lt;string, object&gt; _Fields = null; public Dictionary&lt;string, object&gt; Data { get { return _Fields ?? (_Fields = new Dictionary&lt;string, object&gt;()); } } } </code></pre> <p>I want to use the following interface as an interface proxy to extract the "Name" value out of the Fields dictionary:</p> <pre><code>public interface IContrivedExample { string Name { get; } } </code></pre> <p>From an interceptor, I want to get the "target" DataContainer, and return the "Name" value:</p> <pre><code>public void Intercept(IInvocation invocation) { object fieldName = omitted; // get field name based on invocation information DataContainer container = ???; // this is what I'm trying to figure out invocation.ReturnValue = container.Fields[fieldName]; } // Somewhere in code var c = new DataContainer(); c.Fields.Add("Name", "Jordan"); var pg = new ProxyGenerator(); IContrivedExample ice = (IContrivedExample) pg.CreateInterfaceProxyWithTarget(..., c, ...); Debug.Assert(ice.Name == "Jordan"); </code></pre> <p>Any thoughts on how to get the underlying target</p> <p>Note: this is a contrived example I'm using to establish some context around the question I have.</p> http://stackoverflow.com/questions/678131/windsor-mixin-is-a-singleton 0 Windsor MixIn is a Singleton? brumschlag http://stackoverflow.com/users/9701 2009-03-24T16:16:43Z 2009-03-25T16:21:16Z <p>I have a MixIn that requires some state to operate.</p> <p>I am registering it as so..</p> <pre><code> container.Register(Component.For(Of ICat) _ .ImplementedBy(Of Cat) _ .LifeStyle.Transient _ .Proxy.MixIns(New MyMixin())) </code></pre> <p>When I call container.Resolve(of ICat), I get back a proxy for ICat, which also implements IMixin.</p> <p>However, if I call container.Resolve(of ICat) again, I get a new proxy for ICat, but MyMixin is the SAME instance. (Which makes sense because I didn't tell the container any way to create IMixin)</p> <p>So, IMixin is a Singleton, even though the Component's lifestyle is Transient.</p> <p>How can I tell Windsor, though the Fluent Interface, to create a new Instance of MyMixIn for the component? </p>