I am working on an n-tier web project, The data access layer is in a project, and the website is in another separate project with reference to the data access layer project.
I am currently trying to use STE\'s in an n-tier scenario. I have a WCF service that allows me to retrieve a graph of objects and/or update objects along with a client (WPF) application that allows me
Should I have them in the wcf client app? Or should I put them in the business or data layer? On the one hand, serialize and de-serializing of data, I may require interaction with other data objects
I have a 3 tier win forms app, it has a UI, BLL and DAL. I\'m looking to add an exception handler that throws exceptions from the DAL all the way up to the UI so the user knows what the error is. I ha
Kind of a special question today :) I just had a test at my technical university where I was told that I am wrong.
So I\'m doing a project. MS SQL->WCF->Client (win32 application + asp.net MVC 3 web) I have worker with ado.net typed datasets till now, but now I have question...
I\'ve been developing my first Java EE app, which has a number of JPA entity classes, each of which have a corresponding EJB class for dealing with the business logic.What I\'ve done is changed one of
We have a web-app that consists of web-tier (PHP), app-tier (Java) and DB (mysql). web-tier communicates with app-tier AND with DB to retrieve some data.
To attain the highest grade in a recent piece of coursework I\'m asked to 开发者_开发知识库develop a specific application using c++ and multi-tier programming.
I have a repository layer that i开发者_JAVA技巧s responsible for my data-access, which is called by a service layer. The service layer returns DTOs which are serialized and sent over the wire. More of