Re: Is Child container obsolete?

2017-09-07 Thread Ken Egozi
idea. I am not sure that a unit test is were you would best test something that is an integration by nature, especially when you are mucking about with the thing under test itself (the container registry). Leave that to integration or system testing. Ken Egozi. http://kenegozi.com/ <h

Re: Is Child container obsolete?

2017-09-07 Thread Ken Egozi
So much time since I last touched child containers... Once resolution went up to the parent container it would not go back to resolve from the child as the direction is one way. The right question to be answered is "what is your scenario?" Experience shows that more often than not, a

Re: Is this a Windsor bug?

2014-09-16 Thread Ken Egozi
the bug is in your test code. the 'i' variable is not captured in the thread's closure so all 10 threads gets i=10 (confirm by console.writeline(i) in the thread lambda) Ken Egozi. http://kenegozi.com/blog http://aspnetwebstack.codeplex.com http://www.windowsazure.com/en-us/develop/mobile/ http

Re: Is this a Windsor bug?

2014-09-16 Thread Ken Egozi
you can fix the test by adding this in the first row of the for loop var localI = i; and then change jp.ID=i; to jp.ID=localI; Ken Egozi. http://kenegozi.com/blog http://aspnetwebstack.codeplex.com http://www.windowsazure.com/en-us/develop/mobile/ http://www.shopyourway.com http

RE: WCF Integration Facility Mono compatibility

2013-08-13 Thread Ken Egozi
You could potentially rebuild for mono and even if it does break on MSFT.net you could always deploy the right facility binary to the right target installation. Ken@wp8 -- From: ondrej.my...@gmail.com Sent: 8/13/2013 12:26 AM To:

RE: Resolving components dynamically based on name

2013-01-03 Thread Ken Egozi
The idea is to have all components registered beforehand, then let the ihandlerselector choose the right ones in resolve time based on some transient context Sent from my Red Lumia 920 From: Tomek Pluskiewicz Sent: 1/3/2013 5:40 AM To: Castle Project Users Subject: Re: Resolving components

RE: How can I register a singleton type with multiple services?

2012-12-21 Thread Ken Egozi
I believe that you'd want to look at type forwarding as the right way to handle this. See here http://stackoverflow.com/questions/197274/what-are-forwardedtypes-in-the-context-of-castle-windsor-component-registratio Happy holidays, Ken Sent from my Red Lumia 920

Re: Resolving doen not work...

2012-08-11 Thread Ken Egozi
lol took me a while to get back into context :) I'm glad that you've found this useful and that you have one less problem to deal with Ken Egozi. http://kenegozi.com/blog http://social.sears.com http://www.musicglue.com http://www.castleproject.org http://idcc.co.il http://www.idcc.co.il

Re: ASP.NET WebForms + Windsor + FluentNHibernate

2011-07-27 Thread Ken Egozi
(or whatever is the last thing on the lifecycle). Ken Egozi. http://kenegozi.com/blog http://social.sears.com http://www.musicglue.com http://www.castleproject.org http://www.idcc.co.il - הכנס הקהילתי הראשון למפתחי דוטנט - בואו בהמוניכם On Thu, Jul 28, 2011 at 6:36 AM, Leonardo Lima goo

Re: Need Tutorial, Castle Active records with MS Access

2011-07-18 Thread Ken Egozi
it is not a problem in your scenario. Not that Access is wrong or anything, but it has some quirks, and its SQL implementation is not per the standard so you might hit a few hard-to-solve gotchas another option is Firebird which also has an embedded mode, and fairly good .NET drivers. Ken Egozi

Re: MonoRail 3.0 - Help wanted!

2011-06-20 Thread Ken Egozi
be a shoot in the leg. Personally btw I'd try to come up with some free time to work on it. I lately have been doing ruby almost exclusively and f# would be a fresh air. Ken Egozi. http://www.kenegozi.com/blog http://www.delver.com http://www.musicglue.com http://www.castleproject.org http

Re: Resolving doen not work...

2011-06-15 Thread Ken Egozi
in your sample: _container.ResolveLogManager you should resolve by the service type (probably ILogManager) and not by implementation Ken Egozi. http://www.kenegozi.com/blog http://www.delver.com http://www.musicglue.com http://www.castleproject.org http://www.idcc.co.il - הכנס הקהילתי הראשון

Re: migration from .net framework 1.1 to 4

2011-05-13 Thread Ken Egozi
I think it has to do with the webforms view engine and the lack of love it got with the years. Am I correct? If that is the case then you'd need someone who is comfortable with mr codebase to walk this through. As this is a huge leap I would think that you'd have to work hard for it and maybe even

Re: How to intercept any property that has a specific attribute using dynamic proxy 2?

