Re: Active Record [Oracle]

2021-03-27 Thread Jonathon Rossi
That's an NHibernate exception, you'd be best looking at the NHibernate docs on how to use Oracle as those are just passed to NHibernate. However, more importantly if you aren't aware (since you are using the Getting Started guide), Castle ActiveRecord has been a deprecated/unmaintained project

Re: Can't find neither UseLog4Net nor FromThisAssembly using Castle.Core

2018-07-01 Thread Jonathon Rossi
LoggingFacility.UseLog4Net isn't available in Windsor with .NET Standard builds, Castle Core only just added support for log4net and NLog for .NET Standard builds in Castle Core 4.3.0 (2018-06-07) because those 2 libraries now have .NET Standard builds. You'll note though that we deprecated

Re: Help please - CommunicationException issues with WCF...

2018-05-15 Thread Jonathon Rossi
Divyesh, just to set your expectations, this thread is 9 years old, you aren't likely to get a response. On Tue, May 15, 2018 at 10:28 AM Divyesh Chapaneri wrote: > Hi, > > Below link is broken. Can you please upload that demo again ? > > I am trying to implement

Re: Component creation as defined factory

2017-12-07 Thread Jonathon Rossi
> So be careful if you have dependencies like me. Windsor is not giving any detailed info about registered but not initialized components. It seems only collecting resolution conflicts and gaps. Any initialization or chain based mistakes will be welcomed in a dark room :) If you can could you put

Re: Will Windor move on to Core 4.x?

2017-06-14 Thread Jonathon Rossi
Yes, very soon. Please follow this issue as we prepare for the next Windsor release: https://github.com/castleproject/Windsor/issues/227 Jono On Wed, Jun 14, 2017 at 7:47 PM Xi Shen wrote: > Hi, > > Castle Core has been updated 4.0, but the latest Windsor is still >

Re: Memory leak inside Castle

2017-02-21 Thread Jonathon Rossi
xyWithTarget always create new proxy. > Who dispose this objects? > > 2.)How do you know I have to cast from IControllerProxy to > IProxyTargetAccessor? > > > On Tuesday, 21 February 2017 15:54:35 UTC+1, Jonathon Rossi wrote: > > AH, that'll be it, you aren't call Release()

Re: Memory leak inside Castle

2017-02-21 Thread Jonathon Rossi
leaseController(IController controller){* > *container.Kernel.ReleaseComponent(controller);* > *}* > > Is it possible to manually dispose the part of proxy and call release on > controller base(_target) or something similar? > > > > On Tuesday, 21 Februa

Re: Memory leak inside Castle

2017-02-21 Thread Jonathon Rossi
ll look for interceptors you have send. > > thanks > > On Tuesday, 21 February 2017 14:12:33 UTC+1, Jonathon Rossi wrote: > > I don't have the time to really look through all the screenshots to try to > guess what is going on, but I was surprised to see so many instances of th

Re: Memory leak inside Castle

2017-02-21 Thread Jonathon Rossi
'm not > that familiar with Castle, I have to read documentation. > I could use Windsor's functionality to set up an interceptor when resolve > a controller. Do you have some example? > > > On Tuesday, 21 February 2017 05:57:14 UTC+1, Jonathon Rossi wrote: > > You'll get a di

Re: Memory leak inside Castle

