Membership and Remoting -
07-14-2007
, 06:09 PM
Hi
I'm developing a complete solution fragmented into three layers (web
application, components (business classes) and database). Each layer
is located in different servers. The web app server cannot have direct
access to the database server, the component server is in charge of
making the data visible for the web app server.
My problem is: I'm using .NET's Membership framework to grant access
to the web application, and I'm having problems 'cause some class of
this framework is trying to access database server directly, not
trough component server.
How can avoid this? I mean, instantiate membership objects in
component server and access the database. (membership classes don't
inherit MarshallByRefObject abstract class)
(excuse my english) |