2010-08-10 Thread Ken Egozi
-project-users?hl=en. -- Ken Egozi. http://www.kenegozi.com/blog http://www.delver.com http://www.musicglue.com http://www.castleproject.org http://www.idcc.co.il - הכנס הקהילתי הראשון למפתחי דוטנט - בואו בהמוניכם -- You received this message because you are subscribed to the Google Groups

Re: How to intercept any property that has a specific attribute using dynamic proxy 2?

2010-08-10 Thread Ken Egozi
} invocation.Proceed(); } } Now how do I handle the setting and getting to the dict dictionary from the source object? 2010/8/10 Ken Egozi egoz...@gmail.com while intercepting you have access to the intercepted MethodInfo. from there to the attributes set

Re: AspView and resharper 5

2010-07-16 Thread Ken Egozi
from this group, send email to castle-project-users+unsubscr...@googlegroups.comcastle-project-users%2bunsubscr...@googlegroups.com . For more options, visit this group at http://groups.google.com/group/castle-project-users?hl=en. -- Ken Egozi. http://www.kenegozi.com/blog http

Re: AspView and resharper 5

2010-07-16 Thread Ken Egozi
Microsoft's new razor engine allows for arbitrary base classes for the views. So if jetbrains is serious about fully supporting ASP.NET Mvc that might work in our advantage :) On Jul 16, 6:34 pm, Ken Egozi egoz...@gmail.com wrote: there are two bugs in jerbrain's issue tracker

Re: Monorail v2.1 roadmap

2010-07-14 Thread Ken Egozi
at http://groups.google.com/group/castle-project-users?hl=en. -- Ken Egozi. http://www.kenegozi.com/blog http://www.delver.com http://www.musicglue.com http://www.castleproject.org http://www.idcc.co.il - הכנס הקהילתי הראשון למפתחי דוטנט - בואו בהמוניכם -- You received this message because

Re: Monorail v2.1 roadmap

2010-07-14 Thread Ken Egozi
:55 PM Subject: Re: Monorail v2.1 roadmap true. it's more of preference then preformance. On Jul 14, 7:53 am, Ken Egozi egoz...@gmail.com wrote: well it costs next to nothing, and is not JITted of not used, and the benefit of simpler distribution and maintenance outweigh

Re: Source Code Checkout

2010-06-09 Thread Ken Egozi
://groups.google.com/group/castle-project-users?hl=en. -- Ken Egozi. http://www.kenegozi.com/blog http://www.delver.com http://www.musicglue.com http://www.castleproject.org http://www.idcc.co.il - הכנס הקהילתי הראשון למפתחי דוטנט - בואו בהמוניכם -- You received this message because you are subscribed

Re: Job processing with monorail

2010-05-06 Thread Ken Egozi
...@googlegroups.comcastle-project-users%2Bun subscr...@googlegroups.com . For more options, visit this group at http://groups.google.com/group/castle-project-users?hl=en. -- Ken Egozi. http://www.kenegozi.com/bloghttp://www.delver.comhttp://www.musicglue...הכנס הקהילתי הראשון למפתחי

Re: Job processing with monorail

2010-05-06 Thread Ken Egozi
Ayende - you can't say That without stating what that means :) On Thu, May 6, 2010 at 9:57 AM, Ayende Rahien aye...@ayende.com wrote: That means that each request consumes at least 1MB of memory, and it introduce a lot of contention. On Thu, May 6, 2010 at 9:24 AM, Ken Egozi egoz

Re: Job processing with monorail

2010-05-04 Thread Ken Egozi
...@googlegroups.com . For more options, visit this group at http://groups.google.com/group/castle-project-users?hl=en. -- Ken Egozi. http://www.kenegozi.com/blog http://www.delver.com http://www.musicglue.com http://www.castleproject.org http://www.idcc.co.il - הכנס הקהילתי הראשון למפתחי דוטנט

Re: [ANN] New PMC member

2010-04-29 Thread Ken Egozi
this group, send email to castle-project-users+unsubscr...@googlegroups.comcastle-project-users%2bunsubscr...@googlegroups.com . For more options, visit this group at http://groups.google.com/group/castle-project-users?hl=en. -- Ken Egozi. http://www.kenegozi.com/blog http://www.delver.com http

Re: Regex Param binding

2010-04-09 Thread Ken Egozi
, 2010 at 9:37 AM, jake jak...@gmail.com wrote: Thanks for the help, and somewhat rude comments. I was unaware that the monorail param binding was only by name, I was using the formhelpers, but just used html to code the form. Thanks again, Jake On Apr 8, 10:12 pm, Ken Egozi egoz

Re: Regex Param binding

