spring.net

How to specify an object property type in Spring.NET

I am trying to create an object in Spring where one of its propertys is of type object. Now if I do the following: <object id="MyObject" type="...." singleton=false> <property name="my_property" value="4"> </object> Then the property my_property will be a string object. Is there a way do something like: <object id="MyObject" type=...

Spring RegisterSingleton

I have a following object: public class TestObject { public String Something { get; set; } } and a following objects file: <?xml version="1.0" encoding="utf-8" ?> <objects xmlns="http://www.springframework.net" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.n...

Entity Framework IoC Integration (Spring.net)

I Need to configure Entity Framework in Conjunction with NCommon to work with Spring.NET IoC Container. I Noticed about the Microsoft CommonServiceLocator project to abstract DI Containers used in the NCommon project, but I can't still find an exaustive example of how implementing NCommon Repository for Entity Framework using Spring.NET ...

Spring.NET does not use AOP AfterReturningAdvice

I am trying to use Spring.NET AOP in my project for logging purpose, and two advices work great, however, the third does not get used at all. Here is my wiring: <!-- the "After" Advice --> <object id="GraphicsContextManagerAfter" type="PicturetoolWeb.App.Advice.GraphicsContextManagerAfter, PicturetoolWeb.App"> </object> <!-- The Proxy...

Spring.NET data binding with UserControl

I am trying to bind a public UserControl property to my model inside a parent page. I created a simple example to show what I am trying to do, you can see it on PasteBin or download it here The problem it that UserControl's property not binding to model, please check UserControl code: public partial class SpnTest : Spring.Web.UI.UserCo...

Spring.NET Creation of Object with Parameters

I have an object with two parameters that needs to be created via Spring.NET using the configuration file for decoupling. public Object(string param1, string param2) { ... } The two parameters are dynamically passed in based on user interaction where they pass in a username and password, so these values can't be hard coded to the conf...

Spring.NET Security Framework

In order to learn more about Spring.NET, I bought the book "Spring in Action", which is about the Java version of the framework. I noticed that the book talks about Spring.Security and how one can manage security/login etc. using this part of the framework. As I read along, I got quite excited about the features of the security framew...

Refactoring tool for Spring.NET

Hi all, Currently I get to edit a lot of Spring.NET XML files, and I do find this work to quite repetitive and, frankly boring. Most of the stuff I do is sort of 'refactoring' - generalising XML declaration for instances and "inheriting" from those generalised structures to declare more specific ones. As I said, it's a no-brainier typ...

Client timeout when using WCF through Spring.net

I'm using WCF through Spring.net WCF integration link text This works relatively fine, however it seems that WCF and Spring get in each other's way when instantiating client channels. This means that only a single client channel is created for a service and therefore the clients get a timeout after the configured timeout is expired sinc...

FullTextSession configuration using spring.net

Am using lucene.net for full text search. Am configuring my Nhibernate session programatically using SearchFactory provided by Lucene in the NHibernate.Search library. Am evaluating if spring.net can be introduced in my system. Am not sure if spring.net will configure a FullTextSession for me? Please let me know if you have any suggestio...

Spring.Net Books & Resoruces

I'm looking for resources on Spring.Net, has anyone come across any books or sites that you found especially useful? ...

Implementing repositories using NHibernate and Spring.Net

I'm trying to get to grips with NHibernate, Fluent NHibernate and Spring. Following domain-driven design principals, I'm writing a standard tiered web application composed of: a presentation tier (ASP.Net) a business tier, comprising: an application tier (basically a set of methods made visible to UI tier) repository interfaces and d...

Instantiating a Spring.Net context inside a static method causes a memory leak.

Hi all, Ran across this recently and wondering if someone out there can give me a good explanation. I was doing some refactoring and created a spring context to grab a configured service from an embedded config file like so: var myService = new XmlApplicationContext("assembly://MyAssembly/MyNamespace/MyService.config").GetObjec...

Spring.net wcf integration

Hi, I have a WCF service and use Spring.ServiceModel.Activation.ServiceHostFactory as a factory in my *.svc. What I need is to load some data into cache when service is called first time or restarted. Could you please suggest a best way to do so? Right now I inherited from the Spring.ServiceModel.Activation.ServiceHostFactory and put my ...

How to use complex Type params argument in Spring.NET constructor

I am trying to use Spring.NET with a C# application to populate a parameter array (params keyword) constructor argument that is of a complex Type (call it SecretCode, which happens to be an enumerated type.) Can someone help point me to the documentation to configure the XML file to do this? For reference, here are relevant code snippe...

Removing Spring.Cache

Hi, I am trying to clear the cache for my integration testing. I could find "InvalidateCache" attribute in Spring documentation, but i do not want to touch the real function and change the attribute. I think I can't use .Net's HttpContext.Cache.Remove since my integration test application is not web application. Anyone knows how to do...

How to set enum Type indexer in Spring.NET configuration xml?

I have this code: public enum StateId { NotSet = 0, AL, ..., WY } public class EnumBasedArray<I,V>:IEnumerable<V> { public V this[I index] { get { return _data[index]; } set { _data[index] = value; } } // other code to manage values internally } public class AnotherObject { ... } public class ArrayOfAnotherObjectByS...

Spring.Net IoC: alternative to using configuration metadata XML

I'm trying to get a grasp of using spring.net ioc to suit my purpose. What options to using xml configuration (metadata file) are available in spring.net ioc. i.e. i don't want to use the following: <object name="MyMovieFinder" type="Spring.Examples.MovieFinder.SimpleMovieFinder, Spring.Examples.MovieFinder"/> </object> ...

Can I use Spring.NET to inject dependencies in a created instance?

Is it possible to to something like this using Spring.NET IoC container? MyClass instance = new MyClass(); ContextRegistry.GetContext().InjectDepenencies(instance); // instance has the defined dependencies set This would come in handy. Of couse I could use ContextRegistry.GetContext().Get("name") but that would create a new instance o...

What is a good Spring.net/NHibernate tutorial?

I am getting ready to start a project which will be using both Spring.net and NHibernate. I have seen a few good tutorials for NHibernate but have had a hard time finding resources for Spring.net. Specifically, I am looking for something that goes the setting up a solution and getting things running. Are there any good tutorials for a...