Re: new exception

2010-04-08 Thread Krzysztof Koźmic
I'm gonna go ahead and put a lock over GetComissionConcerns GetDecommissionConcerns anyway, although more insight into the situation could help with getting better to know why that happens. Do you have some http handlers that get hit in parallel with your application starting (your container

Re: RenderSection broken?

2010-04-08 Thread 2
what does CancelView(); do? On 7 Kwi, 22:17, Jan Limpens jan.limp...@gmail.com wrote: as soon as I put this public override void Render()         {             using (var w = new StringWriter())             {                 RenderView(@\components\ArticleTileComponent\default, w);      

Re: RenderSection broken?

2010-04-08 Thread John Simons
It stops the view from being rendered. In this case Jan wants to control the text to render. But it may have to do with it! Jan, Can you try to call CancelView after your logic. Also, do u mind trying it in another VE eg NVelocity, I'm just trying to isolate the problem. Cheers John On Apr 8,

Re: RenderSection broken?

2010-04-08 Thread John Simons
Also, do we know if Brail support nesting of Components? Cheers John On Apr 8, 5:05 pm, John Simons johnsimons...@yahoo.com.au wrote: It stops the view from being rendered. In this case Jan wants to control the text to render. But it may have to do with it! Jan, Can you try to call

Re: NHibernate Facility/Monorail/Remoting

2010-04-08 Thread John Simons
You may be lucky and find the answer by googling: http://www.google.com.au/search?q=nhibernate+session+remoting On Apr 8, 8:07 am, Brian Chan bch...@gmail.com wrote: So is there any way to get one session per request when using remoting? On Wednesday, April 7, 2010, Henry Conceição

Re: IUserType and ActiveRecord -

2010-04-08 Thread V
On Apr 7, 3:34 pm, Raj rajani.gayat...@gmail.com wrote: Never mind...Figured it out. Care to share with others? V -- You received this message because you are subscribed to the Google Groups Castle Project Users group. To post to this group, send email to

Empty strings in Oracle

2010-04-08 Thread Sybaris
Hi everybody, I have a couple of questions regarding Castle Active Record. 1) I have taken over a project that has been working with SQL Server as the DB (and uses CAR). It now has to be ported to Oracle and that's where the problems start. Apparently Oracle converts empty strings to NULL values

Re: RenderSection broken?

2010-04-08 Thread Jan Limpens
actually, i do not need to call cancelview() at all. probably it was some leftover, but leaving it out does not change the issue. Brail does support nested controls, I am just somewhat usure to what extent. By reading the BrailBase.cs (if I rememeber correctly...), I got the impression that maybe

Re: RenderSection broken?

2010-04-08 Thread Patrick Steele
Not really: http://groups.google.com/group/castle-project-devel/browse_thread/thread/1e1fddaf6746061d/222624a29705d70a --- Patrick Steele http://weblogs.asp.net/psteele On Thu, Apr 8, 2010 at 9:52 AM, Jan Limpens jan.limp...@gmail.com wrote: I'll have a try with Velocity a bit later. can I

Regex Param binding

2010-04-08 Thread jake
I'm having an issue with my webpage using javascript and monorail param binding. I have a page the uses jquery UI to display tabs, each tab has a form that submits to the same action. The issue is that by using the same action I am forced to create multiple elements with the same ID. This is

Re: Empty strings in Oracle

2010-04-08 Thread Sybaris
Addendum: After playing around a while I think that it would be perfect to have a chance to intercept the saving of objects - or to put it differently: Is there a way to tell CAR something like: Whenever you save a string do a conversion on it? Maybe important: I'm not deriving my classes from

Re: Empty strings in Oracle

2010-04-08 Thread Krzysztof Koźmic
I guess NHibernate interceptors let you do that 2010/4/8 Sybaris g...@sybaris.de: Addendum: After playing around a while I think that it would be perfect to have a chance to intercept the saving of objects - or to put it differently: Is there a way to tell CAR something like: Whenever you

Re: Empty strings in Oracle

2010-04-08 Thread Ayende Rahien
Or event listeners 2010/4/9 Krzysztof Koźmic krzysztof.koz...@gmail.com I guess NHibernate interceptors let you do that 2010/4/8 Sybaris g...@sybaris.de: Addendum: After playing around a while I think that it would be perfect to have a chance to intercept the saving of objects - or to

Re: Regex Param binding

2010-04-08 Thread John Simons
Hi Jake, I think you answered your own question, don't use the same action have an action per tab. Eg. public void ActionForTabs([DataBind(Tab1Data, Validate = true)]Tab1Data data){} public void ActionForTabs([DataBind(Tab2Data, Validate = true)]Tab2Data data){} public void

Re: RenderSection broken?

2010-04-08 Thread John Simons
Maybe Ayende can clarify this? On Apr 8, 11:52 pm, Jan Limpens jan.limp...@gmail.com wrote: actually, i do not need to call cancelview() at all. probably it was some leftover, but leaving it out does not change the issue. Brail does support nested controls, I am just somewhat usure to what

Re: RenderSection broken?

2010-04-08 Thread Ayende Rahien
Yes, brail does. On Thu, Apr 8, 2010 at 10:08 AM, John Simons johnsimons...@yahoo.com.auwrote: Also, do we know if Brail support nesting of Components? Cheers John On Apr 8, 5:05 pm, John Simons johnsimons...@yahoo.com.au wrote: It stops the view from being rendered. In this case Jan

Re: Empty strings in Oracle

2010-04-08 Thread Mauricio Scheffer
Or a IUserType. Here's one you can use as base: http://www.mail-archive.com/nhus...@googlegroups.com/msg10885.html Or try porting the old EmptyStringType to NH 2.1.x:

Re: Regex Param binding

2010-04-08 Thread Ken Egozi
Jake - notice the difference between id and name. what gets posted from the Form to the server are values *by name*. on the other hand, the element identifier in the DOM is id, which must be singular on a web page. so have your three forms, each with the same names for the fields, but with

connection string encryption

2010-04-08 Thread raghavsri
Hi , Currently I am storing the connection string in the app.config file of the component , after deploying it user can modify the connection string..but i want this sensitive information not be modified by the end user.. how can encrypt and deploy this?.. is there any support from castle