473,408 Members | 2,813 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,408 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 2906
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: 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
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...
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,...
0
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...

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.