Remote Binary Client From ASP.Net Application

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • James Flesher

    Remote Binary Client From ASP.Net Application

    Is it possible for and ASP.Net application to be a .Net Remoting client using the Binary formatter and communicate with a Windows 2003 Service which is the .Net Remoting server? When I attempt to configure remoting I get the following error message:

    Remoting configuration failed with the exception 'System.Runtime .Remoting.Remot ingException: Host the service in IIS with Integrated Windows Authentication to secure the server

    Here is the client remote.config:

    <configuratio n>
    <system.runtime .remoting>
    <application>
    <customErrors mode="Off" />
    <client>
    <wellknown type="SSOFramew ork.Services.Re moting, SSOFramework" url="http://localhost:8087/SSORemoting" />
    </client>
    <channels>
    <channel type="System.Ru ntime.Remoting. Channels.Tcp.Tc pChannel, System.Runtime. Remoting">
    <clientProvider s>
    <formatter type="System.Ru ntime.Remoting. Channels.Binary ClientFormatter SinkProvider, System.Runtime. Remoting" />
    </clientProviders >
    </channel>
    </channels>
    </application>
    </system.runtime. remoting>
    </configuration>

    Any help would be appreciated. I was using SOAP but SOAP will not transport System.Collecti ons.Generics.
Working...