G
Guest
Hi!
I want to use
http://www.dotnetremoting.cc/Download/IPCheck.zip
together with an IIS-hosted remoting app.
The config-file for the standalone-application
that uses this provider looks like this:
<configuration>
<system.runtime.remoting>
<application>
<channels>
<channel ref="tcp" port="5555">
<serverProviders>
<formatter ref="binary" />
<provider type="IPChecker.IPCheckerSinkProvider, IPChecker" />
</serverProviders>
</channel>
</channels>
<service>
<wellknown mode="Singleton" type="Server.TestSAO, Server"
objectUri="TestSAO.soap" />
</service>
</application>
</system.runtime.remoting>
</configuration>
what must be changed to use this together with IIS?
What lines must be written in the web.config file?
There's this "channel ref="tcp" port="5555">" stuff.
How will that work? Of course IIS can only offer HTTP,
but I think this line is not correctly with IIS because
it implies that I would be able to choose between HTTP
and TCP!
Has anybody found another way of getting the ip (when
hosting in IIS) without Ingo's provider-class? (in case
it would have to be rewritten to support IIS)
Many thanks in advance
I want to use
http://www.dotnetremoting.cc/Download/IPCheck.zip
together with an IIS-hosted remoting app.
The config-file for the standalone-application
that uses this provider looks like this:
<configuration>
<system.runtime.remoting>
<application>
<channels>
<channel ref="tcp" port="5555">
<serverProviders>
<formatter ref="binary" />
<provider type="IPChecker.IPCheckerSinkProvider, IPChecker" />
</serverProviders>
</channel>
</channels>
<service>
<wellknown mode="Singleton" type="Server.TestSAO, Server"
objectUri="TestSAO.soap" />
</service>
</application>
</system.runtime.remoting>
</configuration>
what must be changed to use this together with IIS?
What lines must be written in the web.config file?
There's this "channel ref="tcp" port="5555">" stuff.
How will that work? Of course IIS can only offer HTTP,
but I think this line is not correctly with IIS because
it implies that I would be able to choose between HTTP
and TCP!
Has anybody found another way of getting the ip (when
hosting in IIS) without Ingo's provider-class? (in case
it would have to be rewritten to support IIS)
Many thanks in advance