473,760 Members | 10,633 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Distributed services?

Just got my first .NET framework course. A framework also developped
by my company. The tech guy got me totally confused:
- The UI talks to the controller
- the Controler talks to the manager
- the manager talks to the Dal factory
- the DAL talk to the Impl proxy
- the Web service talks to the manager or an other web service
- A business object is not a web service
....On top of this nightmare, there is not server for the web service,
the DLL must be copied on every PC running my .NET application...!
Apparently it is to prevent large SOAP messages to go back and forth
on the network?

J2EE is clear, the UI talks to the BO, the BO talks to the DB. There
is a BO server somewhere that everybody talks to, the DB can also be
on a server..etc.

Can someone points me to a document clarifying what is a distributed
service architecture with .NET?

Thanks.
Jul 21 '05 #1
2 1420
You can build a distributed app that has a UI talking to BO, which talk to
your DAL. It is spreading this across machines that expands the problem, as
each machine must have the objects that are being transported. If you are
transporting data, instead, there is no issue.

NOTE: The same issue is present in Java, if you are going fully OO, as you
have to have object definitions on each server. The most common method of
solving the bigger issue is to compile the objects into a separate assembly
(.NET), etc.
---

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

*************** ************
Think Outside the Box!
*************** ************

"tellme" wrote:
Just got my first .NET framework course. A framework also developped
by my company. The tech guy got me totally confused:
- The UI talks to the controller
- the Controler talks to the manager
- the manager talks to the Dal factory
- the DAL talk to the Impl proxy
- the Web service talks to the manager or an other web service
- A business object is not a web service
....On top of this nightmare, there is not server for the web service,
the DLL must be copied on every PC running my .NET application...!
Apparently it is to prevent large SOAP messages to go back and forth
on the network?

J2EE is clear, the UI talks to the BO, the BO talks to the DB. There
is a BO server somewhere that everybody talks to, the DB can also be
on a server..etc.

Can someone points me to a document clarifying what is a distributed
service architecture with .NET?

Thanks.

Jul 21 '05 #2
..........and webservices usually helps if you can architect that in....

--
Regards

John Timney
ASP.NET MVP
Microsoft Regional Director

"Cowboy (Gregory A. Beamer) - MVP" <No************ @comcast.netNoS pamM> wrote
in message news:4C******** *************** ***********@mic rosoft.com...
You can build a distributed app that has a UI talking to BO, which talk to
your DAL. It is spreading this across machines that expands the problem, as each machine must have the objects that are being transported. If you are
transporting data, instead, there is no issue.

NOTE: The same issue is present in Java, if you are going fully OO, as you
have to have object definitions on each server. The most common method of
solving the bigger issue is to compile the objects into a separate assembly (.NET), etc.
---

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

*************** ************
Think Outside the Box!
*************** ************

"tellme" wrote:
Just got my first .NET framework course. A framework also developped
by my company. The tech guy got me totally confused:
- The UI talks to the controller
- the Controler talks to the manager
- the manager talks to the Dal factory
- the DAL talk to the Impl proxy
- the Web service talks to the manager or an other web service
- A business object is not a web service
....On top of this nightmare, there is not server for the web service,
the DLL must be copied on every PC running my .NET application...!
Apparently it is to prevent large SOAP messages to go back and forth
on the network?

J2EE is clear, the UI talks to the BO, the BO talks to the DB. There
is a BO server somewhere that everybody talks to, the DB can also be
on a server..etc.

Can someone points me to a document clarifying what is a distributed
service architecture with .NET?

Thanks.

Jul 21 '05 #3

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

Similar topics

7
13910
by: Prashanth | last post by:
Hi, We are facing some issues in COM+ deployment. We get system error "Unable to enlist in a distributed transaction" . It has a very inconsistant behaviour. On refreshing the screens couple of times, the error disappears.Also it reappears abruptly giving an impression that the transaction failed although the changes are commited to the database.Please let me know if any of you have faced it before. This is a .Net Application with...
7
2382
by: Richard Maher | last post by:
Hi, I am seeking the help of volunteers to test some software that I've developed which facilitates distributed two-phase commit transactions, encompassing any resource manager (e.g. SQL/Server or Oracle) controlled by Microsoft's Distributed Transaction Coordinator in a Windows2000 environment, with any resource manager under the control of DECdtm (e.g. Rdb (or Oracle via the XA Veneer)) in a VMS environment.
1
439
by: Avanish Pandey | last post by:
Hello All We have 3 differen services (in 3 different server) Service A,B,C . We want to implement distributed transaction when call methods of B and C from A. Is it possible? if yes then how? I have read the doc regarding this: http://www.developer.com/net/asp/article.php/3385631 but it will not work when methods are in different services on
8
3659
by: Rob S | last post by:
I have UDB 8.1 Personal Edition installed. I'm using Development centre to develop JAVA Stored Procedues. I am unable to debug them. I have installed IBM Distributed Debugger and have set DB2ROUTINE_DEBUG=ON. I installed Distributed Debugger after UDB. The Procs will build with debug but no debugger window appears when run in debug mode. I followed the instructions that came with Debugger regarding the installation directory etc.
8
4368
by: Don Riesbeck Jr. | last post by:
I have an C# EnterpriseService component that is part of an application I am developing that is responsible for writing data to an SQL Server. (it reads from a local DB (MSDE), then writes to a 'remote' DB (SQL Server 2k)...) On some machines I get the following exception: System.InvalidOperationException: An error occurred while enlisting in a distributed transaction. at...
4
2823
by: tsui | last post by:
Dear all Someone say that past is Client/Server application, and now is distributed application, but i don't understand these terms Is it Client/Server application is mean two tiers, and only one server can not be web farm or cluster, and asp and vb can be a client/server app and is it distributed application is mean more than two tiers, and can more than one server ????????????
11
1456
by: jason | last post by:
we have developed a .NET class library that defines a family of reusable business objects. the class library is developed in C#, and works quite well. one problem, however, is that as more and more applications are being developed to consume this class library, we are running into deployment and version controll issues. i recall a lot of this kind of thing being solved with distributed application models, such as the EJB...
5
1304
by: Carl J. Van Arsdall | last post by:
Hey everyone, another question for the list. In particular i'm looking for comments on some of the distributed technologies supported in python. Specifically, I'm looking at XML-RPC, RPyC, CORBA, and Twisted. Before you offer any comments let me talk about what i'm doing a little bit. Right now I'm creating an execution framework. The framework aims to allow users to create a modular system by which engineers can mitigate some of the...
2
2797
by: Dan Kelley | last post by:
I have 2 services, ServiceA and ServiceB. Certain user driven functions require ServiceA to perform some DB tasks, before sending a request to ServiceB to perform some additional tasks. If ServiceB fails to execute the request, I would like ServiceA to rollback its changes. ServiceA and ServiceB are located on 2 different servers on the same network. I am struggling to find resources that cover this scenario. most articles that discuss...
4
1670
by: JB | last post by:
Hi All, I need to write my first "distributed" application and due to my lack of knowledge and experience in that area, I'm stuck on the first big design decision. Reading a lot on distributed applications, remoting, etc didn't help me much for that particular issue. The main data the application manipulates is a list of Queries. A query is a custom object containing an SQL statement and some parameters to allow the query to run...
0
9521
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10107
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9945
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9900
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9765
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8768
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6599
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 then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5214
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 last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
3863
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 we have to send another system

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.