Can anyone point me to CSLA app's running live on the Web?
Can anyone point me to CSLA.Net app's running live on the Web? ...
Can anyone point me to CSLA.Net app's running live on the Web? ...
I'm creating a Silverlight front end for an existing desktop app written using CSLA. One thing that I'm having trouble with is converting classes like the following: public class SomeCollection : Csla.ReadOnlyListBase<SomeCollection, SomeObject> { private static SomeCollection _list = null; public static SomeCollection GetSomeCo...
My company is interested in porting a large business application to .NET. We plan on developing a desktop version and a silverlight version. I mostly researched the CSLA framework (got rocky's book, halfway through already) and found it a bit over-engineered, the data layer side didn't seem so polished either. Is there any other framewo...
I am interested if anyone has experience using DotNetNuke authorization in CSLA. I would like to be able to use my DotNetNuke roles to be able to assign permissions to my CSLA objects and properties. If I just reference the DNN assemblies won't that create an unwanted dependency in my CSLA business objects? Would it be easier to build...
Martin Fowler suggests using a service layer as a boundary between the domain model and and "Data Loaders". However, Rockford Lhotka suggests building validation into the business object itself and this is exactly what CSLA.NET does. The benefits of abstracting this into a service layer is obviously that your service layer can coordinat...
What is CSLA Framework and Its use ? ...
Hi, I am running a WPF app with a remote server setup but getting "The remote server returned an unexpected response: (400) Bad Request" . This is definitely a request size issue since I tried reducing the data size being sent and the call worked fine. From my configuration it looks like I have 2 Gigs set up, but it behaves like only ...
Hi to all, I am new to CSLA, i just want to know what factors that could affect CSLA performance when loading records in a grid Thanks ...
I'm part of a team tasked to revamping our old VB6 UI/COBOL database application to modern times. Before I was hired, the decision was made (largely on sales, I'm sure) to redo the UI before the database. So, now we're using WPF and MVVM to great effect, it's been amazing so far, especially using CSLA as our Model layer. However, beca...
I've been using CSLA in anger for some time on a long standing project. However I would like to use it on a new project and need to develop a sound business case in order to get buy-in from senior management. Can anyone offer suggestions for this? So far I have: It's quite widely adopted so it's easier to find experienced developers T...
I was reading the book "Expert C# 2005 Business Objects". The book describes various base classes to be inherited by various classes to solve real-world problems. But the book does not provide examples of all those classes. Can anyone give me all of those examples (with reason) to better understand CSLA? For example, Which real-wor...
I am pretty new to both NHibernate and CSLA.NET, and I'm running into an issue where I'm essentially needing to save the same row in the database twice, within the same transaction (and therefore, session). I've read the other questions on SO w.r.t. the NonUniqueObjectException, as well as done a lot of googling, but I can't seem to make...
Hello, Im considering use CSLA.NET 3.8 for example for Security and Identity Management on a started Windows Forms Fx 3.5 Project, this will be considered as a good practice? Im looking for : - Namespace : Csla.Security MembershipIdentity BusinessPrincipalBase - Namespace : Csla BusinessBase PropertyInfo My question is about...
Hi I've been asked to extend a simple legacy application by adding a few tables and classes in it to extend functionality. This is a .Net 1.1 application which I have now successfully upgraded to .Net 3.5 Now my problem is that for these new tables and classes I wanted to add an ORM and a business logic layer that I can in the future...
I'm writing an app in CSLA and want to log IP addresses, but only if the client is calling a remote data portal (such as the WCF one). How can I get the client's IP address when executing within a remote data portal? I realize I could probably pass it with the request, but I'd like to avoid this if possible. ...
I have this wpf form; the call to InitializeComponent() brings up this message: Binding Failure was detected. The assembly with display name 'Csla.Luna' failed to load in the 'Load' binding context of the AppDomain with ID 1. The cause of the failure was: System.IO.FileNotFoundException: Could not load file or assemb...
I'm trying to build a proof of concept Csla 3.7/Silverlight 3 app and have been working my way through Rocky's tutorials. It's a really simple one form/one business object data editing app and everything is just peachy right up until the point where I try to get the Wcf configured so that the Silverlight app can talk to the Data Portal. ...
The WCSF uses Model View Presenter (MVP) pattern for organizing/structuring the source code for a website. When MVP pattern is used correctly, it provides seperation of concerns, unit testability of presenter logic, etc. How to make WCSF and CSLA framework play well (work together) for achieving unit testability of the presenter logic. ...
Hi Guys can anyone help me quickly in CSLA my question is i want to fill a Grid in CSLA which should be Editable, Please tell me which CSLA stereotype i have to use it will be better if anyone will give me COde sample. Thanks ...
OK, I am having quite an issue with data bindings in .NET. Some background information, my business object tier is using CSLA v1.0. And _clientObj is passed in as a parameter as a business object that inherits CSLA.BusinessBase Here is the code segment: Dim nextClient As New ComboBox With { _ .Name = "txtClientAtt" & (Clien...