User Krzysztof Koźmic - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T20:01:11Z http://stackoverflow.com/feeds/user/13163 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1839199/how-to-register-a-uri-dependency-to-return-httpcontext-current-request-url-using/1841844#1841844 1 Answer by Krzysztof Koźmic for How to register a uri dependency to return HttpContext.Current.Request.Url using Castle Windsor? Krzysztof Koźmic 2009-12-03T18:19:54Z 2009-12-03T18:19:54Z <p>The reason is very simple - Uri is a struct not a class, and as such is not treated as real component.</p> <p>There are two solutions to your problem.</p> <ol> <li><p>Wrap the Uri in some kind of IHasUri or something and take dependency on that interface in your controller</p> <pre><code>public class FooController { public IHasUri CurrentUri { get; set; } <pre><code>public void SomeAction() { var currentUri = CurrentUri.GetCurrentUri(); // do something with the uri } </code></pre> } </code></pre></li> <li><p>Use the <a href="http://www.castleproject.org/container/facilities/trunk/oncreate/index.html" rel="nofollow">OnCreateFacility</a> (available in the trunk version of Windsor).</p> <pre><code>container.Register(Component.For&lt;FooController&gt;() .OnCreate((kernel, controller) =&gt; controller.CurrentUri = HttpContext.Current.Request.Url)); </code></pre></li> </ol> http://stackoverflow.com/questions/1837020/castle-windsor-how-to-register-internal-implementations/1839798#1839798 0 Answer by Krzysztof Koźmic for Castle Windsor: How to register internal implementations Krzysztof Koźmic 2009-12-03T13:15:31Z 2009-12-03T16:06:50Z <p><strong>UPDATE:</strong> This is a very logical behavior and I would consider this a bug if it was otherwise. AllTypes exposes only public type, because it assumes, if you made your type internal, you did it for a reason, and if it exposed it it could be a security issue.</p> <p>When you register type explicitly on the other hand, it works because Windsor assumes, since you're explicitly asking it to use an internal type, you know better.</p> <p><hr></p> <p>yes - make it visible to Castle by using <a href="http://msdn.microsoft.com/en-us/library/system.runtime.compilerservices.internalsvisibletoattribute.aspx" rel="nofollow"><code>InternalsVisibleToAttribute</code></a></p> http://stackoverflow.com/questions/1557761/whats-the-difference-between-postsharp-and-castle-dynamic-proxy/1839838#1839838 1 Answer by Krzysztof Koźmic for Whats the difference between PostSharp and Castle Dynamic Proxy? Krzysztof Koźmic 2009-12-03T13:22:34Z 2009-12-03T13:22:34Z <p><a href="http://ayende.com/Blog/archive/2007/07/02/7-Approaches-for-AOP-in-.Net.aspx" rel="nofollow">http://ayende.com/Blog/archive/2007/07/02/7-Approaches-for-AOP-in-.Net.aspx</a></p> http://stackoverflow.com/questions/1433531/castle-dynamic-proxy-creation/1839822#1839822 1 Answer by Krzysztof Koźmic for castle dynamic proxy creation Krzysztof Koźmic 2009-12-03T13:20:10Z 2009-12-03T13:20:10Z <p>Castle can wrap existing objects if you're exposing them via interfaces. It can't and won't wrap classes, and <a href="http://kozmic.pl/archive/2009/12/02/castle-dynamic-proxy-faq-why-therersquos-no-ldquoclass-proxy-with.aspx" rel="nofollow">for a very good reason</a>.</p> http://stackoverflow.com/questions/1829776/help-building-castle-dynamic-proxy/1831600#1831600 1 Answer by Krzysztof Koźmic for help building castle dynamic proxy Krzysztof Koźmic 2009-12-02T08:58:06Z 2009-12-03T07:05:36Z <p><strong>UPDATE:</strong></p> <p>The issue with NUnit is now fixed. Do a clean check out. I really have no idea why you're getting that error. Which version of NAnt are you using? Make sure you have <a href="http://nant.sourceforge.net/nightly/latest/nant-bin.zip" rel="nofollow">the latest</a> (earlier do not have support for .NET 3.5)</p> <p><hr></p> <p>You should be able to just pull the source from the trunk, and build with nant (I just did that and it worked). Ok, I lied, looks like the reference to NUnit is wrong, so the unit test project will not build correctly:</p> <blockquote> <pre><code> BUILD FAILED - 0 non-fatal error(s), 1 warning(s) D:\OLD\DynamicProxy\buildscripts\common-project.xml(295,5): 'nunit-console.exe' failed to start. The system cannot find the file specified Total time: 1.2 seconds. </code></pre> <p>BUILD FAILED</p> <p>Nested build failed. Refer to build log for exact reason.</p> <p>Total time: 3.4 seconds.</p> </blockquote> <p>However the important stuff (assemblyinfo generation) will succeed and you should be able to just open Castle.DynamicProxy2-vs2008.sln, fix the reference to the NUnit assembly hit F5 and build the code with no issues.</p> <p>I just did it on a clean check out, and it worked.</p> <p>Generally if you're planning to do modifications in DP codebase, it is advised to go to the Castle user group first, and discuss it there.</p> http://stackoverflow.com/questions/1823048/where-is-the-castle-dynamicproxy-repo/1829446#1829446 0 Answer by Krzysztof Koźmic for Where is the castle dynamicproxy repo? Krzysztof Koźmic 2009-12-01T22:39:08Z 2009-12-01T22:39:08Z <p>The repository is <a href="https://svn.castleproject.org/svn/castle/DynamicProxy/trunk/" rel="nofollow">here</a>, <strong>but</strong>, any relatively new version (trunk) should be working in MT with no issues. If you're having problems running in medium trust, please report them to <a href="http://groups.google.com/group/castle-project-users/" rel="nofollow">the list</a>, so that it can get a proper, official fix.</p> http://stackoverflow.com/questions/1818579/windsor-castle-ioc-how-to-register-ibaseservicetobject-to-baseservicetobject/1820547#1820547 1 Answer by Krzysztof Koźmic for Windsor Castle IoC, how to register IBaseService<TObject> to BaseService<TObject, TRepository> Krzysztof Koźmic 2009-11-30T15:39:17Z 2009-11-30T15:39:17Z <p>if you <strong>have to</strong> do it like this you'd have to override <code>DefaultKernel.BuildCreationContext</code> (or something like that).</p> <p>Generally what you're doing is not supported because it's wrong and vague. You're better of being explicit, and creating.</p> <pre><code>public class Service&lt;TObject&gt; : BaseService&lt;TObject, IRepository&lt;TObject&gt;&gt; </code></pre> http://stackoverflow.com/questions/1774952/accessviolationexception-in-com-control-in-net-app 1 AccessViolationException in COM control in .NET app Krzysztof Koźmic 2009-11-21T08:39:03Z 2009-11-27T06:26:47Z <p>I'm working for a client that has a VB6 app in the migration process to .NET.</p> <p>Currently they have a .NET shell, but host some old VB6 controls in .NET. There's an error I stumbled upon is logs that happens when they in .NET asynchronously pull some data from the database, and then forward that data to a COM component to display it:</p> <pre><code>The Undo operation encountered a context that is different from what was applied in the corresponding Set operation. The possible cause is that a context was Set on the thread and not reverted(undone). Err Source: mscorlib Err Type: System.InvalidOperationException ERROR stack trace: at System.Threading.SynchronizationContextSwitcher.Undo() at System.Threading.ExecutionContextSwitcher.Undo() at System.Threading.ExecutionContext.runFinallyCode(Object userData, Boolean exceptionThrown) at System.Runtime.CompilerServices.RuntimeHelpers.ExecuteBackoutCodeHelper(Object backoutCode, Object userData, Boolean exceptionThrown) at System.Runtime.CompilerServices.RuntimeHelpers.ExecuteCodeWithGuaranteedCleanup(TryCode code, CleanupCode backoutCode, Object userData) at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state) at System.Windows.Forms.Control.InvokeMarshaledCallback(ThreadMethodEntry tme) at System.Windows.Forms.Control.InvokeMarshaledCallbacks() </code></pre> <p>then the following shows up in the logs:</p> <pre><code>Attempted to read or write protected memory. This is often an indication that other memory is corrupt. Err Source: mscorlib Err Type: System.AccessViolationException ERROR stack trace: at System.RuntimeType.ForwardCallToInvokeMember(String memberName, BindingFlags flags, Object target, Int32[] aWrapperTypes, MessageData&amp; msgData) at _Client's component that forwards calls to COM_ </code></pre> <p>Did anyone ever encounter something like this? How do I approach fixing it?</p> http://stackoverflow.com/questions/1443792/bin-deploy-rake-and-ironruby 2 Bin deploy rake (and IronRuby) Krzysztof Koźmic 2009-09-18T10:45:02Z 2009-11-25T16:36:58Z <p>I'm on a .NET project, and I would like to migrate build script from MsBuild to Rake. I don't want to force developers (or build agent machines) to have to install anything, I want it to be self contained. If possible I'd prefer to use IronRuby.</p> <p>Is it possible to just drop everything in /tools/rake and /tools/IronRuby and have it just work, the way everyone does with NAnt?</p> <p>I would appreciate any pointers to tutorials on this or blogposts. I'm a complete noob when it comes to Ruby, rake and these gem things.</p> http://stackoverflow.com/questions/1795729/whats-the-best-way-to-initialize-an-mvc-controller-with-multiple-parameters-of-t/1795744#1795744 3 Answer by Krzysztof Koźmic for What's the best way to initialize an MVC Controller with multiple parameters of the same type using Castle Windsor? Krzysztof Koźmic 2009-11-25T09:35:34Z 2009-11-25T09:35:34Z <pre><code>container.Register( Component.For&lt;ICustomType&gt;().Named("a").ImplementedBy&lt;ClassA&gt;(), Component.For&lt;ICustomType&gt;().Named("b").ImplementedBy&lt;Classb&gt;() ); </code></pre> http://stackoverflow.com/questions/1746387/castle-windsor-problem-with-multiple-constructors/1747477#1747477 1 Answer by Krzysztof Koźmic for Castle Windsor: Problem with Multiple Constructors Krzysztof Koźmic 2009-11-17T09:02:11Z 2009-11-17T09:02:11Z <p>This might be regarded as a bug (and indeed for cases like this it's fixable) but it's kindof a by-design feature.</p> <p>Windsor tries to match the greediest constructor (one with the most parameters it can satisfy).</p> <p>However in your case, there are two constructors that have the greatest number of parameters (of one), so Windsor just picks the first, where what the "first" means is undefined.</p> <p>indeed if you switch the order of your constructors in your source code your code will start working, although it's a hack, relying on undocumented behavior and don't do it.</p> <p>Let's go back to where we started shall we?</p> <p>I said Windsor is confused because there's no <strong>single</strong> greediest constructor it can satisfy.</p> <p>Quick and well-defined fix would be to add a fake parameter to one of th constructors so that they have different numbers of parameters:</p> <pre><code>public class UserRepository : IUserRepository { public UserRepository(IObjectContext objectContext, object fakeIgnoreMe) { // Check that the supplied arguments are valid. Validate.Arguments.IsNotNull(objectContext, "objectContext"); // ignoring fake additional argument // Initialize the local fields. ObjectContext = objectContext; } public UserRepository(IObjectContextFactory factory) : this(factory.CreateObjectContext()) { } // ----------------------------------------------- // Insert methods and properties... // ----------------------------------------------- } </code></pre> <p>Please report this issue to <a href="http://groups.google.com/group/castle-project-users" rel="nofollow">Castle users list</a> or <a href="http://support.castleproject.org/projects/IOC/issuesbrowser" rel="nofollow">straight to issue tracker</a> so that it will get fixed.</p> http://stackoverflow.com/questions/1728218/can-you-use-castle-dynamic-proxies-on-web-services-references/1742177#1742177 0 Answer by Krzysztof Koźmic for can you use castle dynamic proxies on web services references? Krzysztof Koźmic 2009-11-16T13:23:03Z 2009-11-16T13:23:03Z <p>yes, this should be possible. What errors are you getting? Which classes you're trying to serialize that won't serialize?</p> <p>It's probably better to discuss it on <a href="http://groups.google.com/group/castle-project-users" rel="nofollow">Castle users group</a></p> http://stackoverflow.com/questions/1719725/inject-automapper/1720779#1720779 0 Answer by Krzysztof Koźmic for Inject AutoMapper Krzysztof Koźmic 2009-11-12T08:38:04Z 2009-11-12T08:38:04Z <p>you mean how do you register it in Windsor?</p> <p>you may have to register FactorySupportFacility fist... I have no way of checking at this moment.</p> <pre><code>container.AddFacility&lt;FactorySupportFacility&gt;(); </code></pre> <p>and then</p> <pre><code>container.Register(Component.For&lt;IMappingEngine&gt;().UsingFactoryMethod(()=&gt; Mapper.Engine)); </code></pre> http://stackoverflow.com/questions/684950/how-to-detect-sql-server-express-in-wix-installer 2 How to detect SQL Server Express in WiX installer Krzysztof Koźmic 2009-03-26T08:34:12Z 2009-11-12T03:13:33Z <p>How do I detect if Sql Server Express is installed and running on a machine in a WiX installer?</p> <p>I want to check before installing my application and if it's not installed and running, to inform a user that it has to install it first before installing my application.</p> http://stackoverflow.com/questions/1701437/wcf-service-certificate-and-client-side-endpoint-identity-why-it-doesnt-work 1 WCF service certificate and client side endpoint identity - why it doesn't work? Krzysztof Koźmic 2009-11-09T14:43:22Z 2009-11-09T23:09:21Z <p>[Update] - I attach also full config files, for <a href="http://gist.github.com/230024" rel="nofollow">service</a>, and for <a href="http://gist.github.com/230026" rel="nofollow">client</a> (outside of here, not to flood the topic)</p> <p>I'm having situation pretty much identical to the one outlined in <a href="http://stackoverflow.com/questions/1577115/wcf-service-certificate-implications-of-certificatevalidationmodenone-and-revo">this</a> question, however my question is somewhat different.</p> <ul> <li>I'm using NetTcpBinding with security set to TransportWithMessageCredential</li> <li>I'm using Password/Username credentials backed up by ASP.NET provider</li> <li>My service is self hosted in Windows Service</li> <li>I <strong>do</strong> have in my endpoint behavior specified authentication revocationMode="NoCheck"</li> </ul> <p>It is required that the service provides a certificate to authenticate itself to clients. That's OK, I just do:</p> <pre><code>&lt;serviceCertificate findValue="***" storeLocation="CurrentUser" storeName="My" x509FindType="FindByThumbprint"/&gt; </code></pre> <p>Now, I somewhat imagined that now the client would end up having</p> <pre><code>&lt;identity&gt; &lt;certificate encodedValue="encoded certificate"/&gt; &lt;/identity&gt; </code></pre> <p>And it will be able to verify service's credentials <strong>without having that certificate installed in the store on client machine</strong>.</p> <p>I was surprised <a href="http://msdn.microsoft.com/en-us/library/ms733130.aspx" rel="nofollow">to learn</a> that although I set the service credentials to certificate, <a href="http://en.wikipedia.org/wiki/Web%5FServices%5FDescription%5FLanguage" rel="nofollow">WSDL</a> exposes </p> <pre><code>&lt;Identity&gt; &lt;Dns&gt;Foo&lt;/Dns&gt; &lt;/Identity&gt; </code></pre> <p>Again, on service I can set Identity to CertificateReference and hook it up to the same certificate, and then WSDL will expose identity as X509Certificate, but when I run the client that setting is ignored, and I end up with error message:</p> <blockquote> <p>System.ServiceModel.Security.SecurityNegotiationException: The X.509 certificate CN=xxx is not in the trusted people store. The X.509 certificate CN=xxx chain building failed. The certificate that was used has a trust chain that can not be verified. Replace the certificate or change the certificateValidationMode. A certificate chain processed, but terminated in a root certificate which is not trusted by the trust provider.</p> </blockquote> <p>Is there a way to make client use that value from config and work without having to install a service certificate (nor its root) on client' machine?</p> <p><strong>[UPDATE]</strong> While setting certificateValidationMode to none will make the exception go away, it is unacceptable solution from security point of view.</p> <p>It makes the client merely acknowledge that it receive ''some'' certificate, without getting into details. This makes all range of man in the middle attacks possible. It still won't validate the information sent by (alleged) service against the certificate dumped in the config.</p> http://stackoverflow.com/questions/1686801/castle-windsor-auto-register-types-that-have-dependency-in-constructor/1694123#1694123 1 Answer by Krzysztof Koźmic for Castle Windsor: auto-register types that have dependency in constructor Krzysztof Koźmic 2009-11-07T19:23:33Z 2009-11-07T19:23:33Z <p>If you're for option 2, there is a new extension point in works that does just that. It's not in the trunk yet (you can download the patch from discussion group, integrate it with the trunk and rebuild it yourself). It will be in Windsor v2.1 though.</p> <p>For now you can do either that, do the up-front registration like you showed or develop some kind of convention, like put all the types in common namespace.</p> http://stackoverflow.com/questions/1680663/disable-foo-has-encountered-a-problem-and-needs-to-close-window 0 Disable "Foo has encountered a problem and needs to close" window Krzysztof Koźmic 2009-11-05T13:41:02Z 2009-11-05T17:48:08Z <p>Is there a way (other than WerAddExcludedApplication which won't work in Windows XP) to disable the window "Application has encountered a problem and needs to close" from appearing when my application crashes? </p> <p><img src="http://i37.tinypic.com/2vvw6yd.png" alt="alt text"> </p> <p>(image taken from Bil Simser' <a href="http://weblogs.asp.net/bsimser/archive/2008/04/18/ui-exception-handling-vs-appdomain-exceptions.aspx" rel="nofollow">blog</a>)</p> <p>I need this to work in Windows XP.</p> http://stackoverflow.com/questions/230989/what-is-caps-lock-good-for -4 What is Caps Lock good for? Krzysztof Koźmic 2008-10-23T18:59:30Z 2009-11-05T15:30:49Z <ol> <li>Do you find CAPS LOCK useful, and for what?</li> <li>Do you use any funky scripts or programs that change default behaviour of the key?</li> </ol> http://stackoverflow.com/questions/1567688/serialization-of-a-derived-class-that-hides-a-base-property/1680995#1680995 0 Answer by Krzysztof Koźmic for Serialization of a derived class that hides a base property Krzysztof Koźmic 2009-11-05T14:44:35Z 2009-11-05T14:44:35Z <p>Implement ISerializable and do serialization manually or do what the exception message says - rename the property in inherited type in your serialization stream.</p> http://stackoverflow.com/questions/1669049/castle-windsor-interceptor-for-private-protected-method/1669568#1669568 1 Answer by Krzysztof Koźmic for Castle Windsor Interceptor for private/protected method Krzysztof Koźmic 2009-11-03T19:20:47Z 2009-11-03T19:20:47Z <p>No it is not true.</p> <p>The method must be accessible for generated proxy type, which means it must be virtual (or interface method) and it must not be private.</p> <p>So protected and protected internal methods are good to go. Also internal methods from assembly visible to generated dynamic proxy assembly are OK.</p> http://stackoverflow.com/questions/1250478/problem-with-windsor-calls-to-genericized-methods-after-adding-an-interceptor/1644452#1644452 0 Answer by Krzysztof Koźmic for Problem with Windsor Calls to "Genericized" Methods After Adding an Interceptor Krzysztof Koźmic 2009-10-29T15:15:22Z 2009-10-29T15:15:22Z <p>Does this happen only under Visual Studio debugger?</p> <p>Does this happen on the latest trunk version of Castle as well? (which you can find <a href="http://www.castleproject.org:8090/viewLog.html?buildId=2499&amp;buildTypeId=bt52&amp;tab=artifacts" rel="nofollow">here</a>)</p> http://stackoverflow.com/questions/1614087/system-net-mail-alternative/1614151#1614151 0 Answer by Krzysztof Koźmic for System.Net.Mail Alternative Krzysztof Koźmic 2009-10-23T15:15:37Z 2009-10-23T15:15:37Z <p><a href="http://groups.google.com/group/castle-project-users/browse%5Fthread/thread/76d61e0206127e46?pli=1" rel="nofollow">Castle Email.Sender component</a>?</p> http://stackoverflow.com/questions/1599811/is-it-bad-to-use-servicelocation-instead-of-constructor-injection-to-avoid-writin/1612034#1612034 5 Answer by Krzysztof Koźmic for Is it bad to use servicelocation instead of constructor injection to avoid writing loads of factory classes Krzysztof Koźmic 2009-10-23T08:15:28Z 2009-10-23T08:15:28Z <p>yes - it is bad.</p> <ul> <li>Why write all that code when you can have the framework do the work? All the IoC.Resolve() calls are superfluous and you shouldn't have to write them.</li> <li><p>Another, even more important aspect, is that your components are tied to your service locator.</p> <p>You're now unable to instantiate them just like that - you need a completely set up service locator in place every time you need to use a component.</p></li> <li>Last but, bot least - your SL code is sprinkled all over your codebase which is not a good thing, because when you want to change something, you have to look in multiple places.</li> </ul> http://stackoverflow.com/questions/448337/why-i-have-to-use-fully-qualified-assembly-name-for-local-assemblies 0 Why I have to use fully qualified assembly name for local assemblies? Krzysztof Koźmic 2009-01-15T20:28:13Z 2009-10-13T18:00:03Z <p>In many places, like in app.config/web.config files I have to specify types using this verbose fully qualified names, like </p> <p><code>&lt;add name="myListener" type="System.Diagnostics.TextWriterTraceListener, System, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" /&gt;</code></p> <p><a href="http://msdn.microsoft.com/en-us/library/k8xx4k69.aspx" rel="nofollow">This MSDN site</a> says, that </p> <blockquote> <p>Partial binding, which specifies only an assembly name, is not permitted when referencing assemblies in the .NET Framework.</p> </blockquote> <p>Ok, good - but why in some places, like when defining my own custom trace listener can't I use partial binding when I'm referencing my own, non-strongly named, locally deployed assemblies? Is there any deeper reason for this?</p> http://stackoverflow.com/questions/1560308/how-to-display-progressbar-during-copy/1560317#1560317 1 Answer by Krzysztof Koźmic for How to display progressbar during copy Krzysztof Koźmic 2009-10-13T13:37:49Z 2009-10-13T13:37:49Z <p>you can use BackgroundWorker for that. There are plenty of samples that show just what you want to do.</p> http://stackoverflow.com/questions/1538336/rhino-mocks-vs-moq-for-silverlight/1538365#1538365 1 Answer by Krzysztof Koźmic for Rhino Mocks vs Moq for Silverlight Krzysztof Koźmic 2009-10-08T14:56:58Z 2009-10-08T14:56:58Z <p>There's not much impact of Silverlight itself on the frameworks, and using them is not much different than doing so in full .NET</p> <p>RM is said to have steeper learning curve, and MoQ allegedly has cleaner API, but RM on the other hand, has been around for much longer, and probably supports more corner-case scenarios.</p> <p>I'd suggest to spike with both, and choose whichever you find suits you better.</p> http://stackoverflow.com/questions/1521912/a-problem-with-castle-core-dll/1521933#1521933 1 Answer by Krzysztof Koźmic for A problem with Castle.Core.dll Krzysztof Koźmic 2009-10-05T19:28:21Z 2009-10-06T08:03:48Z <p>[UPDATE - pulling what's in comments to the body of the answer]</p> <ul> <li>Ensure you have no old (RC) version installed in your GAC, if you do - uninstall it.</li> <li>Download binary package of Windsor 2.0 (or newer if available) and unzip it to a folder on your hard drive</li> <li>Remove old references in your project. Add references to the files you extracted in the above step</li> <li>Ensure you updated version number in your app.config (can be copied from Reflector)</li> </ul> http://stackoverflow.com/questions/1469334/what-is-the-best-documented-ioc-framework-for-net/1503600#1503600 2 Answer by Krzysztof Koźmic for What is the best documented IOC framework for .net? Krzysztof Koźmic 2009-10-01T12:14:04Z 2009-10-01T12:14:04Z <p>Poor framework with lots of docs is not going to do you much good. It's better to ask - which IoC framework is good, logical and natural to use, and has just enough docs to get you up to speed. And for that I say Castle Windsor or AutoFac.</p> http://stackoverflow.com/questions/1502628/should-i-upgrade-to-castle-windsor-v2/1502878#1502878 1 Answer by Krzysztof Koźmic for Should I upgrade to Castle Windsor v2? Krzysztof Koźmic 2009-10-01T09:23:40Z 2009-10-01T09:23:40Z <p>Yes it is worth the upgrade. A lot has changed since RC3, including many bugfixes, addition of fluent registration API etc. I don't know about any big perf improvement, but do you have any performance problems with Windsor?</p> <p>There were no breaking changes as far as I know, but it's best to just pull Windsor down, upgrade and see if all your tests pass.</p> http://stackoverflow.com/questions/1475217/wpf-frameworks-which-one-should-i-prefer/1477059#1477059 1 Answer by Krzysztof Koźmic for WPF frameworks: Which one should I prefer? Krzysztof Koźmic 2009-09-25T12:37:17Z 2009-09-25T12:37:17Z <p><a href="http://www.codeplex.com/caliburn" rel="nofollow">Caliburn</a> is production ready. It is used in production in fact, for example in <a href="http://nhprof.com/" rel="nofollow">NHProf</a>.</p> http://stackoverflow.com/questions/1837020/castle-windsor-how-to-register-internal-implementations/1839798#1839798 Comment by Krzysztof Koźmic on Castle Windsor: How to register internal implementations Krzysztof Koźmic 2009-12-03T16:00:54Z 2009-12-03T16:00:54Z When you register with Component.For you're in context of the assembly where this code is. AllTypes.Of execute in the context of Castle assembly. http://stackoverflow.com/questions/1823048/where-is-the-castle-dynamicproxy-repo/1829446#1829446 Comment by Krzysztof Koźmic on Where is the castle dynamicproxy repo? Krzysztof Koźmic 2009-12-02T08:43:35Z 2009-12-02T08:43:35Z @both core and dynamic proxy need to be working in medium trust. - yeah, don't they? What's the issue? http://stackoverflow.com/questions/21288/which-c-net-dependency-injection-frameworks-are-worth-looking-into/227012#227012 Comment by Krzysztof Koźmic on Which C#/.NET Dependency Injection frameworks are worth looking into? Krzysztof Koźmic 2009-12-01T15:03:36Z 2009-12-01T15:03:36Z Good description. I would stay away from Unity though as it's simply a PITA to use. http://stackoverflow.com/questions/21288/which-c-net-dependency-injection-frameworks-are-worth-looking-into/21348#21348 Comment by Krzysztof Koźmic on Which C#/.NET Dependency Injection frameworks are worth looking into? Krzysztof Koźmic 2009-12-01T15:01:09Z 2009-12-01T15:01:09Z Nice but to be fair - Windsor has a very nice fully-fledged fluent interface now as well. http://stackoverflow.com/questions/1774952/accessviolationexception-in-com-control-in-net-app/1807090#1807090 Comment by Krzysztof Koźmic on AccessViolationException in COM control in .NET app Krzysztof Koźmic 2009-11-30T07:57:45Z 2009-11-30T07:57:45Z what about the fact that the control is a COM control. Does not COM do its own thread management? Will the component run on the .NET UI thread or its own? What if it spawns its thread? http://stackoverflow.com/questions/1406762/what-are-the-differences-between-linfu-dynamicproxy-and-castle-dynamicproxy/1407207#1407207 Comment by Krzysztof Koźmic on What are the differences between LinFu.DynamicProxy and Castle.DynamicProxy? Krzysztof Koźmic 2009-11-29T21:21:31Z 2009-11-29T21:21:31Z I have ran tests of Dynamic Proxy (trunk) against version 2.1. While the interception times have not changed (and it works <b>very</b> fast) the proxy type generation is now multiple times faster http://stackoverflow.com/questions/1788838/what-is-the-trade-of-between-oneway-and-async-calls-for-broadcasting-events-to-cl/1789430#1789430 Comment by Krzysztof Koźmic on What is the trade of between OneWay and Async calls for broadcasting events to clients? (WCF) Krzysztof Koźmic 2009-11-25T08:50:00Z 2009-11-25T08:50:00Z Wrong. OneWay for NetTcp binging is <b>not</b> fire and forget. Firstly it does block your publisher for the time until your receiver confirms it got the whole message. Secondly it can fault your publisher when your receiver faults, so you have to be ready for that. Best option is to use both at a time, keeping in mind the things I outlined above. http://stackoverflow.com/questions/1772749/what-ioc-containers-support-silverlight Comment by Krzysztof Koźmic on What IoC Containers Support Silverlight? Krzysztof Koźmic 2009-11-24T11:24:44Z 2009-11-24T11:24:44Z There's a plan to port Castle Windsor to Silverlight. However none of the core committers is working in Silverlight so we're looking for people who would like to testdrive it, and report issues back. If you're interested drop us a line on Castle Users group: <a href="http://groups.google.com/group/castle-project-users" rel="nofollow">groups.google.com/group/castle-project-users/&hellip;</a> http://stackoverflow.com/questions/1784653/register-multiple-components-for-single-interface-using-castle-windsor Comment by Krzysztof Koźmic on Register Multiple Components for Single Interface Using Castle Windsor Krzysztof Koźmic 2009-11-23T18:06:26Z 2009-11-23T18:06:26Z That's bizzare. Which version are you using? What happens if you move .Named() before .UsingFactoryMethod() ? http://stackoverflow.com/questions/1774952/accessviolationexception-in-com-control-in-net-app/1774965#1774965 Comment by Krzysztof Koźmic on AccessViolationException in COM control in .NET app Krzysztof Koźmic 2009-11-21T14:01:31Z 2009-11-21T14:01:31Z yes, the component is a UI control, and it's quite likely it's updated from some other thread. Not sure tough as I haven't seen the code yet, just got the logs. However I think I would get other exception if this was indeed a problem with other thread updating UI, or is it for .NET only? Dunno really how COM handles that. Anyway - I'll try your suggestion. http://stackoverflow.com/questions/1756253/unity-view-registered-types-during-debug Comment by Krzysztof Koźmic on Unity view Registered Types during debug Krzysztof Koźmic 2009-11-18T20:50:16Z 2009-11-18T20:50:16Z Don't know about Unity, but actual IoC containers let you see that easily: <a href="http://structuremap.sourceforge.net/QuickStart.htm" rel="nofollow">structuremap.sourceforge.net/QuickStart.htm/&hellip;</a> (search for WhatDoIHave) or <a href="http://bugsquash.blogspot.com/2009/10/visualizing-windsor-components.html" rel="nofollow">bugsquash.blogspot.com/2009/10/&hellip;</a> http://stackoverflow.com/questions/1745350/can-i-use-net-tcp-bindings-for-protobuf-net-wcf Comment by Krzysztof Koźmic on Can I use net.tcp bindings for protobuf-net WCF? Krzysztof Koźmic 2009-11-17T09:06:27Z 2009-11-17T09:06:27Z net.tcp is for WCF&lt;--&gt;WCF communication so I'm 99% sure you can't http://stackoverflow.com/questions/1735284/castle-windsor-resolveall-that-throws-when-any-of-registered-services-cannot-be-r Comment by Krzysztof Koźmic on Castle Windsor ResolveAll that throws when any of registered services cannot be resolved Krzysztof Koźmic 2009-11-16T20:04:56Z 2009-11-16T20:04:56Z what would be a reasonable scenario when you'd really want that? I can't think of any http://stackoverflow.com/questions/1735284/castle-windsor-resolveall-that-throws-when-any-of-registered-services-cannot-be-r Comment by Krzysztof Koźmic on Castle Windsor ResolveAll that throws when any of registered services cannot be resolved Krzysztof Koźmic 2009-11-16T20:03:58Z 2009-11-16T20:03:58Z I see you found yourself quite a nice workaround. And if you want this, because you want to get 'notified' when you mis-wired your container, check that in unit tests - <a href="http://weblogs.asp.net/bsimser/archive/2008/06/27/testing-castle-windsor-mappings-part-deux.aspx" rel="nofollow">weblogs.asp.net/bsimser/archive/&hellip;</a> http://stackoverflow.com/questions/1735284/castle-windsor-resolveall-that-throws-when-any-of-registered-services-cannot-be-r Comment by Krzysztof Koźmic on Castle Windsor ResolveAll that throws when any of registered services cannot be resolved Krzysztof Koźmic 2009-11-16T13:28:16Z 2009-11-16T13:28:16Z This is expected behavior, and that's what you'd want most of the time, so this is not going to change.