473,485 Members | 1,473 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Architecture and Net Remoting

Hi friends!

What is the best architecture based in Net remoting?
is valid get data with datareaders put this data in Generic list and pass it
through of n tier?
are generic list serializable?

is best get data with dataset or datatable and pass it through of n tier?
I am working with Framework 2.0. ASP.NET and C#.

Thanks

Regards
Cesar
Jun 27 '08 #1
4 1268

Well, first you want to go to WCF. Especially if you're authoring new code.

Second, I would strongly recommend my blog entry:

http://sholliday.spaces.live.com/Blog/cns!A68482B9628A842A!158.entry

....

Reminder: 3.0 (which you need for WCF) is an "addon" to 2.0, not a
replacement for 2.0.

.......

You could do datasets or datatables. I would go with custom
objects/collections instead.


"AAAAA" <AA***@hotmail.comwrote in message
news:ep**************@TK2MSFTNGP05.phx.gbl...
Hi friends!

What is the best architecture based in Net remoting?
is valid get data with datareaders put this data in Generic list and pass
it through of n tier?
are generic list serializable?

is best get data with dataset or datatable and pass it through of n tier?
I am working with Framework 2.0. ASP.NET and C#.

Thanks

Regards
Cesar

Jun 27 '08 #2
I generally work with custom objects that are serializable and use WCF over
Remoting, as it allows you to change to a web delivery method without
reworking your code. In addition, it is simpler to code.

You can use any object that is serializable and some prefer to use DataSets,
as they are simpler to implement.

It is really up to you.

One thing to watch out for, which I have seen in many "service type"
applications is ending up with tight coupling through your objects. My last
nightmare required the exact same version of a library on both ends and the
library had been completely refactored. If it were all in house, it would
not have been as painful, of course. Service boundaries should help loosely
couple your layers, not tighten the coupling.

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

Subscribe to my blog
http://gregorybeamer.spaces.live.com/lists/feed.rss

or just read it:
http://gregorybeamer.spaces.live.com/

*************************************************
| Think outside the box!
|
*************************************************
"AAAAA" <AA***@hotmail.comwrote in message
news:ep**************@TK2MSFTNGP05.phx.gbl...
Hi friends!

What is the best architecture based in Net remoting?
is valid get data with datareaders put this data in Generic list and pass
it through of n tier?
are generic list serializable?

is best get data with dataset or datatable and pass it through of n tier?
I am working with Framework 2.0. ASP.NET and C#.

Thanks

Regards
Cesar

Jun 27 '08 #3
AAAAA wrote:
Hi friends!

What is the best architecture based in Net remoting?
is valid get data with datareaders put this data in Generic list and pass it
through of n tier?
are generic list serializable?

is best get data with dataset or datatable and pass it through of n tier?
I am working with Framework 2.0. ASP.NET and C#.

Thanks

Regards
Cesar

You should take a look on Windows Communication Foundation (WCF). It is
better than .NET Remoting
--
Thanks,
Duy Lam Phuong
Jun 27 '08 #4

"AAAAA" <AA***@hotmail.comwrote in message
news:ep**************@TK2MSFTNGP05.phx.gbl...
Hi friends!

What is the best architecture based in Net remoting?
is valid get data with datareaders put this data in Generic list and pass
it through of n tier?
are generic list serializable?

is best get data with dataset or datatable and pass it through of n tier?
I am working with Framework 2.0. ASP.NET and C#.
Hey, I know you are hearing about that WCF. I guess in away it has some
advantages, but on the other hand, one can go completely out of control with
it . I am working on this project at a client site that's using WCF for a
large Windows Desktop solution with nHibernate. One just can't assume that
WCF is some kind of stops all and ends all solution, and one should pick
when WCF is applicable. I am not totally sold on it being a solution for all
communications in an N-Tier solution that's for sure.

If you want to see .Net Remoting in action in a Framework for a solution and
how it works, then get the CSLA book, download the CSLA Framework source
code and put it together and download the source code for the Tracker
project that uses the CSLA Framework. You'll see how Remoting works and what
objects are involved and their structure.

http://www.lhotka.net/Article.aspx?i...b-e0059cc82ee7
<http://wcf.netfx3.com/blogs/wcf_community_bloggers/archive/2007/07/10/csla-net-3-0-available-for-download.aspx>

The only thing I am sold on in that project I am working on is MVP. That's
fabulous.

MODEL-VIEW-PRESENTER

http://www.polymorphicpodcast.com/

click 'Shows'

click 'Design Patterns Bootcamp: Model View * Patterns*

view parts 1-5


Jun 27 '08 #5

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

Similar topics

25
5542
by: David Noble | last post by:
We've been developing a web site using 3-tier architecture for 18 months now. There is a common layer that defines the classes - using XML schemas. The data layer acts as a wrapper to 3 databases...
1
1251
by: Ambarish Ganguly | last post by:
Hi, We are planning for a 3 tier architecture with Web server App server containing all business dlls Database server. The web server will communicate using COM interop ( CreateObject sort...
2
304
by: Joshua Belden | last post by:
Small architecture question I'm hoping someone can answer? I want to create a Windows Service Component that will periodically poll a database for data changes, respond to several client...
0
947
by: JTS | last post by:
I need to create three ASP.NET applications - each one will run on a different production server. Each application does basically the same thing with respect to data access; the apps differ...
3
1627
by: Julia | last post by:
I need help with architecture design,please: I have a server which constantly downloading messages from the internet and store them inside a data base. the server have two administrators...
0
1230
by: CodeMonkey | last post by:
Hi, I was wondering if anybody could give me some advice on how to structure an application that I am about to start work on. The vague requirements will be: 1) Always-On monitoring of data...
1
2453
by: Silent Ocean | last post by:
Hi 1. I am in process of designing N-Tier Application using ASP.NET. Can anyone guide me the right material or microsoft guidelines document which I can used in designing the N-Tier application....
2
1243
by: Ken Ross | last post by:
I'm in the early stages of working up the design for a large .Net web application and want to make sure that we have the best possible physical architecture to support the logical architecture and...
2
1520
by: z71mdridin | last post by:
I currently have a classic asp/COM+ architecture setup as following: Server A- hosts all the classic asp front end pages Server B- host all the business layer dlls. They are currently...
1
6825
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
5418
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
4857
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
4551
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3058
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
3063
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1376
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
1
595
muto222
php
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
247
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

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.