2010-04-08 Thread Ken Egozi
. To unsubscribe from this group, send email to castle-project-users+unsubscr...@googlegroups.comcastle-project-users%2bunsubscr...@googlegroups.com . For more options, visit this group at http://groups.google.com/group/castle-project-users?hl=en. -- Ken Egozi. http://www.kenegozi.com/blog

Re: how to redirect post parameters

2010-04-06 Thread Ken Egozi
-users+unsubscr...@googlegroups.comcastle-project-users%2bunsubscr...@googlegroups.com . For more options, visit this group at http://groups.google.com/group/castle-project-users?hl=en. -- Ken Egozi. http://www.kenegozi.com/blog http://www.delver.com http://www.musicglue.com http

Re: [ANN] New MonoRail project leader

2010-03-25 Thread Ken Egozi
...@jonorossi.comwrote: Hi all, Ken Egozi has decided to pass on the MonoRail leadership, as he is currently unable to contribute the time that MonoRail needs to stay up to date and relevant. The PMC has voted, so it is official that John Simons will take the lead. Many thanks to Ken for his work

Re: Inject SQL Command before execution (MySql Driver with hebrew support)

2010-03-17 Thread Ken Egozi
, visit this group at http://groups.google.com/group/castle-project-users?hl=en. -- Ken Egozi. http://www.kenegozi.com/blog http://www.delver.com http://www.musicglue.com http://www.castleproject.org http://www.idcc.co.il - הכנס הקהילתי הראשון למפתחי דוטנט - בואו בהמוניכם -- You received

Re: Asynchronous Job Processing and Notification when complete

2010-03-09 Thread Ken Egozi
-users@googlegroups.com . To unsubscribe from this group, send email to castle-project-users+unsubscr...@googlegroups.comcastle-project-users%2bunsubscr...@googlegroups.com . For more options, visit this group at http://groups.google.com/group/castle-project-users?hl=en. -- Ken Egozi

Re: Should MonoRail have IoC out of the box?

2010-02-24 Thread Ken Egozi
/castle-project-users?hl=en. -- Ken Egozi. http://www.kenegozi.com/blog http://www.delver.com http://www.musicglue.com http://www.castleproject.org http://www.idcc.co.il - הכנס הקהילתי הראשון למפתחי דוטנט - בואו בהמוניכם -- You received this message because you are subscribed to the Google

Re: Should MonoRail have IoC out of the box?

2010-02-24 Thread Ken Egozi
subscr...@googlegroups.com . For more options, visit this group at http://groups.google.com/group/castle-project-users?hl=en. -- Ken Egozi. http://www.kenegozi.com/bloghttp://www.delver.comhttp://www.musicglue... כנס הקהילתי הראשון למפתחי דוטנט - בואו בהמוניכם

Re: Monorail on IIS7, handling .html extensions

2010-01-26 Thread Ken Egozi
://groups.google.com/group/castle-project-users?hl=en. -- Ken Egozi. http://www.kenegozi.com/blog http://www.delver.com http://www.musicglue.com http://www.castleproject.org http://www.idcc.co.il - הכנס הקהילתי הראשון למפתחי דוטנט - בואו בהמוניכם -- You received this message because you are subscribed

Re: Monorail on IIS7, handling .html extensions

2010-01-25 Thread Ken Egozi
://www.castleproject.org/castle/download.html Cheers John On 26/01/2010, at 10:07, Ken Egozi egoz...@gmail.com wrote: order of handlers is important. The .html extension is mapped on machine level. so you should either clear all mappings, or clear only this one (but I do not remember its name by heart

Re: ActiveRecord - What's the easiest way to see all queries run?

2010-01-04 Thread Ken Egozi
...@googlegroups.comcastle-project-users%2bunsubscr...@googlegroups.com . For more options, visit this group at http://groups.google.com/group/castle-project-users?hl=en. -- Ken Egozi. http://www.kenegozi.com/blog http://www.delver.com http://www.musicglue.com http://www.castleproject.org http

Re: Castle Windsor not detecting dependencies

2009-12-29 Thread Ken Egozi
-users?hl=en. -- Ken Egozi. http://www.kenegozi.com/blog http://www.delver.com http://www.musicglue.com http://www.castleproject.org http://www.idcc.co.il - הכנס הקהילתי הראשון למפתחי דוטנט - בואו בהמוניכם -- You received this message because you are subscribed to the Google Groups Castle

Re: MR - Run monorail program made with class library project

2009-12-29 Thread Ken Egozi
to castle-project-users@googlegroups.com . To unsubscribe from this group, send email to castle-project-users+unsubscr...@googlegroups.comcastle-project-users%2bunsubscr...@googlegroups.com . For more options, visit this group at http://groups.google.com/group/castle-project-users?hl=en. -- Ken

Re: Monorail - Model for PostgreSQL and SQL Server

