remoting

  • Thread starter Nicholas Paldino [.NET/C# MVP]
  • Start date
N

Nicholas Paldino [.NET/C# MVP]

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/default.asp?url=/library/en-us/dndotnet/html/introremoting.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/d...teobjectsininternetinformationservicesiis.asp

Hope this helps.
 
D

DalePres

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

Dale
 
C

clintonG

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 (e-mail address removed)
URL http://www.metromilwaukee.com/clintongallagher/
 
F

Frazer

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top