[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

microsoft.public.dotnet.framework.remoting

how to register multiple tcp channels in one app?

Leon

10/27/2004 4:19:00 PM

like this:
....
<channels>
<channel ref="tcp server" port="5566">
</channel>
<channel ref="tcp client" port="0">
</channel>
</channels>
....
1 Answer

Ken Kolda

10/27/2004 5:38:00 PM

0

Is this a question? What you have below is fine, but all you really need is:

<channels>
<channel ref="tcp" port="5566" />
</channels>

The client channel will be created as needed.

Ken

"mahope" <mahope@21cn.com> wrote in message news:uNLl8CEvEHA.1824@TK2MSFTNGP10.phx.gbl...
like this:
...
<channels>
<channel ref="tcp server" port="5566">
</channel>
<channel ref="tcp client" port="0">
</channel>
</channels>
...