Krzysztof Koźmic

2,726
Reputation
610 views

Registered User

Name Krzysztof Koźmic
Member for 1 year
Seen 13 hours ago
Website
Location Kraków
Age 24
You can read about me on my blog.
13h
answered How to register a uri dependency to return HttpContext.Current.Request.Url using Castle Windsor?
15h
revised Castle Windsor: How to register internal implementations
added 448 characters in body
15h
comment Castle Windsor: How to register internal implementations
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.
16h
accepted castle dynamic proxy creation
18h
revised Dynamic Proxy generation with LinFu
fixed code formatting
18h
answered Whats the difference between PostSharp and Castle Dynamic Proxy?
18h
answered castle dynamic proxy creation
18h
answered Castle Windsor: How to register internal implementations
1d
revised help building castle dynamic proxy
added 329 characters in body
1d
answered help building castle dynamic proxy
1d
comment Where is the castle dynamicproxy repo?
@both core and dynamic proxy need to be working in medium trust. - yeah, don't they? What's the issue?
2d
answered Where is the castle dynamicproxy repo?
2d
comment Which C#/.NET Dependency Injection frameworks are worth looking into?
Good description. I would stay away from Unity though as it's simply a PITA to use.
2d
comment Which C#/.NET Dependency Injection frameworks are worth looking into?
Nice but to be fair - Windsor has a very nice fully-fledged fluent interface now as well.
Dec
1
accepted Windsor Castle IoC, how to register IBaseService<TObject> to BaseService<TObject, TRepository>
Nov
30
accepted What is the best documented IOC framework for .net?
Nov
30
answered Windsor Castle IoC, how to register IBaseService<TObject> to BaseService<TObject, TRepository>
Nov
30
comment AccessViolationException in COM control in .NET app
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?
Nov
29
comment What are the differences between LinFu.DynamicProxy and Castle.DynamicProxy?
I have ran tests of Dynamic Proxy (trunk) against version 2.1. While the interception times have not changed (and it works very fast) the proxy type generation is now multiple times faster
Nov
25
accepted What’s the best way to initialize an MVC Controller with multiple parameters of the same type using Castle Windsor?
Nov
25
answered What’s the best way to initialize an MVC Controller with multiple parameters of the same type using Castle Windsor?
Nov
24
comment What IoC Containers Support Silverlight?
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: groups.google.com/group/castle-project-users/…
Nov
23
comment Register Multiple Components for Single Interface Using Castle Windsor
That's bizzare. Which version are you using? What happens if you move .Named() before .UsingFactoryMethod() ?
Nov
21
revised AccessViolationException in COM control in .NET app
edited title
Nov
21
comment AccessViolationException in COM control in .NET app
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.
Nov
21
accepted Dependency injection and physical paths in an ASP .NET environment - howto ?
Nov
21
asked AccessViolationException in COM control in .NET app
Nov
18
comment Unity view Registered Types during debug
Don't know about Unity, but actual IoC containers let you see that easily: structuremap.sourceforge.net/QuickStart.htm/… (search for WhatDoIHave) or bugsquash.blogspot.com/2009/10/…
Nov
17
accepted Castle Windsor: Problem with Multiple Constructors
Nov
17
comment Can I use net.tcp bindings for protobuf-net WCF?
net.tcp is for WCF<-->WCF communication so I'm 99% sure you can't
Nov
17
answered Castle Windsor: Problem with Multiple Constructors
Nov
16
comment Castle Windsor ResolveAll that throws when any of registered services cannot be resolved
what would be a reasonable scenario when you'd really want that? I can't think of any
Nov
16
comment Castle Windsor ResolveAll that throws when any of registered services cannot be resolved
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 - weblogs.asp.net/bsimser/archive/…
Nov
16
comment Castle Windsor ResolveAll that throws when any of registered services cannot be resolved
This is expected behavior, and that's what you'd want most of the time, so this is not going to change.
Nov
16
answered can you use castle dynamic proxies on web services references?
Nov
13
comment Inject AutoMapper
what is this Profile? What does it do? If you mean just the Configure method, than you do it, where you register your components to the container, It has no dependency on the container whatsoever AFAICS
Nov
12
answered Inject AutoMapper
Nov
11
awarded  Self-Learner
Nov
10
comment WCF service certificate and client side endpoint identity - why it doesn’t work?
This is what I ended up doing. I have a question though - why does it not work out of the box? If the client has all the required information, and receives some certificate from a service, it is the most natural thing to do to validate one against the other. Why doesn't WCF do this?
Nov
9
comment WCF service certificate and client side endpoint identity - why it doesn’t work?
Take a look at my updated question (at the bottom). Basically it does make the exception go away, and calls to succeed but it does not make the client use the certificate serialized in config - it just makes it accept ANY certificate, which is unacceptable unfortunately :/
Nov
9
comment WCF service certificate and client side endpoint identity - why it doesn’t work?
I'm not grumbling, but this solution does not cut it for me :(
Nov
9
revised WCF service certificate and client side endpoint identity - why it doesn’t work?
Updated question title to be more descriptive
Nov
9
comment WCF service certificate and client side endpoint identity - why it doesn’t work?
Sure I can, I linked them, because they are pretty big, and I don't want to scare off potentially helpful people by drowning them in tons of xml
Nov
9
revised WCF service certificate and client side endpoint identity - why it doesn’t work?
Attached config files
Nov
9
comment WCF service certificate and client side endpoint identity - why it doesn’t work?
Sorry, I forgot to mention that I do have this option set. I updated the question accordingly. Anyway, the certificate seems to be ignored regardless of what I specify here.
Nov
9
revised WCF service certificate and client side endpoint identity - why it doesn’t work?
mentioned revocation mode
Nov
9
asked WCF service certificate and client side endpoint identity - why it doesn’t work?
Nov
8
accepted Castle Windsor: auto-register types that have dependency in constructor
Nov
8
comment Castle Windsor: auto-register types that have dependency in constructor
I still don't understand your problem. Can we move this discussion to Castle Users Group? groups.google.com/group/castle-project-users/… Please provide a concrete example of what you need.
Nov
7
comment Castle Windsor: auto-register types that have dependency in constructor
ok, now that I really read your code - why do you want to do this? you're registering viewmodels that have ctor dependency on any other registered component? Why are you doing this? This does not make much sense to me.