473,395 Members | 1,537 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

Equivalent .NET architecture for a J2EE app?

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.
Jul 21 '05 #1
6 5127
The JSP would be ASPX, essentially, with some difference in the byte compile
and coding methodology.

There is no direct EJB equivalent. You would most likely end up with a
combination of Framework components and custom classes, in your solution.

JDBC and ADO.NET - sort of. But JDBC is, technically, a bit more focused on
the connectivity, much like ODBC. You can use ODBC with ADO.NET, and it is
possible to do the same with JDBC. But, many Java developers call more than
the data conn stack JDBC, so ADO .NET could be an equivalent, if that is the
case. The portion of ADO.NET that sits in the client namepaces, like
SqlClient and OracleClient is technically closer to JDBC, but there are
still some differences.

Much of what you are looking at in Java are Frameworks built on top of the
language. The Framework direction for Sun and Microsoft are widely
different.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

************************************************
Think Outside the Box!
************************************************
"Frank Rachel" <fr*****@navisys.com> wrote in message
news:%2******************@TK2MSFTNGP09.phx.gbl...
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.

Jul 21 '05 #2

Hi Cowboy

Check out: http://msdn.microsoft.com/library/en...asp?frame=true and the related chapters there.

Gives you a good understanding of the two platforms and the "equivalence".

Also check out Simon Guest's articles at www.simonguest.com

Simon Guest is an authority on .NET and J2EE interoperability and explains the concepts very well. His book has a chapter which does a similar comparison of the two platforms.

There is no seperate application server in the Windows world - rather the app server is a routing to the application runtime done by the web server (IIS) itself.

Regards

Pandurang
--
blog: pandurang.thinkingMS.com
Jul 21 '05 #3
Hi Cowboy

Check out: http://msdn.microsoft.com/library/en...asp?frame=true and the related chapters there.

Gives you a good understanding of the two platforms and the "equivalence".

Also check out Simon Guest's articles at www.simonguest.com

Simon Guest is an authority on .NET and J2EE interoperability and explains the concepts very well. His book has a chapter which does a similar comparison of the two platforms.

There is no seperate application server in the Windows world - rather the app server is a routing to the application runtime done by the web server (IIS) itself.

Regards

Pandurang
--
blog: pandurang.thinkingMS.com
Jul 21 '05 #4
Hi Cowboy

Check out: http://msdn.microsoft.com/library/en...asp?frame=true and the related chapters there.

Gives you a good understanding of the two platforms and the "equivalence".

Also check out Simon Guest's articles at www.simonguest.com

Simon Guest is an authority on .NET and J2EE interoperability and explains the concepts very well. His book has a chapter which does a similar comparison of the two platforms.

There is no seperate application server in the Windows world - rather the app server is a routing to the application runtime done by the web server (IIS) itself.

Regards

Pandurang
--
blog: pandurang.thinkingMS.com
--
blog: pandurang.thinkingMS.com
"Cowboy (Gregory A. Beamer) [MVP]" wrote:
The JSP would be ASPX, essentially, with some difference in the byte compile
and coding methodology.

There is no direct EJB equivalent. You would most likely end up with a
combination of Framework components and custom classes, in your solution.

JDBC and ADO.NET - sort of. But JDBC is, technically, a bit more focused on
the connectivity, much like ODBC. You can use ODBC with ADO.NET, and it is
possible to do the same with JDBC. But, many Java developers call more than
the data conn stack JDBC, so ADO .NET could be an equivalent, if that is the
case. The portion of ADO.NET that sits in the client namepaces, like
SqlClient and OracleClient is technically closer to JDBC, but there are
still some differences.

Much of what you are looking at in Java are Frameworks built on top of the
language. The Framework direction for Sun and Microsoft are widely
different.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

************************************************
Think Outside the Box!
************************************************
"Frank Rachel" <fr*****@navisys.com> wrote in message
news:%2******************@TK2MSFTNGP09.phx.gbl...
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.


Jul 21 '05 #5
Hi Cowboy

Check out: http://msdn.microsoft.com/library/en...asp?frame=true and the related chapters there.

Gives you a good understanding of the two platforms and the "equivalence".

Also check out Simon Guest's articles at www.simonguest.com

Simon Guest is an authority on .NET and J2EE interoperability and explains the concepts very well. His book has a chapter which does a similar comparison of the two platforms.

There is no seperate application server in the Windows world - rather the app server is a routing to the application runtime done by the web server (IIS) itself.

Regards

Pandurang
--
blog: pandurang.thinkingMS.com
Jul 21 '05 #6
Hi Frank

Check out: http://msdn.microsoft.com/library/en...asp?frame=true and the related chapters there.

Gives you a good understanding of the two platforms and the "equivalence".

Also check out Simon Guest's articles at www.simonguest.com

Simon Guest is an authority on .NET and J2EE interoperability and explains the concepts very well. His book has a chapter which does a similar comparison of the two platforms.

There is no seperate application server in the Windows world - rather the app server is a routing to the application runtime done by the web server (IIS) itself.

Regards

Pandurang
--
blog: pandurang.thinkingMS.com
Jul 21 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
by: prabhat | last post by:
Hi, I am teaching myself J2EE. I have couple of books but how can I get practical experience? I installed trial version of IBM-websphere but it seems too complex for a beginner in J2EE. I...
0
by: Jim Collins | last post by:
This position requires that you be a U.S. citizen and hold an active SSBI clearance. This position offers highly competitive compensation with excellent benefits in a highly professional work...
0
by: Max Ischenko | last post by:
Hi, all. I think many would agree that the community-agreed standards could boost the development of the applications in a defined areas. In particular, the lack of J2EE-like standards about...
2
by: Silvana Di Martino | last post by:
My group recently received its first request for the the development of a really large and complex enterprise-level application, the kind of app that would require the use of tools like Enterprise...
124
by: 43 | last post by:
how come m$Office isn't written in .net? how come Open Office isn't written in j2ee? how come dbms systems aren't written in either? how come browsers aren't written in either? how come...
2
by: martin koenig | last post by:
Hi All I have an assignment where I have to report on which of the above as applied to a required IT system is the better. Since I'm advanced in J2EE, Do you know of any good web resources for...
13
by: Jonathan Li | last post by:
Hi there, I posted a thread in another group. I could not get satisfactory feedback. I would like to try if anybody in this group can help me out. My plan was, to develop components at server...
6
by: Frank Rachel | last post by:
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...
3
dmjpro
by: dmjpro | last post by:
plz send me a good link which can clearify me how the J2EE framework works i want the details information .... plz help thanx
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.