Questions tagged [spring.net]

Spring.NET is an open source application framework for developing .NET enterprise applications.

Spring.NET is an open source application framework for developing .NET enterprise applications, inspired by the popular Spring for Java. It provides infrastructural support to make best practices easy practices. Spring.NET consists of several modules, most notably:

For information on additional modules and other background information, see the overview page on the Spring.NET website. Technical documentation is also available on this site.

Related tags

632 questions
0
votes
1 answer

Spring.Net Message Selectors with compound statements don't seem to be working

I'm using Spring.NET to connect to ActiveMQ and do some fairly simple pub sub routing. Everything works fine when my selector is a simple expression like Car='Honda' but if I try a compound expression like Car='Honda' AND Make='Pilot' I never get…
Jonathan Beerhalter
  • 7,229
  • 16
  • 68
  • 78
0
votes
1 answer

Nhibernate : not-null property references a null or transient value error in many to one relationship

I am getting error not-null property references a null or transient value in many to one relation in NHibernate. Code: class MyData { public string Name{get;set;} public virtual UploadData UploadData { get; set; } public int…
meetjaydeep
  • 1,752
  • 4
  • 25
  • 39
0
votes
1 answer

ASP.NET MVC3, conflicts between Spring.Net MVC and other MVC Frameworks?

I'm having trouble figuring out what the differences between ASP.NET MVC and Spring.Net MVC are. I understand how ASP.NET MVC and Spring.Net work separately, but I cannot quite sort out what the "MVC" part of "Spring.Net MVC" brings, overrides or…
Timothée Bourguignon
  • 2,190
  • 3
  • 23
  • 39
0
votes
1 answer

Spring.NET resource files

Books
  • 5,163
  • 5
  • 19
  • 18
0
votes
1 answer

.net assemblies and individual configuration

My primary assembly is a web application. It uses spring.net framework to load other assemblies into its executing app domain. So naturally this means all those other assemblies must get their config values (for e.g. connection strings & app…
deostroll
  • 11,661
  • 21
  • 90
  • 161
0
votes
1 answer

Spring + Hibernate - multiple databases

I am creating an asp.net mvc web site and I need an advice. I have following layers: database data access layer (domain objects, DAO interfaces + DAO implementations based on a NHibernate) service layer (service interfaces + service…
rrejc
  • 2,682
  • 3
  • 26
  • 33
0
votes
1 answer

Spring .NET oracle connection failed

In the Spring .NET, I need to connect to Oracle database, I am sure the connection info is correct, but still not open Oracle connection. The provider is using 'OracleODP-2.0', how can I verify I have correct Oracle .NET driver installed in my…
user595234
  • 6,007
  • 25
  • 77
  • 101
0
votes
1 answer

new to windows services and have questions

I am currently writing a windows service and normally used to writing web applications in c#. Therefore I have some questions that more experienced programmers of windows services may be able to answer. How are exceptions normally handled in a…
amateur
  • 43,371
  • 65
  • 192
  • 320
0
votes
1 answer

Why do I get a NullReferenceException when loading an ASPX page with Spring.net?

I'm trying to setup an ASP.Net 4 website with Spring.net 1.3.2. For basic pages, Spring loads the pages without problems and injects the dependencies alright. On some pages however I get a NullReferenceException between the ctor and the Page_Load,…
Mathieu Garstecki
  • 1,589
  • 1
  • 13
  • 18
0
votes
2 answers

Spring.net and Oracle Coherence integration

I probably suck as Googling stuff, but I couldn't find any link that mentioned whether its possible to integrate Spring.net with Oracle's coherance product. Does anyone know if Spring.net has wrapper libraries for the same ? Thanks in advance.
0
votes
1 answer

spring throwing error Cannot find definition for object

I wrote application with Spring.Net. When I try call to GetObject("...") of the Spring.Net I have got an exception: No object named 'SystemConfiguration_Workspace_NewWorkspaceAction' is defined : Cannot find definition for object…
Amir Brand
  • 313
  • 1
  • 3
  • 14
0
votes
1 answer

Problems invoking custom attribute from AOP advice

I have an Advice, and a custom attribute on it. I want to apply the attribute on another method called from advice class that. But the attribute does not get invoked. My spring config looks pretty similar to the example from the Spring.net…
chitra
  • 3
  • 3
0
votes
1 answer

Using Spring.Net for dynamically creating objects

*I am not an expert on spring or IoC - I would like to have my client app "select" different implementations of an interface based on some conditions. I believe Spring (or other IoC containers) allow doing this, however all examples show that the…
lysergic-acid
  • 19,570
  • 21
  • 109
  • 218
0
votes
1 answer

spring.net expression evaluator-spel- list iteration

I am trying to execute the following line in SpEL but it does not work: FileAttachments.?{DownloadedPath.Contains('CMA')}.count()>0 Where FileAttachments is a list of objects of class FileAttachment whose property is DownloadedPath. Basically I am…
-1
votes
2 answers

How do you set a value of an xml property in Spring.net?

How do you set a value of an xml property? This is what I've tried with no succes: Resources is an XmlDocument field.
Lieven Cardoen
  • 25,140
  • 52
  • 153
  • 244
1 2 3
42
43