473,396 Members | 2,050 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,396 software developers and data experts.

Remoting Object

Hello,

I would like to clarify something about Remoting Object in .NET.

Knowing from MSDN that in order for Remote Object to work, I need 3
components.
a) RemotableType object, just like a regular dll with additional remotable
feature.
b) Host Application, which is a listener listens for remote clients of a
remotable type
c) Client Application, which is an application that creates an instance of
your remotable type and accesses designated members.
I would like to know:
(1) Can I run remote object without a web server (IIS)?
(2) Can I run remote object without having a server program (host
application or listener) running and
waiting for a client call?
if no, can I utilize the proxy feature without using the listener?
(3) Can I call (from PC1) a remote object in another PC (e.g. PC2) and then
the remote object call another remote object in PC3. totally, 3 PC involves?
Thank you

Anson
Nov 20 '05 #1
2 1311
Hello Anson,
I would like to know:
(1) Can I run remote object without a web server (IIS)?
Yes but you'll have to provide a custom listener.
(2) Can I run remote object without having a server program (host
application or listener) running and
waiting for a client call?
I believe no, unless you use IIS as the host program. Exceptions apply when
we talk about cross-AppDomain calls on the same PC - you don't need a
dedicated listener in this case.
(3) Can I call (from PC1) a remote object in another PC (e.g. PC2) and then the remote object call another remote object in PC3. totally, 3 PC involves?

I believe yes.

P.S. There's a dedicated remoting newsgroup called
microsoft.public.dotnet.framework.remoting. You might want to re-post your
question there to get more help from remoting gurus.

--
Dmitriy Lapshin [C# / .NET MVP]
X-Unity Test Studio
http://x-unity.miik.com.ua/teststudio.aspx
Bring the power of unit testing to VS .NET IDE
"Anson" <an***********@torontosquare.com> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl... Hello,

I would like to clarify something about Remoting Object in .NET.

Knowing from MSDN that in order for Remote Object to work, I need 3
components.
a) RemotableType object, just like a regular dll with additional remotable
feature.
b) Host Application, which is a listener listens for remote clients of a
remotable type
c) Client Application, which is an application that creates an instance of
your remotable type and accesses designated members.
I would like to know:
(1) Can I run remote object without a web server (IIS)?
(2) Can I run remote object without having a server program (host
application or listener) running and
waiting for a client call?
if no, can I utilize the proxy feature without using the listener?
(3) Can I call (from PC1) a remote object in another PC (e.g. PC2) and then the remote object call another remote object in PC3. totally, 3 PC involves?

Thank you

Anson


Nov 20 '05 #2
Thank you so much Dmitrity
"Dmitriy Lapshin [C# / .NET MVP]" <x-****@no-spam-please.hotpop.com> wrote
in message news:#L**************@TK2MSFTNGP11.phx.gbl...
Hello Anson,
I would like to know:
(1) Can I run remote object without a web server (IIS)?
Yes but you'll have to provide a custom listener.
(2) Can I run remote object without having a server program (host
application or listener) running and
waiting for a client call?


I believe no, unless you use IIS as the host program. Exceptions apply

when we talk about cross-AppDomain calls on the same PC - you don't need a
dedicated listener in this case.
(3) Can I call (from PC1) a remote object in another PC (e.g. PC2) and

then
the remote object call another remote object in PC3. totally, 3 PC

involves?

I believe yes.

P.S. There's a dedicated remoting newsgroup called
microsoft.public.dotnet.framework.remoting. You might want to re-post your
question there to get more help from remoting gurus.

--
Dmitriy Lapshin [C# / .NET MVP]
X-Unity Test Studio
http://x-unity.miik.com.ua/teststudio.aspx
Bring the power of unit testing to VS .NET IDE
"Anson" <an***********@torontosquare.com> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl...
Hello,

I would like to clarify something about Remoting Object in .NET.

Knowing from MSDN that in order for Remote Object to work, I need 3
components.
a) RemotableType object, just like a regular dll with additional remotable feature.
b) Host Application, which is a listener listens for remote clients of a
remotable type
c) Client Application, which is an application that creates an instance of your remotable type and accesses designated members.
I would like to know:
(1) Can I run remote object without a web server (IIS)?
(2) Can I run remote object without having a server program (host
application or listener) running and
waiting for a client call?
if no, can I utilize the proxy feature without using the listener?
(3) Can I call (from PC1) a remote object in another PC (e.g. PC2) and

then
the remote object call another remote object in PC3. totally, 3 PC

involves?


Thank you

Anson

Nov 20 '05 #3

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

Similar topics

6
by: Catherine Jones | last post by:
Hi all, we need urgent help in a matter. We are trying to pass a COM object from the client to server and are facing some problems in the same. We've our client in C# as well as the Server...
2
by: frazer | last post by:
i am checking a remoting sample and cant understand what this means. what does this mean? if(!System.Runtime.Remoting.RemotingServices.IsTransparentProxy(Object1)) { throw new...
6
by: Uttam | last post by:
Hello, We are at a very crucial decision making stage to select between .Net and Java. Our requirement is to download a class at runtime on the client computer and execute it using remoting or...
0
by: Mike Grishaber | last post by:
Hello All, I am using an IHttpAsyncHandler class to intercept HTTP Requests and forward them to a system which processes the Request and returns the Result. I use .NET Remoting to connect the...
4
by: Uchiha Jax | last post by:
Hello everyone, I am a plenty silly person who is trying to learn .NET remoting through trial and error (all articles I read are going over my head at the moment (mostly) so I thought i'd give...
5
by: LGHummel | last post by:
I'm trying to host a remoting app in IIS and am getting the following error: Failed to execute the request because the ASP.NET process identity does not have read permissions to the global...
4
by: Sharon | last post by:
Hi, I'm using the remoting, and I have a remoting object that has a public event that other processes should register to it. But when the client process is registering to the remote event, it...
6
by: Palvinder Singh | last post by:
Hello google group peeps, I am new to remoting, but have a grasp of it. I am trying to create a server/client application, which will be deployed over an intranet. I have upwards of five...
4
by: Rich | last post by:
Can anyone suggest a good (current) tutorial on how to do basic remoting with C# (2005 express edition)?
13
by: José Joye | last post by:
Hello, What is the best way to stop a remoting server (Singleton SAO) that has been started with RemotingConfiguration.Configure(). For sure, I want to do this without quitting the application...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
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
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: 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
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
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...
0
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,...

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.