473,396 Members | 1,864 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

hi does anyone know where i can find a sample that explains remoting.
i need one that hosts the objects in IIS server . but i am using a C# app to
access the remotable objects.

in the IIS i have a small asp.net application (which has only 1 page)

<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.runtime.remoting>
<application>
<service>
<wellknown
mode="SingleCall"
type="nm1.Class1, nm1"
objectUri="Class1.rem"/>
</service>
<channels>
<channel ref="http">
<serverProviders>
<provider ref="wsdl"/>
<formatter ref="binary" typeFilterLevel="Full"/>
</serverProviders>
</channel>
</channels>
</application>
</system.runtime.remoting>
</configuration>
and in the C# app i configure the config file to read the remotable object.
if u know of any such example on the net kindly let me know.

thnx
Nov 16 '05 #1
4 2903
Frazer,

Check the section of the .NET framework documentation titled "An
Introduction to Microsoft .NET Remoting Framework", located at (watch for
line wrap):

http://msdn.microsoft.com/library/de...roremoting.asp

Specifically, look at the section titled "Hosting .NET Remoting
Objects", which contains a section for hosting objects in IIS.

Also check out the section titled "Hosting Remote Objects in Internet
Information Services (IIS)", located at (watch for line wrap):

http://msdn.microsoft.com/library/de...ervicesiis.asp

Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"Frazer" <Ic***@hotmail.com> wrote in message
news:uB*************@TK2MSFTNGP09.phx.gbl...
hi does anyone know where i can find a sample that explains remoting.
i need one that hosts the objects in IIS server . but i am using a C# app to access the remotable objects.

in the IIS i have a small asp.net application (which has only 1 page)

<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.runtime.remoting>
<application>
<service>
<wellknown
mode="SingleCall"
type="nm1.Class1, nm1"
objectUri="Class1.rem"/>
</service>
<channels>
<channel ref="http">
<serverProviders>
<provider ref="wsdl"/>
<formatter ref="binary" typeFilterLevel="Full"/>
</serverProviders>
</channel>
</channels>
</application>
</system.runtime.remoting>
</configuration>
and in the C# app i configure the config file to read the remotable object. if u know of any such example on the net kindly let me know.

thnx

Nov 16 '05 #2
Frazer wrote:
hi does anyone know where i can find a sample that explains remoting.
i need one that hosts the objects in IIS server . but i am using a C# app to
access the remotable objects.

Do yourself a favour and beg, borrow or steal a copy of Ingo Rammer's
"Advanced .NET Remoting"
http://www.ingorammer.com/book/Advan...tRemoting.html

If you're doing any Remoting development, this is the Bible.... ;)
in the IIS i have a small asp.net application (which has only 1 page)

<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.runtime.remoting>
<application>
<service>
<wellknown
mode="SingleCall"
type="nm1.Class1, nm1"
objectUri="Class1.rem"/>
</service>
<channels>
<channel ref="http">
<serverProviders>
<provider ref="wsdl"/>
<formatter ref="binary" typeFilterLevel="Full"/>
</serverProviders>
</channel>
</channels>
</application>
</system.runtime.remoting>
</configuration>
and in the C# app i configure the config file to read the remotable object.
if u know of any such example on the net kindly let me know.

thnx

Nov 16 '05 #3
I'd suggest Kalani's 70-320 study guide. If you want it short and simple,
that will get you started.

Dale

"Frazer" <Ic***@hotmail.com> wrote in message
news:uB*************@TK2MSFTNGP09.phx.gbl...
hi does anyone know where i can find a sample that explains remoting.
i need one that hosts the objects in IIS server . but i am using a C# app to access the remotable objects.

in the IIS i have a small asp.net application (which has only 1 page)

<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.runtime.remoting>
<application>
<service>
<wellknown
mode="SingleCall"
type="nm1.Class1, nm1"
objectUri="Class1.rem"/>
</service>
<channels>
<channel ref="http">
<serverProviders>
<provider ref="wsdl"/>
<formatter ref="binary" typeFilterLevel="Full"/>
</serverProviders>
</channel>
</channels>
</application>
</system.runtime.remoting>
</configuration>
and in the C# app i configure the config file to read the remotable object. if u know of any such example on the net kindly let me know.