2009-12-16 Thread Ken Egozi
-project-users?hl=en. -- Ken Egozi. http://www.kenegozi.com/blog http://www.delver.com http://www.musicglue.com http://www.castleproject.org http://www.idcc.co.il - הכנס הקהילתי הראשון למפתחי דוטנט - בואו בהמוניכם -- You received this message because you are subscribed to the Google Groups

Re: Windsor container usage.

2009-11-26 Thread Ken Egozi
@googlegroups.com . To unsubscribe from this group, send email to castle-project-users+unsubscr...@googlegroups.comcastle-project-users%2bunsubscr...@googlegroups.com . For more options, visit this group at http://groups.google.com/group/castle-project-users?hl=en. -- Ken Egozi. http

Re: concrete routing

2009-11-12 Thread Ken Egozi
...@googlegroups.com . For more options, visit this group at http://groups.google.com/group/castle-project-users?hl=. -- Ken Egozi. http://www.kenegozi.com/blog http://www.delver.com http://www.musicglue.com http://www.castleproject.org http://www.idcc.co.il - הכנס הקהילתי הראשון למפתחי

Re: Monorail routing

2009-10-19 Thread Ken Egozi
t.sune...@gmail.com wrote: Ken Egozi thanks.ok i will try On Fri, Oct 16, 2009 at 1:13 PM, Ken Egozi egoz...@gmail.com wrote: 1. in r2 rule, the word admin is not a parameter, thus it should not be used with signs 2. you'd want the Route's action to be admin_

Re: Monorail routing

2009-10-16 Thread Ken Egozi
of preference. On Fri, Oct 16, 2009 at 8:49 AM, suneesh t.sune...@gmail.com wrote: Thanks for your reply Ken Egozi, Here is my code look like, public class PhotosController : SmartDispatcherController { [Layout(user)] public void List

Re: Castle Windsor Logging Facility - named loggers

2009-10-16 Thread Ken Egozi
it working with log4net. However, I can't figure out how to specify which named logger the messages should go to - how do I do this? (At the moment they seem to just go to root) Thanks, S -- Ken Egozi. http://www.kenegozi.com/blog http://www.delver.com http://www.musicglue.com http

Re: Castle Windsor Logging Facility - named loggers

2009-10-16 Thread Ken Egozi
just have: public ILogger Logger which windsor injects into. This is working fine, but as far as I can see I have no control over which *named* logger this is using. Thanks, S On Oct 16, 11:20 am, Ken Egozi egoz...@gmail.com wrote: do not contaier.ResolveILogger().the whole idea

Re: Monorail routing

2009-10-15 Thread Ken Egozi
, RoutingModuleEx.Engine.Add(adminhome, new PatternRoute(/admin/home/index.aspx) .DefaultForAction().Is(view) ); but it go to area 'admin' then controller. Is there any way to do this without using area. Thanks -- Ken Egozi. http://www.kenegozi.com/blog http://www.delver.com

Re: get the appSettings value: myValue in the web.config:

2009-10-15 Thread Ken Egozi
] but don't know how in .vm. Thanks. -- Ken Egozi. http://www.kenegozi.com/blog http://www.delver.com http://www.musicglue.com http://www.castleproject.org http://www.idcc.co.il - הכנס הקהילתי הראשון למפתחי דוטנט - בואו בהמוניכם --~--~-~--~~~---~--~~ You

Re: MonoRail default URL without Routing

