vote up 3 vote down star

Hi,

Is it possible to find out / get some information about the connecting client when using remoting on .net 2.0? I like to know get some information about the connecting client on the server side, so I can act accordingly? This is a small and very local application that Never will have more then max 10 simultaneously connecting/requesting clients.

pass client reference in each function? (or some identifier)? I could do it this way, but I would prefer to just get the information from the request/connecting client. Ip-address or similar would be nice.

Regards

flag

75% accept rate

2 Answers

vote up 2 vote down check

Take a look at the answer I provided for a similar question:

Identifying the client during a .NET remoting invocation (Answer)

link|flag
Thanks! It solved my problem! – anra Jun 4 at 12:47
vote up 1 vote down

This question might have the answer you're looking for.

I stripped out the parts that probably don't matter to you and left the part that actually grabs the IPAddress.

public ServerProcessing ProcessMessage(IServerChannelSinkStack sinkStack, 
    IMessage requestmessage, ITransportHeaders requestHeaders, 
    System.IO.Stream requestStream, out IMessage responseMessage, 
    out ITransportHeaders responseHeaders, out System.IO.Stream responseStream)
{
    // Get the IP address and add it to the call context.
    IPAddress ipAddr = (IPAddress)requestHeaders[CommonTransportKeys.IPAddress];
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.