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

learn more… | top users | synonyms

0
votes
1answer
36 views

Oracle.DataAccess.Client Error

Background: This website use oracle and spring.net. version of the Oracle.DataAccess: 4.112.2.0 version of the Spring: 1.3.2.40943 Webconfig file <db:provider id="SDDbProvider" ...
0
votes
0answers
21 views

Spring.Net scope=“request” + NHibernate ISession + WCF

I've got a project set up using WCF web services, Spring.Net and NHibernate. I'm using Spring for the dependency injection - this creates the Web Service implementation and all child dependencies, ...
1
vote
1answer
23 views

Disable dependency checking for TestContext

I have created MSTest using Spring. In this test I use TestContext. [TestClass] public class Test : AbstractDependencyInjectionSpringContextTests { [TestMethod] public void Test() { ...
0
votes
1answer
19 views

Spring.NET ObjectDefinitionStoreException using assembly to store configuration files

I am learning Spring.Net, I created a class MyApplication and a library class MyLib with all the spring configuration files that MyApplication needs. I retrieve the metadata using: ...
0
votes
2answers
44 views

dependency injection in to mvc attributes

I am working with asp.net mvc4 and have a form where I accept data from a user. Input fields like name, address etc. I want to be able to validate such with the normal mvc validation attributes but ...
1
vote
1answer
25 views

Auto compiling a dependent project without having a dependency on it

I'm developing ASP.NET MVC with extensive usage of Spring.net. I have lots of services implemented in different assemblies. The purpose of using Spring and abstract interfaces is to decouple the ...
0
votes
2answers
29 views

Integrating Spring.NET with Specflow

Can I make use of Spring.NET's base classes (a la AbstractDependencyInjectionSpringContextTests) for loading an application context and performing dependency injection using MSTest? I'm trying to ...
0
votes
2answers
25 views

Prevent Spring connection file to be changed by users

I am working on an application with Spring.Net and Windows forms. I would like to prevent users to change the Spring configuration file, something like setting the configuration file as readonly. I ...
2
votes
1answer
67 views

How to Bind Multiple Implementations using Ninject contextual bindings

I have a Skype Bot service which has a defined Interface for shortening a given url. namespace Skypnet.Modules.UrlShortener { public interface IUrlShortenerProvider { string ApiKey { ...
1
vote
0answers
36 views

ADOTemplate query with idbparameter and like expression

I have a DAO that queries the database using spring.net and ADOTemplate: var sql = "select id, name, description from item where description like '%@description%'"; var dbParameters = ...
1
vote
0answers
38 views

Please help me with using multiple AutoProxyCreator for the same objects

I am using Spring.Net for IOC and AOP. It seems Spring.Net does not support multiple AutoProxyCreators. I have following classes: [Facade] public abstract class AbstractFacade{ } ...
2
votes
1answer
89 views

Autowire tag does not work

I am learning Spring.Net. I did a little example to understand the tag autowire but it does not work. Below my classes: using System; using System.Collections.Generic; using System.Linq; using ...
3
votes
1answer
69 views

Is there a release date for Spring Framework .Net 2.0?

I have posted this question on the Spring.Net forums, however I have seen very little activity there. It seems that the 2.0 release has stopped at M2. Does anyone know if the 2.0 GA version will be ...
0
votes
0answers
21 views

How do I inject HttpContext to HttpContextBase by Spring.Net config

I have a class like this: class Test { public Test(HttpContextBase httpContext) { } } I want to inject HttpContext to this class by Spring.net config. What should I do?
0
votes
2answers
126 views

How to reuse Auth Tokens for Social Api's on app restart

In using some of the twitter apps such as Tweetings Janetter etc. You authenticate once and enter your auth pincode and since then i haven't had to authenticate again for atleast 3+ weeks In using ...
0
votes
2answers
51 views

Using Spring.net.Social only

Our app uses Prism/MEF and now we need to tie into twitter/facebook/linkedin/google+ etc. The Spring.Net social library seems to wrap a few of those so question is - Is it possible to use only ...
-3
votes
1answer
62 views

.Net:Expected 1 Actual 0 [closed]

i am developing a Spring .net Application. I have a Login Page with fields - LoginID Password On Login-There is a form to be filled by the candidate so after Login i check if the candidate has ...
1
vote
1answer
37 views

Spring.NET PropertyPlaceholderConfigurer using ${my value}

My Spring.NET configuration is using the following type syntax and is working ok. <object id="JohnUsingVariableSource" type="XmlConfig.StringInjection.Person, XmlConfig"> <property ...
1
vote
1answer
63 views

Spring expressions and nullable values

I use Spring.Core dll with ExpressionEvaluator . My simple code: public void ComputedFields() { var finance = new Finance(); ExpressionEvaluator .SetValue( finance, ...
1
vote
1answer
104 views

Spring.Net Placeholder exception

I have the weirdest problem with Spring.net, when trying to convert my project from .NET 3.5 to .NET 4. Let me summarise our architecture: Project A (not under my control) has a Sprint.Net config ...
1
vote
1answer
154 views

dependency inject in to an automapper resolver

I am working with AutoMapper in my c# mvc4 application. I use it to map my DTO objects to my view models. I have created a custom resolver to resolve a particular property of the DTO to the Model ...
0
votes
0answers
342 views

Constructor injection vs setter injection in Spring.NET manual [closed]

We were reading the Spring.NET documentation which makes reference to dependency injection and found an, at least for me, strange text. It talks about constructor injection vs dependency injection ...
3
votes
0answers
258 views

Spring.net Nhibernate dao is null

I followed the spring.net documentation and the northwind example. BereikDao [Repository] public class BereikDao : HibernateDao, IBereikDao { [Transaction(ReadOnly = true)] public ...
0
votes
1answer
335 views

Spring Social: Get User (LinkedIn, Facebook) Email

I am using Spring Social to connect to LinkedIn and Facebook. I downloaded the source code from this link: Github Spring Social LinkedIn Examples In this project, I am running “Spring.MvcQuickStart” ...
0
votes
1answer
95 views

Changing a WCF Endpoint

I have the following configuration from the initial examples shown the spring.net samples. <wcf:channelFactory id="serverAppHost" channelType="Contract.IHost, WcfService.Contract" ...
1
vote
1answer
93 views

How to add ASP.NET MVC Controller in Spring.Net Application Context?

I am creating a plugin system for my ASP.NET MVC Application using Spring.Net IOC Framework. I have placed my Controllers in a different assembly, I need to add these controllers to Spring.Net ...
1
vote
1answer
124 views

Spring.NET configuration files loading from a folder dynamically

I am working on a configuration issue with spring, related to using a component based architecture, and how spring loads it's configuration files. The problem is that each component will add ...
0
votes
1answer
71 views

Spring Social .NET OAuth confusion

I had originally posted a question about what API to use in regards to making a SharePoint 2010 timer job able to access the twitter API and chose the Spring Social .NET api and have run into another ...
0
votes
0answers
157 views

Specified cast is not valid whith DateTime field mapping (Npgsql 2.0.12 + Nhibernate 3.3.1 + postgres 8.4 )

I'm using MVC 3 + spring 1.3.2 + Nhibernate 3.3.1 +Npgsql 2.0.12 + postgres 8.4 ). Since 2 days, i'm facing a problem with DateTime field mapping. ... public virtual DateTime CreationDate { get; ...
1
vote
1answer
87 views

Load MockReposity object with MockRepository property through Spring

Versions: C# 4.0, Spring.Net 1.3.2, RhinoMocks 3.6.1 Given these two interfaces: public interface IDivisionSelectView { // ... } public interface ILoginView { IDivisionSelectView ...
1
vote
1answer
70 views

Spring.net / DI and loading information within an embedded resource

I have a DLL that is loaded by a windows service. The service is using spring.net and the DLL contains an embedded resource xml file that defines all my objects. The DLL embedded file is using DI and ...
0
votes
0answers
34 views

Is it possible to have a fallback value in spring.net?

I think code would explain the problem and requirement. <object id="dummy" type="....."> <property name="Settings" ref="settings"> <fallbackvalue> </null> ...
0
votes
1answer
79 views

spring inject attributes on mvc controller

I am working with and mvc4 web application and using spring.net v2 M2 for the dependency injection. I am wondering is possible to inject in to my controllers, filters/attributes on to the controller? ...
0
votes
1answer
454 views

using multiple app.config files

I have a console application that loads other libraries (DLL's). I'm using Spring.NET. My console application is very simple, load the app.config that is configured through DI to initialize the chosen ...
0
votes
0answers
121 views

Registering a VirtualPathProvider with Spring.net

The straightforward question I need to dynamically register a bunch of VirtualPathProviders that can be configured rather than hard-coded. Since I already use Spring I decided to use it. The problem ...
1
vote
0answers
54 views

Can I maintain separate spring configuration file for each project?

Scenario: I am already using spring.net for basic configurations/object that are needed by application to startup. This spring configuration file, and the startup objects, are part of xxHost project. ...
1
vote
1answer
398 views

Spring.net + ASP.NET MVC 3 + PostgreSQL

I'm trying to combine sprig.net with ASP.NET MVC3, using PostgreSQL as DB. I succeeded to do this with MySQL before. Here are my 2 config files: 1) web.config: <configuration> ...
0
votes
1answer
193 views

Spring.Objects.Factory.ObjectCreationException: System.ArgumentNullException: Key cannot be null

This is a long shot... I'm using spring 1.3.2 and at random times I get ArgumentNullException exception (See stack trace below). I'm configuring the container in a mix between XML and Code (by using ...
0
votes
1answer
200 views

Spring.Social.Dropbox API doing a callback to C# when successfully authorised

I am currently looking into adding dropbox to my c# software. I am using spring.social from https://github.com/SpringSource/spring-net-social-dropbox. I have the following code to do the ...
0
votes
1answer
70 views

Spring.NET WebServiceProxyFactory - Swap ServiceUri property at runtime?

I have an application that uses Spring.NET for IOC, as well as many other features that it provides. The problem I am now trying to tackle is how to setup something similar to a ...
15
votes
1answer
505 views

NHibernate - Cascade Merge to child entities fails for detached parent entity

Current Approach In an ASP.NET web forms app (using Spring.NET and NHibernate) we have an aggregate root (Person) whose details are captured across a number of screens/pages. The Person entity ...
0
votes
0answers
77 views

ThreadAbortException in TIBCO.EMS

I'm using Spring.Net to call TIBCO service. URL is referred to use TIBCO.EMS call using spring.net. Application is working fine until Thread abort exception is getting raised by TIBCO. After this ...
0
votes
0answers
54 views

Web service stops working in Spring.NET v1.3.2

We have a web service that we are using Spring.NET to publish and it is working fine under v1.3.0. However, it stops working when I try to upgrade our application to use v1.3.2. The code in ...
0
votes
1answer
805 views

Could not load type from string value

I am creating a program which used NHibernate and Spring.Net framework. When I am executing application then I am getting following exception Error creating context 'spring.root': Could not load ...
3
votes
0answers
104 views

CodeConfig equivalent for tx:attribute-driven

I'm using CodeConfig as opposed to XML files for Spring.NET using Fluent NHibernate to read/write to the database. But for transaction management, I still want to use Spring's [Transaction] attribute ...
0
votes
1answer
141 views

Moving from Java Spring to Spring.NET

I am a .NET programmer with very little Java experience. I have inherited a Java project and am attempting to do the Java to C# conversion by hand. I know that there are converters out there, but ...
0
votes
0answers
68 views

Spring.Net DelegateFactoryObject error when binding to method Contains of a List

I tried to configure a list of strings for comparisms using a DelegateFactory as follows: <object type="Spring.Objects.Factory.Config.DelegateFactoryObject"> <property ...
0
votes
1answer
98 views

Dependency injection of local variable returned from method

I'm (somewhat) new to DI and am trying to understand how/why it's used in the codebase I am maintaining. I have found a series of classes that map data from stored procedure calls to domain objects. ...
3
votes
1answer
252 views

Is there any way to use SCOPE_IDENTITY if using a multiple insert statement?

I will import many data rows from a csv file into a SQL Server database (through a web application). I need the auto generated id value back for the client. If I do this in a loop, the performance ...
1
vote
1answer
242 views

Cannot catch System.Reflection.TargetInvocationException (using TPL)

I have an anonymous TPL task with the following structure: Task.Factory.StartNew(() => { try { DoStuff(); } catch ...

1 2 3 4 5 11