2009-10-15 Thread Ken Egozi
:( greetings Daniel -- Ken Egozi. http://www.kenegozi.com/blog http://www.delver.com http://www.musicglue.com http://www.castleproject.org http://www.idcc.co.il - הכנס הקהילתי הראשון למפתחי דוטנט - בואו בהמוניכם --~--~-~--~~~---~--~~ You received this message

Re: MonoRail default URL without Routing

2009-10-15 Thread Ken Egozi
, Daniel Hölbling hoelblin...@gmail.comwrote: Thanks ken! On Thu, Oct 15, 2009 at 2:58 PM, Ken Egozi egoz...@gmail.com wrote: http://www.kenegozi.com/blog/2009/02/10/monorail-routing-and-the-homepage-routing-rule.aspx http://www.kenegozi.com/blog/2009/02/10/monorail-routing

Re: MonoRail default URL without Routing

2009-10-15 Thread Ken Egozi
(~/Home/Index.aspx) End Sub /script /head body /body /html -- (no code behind) Ken Egozi wrote: actual 302 redirect? or server side rewriting? On Thu, Oct 15, 2009 at 3:30 PM, Symon Rottem s.rot...@gmail.com wrote: We normally just put a normal default.aspx file into the root

Re: Routing

2009-10-13 Thread Ken Egozi
: Recently I notice there is no improvement over the MonoRail built-in routing engine. Is it possible to use ASP.NET MVC routing engine with MonoRail ? -- Truth, James -- Truth, James -- Ken Egozi. http://www.kenegozi.com/blog http://www.delver.com http

Re: JSONReturnBinder Location

2009-10-12 Thread Ken Egozi
this in the Monorail framework anywhere. I have included Castle.Monorail.JSONSupport and I can find the attribute JSONBinder but not the return Binder. I am developing using VS2008. Any help is appreciated. Many thanks, Ehrys Marakai -- Ken Egozi. http://www.kenegozi.com/blog http

Re: JSONReturnBinder Location

2009-10-12 Thread Ken Egozi
Marakai -- Ken Egozi. http://www.kenegozi.com/bloghttp://www.delver.comhttp://www.musicglue.comhttp://www.castleproject.orghttp://www.idcc.co.il-הכנס הקהילתי הראשון למפתחי דוטנט - בואו בהמוניכם -- Ken Egozi. http://www.kenegozi.com/blog http://www.delver.com http://www.musicglue.com http

Re: Newbie: Singleton component gets instantiated multiple times

2009-09-25 Thread Ken Egozi
for your help! -- Ken Egozi. http://www.kenegozi.com/blog http://www.delver.com http://www.musicglue.com http://www.castleproject.org http://www.idcc.co.il - הכנס הקהילתי הראשון למפתחי דוטנט - בואו בהמוניכם --~--~-~--~~~---~--~~ You received this message

Re: svn version of castle release candidate 2

2009-09-21 Thread Ken Egozi
: 778-232-1962 e: lukehut...@scanitinternational.com w: www.scanitinternational.com -- Ken Egozi. http://www.kenegozi.com/blog http://www.delver.com http://www.musicglue.com http://www.castleproject.org http://www.idcc.co.il - הכנס הקהילתי הראשון למפתחי דוטנט - בואו בהמוניכם

Re: IoC PreRequest Lifestyle testing

2009-09-17 Thread Ken Egozi
this to be working? Thanks for any help anyone can give me MH -- Ken Egozi. http://www.kenegozi.com/blog http://www.delver.com http://www.musicglue.com http://www.castleproject.org http://www.idcc.co.il - הכנס הקהילתי הראשון למפתחי דוטנט - בואו בהמוניכם

Re: Older versions

2009-09-14 Thread Ken Egozi
Versions from the download page (http:// www.castleproject.org/castle/download.html) but seem to get a page not found. Any help would be appreciated. -- Ken Egozi. http://www.kenegozi.com/blog http://www.delver.com http://www.musicglue.com http://www.castleproject.org http://www.idcc.co.il

Re: MonoRail Wizard best practices?

2009-09-11 Thread Ken Egozi
too complicated? greetings Daniel -- Ken Egozi. http://www.kenegozi.com/blog http://www.delver.com http://www.musicglue.com http://www.castleproject.org http://www.idcc.co.il - הכנס הקהילתי הראשון למפתחי דוטנט - בואו בהמוניכם --~--~-~--~~~---~--~~ You

Re: debug viewEngine

2009-09-09 Thread Ken Egozi
: Hi Guys, Can i debug a compiled view? like in my case i used aspView... and he generate for me a .cs files like a servelets. so there is way to debug these files?? thanks Biel -- Ken Egozi. http://www.kenegozi.com/blog http://www.delver.com http://www.musicglue.com http

Re: PerWebRequest is supposed to release components when request ends?

2009-09-08 Thread Ken Egozi
component burden which afaik should be fixed now. Is there anything specific I should be looking for to investigate this issue? Thanks -- Ken Egozi. http://www.kenegozi.com/blog http://www.delver.com http://www.musicglue.com http://www.castleproject.org http://www.idcc.co.il - הכנס הקהילתי הראשון

Re: Monorail JSONReturnBinder and Complex Objects

2009-09-03 Thread Ken Egozi
{...} //Add to my return array } -- Ken Egozi. http://www.kenegozi.com/blog http://www.delver.com http://www.musicglue.com http://www.castleproject.org http://www.idcc.co.il - הכנס הקהילתי הראשון למפתחי דוטנט - בואו בהמוניכם --~--~-~--~~~---~--~~ You

Re: Static Content in the Monorail site root

2009-09-02 Thread Ken Egozi
... something like http://mysite.com/about.html. Is there an easy way to do this? Or do I have to create a StaticController for these static pages with actions for each one and use routing to turn /about.html into StaticController's about action? -- Truth, James -- Ken

Re: ? render_component('/users/view/1/2/3')

2009-08-14 Thread Ken Egozi
I do not understand the question at all. RenderView decides upon which View will be rendered at the end of the current controller action processing. It has nothing to do with Controller Model Cycles (a phrase I'm not familiar with anyway). if you want another action to occur, Redirect the

Re: paged result set, with filtered results

2009-08-06 Thread Ken Egozi
because is much clean. and i can use something already in Castle to achieve it. Any other suggestions? Thank you, Dan -- Ken Egozi. http://www.kenegozi.com/blog http://www.delver.com http://www.musicglue.com http://www.castleproject.org http://www.gotfriends.co.il

Re: paged result set, with filtered results

2009-08-06 Thread Ken Egozi
bdani...@gmail.com wrote: One reason for which i don't like query string, for this instance, is that there are 11 fields usable in filter and the query string can get quite long. But i suppose i can use this, in lack of other choices. On Aug 6, 4:50 pm, Ken Egozi egoz...@gmail.com wrote

Re: How do you maintain your local copy of trunk?

2009-08-06 Thread Ken Egozi
way. What other patches do you need committed? And I myself would like MR-ISSUE-457 committed :) Cheers John On Aug 6, 6:31 pm, Ken Egozi egoz...@gmail.com wrote: one of the easiest options is to use the git based github mirror. http://github.com/leemhenson/castle/tree/master http

Re: Monorail: Per-Action Filters

2009-08-04 Thread Ken Egozi
to any number of overloads on a SmartDispatcherController). The filter is run after the specific overload has been selected, so is there a way to get to it? Anything from MethodInfo to ActionMetaDescriptor to IExectuableAction would do. -- Ken Egozi. http://www.kenegozi.com/blog http

Re: Monorail Instalation Docu.. For Serveral Servers

2009-07-25 Thread Ken Egozi
find the steps?? Slts -- Ken Egozi. http://www.kenegozi.com/blog http://www.delver.com http://www.musicglue.com http://www.castleproject.org http://www.gotfriends.co.il --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

Re: Adding Restrict to Verbs to PatternRoute

2009-07-02 Thread Ken Egozi
will respond to posts. John On Jul 1, 10:48 pm, Ken Egozi egoz...@gmail.com wrote: same url points to two different methods. = two routes. On Wed, Jul 1, 2009 at 3:45 PM, Jonathon Rossi j...@jonorossi.com wrote: I wouldn't have thought that the http method had anything to do

Re: use the $Int32

2009-06-30 Thread Ken Egozi
. Thanks for the heads up. On Jun 30, 3:18 pm, Ken Egozi egoz...@gmail.com wrote: I'm no expert with NV syntax, but would ... $str = 123 ... p$Int32.Parse($str)/p work for you? On Tue, Jun 30, 2009 at 3:14 PM, bdaniel7 bdani...@gmail.com wrote: hm... the messages lead me

Re: MonoRail ViewComponent not rendering Url.Link correctly

2009-06-23 Thread Ken Egozi
are rendered with the correct text/label i.e. Users, Reports then Setting. However all the links refer to the Users controller and the index action. What am I missing? Regards, Jarrod -- Ken Egozi. http://www.kenegozi.com/blog http://www.delver.com http://www.musicglue.com http

Re: Using Rescue Attribute

2009-06-23 Thread Ken Egozi
; } } but instead I am getting just ye olde yellow screen with the thrown exception. Nothing indicates that it would fail on getting the rescue to run... What am I doing wrong? -- Jan -- Ken Egozi. http://www.kenegozi.com/blog http://www.delver.com http

