Proxy layer between application and sqlserver

  • Thread starter Thread starter Rakesh
  • Start date Start date
R

Rakesh

hello,
I have a application that connects to sqlserver to get the
job done.

I am looking for something that will act as an inbetween
layer.

Basically instead of connecting direct to the sql server,
my application wil connect to this layer( may be a
service), this service will do something and then fwd the
same request to sqlserver.

Something like TCPMon or SOAP Tunnel used in the
Webservices world.

current arch:
app -> sqlServer
app -> (proxyService) -> sqlServer

any leads on this topic?

thanks in advance.
Rakesh
 
Rakesh said:
hello,
I have a application that connects to sqlserver to get the
job done.

I am looking for something that will act as an inbetween
layer.

Basically instead of connecting direct to the sql server,
my application wil connect to this layer( may be a
service), this service will do something and then fwd the
same request to sqlserver.

Something like TCPMon or SOAP Tunnel used in the
Webservices world.

current arch:
app -> sqlServer
app -> (proxyService) -> sqlServer

any leads on this topic?

thanks in advance.
Rakesh

This might be worth a look

Designing Data Tier Components and Passing Data Through
Tiers
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnbda/html/BOAGag.asp
 
Back
Top