Re: What happened to the NHibernate Facility

2010-06-24 Thread Tuna Toksoz
Check the github repository. I made some new changes to make failing tests pass. Expect a release soon. Otherwise people are going to kill me soon. Tuna Toksöz Eternal sunshine of the open source mind. http://devlicio.us/blogs/tuna_toksoz http://tunatoksoz.com http://twitter.com/tehlike On

Re: Does Castle AR support NHibernate's composite-element ?

2010-06-24 Thread Jonathon Rossi
It is implemented, however it is not well tested. The unit test ActiveRecordTestCase.RelationMap should test this, however it is incomplete and ignored so I don't know the state of the implementation. On Thu, Jun 24, 2010 at 12:18 PM, Tony OHagan tony.oha...@gmail.com wrote: Does Castle AR

Re: PrincipalPermission attribute and .net 4.0

2010-06-24 Thread Krzysztof Koźmic
Jan, http://kozmic.pl/archive/2010/04/15/select-is-broken-.net-4.aspx For now I suggest you call AttributesToAvoidReplicating.AddWhateverisCausingTheProblemAttribute() Krzysztof On 24/06/2010 9:43 AM, Jan Limpens wrote: I have controller actions decorated with these attributes:

Re: Registering component implementing generic interface

2010-06-24 Thread Krzysztof Koźmic
BasedOn handles generic types pretty nicely :) On 24/06/2010 8:06 AM, Simone Busoli wrote: Hi Krzysztof, yes, something along the lines of that would probably work, I missed the BasedOn method, or maybe I just thought that it couldn't deal with generic types. Thanks a lot. 2010/6/23

MySQL Master/Slave

2010-06-24 Thread Kynth
I have an existing web application which uses Castle Activerecord to interact with a single MySQL database. The Database has recently been reconfigured to replicate to a number of Slaves. The application is still working, although it is is just interacting with the original Master. Is it possible

Where can I download the factory-support facility

2010-06-24 Thread joniba
Sorry, I'm sure I've probably missed an obvious link to all the facilities somewhere, but I simply cannot figure out where I can download the factory-support facility. Help? -- You received this message because you are subscribed to the Google Groups Castle Project Users group. To post to this

Re: Where can I download the factory-support facility

2010-06-24 Thread Tuna Toksoz
If i recall correct, it is already embedded into microkernel (or windsor) Tuna Toksöz Eternal sunshine of the open source mind. http://devlicio.us/blogs/tuna_toksoz http://tunatoksoz.com http://twitter.com/tehlike On Thu, Jun 24, 2010 at 12:28 PM, joniba jbena...@gmail.com wrote: Sorry,

Re: PrincipalPermission attribute and .net 4.0

2010-06-24 Thread Jan Limpens
now, that sucks quite a bit... that AttributesToAvoidReplicating... thing, how does one use it, what does it do? 2010/6/24 Krzysztof Koźmic krzysztof.koz...@gmail.com Jan, http://kozmic.pl/archive/2010/04/15/select-is-broken-.net-4.aspx For now I suggest you call

Re: HybridWebThreadScopeInfo and Mono

2010-06-24 Thread bluesliverx
For anyone who runs into the same problem, I finally found that the HttpContext variable within the controller EndAsyncTest() method was being set correctly, but HttpContext.Current was null for some reason. By putting HttpContext.Current = HttpContext; in the EndAsyncTest() method at any point,

Re: Registering component implementing generic interface

2010-06-24 Thread Simone Busoli
I noticed, thanks ;) 2010/6/24 Krzysztof Koźmic krzysztof.koz...@gmail.com BasedOn handles generic types pretty nicely :) On 24/06/2010 8:06 AM, Simone Busoli wrote: Hi Krzysztof, yes, something along the lines of that would probably work, I missed the BasedOn method, or maybe I just

Re: PrincipalPermission attribute and .net 4.0

2010-06-24 Thread Krzysztof Koźmic
That's a blacklist of attributes that are not inheritable and you don't want to replicate them onto the proxy. It's static, global class (for now - I think it should be scoped) where DP looks before trying to replicate each attribute type. All security-pseudo attribtues can be safely skipped