Re: Compiling Windsor Facilities

2009-06-22 Thread Ken Egozi
-- Ken Egozi. http://www.kenegozi.com/blog http://www.delver.com http://www.musicglue.com http://www.castleproject.org http://www.gotfriends.co.il --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Castle Project Users

Re: Monorail project template for VS 2008

2009-06-15 Thread Ken Egozi
a. what is wrong with that one?b. if you need to tweak it - then simply do (and contribute your improvement back to the community) On Mon, Jun 15, 2009 at 4:10 PM, KCube lal.kan...@gmail.com wrote: Hi Ken Egozi, Can you please this link.. to get an idea of what am asking Project Template

Re: SmartDispatcherController + NHibernate session

2009-06-13 Thread Ken Egozi
afterwards to avoid the Object with same Id already in session error: product.Category = s.LoadCategory(product.Category.Id) Is there a cleaner way to do this or is it just the way the Dispatcher works? Thanks Lucio -- Ken Egozi. http://www.kenegozi.com/blog http://www.delver.com http

Re: Monorail project template for VS 2008

2009-06-12 Thread Ken Egozi
I definitely am not sure what you are asking for. On Fri, Jun 12, 2009 at 12:23 PM, Kcube kanesh...@gmail.com wrote: Monorail project template for VS 2008 I have seen two there, when Google. But am not impresses with those. Can anyone guide me please? -- Ken Egozi. http