thnx

Nov 16 '05 #4
He meant the QUE MCAD Training Guide 70-320 authored
by Amit Kalani and his wifey-poo ;-) Amit also authored 70-315
both of which are being used by our Milwaukee Visual Studio
Developer's Group after study of other choices and both of
which are outstanding works to prepare for the MCAD cert as
well as remain on the shelf as quick references.

--
<%= Clinton Gallagher
A/E/C Consulting, Web Design, e-Commerce Software Development
Wauwatosa, Milwaukee County, Wisconsin USA
NET cs*********@REMOVETHISTEXTmetromilwaukee.com
URL http://www.metromilwaukee.com/clintongallagher/


"DalePres" <no****@nomail.com> wrote in message
news:uP**************@tk2msftngp13.phx.gbl...
I'd suggest Kalani's 70-320 study guide. If you want it short and simple, that will get you started.

Dale

"Frazer" <Ic***@hotmail.com> wrote in message
news:uB*************@TK2MSFTNGP09.phx.gbl...
hi does anyone know where i can find a sample that explains remoting. i need one that hosts the objects in IIS server . but i am using a C# app
to
access the remotable objects.

in the IIS i have a small asp.net application (which has only 1

page)
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.runtime.remoting>
<application>
<service>
<wellknown
mode="SingleCall"
type="nm1.Class1, nm1"
objectUri="Class1.rem"/>
</service>
<channels>
<channel ref="http">
<serverProviders>
<provider ref="wsdl"/>
<formatter ref="binary" typeFilterLevel="Full"/>
</serverProviders>
</channel>
</channels>
</application>
</system.runtime.remoting>
</configuration>
and in the C# app i configure the config file to read the remotable

object.
if u know of any such example on the net kindly let me know.

thnx


Nov 16 '05 #5

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

Similar topics

0
by: Sean Newton | last post by:
I am absolutely bewildered by now by the Microsoft.Samples SSPI and Security assemblies. I've been trying to set these up in a very straightforward harness in the way that I'd like to be able to...
0
by: bettervssremoting | last post by:
To view the full article, please visit http://www.BetterVssRemoting.com Better VSS Remote Access Tool This article makes a detailed comparison among SourceAnyWhere, SourceOffSite, VSS...
5
by: mayamorning123 | last post by:
A comparison among six VSS remote tools including SourceOffSite , SourceAnyWhere, VSS Connect, SourceXT, VSS Remoting, VSS.NET To view the full article, please visit...
0
by: bettervssremoting | last post by:
To view the full article, please visit http://www.BetterVssRemoting.com Better VSS Remote Access Tool including SourceOffSite, SourceAnyWhere and VSS Remoting This article makes a detailed...
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...
0
by: bettervssremoting | last post by:
To view the full article, please visit http://www.BetterVssRemoting.com Better VSS Remote Access Tool This article makes a detailed comparison among SourceAnyWhere, SourceOffSite, VSS...
0
by: Martijn Damen | last post by:
Hi, At the moment I am trying to develop an application that uses another app over .net remoting and having some problems with it (ok, that is ofcourse why I am here), hope somebody can shine a...
8
by: Raju Joseph | last post by:
Hi All, I am just trying to get an opinion here. I know this is always a tough choice to make. We are in the process of converting our VB6 based Healthcare Information System (a full-fledged...
2
by: erbilkonuk | last post by:
Hi, I am very new to .NET Remoting and I try to run a simple program to subscribe to an event raised by Remoting Class. The Remoting Server initiates an instance of Remoting Class as Singleton /...
0
by: Kristian Reukauff | last post by:
Hi I have a problem with the .Net-Securty-Functions. I've got a client and a server. When I try to register a channel at the server with this line: ChannelServices.RegisterChannel(chan, false);...
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
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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
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
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...

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.