2017-02-20 Thread Jonathon Rossi
there are different controllers? > > > On Monday, 20 February 2017 16:13:25 UTC+1, Jonathon Rossi wrote: > > Apologies for not coming back to your StackOverflow question ( > http://stackoverflow.com/questions/42272082/castle-windsor-proxy-generate-memory-leak) > after you added

Re: Memory leak inside Castle

2017-02-20 Thread Jonathon Rossi
Apologies for not coming back to your StackOverflow question ( http://stackoverflow.com/questions/42272082/castle-windsor-proxy-generate-memory-leak) after you added the code for "AddControllerLoggingFunctionality". Can you further explain what you mean by a memory leak, i.e. what exactly is

Re: Book with examples

2017-02-14 Thread Jonathon Rossi
There are no Windsor books, however have you had a look through our docs, they contain heaps of examples: https://github.com/castleproject/Windsor/blob/master/docs/README.md Jono On Tue, Feb 14, 2017 at 7:21 PM erazem wrote: > Hi, > > I would like to start with Castle

Re: Castle Core 4.0.0 and Windsor 3.4.0

2017-02-02 Thread Jonathon Rossi
ET Core. > > > Thanks, > Cathal. > > > On Tuesday, 24 January 2017 17:41:58 UTC, Jonathon Rossi wrote: > > Hi everyone, > > These lists have been quiet for a while, however I thought I'd let > everyone know of two releases over the last 2 days, details in the blog >

Castle Core 4.0.0 and Windsor 3.4.0

2017-01-24 Thread Jonathon Rossi
Hi everyone, These lists have been quiet for a while, however I thought I'd let everyone know of two releases over the last 2 days, details in the blog posts: http://www.castleproject.org/blog/2017/01/23/windsor-3.4.0-release/ http://www.castleproject.org/blog/2017/01/25/core-4.0.0-release/

Re: Nuget packages for .net 4.0 seem to require 4.5

2016-11-08 Thread Jonathon Rossi
mething in our build configuration might be off invalid. > > Miles, while your packages.config points to net40 version of the packages, > perhaps your .csproj points to .net 4.5 version? > Please check the output of your application, whether the version of Castle > you're getting there

Re: Dynamic proxy class names

2016-09-21 Thread Jonathon Rossi
Hi Jeffrey, Yes, this would be a problem even on the same machine if the process restarts (e.g. app pool recycle). How are you serializing these objects, I don't think it would be a good idea for your web app to expose any details about its actual implementation like type names. Jono On Mon,

Re: Getting COMException "Could not read key from registry (Exception from HRESULT: 0x80040150 (REGDB_E_READREGDB))" when instantiating WCF service

2016-09-19 Thread Jonathon Rossi
I've posted an answer on SO, hope that helps. On Mon, Sep 19, 2016 at 9:12 PM eirik årdal wrote: > Hi > > I just posted this on StackOverflow > > as

Re: Need 64 bit version of Castle.Core.dll

2016-06-30 Thread Jonathon Rossi
AFAIK Castle.Core.dll has always shipped as Any CPU, not specifically 32-bit or 64-bit: https://github.com/castleproject/Core/blob/5d7e3fce57fd6c76227996e942313be2498063a2/src/Castle.Core/Castle.Core.csproj#L169 Are you encountering an error? On Thu, Jun 30, 2016 at 7:46 PM Bharath

Re: Conditional registration of sub resolver

2016-03-12 Thread Jonathon Rossi
There isn't anything built-in as IDependencyResolver doesn't expose the list. There shouldn't be any behaviour differences with more than one instance of ArrayResolver registered because the first one will return true to CanResolve. Were you getting an error, some problem or just didn't want

Re: Any plans to convert Castle.Core to a PCL? (.NetPortable,Version=4.5,Profile7)

2015-09-29 Thread Jonathon Rossi
Assuming Profile7 is .NET Framework 4.5 and Windows 8, it will never work because Win8 Metro apps are missing Reflection.Emit (among others) so DynamicProxy can't do its thing. There are no plans to support any PCL profile because DP just isn't a simple library, it relies heavily on the runtime,

Re: Castle.Core mono bug affects GenericUtil.cs:AdjustGenericConstraints() fixed in a simple way.

2015-07-06 Thread Jonathon Rossi
6, 2015 at 5:35 PM, Ralph Alexander Bariz ralph.ba...@gmail.com wrote: ah nice. will do so. Think you'll get notified when I create that pull request. Ralph Jonathon Rossi j...@jonorossi.com schrieb am Mo., 6. Juli 2015 um 09:30 Uhr: Oh, those emails with patches definitely went

Re: Castle.Core mono bug affects GenericUtil.cs:AdjustGenericConstraints() fixed in a simple way.

2015-07-06 Thread Jonathon Rossi
but I've got no idea about. Need to read a bit. I'm pretty new to github ^^ BR Ralph Jonathon Rossi j...@jonorossi.com schrieb am Mo., 6. Juli 2015 09:20: Don't worry you didn't create multiple threads in the mailing list, that just showed multiple posts. I think thread (i.e. mono bug

Re: Castle.Core mono bug affects GenericUtil.cs:AdjustGenericConstraints() fixed in a simple way.

2015-07-06 Thread Jonathon Rossi
) Castle.Core.userprefs TestResult.xml lib/nunit.framework.xml tests.sh Jonathon Rossi j...@jonorossi.com schrieb am Do., 25. Juni 2015 um 15:07 Uhr: Great, thanks. On Thu, Jun 25, 2015 at 5:17 PM, Ralph Alexander Bariz ralph.ba...@gmail.com wrote: Good Morning, From my side

Re: Castle.Core mono bug affects GenericUtil.cs:AdjustGenericConstraints() fixed in a simple way.

2015-06-24 Thread Jonathon Rossi
nothing to do with Castle.Core and also shows up only in mono-snapshot (4.3.0). BR Ralph Am Mittwoch, 24. Juni 2015 06:20:20 UTC+2 schrieb Jonathon Rossi: I just went to the Advanced Search and put your email address into the second option for Search By People. https

Re: Castle.Core mono bug affects GenericUtil.cs:AdjustGenericConstraints() fixed in a simple way.

2015-06-23 Thread Jonathon Rossi
Montag, 22. Juni 2015 15:27:05 UTC+2 schrieb Jonathon Rossi: Just for future sake do you know if that issue was ever logged in the mono issue tracker because I couldn't find anything relevant. On Mon, Jun 22, 2015 at 11:25 PM, Jonathon Rossi jo...@jonorossi.com wrote: Hi Ralph, See https

Re: Castle.Core mono bug affects GenericUtil.cs:AdjustGenericConstraints() fixed in a simple way.

2015-06-22 Thread Jonathon Rossi
Hi Ralph, See https://github.com/castleproject/Core/issues/81 for the issue that was already logged and the progress we are making. On Sun, Jun 14, 2015 at 5:18 AM, Ralph Alexander Bariz ralph.ba...@gmail.com wrote: The other crash happening when bypassed this, is fixed with mono 4.3.0

Re: Castle.Core mono bug affects GenericUtil.cs:AdjustGenericConstraints() fixed in a simple way.

2015-06-22 Thread Jonathon Rossi
Just for future sake do you know if that issue was ever logged in the mono issue tracker because I couldn't find anything relevant. On Mon, Jun 22, 2015 at 11:25 PM, Jonathon Rossi j...@jonorossi.com wrote: Hi Ralph, See https://github.com/castleproject/Core/issues/81 for the issue

Re: Windsor WCF integration broken after ASP.NET 4.6 upgrade

2015-05-05 Thread Jonathon Rossi
they are told about the requirements, there arent enough resources within the fx team to ensure there are nothing breaking compat, esp for more advanced and rarely touched apis, which seems to be the case for wcf. On Tue, May 5, 2015 at 1:29 AM, Jonathon Rossi j...@jonorossi.com wrote: Matteo

Re: Unable to find a version of 'Castle.Core-log4net' that is compatible with 'log4net 2.0.0'.

2015-04-02 Thread Jonathon Rossi
To follow on from Hammett, you have misunderstood the intent in Krzysztof's comment, he has been helping people with workarounds because this is a painful problem without a clear solution. Our position back in 2012 was that most people were still using 1.2.10 and we couldn't break that, so we were

Re: Doesn't intercepting base method?

2015-01-21 Thread Jonathon Rossi
Interceptors in Windsor are implemented by our DynamicProxy library, which works by creating a class (e.g. BarProxy) at runtime that inherits your class (e.g. Bar) and overrides its virtual methods, you can see this in the debugger or if you print out `bar.GetType().FullName`. When the overridden

Re: Commercial Support for Windsor?

2014-12-31 Thread Jonathon Rossi
Hi Ali, I agree with Luke that as much effort as possible needs to go into keeping the container implementation details out of your application code, it helps for many reasons not just if you decide to change container. One of the big anti-patterns I see people getting trapped into is injecting

Re: DLL Not Found Exception no matter how or where it is built

2014-12-09 Thread Jonathon Rossi
Hammett will be your man to help, but having a quick look at the Castle.Zmq library for the first time I'd be looking at the native DLLs stored as embedded resources and this: https://github.com/castleproject/castlezmq/blob/master/src/Castle.Zmq/Context.cs#L114 On Wed, Dec 10, 2014 at 6:57 AM,

Re: Making Mono an officially supported platform

2014-12-04 Thread Jonathon Rossi
I'm all for getting mono supported, I've wanted to do it for quite some time but just haven't had that time in the past. Basically the reason we haven't had official support is there just hasn't been enough demand. I wouldn't worry about keeping the existing mono build configuration working (if

Re: Making Mono an officially supported platform

2014-12-04 Thread Jonathon Rossi
. On Fri, Dec 5, 2014 at 12:05 PM, Jonathon Rossi j...@jonorossi.com wrote: I'm all for getting mono supported, I've wanted to do it for quite some time but just haven't had that time in the past. Basically the reason we haven't had official support is there just hasn't been enough demand. I

Re: Castle.Windsor / Interface Based Typed Factory / Does it support second level dependencies' parameters?

2014-10-15 Thread Jonathon Rossi
I'm pretty sure it works like this by design. Inline parameters aren't passed down the resolution chain, because it breaks the abstraction of the IServiceA interface. Calling resolve at that point (i.e. Create on the factory) you shouldn't know that IServiceA's implementation needs a IServiceB.

Re: No component for supporting the service EndangeredFish.Web.Controllers.HomeController was found

2014-05-24 Thread Jonathon Rossi
, May 23, 2014 at 11:36 PM, Jonathon Rossi j...@jonorossi.com wrote: Could you share your registration code for controllers, it might be something with the assembly type scanning. So you said this code currently works, did you mean it works in production running with a release compiled

Re: No component for supporting the service EndangeredFish.Web.Controllers.HomeController was found

2014-05-22 Thread Jonathon Rossi
Is the Windsor component registration done in C# code or in an XML configuration file. If it is in an XML configuration file, running in release might not be finding the registrations. On Fri, May 23, 2014 at 12:57 AM, David Maltby drmaltby1...@gmail.comwrote: I inhereted code, which currently

Re: Quartz.NET integration in Castle Windsor

2014-05-14 Thread Jonathon Rossi
Do you have a full stack trace of where that exception is being thrown? I thought the Quartz.NET Windsor facility required those configuration items to be set under the facility element in your configuration file. i.e. like the docs:

Re: Quartz.NET integration in Castle Windsor

2014-05-14 Thread Jonathon Rossi
Jonathon Rossi: Do you have a full stack trace of where that exception is being thrown? I thought the Quartz.NET Windsor facility required those configuration items to be set under the facility element in your configuration file. i.e. like the docs: http://docs.castleproject.org/Contrib. Quartz

Re: Quartz.NET integration in Castle Windsor

2014-05-14 Thread Jonathon Rossi
-SampleTriggerListener -SampleSchedulerListener -FileScanJob But when I try to register something to the container, it throws this exception. So it never get's to the point where I am able to register the SampleJob. Op woensdag 14 mei 2014 12:36:19 UTC+2 schreef Jonathon Rossi: I

Re: CastleProject site: 1) search does not work; 2) there is no reference to AspectSharp anymore

2014-03-19 Thread Jonathon Rossi
One of the guys with access to the WordPress install will have to look at #1. As for #2, AspectSharp died nearly a decade ago, which is why after several iterations of web sites all references have been removed. Parts of it survived in Castle DynamicProxy and Windsor (

Re: Nuget packages for .net 4.0 seem to require 4.5

2013-09-28 Thread Jonathon Rossi
, 2013 at 11:46 PM, Jonathon Rossi j...@jonorossi.com wrote: Unfortunately I didn't have much luck getting much more time to look deeper into it on Tuesday. However, I've got it starred to look into it on the weekend. On Thu, Sep 26, 2013 at 2:33 PM, Krzysztof Koźmic krzysztof.koz

Re: Nuget packages for .net 4.0 seem to require 4.5

2013-09-26 Thread Jonathon Rossi
Unfortunately I didn't have much luck getting much more time to look deeper into it on Tuesday. However, I've got it starred to look into it on the weekend. On Thu, Sep 26, 2013 at 2:33 PM, Krzysztof Koźmic krzysztof.koz...@gmail.com wrote: Any luck with that? On 24/09/2013 5:08 PM, Jonathon

Re: Nuget packages for .net 4.0 seem to require 4.5

2013-09-24 Thread Jonathon Rossi
Sorry for the delayed reply, I've been on leave. That is strange. Looking at the build logs for the last master build of the 4.0 and 4.5 build configurations it is picking the right mscorlib when calling csc, so I'd have expected the 4.0 one to fail compilation, unless that bit isn't actually

Re: New documentation required

2013-08-19 Thread Jonathon Rossi
Since STW is set up using SQL Server rather than the default file based store, we could get Henry or Hammett to provide a backup of the database which would be much more easily converted into separate pages than manually doing it. On Mon, Aug 19, 2013 at 10:31 PM, Krzysztof Kozmic

Re: NVELOCITY 1.1.1 source code

2013-07-25 Thread Jonathon Rossi
Sure, the Castle NVelocity source code is hiding under the MonoRail 2 source code on GitHub: https://github.com/castleproject/MonoRail/tree/master/MR2/NVelocity Unfortunately, since it was moved into the MonoRail repository all the tags are lost so it isn't easy to pull up a specific version, but

Re: Castle.DynamicProxy 1.1.5 release revision

2013-04-27 Thread Jonathon Rossi
1.1.5, that's an old one. We put the Subversion dump onto Git in the castle-READONLY-SVN-dump repo. You can see that on the net-2.0-trunk the version is marked as 1.1.5.0 in the NAnt build file, so it might not be exactly the 1.1.5 that was released with RC3 (or whichever that came out with), but

Re: Maintenance request - in description of this group 9 of 11 links are broken

2012-09-20 Thread Jonathon Rossi
Thanks. I've fixed the links and tidied up the content a little. On Tue, Sep 18, 2012 at 11:46 PM, Valeriu Caraulean caraul...@gmail.comwrote: Just a heads up for group admins/maintainers. The group description is very handy with links to useful places, unfortunately almost all are broken...

Re: .net 4.0 and iis 7.5

2012-08-17 Thread Jonathon Rossi
There should be an inner exception that should provide more detail about the type loading problem. On Thu, Aug 16, 2012 at 11:49 PM, rohit rshet...@gmail.com wrote: Hi, I am migrating my .net app to new machine. Old conf.: .net 4.0 iis 7.0 and castle ?? dont know which version,but its

Re: castle ActiveRecord

2012-07-08 Thread Jonathon Rossi
Krzysztof, I know the Castle Project isn't actively maintaining ActiveRecord but is still accepting contributions. Are you sure that Serkan Hosca's fork is the official repository? That fork looks like it breaks backwards compatibility with Castle ActiveRecord quite a bit? On Sun, Jul 8, 2012 at

Re: castle ActiveRecord

2012-07-08 Thread Jonathon Rossi
On 08/07/2012 10:51 PM, Jonathon Rossi wrote: Krzysztof, I know the Castle Project isn't actively maintaining ActiveRecord but is still accepting contributions. Are you sure that Serkan Hosca's fork is the official repository? That fork looks like it breaks backwards compatibility with Castle

Re: .NET Framework 2.0

2011-10-06 Thread Jonathon Rossi
IIRC the last .NET 2.0 compatible source is available in the net-2.0-trunk branch of our old subversion dump. https://github.com/castleproject/castle-READONLY-SVN-dump/tree/net-2.0-trunk However, that said I personally wouldn't start a new especially large project using old software and old tools

Re: .NET Framework 2.0

2011-10-06 Thread Jonathon Rossi
That branch seems to have project files for VS2005 and VS2008, not sure how well maintained the VS2005 project files were at that stage, since the VS2005 root solution file has been removed. See the How to build.txt file for some more details on building the source, however running nant release

Re: Memory and Lifecycle Concerns

2011-02-12 Thread Jonathon Rossi
Ryan, run your application under a memory profiler, it should tell you exactly where the 500MB is being used as long as it is managed resources. dotTrace is one of the most popular, and has a free trial: http://www.jetbrains.com/profiler/ On Sun, Feb 13, 2011 at 2:19 AM, Ryan

Re: Error creating a wiki account

2010-09-11 Thread Jonathon Rossi
Just checked the logs, and you got caught by the dangerous form values validator with your password. Try with a less secure password, or just one without HTML. On Sun, Sep 12, 2010 at 4:36 AM, Graham Hay grahamr...@gmail.com wrote: I tried to create a wiki

Re: IKernel.RemoveComponent -- is anyone using this?

2010-08-30 Thread Jonathon Rossi
Just checked, we aren't using it either. 2010/8/29 Krzysztof Koźmic krzysztof.koz...@gmail.com Hey guys. I'm looking at some more serious modifications that we could do for Windsor 3.0 and one thing that I'd really like to get rid of is IKernel.RemoveComponent (not to be confused with

Re: Windsor 3 and dropping support for .NET 3.5 and Silverlight 3

2010-08-30 Thread Jonathon Rossi
I'm sure there will be no problem supporting the 2.5 branch while people still use it, but most of the work to port things back will probably need to be done by those who actually need the fixes, which keeps every happy. The Castle team could still make official releases from the 2.5 branch with

Re: Purpose of Velocity.Evaluate's logTag param

2010-07-17 Thread Jonathon Rossi
The comment on the method has the following description: string to be used as the template name for log messages in case of error The main purpose of the logTag parameter is to give you more context where the error is coming from, however there are a few internal uses for caching which I am

Re: NVelocity support in ReSharper

2010-07-04 Thread Jonathon Rossi
Do you want JetBrains to implement the functionality of CVSI, or is there a lot more to it? http://jonorossi.com/projects/cvsi/ 2010/7/4 Krzysztof Koźmic krzysztof.koz...@gmail.com I created a ticket in JetBrains' issue tracker requesting support for NVelocity view engine in ReSharper. If

Re: Where to find most recent ActiveWriter?

2010-07-03 Thread Jonathon Rossi
*From:* castle-project-users@googlegroups.com [mailto: castle-project-us...@googlegroups.com] *On Behalf Of *Jonathon Rossi *Sent:* 31 May 2010 01:56 PM *To:* castle-project-users@googlegroups.com *Subject:* Re: Where to find most recent ActiveWriter? I think so. When I get a chance

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: Where to find most recent ActiveWriter?

2010-05-31 Thread Jonathon Rossi
I think so. When I get a chance soon to upgrade CVSI for VS2010 I'll be moving it to github. On Mon, May 31, 2010 at 4:44 PM, John Simons johnsimons...@yahoo.com.auwrote: Just wondering if this is a good opportunity to move this project to github, Thoughts? Cheers John

Re: Bug found in ActiveRecordMediator.cs

2010-05-02 Thread Jonathon Rossi
Fixed in the repository in commit 2db139cd93e4f96888a50568f6a8d69bbe84e633. Thanks for reporting this defect. On Tue, Apr 27, 2010 at 2:27 PM, Markus Zywitza markus.zywi...@gmail.comwrote: No need to be sorry. Thanks for spotting and registering the issue. However, I won't have time to work

[ANN] New PMC member

2010-04-29 Thread Jonathon Rossi
Krzysztof Koźmic has been voted in as a new PMC member. On behalf of the PMC, I'd like to thank Krzysztof for his commitment to Castle. Welcome aboard. -- Jono -- You received this message because you are subscribed to the Google Groups Castle Project Users group. To post to this group, send

Re: Security bug - where report?

2010-03-30 Thread Jonathon Rossi
If this is a serious security issue with the web site you would be better off emailing Henry off list so it can be fixed before it gets exploited. Many thanks. On Tue, Mar 30, 2010 at 8:56 PM, John Simons johnsimons...@yahoo.com.auwrote: Andreas, please submit a bug report in

[ANN] New MonoRail project leader

2010-03-25 Thread Jonathon Rossi
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 on MonoRail, it is

Re: Problems with DynamicProxy: massive performance degradation when running inside VS2008 debugger

2010-03-17 Thread Jonathon Rossi
Hi, Many people have reported this issue over the years, however the defect is out of our control. Please see this task for more information: http://support.castleproject.org/projects/DYNPROXY/issues/view/DYNPROXY-ISSUE-72 On Wed, Mar 17, 2010 at 7:54 PM, Lundberg, Per

Re: Problems with DynamicProxy: massive performance degradation when running inside VS2008 debugger

2010-03-17 Thread Jonathon Rossi
-users@googlegroups.com on behalf of Jonathon Rossi *Sent:* Wed 3/17/2010 12:13 PM *To:* castle-project-users@googlegroups.com *Subject:* Re: Problems with DynamicProxy: massive performance degradation when running inside VS2008 debugger Hi, Many people have reported this issue over

Re: Build Problems + Medium Trust Issues

2010-02-16 Thread Jonathon Rossi
Just a reminder to vote for this idea so we get some idea of how many people really want it: http://castle.uservoice.com/forums/16605-official-castle-project-feedback-forum/suggestions/433388-provide-binaries-with-allowpartiallytrustedcallers On Tue, Feb 16, 2010 at 6:31 PM, Roelof Blom

Re: AR 2.1.2 was just released

2010-02-08 Thread Jonathon Rossi
Just jump to the projects page, the download page can sometimes get out of date: http://www.castleproject.org/castle/projects.html On Mon, Feb 8, 2010 at 9:10 PM, Michael Maddox michael.p.mad...@gmail.comwrote: Markus, I'm looking for Castle ActiveRecord 2.1.2. This URL:

Re: AR 2.1.2 was just released

2010-02-08 Thread Jonathon Rossi
to the projects page. 2010/2/9 Krzysztof Koźmic krzysztof.koz...@gmail.com Can we get rid of the Download page and just make the download links on Projects website more visible? Like explicit Download link or something? On 2010-02-08 12:16, Jonathon Rossi wrote: Just jump to the projects page

Re: AR 2.1.2 was just released

2010-02-08 Thread Jonathon Rossi
We will probably need to leave the download page empty with a browser redirect so we don't break search engines. On Tue, Feb 9, 2010 at 7:23 AM, Jonathon Rossi j...@jonorossi.com wrote: I wanted to do that but I remember someone had a reason not too, don't recall what though. I think we can

Re: Interceptors

2010-01-28 Thread Jonathon Rossi
The IInterceptor in DynamicProxy was deleted in 2006, this version must be pre-RC3. http://fisheye2.atlassian.com/browse/castleproject/trunk/Tools/Castle.DynamicProxy2/Castle.DynamicProxy/IInterceptor.cs On Fri, Jan 29, 2010 at 7:36 AM, Roger rcjproj...@yahoo.com wrote: I saw this blog post:

Re: Integrating Telerik Reporting and Castle

2010-01-17 Thread Jonathon Rossi
Michael, yes this is the users mailing list. John must have misread where the email came from. I have no experience with Telerik components, and it seems others are the same. You'd need to explain where you want to get access to the container and how the reporting component works for us to

Re: Monorail 2.0

2010-01-17 Thread Jonathon Rossi
Congrats Ken and everyone else. We only have a few more projects to release and we'll have the full stack released in 2010. This is a big change from the past. On Mon, Jan 18, 2010 at 3:16 AM, Ken Egozi egoz...@gmail.com wrote: After a long huge wait, finally Monorail 2.0 is out, get yours

Re: Windsor 2.1 FactorySupportFacility

2010-01-13 Thread Jonathon Rossi
Hi Alex and Mauro, Are either of you online because I'll be releasing 2.1.1 very soon which should fix the problem, and I'd like someone to test it quickly before I push the release. Krzysztof has asked me to revert his changes today and from a week back. 2010/1/13 Krzysztof Koźmic

Re: Windsor 2.1 FactorySupportFacility

2010-01-13 Thread Jonathon Rossi
Servienti mauro.servie...@gmail.comwrote: Hi, I’m online right now, if you want you can send the patch directly to me for a quick test in my environment. .m *From:* castle-project-users@googlegroups.com [mailto: castle-project-us...@googlegroups.com] *On Behalf Of *Jonathon Rossi *Sent

Re: Windsor 2.1 FactorySupportFacility

2010-01-13 Thread Jonathon Rossi
-users@googlegroups.com [mailto: castle-project-us...@googlegroups.com] *On Behalf Of *Jonathon Rossi *Sent:* mercoledì 13 gennaio 2010 11:05 *To:* castle-project-users@googlegroups.com *Subject:* Re: Windsor 2.1 FactorySupportFacility Thanks. Just download the .NET 3.5 build from teamcity

Re: Windsor 2.1 FactorySupportFacility

2010-01-13 Thread Jonathon Rossi
...@therightstuff.de My project's build is green again. Thank you for quickly fixing the issue! Alex On 13 Jan., 11:57, Jonathon Rossi j...@jonorossi.com wrote: OK. I'll go ahead and get the package ready to upload. If only TeamCity didn't die again. Damn java web servers running out

Re: Writing a Contrib Project

2009-12-30 Thread Jonathon Rossi
The contrib link on the castle project home page should provide enough information: http://using.castleproject.org/display/Contrib/Home Once you have something you would like to contribute post on the list and others will let you know whether they think it will be able to help others and it can

Re: Castle SVN, where?

2009-12-29 Thread Jonathon Rossi
All the projects have been split off into their own trunk. See this page for details: http://www.castleproject.org/subversion.html On Wed, Dec 30, 2009 at 1:15 AM, the.email.tr...@gmail.com the.email.tr...@gmail.com wrote: Hello, Before I don't know what you did, I could find the repo in

Re: Cast.Core Medium Trust

2009-12-22 Thread Jonathon Rossi
All Krzysztof changed was only making the default logger a trace logger if you have permission to use the TraceLogger. You can still provide your own logger to a ProxyGenerator no matter if you have permissions to use the TraceLogger. If you are running the application in medium trust it is very

Re: Build Server is down

2009-12-15 Thread Jonathon Rossi
It is working for me. On Wed, Dec 16, 2009 at 4:48 AM, Roger rcjproj...@yahoo.com wrote: The build server has been down.(http://builds.castleproject.org) I wonder if someone is looking into that. Thanks. -- You received this message because you are subscribed to the Google Groups

Re: Binder and Validator Released at 1.1.0

2009-12-14 Thread Jonathon Rossi
Congrats. We are one step closer to releasing MonoRail! On Mon, Dec 14, 2009 at 7:18 PM, G. Richard Bellamy rbell...@pteradigm.comwrote: Validator: http://sourceforge.net/projects/castleproject/files/Validator%20Component/1.1/Castle.Components.Validator-1.1.0-net3.5.zip/downloadOR

Re: Escaping backslash in nvelocity dictionaries

2009-12-05 Thread Jonathon Rossi
This indeed seems like a bug, here is test I just wrote: [Test] public void EscapeNewLine() { Assert.AreEqual(@1:title=Text\nMoreText, Eval(@%{title='Text\\nMoreText'})); } I haven't got time at the moment to try to trace down why this is happening, you are more than welcome to though. A

Pagination 1.1.0 has been released

2009-12-04 Thread Jonathon Rossi
With the help of the pagination component project leader Daniel Hölbling, we have now released v1.1.0. The download link will be on the web site in a few minutes. -- Jono -- You received this message because you are subscribed to the Google Groups Castle Project Users group. To post to this

Castle Core 1.2 beta 1 and DynamicProxy 2.2 beta 1 have been released

2009-12-04 Thread Jonathon Rossi
The beta is out! There are a lot of changes from 2.1, see Krzysztof's blog post below for more details. A reminder this release supports Silverlight 2.0. Upgrade, report bugs, and we'll fix 'em. The RTM will be out by the end of year if there are no issues.

Re: using lastest version of castle.dynamicproxy with nhibernate

2009-12-04 Thread Jonathon Rossi
IIRC NHibernate's current release is using DynamicProxy 2.1 RTM which should be in the NHibernate zip file downloadable from sourceforge. On Sat, Dec 5, 2009 at 2:58 AM, Gitted sahmed1...@gmail.com wrote: I tried using the lastest version of castle.dynamic proxy but it seems there are API

Re: How can I connection to SQL Server using ActiveRecord

2009-11-22 Thread Jonathon Rossi
Have you taken a look at the getting start guide on the Castle web site? http://www.castleproject.org/activerecord/index.html On Sun, Nov 22, 2009 at 4:43 PM, rith tangsithar...@gmail.com wrote: Dear all, Could you tell how to connect to SQL Sever, update, delete, find, and add new record

Re: Why I can't open MonoRail sample project

2009-11-22 Thread Jonathon Rossi
Can you provide some more details. Which sample does this occur on? What version of VS are you running? What is the exact error message you are getting? On Mon, Nov 23, 2009 at 12:00 AM, rith tangsithar...@gmail.com wrote: Dear all, Why I can't open MonoRail Sample project. When I try to open

Re: Why I can't open MonoRail sample project

2009-11-22 Thread Jonathon Rossi
...@gmail.comwrote: Yes the sample is MonoRail Getting Started Sample VS2005 and My VS is 2008. Please see my attached file for error message detail. Thanks On Sun, Nov 22, 2009 at 9:09 PM, Jonathon Rossi j...@jonorossi.com wrote: Can you provide some more details. Which sample does

Re: Request for APTCA in Castle Windsor/Core/MicroKernel/DynamicProxy

2009-11-13 Thread Jonathon Rossi
Yes and yes, the Castle libraries have not been audited to ensure that they cannot be coerced into doing dangerous things on behalf of untrusted code. This article provides a good overview of what APTCA is all about, the 3 bullet points in the middle summarise our stance on this. You will also

Re: Build Problems - Medium Trust

2009-11-02 Thread Jonathon Rossi
I just tried building exactly as you did with the current full trunk, and it built without errors. Have you got local modifications to the build scripts? The Core.build script didn't get run, and the Services.build outputted this indicating that it didn't actually build anything.

Re: Missing files in http://svn.castleproject.org:8080/svn/castle/DynamicProxy/trunk/src/Castle.DynamicProxy

2009-10-30 Thread Jonathon Rossi
You are doing nothing wrong. We haven't kept the silverlight project files up to date (and haven't had a chance to automate the generation). Our build server uses csc rather than msbuild; so building for silverlight is like this: nant -t:silverlight-2.0 -D:project.config=release We'll need to

Re: FindAll() with OrderBy

2009-10-28 Thread Jonathon Rossi
Person[] people = Person.FindAll(Order.Asc(Name)); On Wed, Oct 28, 2009 at 11:28 PM, Chris Curvey ccur...@gmail.com wrote: this can't be as hard as it seems...I hope someone can give an example. All I want to do is: Person[] people = Person.FindAll() but have the resulting array sorted

Re: Issues getting latest version of Castle Validator

2009-10-28 Thread Jonathon Rossi
Thanks for your comments, I'll get those links to subversion fixed up. Overall Castle decided to drop support for .net 2.0 on the trunk because very few people needed 2.0 support, this allows the team to focus on writing new features and fixing bugs rather than making sure everything still works

[ANN] New project leaders

2009-10-21 Thread Jonathon Rossi
Hi all, The PMC has voted the following changes to project leaders: * Dusan Janosik will take over from Andrew Hallock to lead the Validator component. * G. Richard Bellamy will take over from Ernst Naezer to lead the Logging service. * Daniel Hölbling will take over from Colin

Re: NullReference exception in ActiveRecordStarter.CreateSchema()

2009-10-20 Thread Jonathon Rossi
You will see the NHibernate SchemaExport class at the top of the stack trace. If you get NHibernate's source code it should be fairly obvious what is null, there are only a few things called in the constructor. On Tue, Oct 20, 2009 at 11:24 AM, Andy Selvig ajsel...@gmail.com wrote: Hi- I'm

Re: General Mono Question

2009-10-12 Thread Jonathon Rossi
on mono since they don't have a Windows server, and I'm at a total loss here since I have no clue how to run something on mono :) greetings Daniel On Sun, Oct 11, 2009 at 5:22 AM, Jonathon Rossi j...@jonorossi.comwrote: Daniel, it sounds like you are not referring to castle specifically

Re: Register IEnumerableTSomething in the container Options

2009-10-12 Thread Jonathon Rossi
Yes, like the linked thread you can use a sub dependency resolver. There are 2 baked into MicroKernel (for arrays and lists, however an IEnumerableT should be just as easy). You register it as follows: Kernel.Resolver.AddSubResolver(new ArrayResolver(Kernel));

  1   2   >