Re: Monorail Release - Status update and call for help

2009-06-11 Thread Ken Egozi
are -www.mixingbowl.com,www.honeymag.comand parts ofwww.momslikeme.comfrom my companywww.ripple6.com). On Jun 9, 5:23 pm, Ken Egozi egoz...@gmail.com wrote: I want to release MonoRail as soon as I can. In order to do so I will need some help from the community. Let me list the things currently missing

Re: Monorail Release - Status update and call for help

2009-06-11 Thread Ken Egozi
://devlicio.us/blogs/tuna_toksoz http://tunatoksoz.com http://twitter.com/tehlike On Thu, Jun 11, 2009 at 3:42 PM, Ken Egozi egoz...@gmail.com wrote: Guys, I get the drift :) On Thu, Jun 11, 2009 at 3:15 AM, Mike Nichols nichols.mik...@gmail.comwrote: +1 on deferring wizard work

Re: Monorail Release - Status update and call for help

2009-06-10 Thread Ken Egozi
(JQueryGenerator)) .AddExtension(typeof(CommonJSExtension)) .AddExtension(typeof(DFATJSExtension)) .BrowserValidatorIs(typeof(JQueryValidator)) .SetAsDefault(); } From: Ken Egozi egoz

Monorail Release - Status update and call for help

2009-06-09 Thread Ken Egozi
with the above will be greatly appreciated. thx, Ken. -- Ken Egozi. http://www.kenegozi.com/blog http://www.delver.com http://www.musicglue.com http://www.castleproject.org http://www.gotfriends.co.il --~--~-~--~~~---~--~~ You received this message because

Re: AspView Debug

2009-05-27 Thread Ken Egozi
the breakpoint on VS 2008 and dont stop execution.. please someone HALP! can be you Ken! see guys -- Ken Egozi. http://www.kenegozi.com/blog http://www.delver.com http://www.musicglue.com http://www.castleproject.org http://www.gotfriends.co.il

Re: DP2 found more than one target method

2009-05-27 Thread Ken Egozi
problem is that with this Save method in LocationService i'm getting the exception Found more than one method on target .LocationService matching Save How can i specify which methods i want to proxify? Thanks TrentCioran P.S. sorry for my english =P -- Ken Egozi. http

Re: Missing antlr3.runtime exception

2009-05-25 Thread Ken Egozi
-- Ken Egozi. http://www.kenegozi.com/blog http://www.delver.com http://www.musicglue.com http://www.castleproject.org http://www.gotfriends.co.il --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Castle Project Users group

Re: Newbie Question: Can't get Monorail-trunk to execute MonoRailHttpHandlerFactory

2009-05-25 Thread Ken Egozi
deleted the whole thing twice just to start over fresh, but I couldn't get it working. Only thing I got working was referencing the old RC3 assemblies, but I want to run from the trunk. greetings Daniel -- Ken Egozi. http://www.kenegozi.com/blog http://www.delver.com http

Re: robots.txt and sitemaps with routing

2009-05-20 Thread Ken Egozi
to verify for example domain-ownership with analytics or webmastertools or such, how do you handle that? -- Ken Egozi. http://www.kenegozi.com/blog http://www.delver.com http://www.musicglue.com http://www.castleproject.org http://www.gotfriends.co.il

Re: robots.txt and sitemaps with routing

2009-05-20 Thread Ken Egozi
controller that servers robots.txt and sitemaps dynamically, but when someone needs to verify for example domain-ownership with analytics or webmastertools or such, how do you handle that? -- Ken Egozi. http://www.kenegozi.com/blog http://www.delver.com http

Re: How get session variable inside layout.

2009-05-19 Thread Ken Egozi
/Home.castleProfile/a/li Many Thanks, KCube On May 18, 6:13 pm, Ken Egozi egoz...@gmail.com wrote: try to call base.Initialise() at the beginning of your override. On Mon, May 18, 2009 at 3:38 PM, Roelof Blom roelof.b...@gmail.com wrote: MonoRail uses the ASP.NET session, so make sure

Re: How get session variable inside layout.

2009-05-19 Thread Ken Egozi
; } See the output : ?this.Context.Session null ?this.Context.Session.GetType() '((object) (((Castle.MonoRail.Framework.Adapters.DefaultRailsEngineContext) ((Castle.MonoRail.Framework.Controller)(this)).Context).Session))' is null Many Thanks, Kcube On May 19, 11:20 am, Ken Egozi egoz

Re: How get session variable inside layout.

