473,387 Members | 3,801 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,387 software developers and data experts.

.net's altenative to java beans

HI
please could anyone give me any links/URL's that i could visit for good
tutorials / examples on what .net uses as an altenative to java beans ?

as far as i can find out it uses "com" and wizards is this true ???

Thanks!!!!
Nov 22 '05 #1
3 7205
The closest equivalent is Enterprise Services (also known as COM+ and
Component Services).

Just search "Enterprise services" on google/msdn.

As a start try the following link "Understanding Enterprise Services (COM+)
in .NET"
http://msdn.microsoft.com/library/de...ml/entserv.asp
Yes "under the covers" this technology uses COM+. Don't worry about that. If
you base your communication infrastructure on Enterprise Services now you
should have a smooth upgrade path to the next .NET communication framework
(codename "Indigo" - part of Longhorn).
Nov 22 '05 #2
I would worry alot, COM interp doesn't come cheap, nor does it come with out
complexity.

JavaBeans are just server components right? so you could instead build
remoting objects ( which is server components).

Depending on what services you need, there's probably a native .net way to
do it.

--
Patrik Löwendahl [C# MVP]
www.cshrp.net - "Elegant code by witty programmers"

'"richlm" <ri*****@h0tmai1.com> wrote in message
news:eR**************@tk2msftngp13.phx.gbl...
The closest equivalent is Enterprise Services (also known as COM+ and
Component Services).

Just search "Enterprise services" on google/msdn.

As a start try the following link "Understanding Enterprise Services
(COM+) in .NET"
http://msdn.microsoft.com/library/de...ml/entserv.asp
Yes "under the covers" this technology uses COM+. Don't worry about that.
If you base your communication infrastructure on Enterprise Services now
you should have a smooth upgrade path to the next .NET communication
framework (codename "Indigo" - part of Longhorn).

Nov 22 '05 #3
NO!

The OP asked about JavaBeans. JavaBeans is a component model and a set of
conventions posited by Java for allowing classes to be introspected and
toolable. In .NET, every class is a component. The .NET class is the
direct analog to a JavaBean.

If the OP is talking about Enterprise JavaBeans (EJB) , that is something
different. There is no direct analog in .NET for EJB, and it's a durn good
thing, too. EJB is much criticized these days for being complex, and hard
to use. EJB combines remoting, transactions, concurrency, persistence,
thread control, pooling, and component lifecycle all in one gloppy model.
yech.

In .NET,
- the System.EnterpriseServices namespace provides transactions, lifecycle,
and pooling. also some other things.
- There are several different ways to do remoting (among them, .NET
Remoting and webservices)
- lifecycle depends on the hosting model you use (Windows Service, versus
ASMX, or ASPX, or COM+ server app, self-hosted, etc...)
- persistence is generally table-oriented via typed DataSet, though there
are some O-R frameworks (eg, nHibernate)
- concurrency is handled by you
- threading is also under the app's control.
-Dino

"Patrik Löwendahl [C# MVP]"
<pa*********************************************@h ome.se> wrote in message
news:%2******************@TK2MSFTNGP10.phx.gbl...
I would worry alot, COM interp doesn't come cheap, nor does it come with
out complexity.

JavaBeans are just server components right? so you could instead build
remoting objects ( which is server components).

Depending on what services you need, there's probably a native .net way to
do it.

--
Patrik Löwendahl [C# MVP]
www.cshrp.net - "Elegant code by witty programmers"

'"richlm" <ri*****@h0tmai1.com> wrote in message
news:eR**************@tk2msftngp13.phx.gbl...
The closest equivalent is Enterprise Services (also known as COM+ and
Component Services).

Just search "Enterprise services" on google/msdn.

As a start try the following link "Understanding Enterprise Services
(COM+) in .NET"
http://msdn.microsoft.com/library/de...ml/entserv.asp
Yes "under the covers" this technology uses COM+. Don't worry about that.
If you base your communication infrastructure on Enterprise Services now
you should have a smooth upgrade path to the next .NET communication
framework (codename "Indigo" - part of Longhorn).


Nov 22 '05 #4

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

Similar topics

1
by: Ms.net | last post by:
Please, i need any tool which can help me( in a few step,wizard, by creating java equivalent class) to use my .NET webservices in Java application. Please help !!!!! really Easy tool
3
by: sickky | last post by:
HI please could anyone give me any links/URL's that i could visit for good tutorials / examples on what .net uses as an altenative to java beans ? as far as i can find out it uses "com" and...
3
by: GeRmIc | last post by:
Hello Friends, I am working on a project where the service provider is written in JAVA and the client is written in .NET (C#). The Server communicates with the client through Java Beans. (1)...
2
by: yaron | last post by:
Hi, for porting java to c# i need to know: What is the C#.NET equivalent for java.net.SocketAddress and java.nio.ByteBuffer ? Thanks.
0
by: donnet | last post by:
To those familiar with Java beans, question on how to do with ASP.NET: I come from J2EE and starting to learn ASP.NET and C#. I want to find a way to display a web form filled with data taken...
9
by: Stephen H. | last post by:
Hi, I have an existing web application with java beans that I wanne migrate to ASP.NET using C#. The existing web application has some jsp files that use java beans as follows: .... <%@...
1
by: Andrea Temporin | last post by:
Is there someone who can tell me if it's possible to call Java Beans from Visual Basic Applications (windows forms application I mean)? Can I Use J#? Is It possible to create a Java web services as...
1
by: Scott McFadden | last post by:
Has anyone consumed a .net webservice from java? What java library did you use to consume the .net webservice? Is their a java tool that generates the java Soap proxy code given the .NET wsdl? ...
1
by: Ing. Eduardo F. Sandino | last post by:
Hi, there is some tool, software to migrate .net projects to Java, specially WEB PROJECTS.... ? Can anyone help me.!!!!
3
by: roboB | last post by:
Whth .NET WS I have serialized an ADO.NET Recordset in an XML Stream like this: <xml xmlns:s='uuid:BDC6E3F0-6DA3-11d1-A2A3-00AA00C14882' xmlns:dt='uuid:C2F41010-65B3-11d1-A29F-00AA00C14882'...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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.