Tagged Questions
The middle-tier tag has no wiki summary.
3
votes
1answer
173 views
WCF hosting for middle tier
We're developing a new middle tier for our application suite. We're looking to rewrite our business logic and data access layers in C#, as they are currently in VB6 and published via COM+.
What ...
2
votes
1answer
84 views
Classic ASP app has COM 'middle layer' for light business logic. Is this needed in ASP.NET?
I am trying to estimate how long it will take to migrate a Classic ASP application to .NET and came across hundreds of COM functions written in VB 6.
A majority of these functions only do parameter ...
2
votes
3answers
291 views
Validation in the middle tier
I want to do validation on my business code. I'm thinking on 2 ways to do this.
One, do the validation on my class property setters in the following fashion
class Student{
public string Name{
...
1
vote
1answer
143 views
Architecture for multitenant middle-tier
We're developing a "middle-tier" to replace an existing business logic/data access layer. One of the design concerns we're under is that we need to design it in a way that allows for multiple ...
0
votes
6answers
547 views
Three tier architecture
I have some questions about three tier architecture.
how to implement an application in three tier architecture correctly?
how to communicate between these tiers ?
Is data tier completely equals to ...
0
votes
1answer
38 views
Is it advisable to make a web program to interface to a database-agnostic layer?
I'm a Winforms programmer before; I always partition programs I write in two parts, the front-end(Winforms) and middle-tier(facilitated by Remoting/WCF)
On that approach, the front-end code cannot ...
0
votes
1answer
113 views
How to send a secure request to a data tier over a firewall
I've been asked to populate a flash file with some data from a database. I said, "Great, I will write some PHP that talks to the database and outputs xml. The swf can call that file."
My boss then ...
0
votes
1answer
84 views
Moving from a direct db connection per user to using a web-service with pooled connections
I'm working on moving a V.Rich Client from talking direct to the DB with one login per user to talking direct with a WCF service layer.
In the new model I'm like the users to authenticate with the ...
0
votes
4answers
144 views
Using Postgresql as middle layer. Need opinion
I need some opinions.
I'm going to develop a POS and inventory software for a friend. This is a one man small scale project so I want to make the architecture as simple as possible.
I'm using ...
0
votes
1answer
514 views
How to create an XPS document in a WCF service to store and return?
I've got a WCF service as middle tier, and on some occasions I need to create a printable document, store it for future reference in the database, and return it to the client.
My first choice as file ...