2009-05-19 Thread Ken Egozi
...@gmail.com wrote: Sorry : the MR version is 1.0.3 .. should i upgrade? On May 19, 11:53 am, Ken Egozi egoz...@gmail.com wrote: Asking again - which version of MR are you using? I guess it's a wee bit old. Controller.Initialise() is public nowadays. and this snippet on my pc: public

Re: How get session variable inside layout.

2009-05-19 Thread Ken Egozi
...@gmail.com wrote: its 1.0.3.4333. Its from RC3 download. I wil try to build from truck and get back soon. Hope this was the real issue. Thanks very much Many Thanks Kcube On May 19, 12:00 pm, Ken Egozi egoz...@gmail.com wrote: 1.0.3.X what is X? where did you get it from

Re: robots.txt and sitemaps with routing

2009-05-19 Thread Ken Egozi
or webmastertools or such, how do you handle that? -- Ken Egozi. http://www.kenegozi.com/blog http://www.delver.com http://www.musicglue.com http://www.castleproject.org http://www.gotfriends.co.il --~--~-~--~~~---~--~~ You received this message because you

Re: How get session variable inside layout.

2009-05-18 Thread Ken Egozi
- - Show quoted text -- Hide quoted text - - Show quoted text -- Hide quoted text - - Show quoted text - -- Ken Egozi. http://www.kenegozi.com/blog http://www.delver.com http://www.musicglue.com http://www.castleproject.org http://www.gotfriends.co.il

Re: How to inject HttpBaseContext

2009-05-17 Thread Ken Egozi
a HttpBaseContext in this case? I'm using ASP.NET MVC so I prefer HttpBaseContext so I can mock it in unit test. Thanks, -- Ken Egozi. http://www.kenegozi.com/blog http://www.delver.com http://www.musicglue.com http://www.castleproject.org http://www.gotfriends.co.il

Re: Suggest a way to obtain Windsor Container from model

2009-05-12 Thread Ken Egozi
ModelInjection.SetContainer (from Application_BeginRequest in Web or anywhere in Win). Is this a good approach? Some suggestions please? Thanks, Dmitriy. -- Ken Egozi. http://www.kenegozi.com/blog http://www.delver.com http://www.musicglue.com http://www.castleproject.org http

Re: MonoRail adoption - dilemma

2009-05-07 Thread Ken Egozi
sort of template or so? (I still can't find that) TIA -- ?php echo 'Just another PHP saint'; ? Email: rrjanbiah-at-Y!comBlog: http://rajeshanbiah.blogspot.com/ -- Ken Egozi. http://www.kenegozi.com/blog http://www.delver.com http://www.musicglue.com http://www.castleproject.org

Re: MonoRail adoption - dilemma

2009-05-07 Thread Ken Egozi
, up-to-date, easy to configure and easy to maintain generator. I'd say that these days, a t4 based one could be nice. On Thu, May 7, 2009 at 3:03 PM, R. Rajesh Jeba Anbiah ng4rrjanb...@rediffmail.com wrote: On May 7, 4:37 pm, Ken Egozi egoz...@gmail.com wrote: 1. It's being used

Re: aspView Configuration

2009-05-05 Thread Ken Egozi
-REST (WCF), from FE.VIEW , but because there are separeted WebServers (in the moment becouse the port), in browser i have a error of acess deny. so, a think the solution is. Start a PR.WS.REST and config him to load Views from other assembly. this is possible?? -- Ken Egozi

Re: aspView Configuration

2009-05-05 Thread Ken Egozi
, makes the aspView search the rootPath into reference assembly On Tue, May 5, 2009 at 10:54 AM, Ken Egozi egoz...@gmail.com wrote: That's true. it would try to load views in the current app. if you want views from another app, you just switch the CompiledViews.dll from the other app, put them

Re: Performance Issue

2009-04-29 Thread Ken Egozi
NHibernate in action (i've got a June 2008 version). Chapter 4.4.1 Retrieving objects by identifier explains everything in enough detail On 29 Bal, 13:19, Ken Egozi egoz...@gmail.com wrote: use the bool throwOnNotFound overload of FindByPrimaryKey. it will use NH's Load method, which does

Re: Dynamically register all implementation of a service programmatically

2009-04-27 Thread Ken Egozi
in different assemblies? This would be without using the config file to enter them in manually. thx -- Ken Egozi. http://www.kenegozi.com/blog http://www.delver.com http://www.musicglue.com http://www.castleproject.org http://www.gotfriends.co.il

Re: Windsor, FluentNH - Web

2009-04-25 Thread Ken Egozi
wa...@codingvista.comwrote: Can anyone point me to a good tutorial/example of using Windsor + FluentNH + in a web environment? -- Cheers, w:// -- Ken Egozi. http://www.kenegozi.com/blog http://www.delver.com http://www.musicglue.com http://www.castleproject.org http

  1   2   >