F
Frank Rachel
So I can focus on the correct areas of research, I was wondering if someone
could give me the .NET equivelents for this J2EE architecture:
JSP's make calls to local JavaBean Controls. The controls do a JNDI lookup
to invoke methods on EJB's. The EJB's use local Java classes, and these
classes use JDBC to do database work.
Example:
Login.jsp contains "import xxx.LoginControl", and invokes the "login"
method.
LoginControl.login does a JNDI lookup for "LoginWorker", which is an EJB. It
invokes the "login" method of the EJB
LoginWorker.login does some stuff, and eventually calls
LoginDataSource.login, which uses JDBC to talk to the database.
What would be the appropriate areas of .NET to concentrate on? (JSP->ASPX,
EJB->?, JDBC->ADO?)
Whats the equivalent of the "Application Server" (WebSphere/etc)?
Thanks.
could give me the .NET equivelents for this J2EE architecture:
JSP's make calls to local JavaBean Controls. The controls do a JNDI lookup
to invoke methods on EJB's. The EJB's use local Java classes, and these
classes use JDBC to do database work.
Example:
Login.jsp contains "import xxx.LoginControl", and invokes the "login"
method.
LoginControl.login does a JNDI lookup for "LoginWorker", which is an EJB. It
invokes the "login" method of the EJB
LoginWorker.login does some stuff, and eventually calls
LoginDataSource.login, which uses JDBC to talk to the database.
What would be the appropriate areas of .NET to concentrate on? (JSP->ASPX,
EJB->?, JDBC->ADO?)
Whats the equivalent of the "Application Server" (WebSphere/etc)?
Thanks.