vote up 0 vote down star

My program uses Microsoft RPC for interprocess communications. To prepare for receiving RPC calls the program runs the following sequence:

  1. RpcServerUseProtseqEp(), then

  2. RpcServerRegisterIf(), then

  3. RpcServerListen()

The program starts its RPC server with the sequence above, works for some time, then terminates and may later be restarted by another program. The set of parameters values for RpcServerUseProtseqEp() is the same each time the program is run.

When the sequence is run the first time after reboot it always succeeds, but on subsequent runs RpcServerUseProtseqEp() returns RPC_S_DUPLICATE_ENDPOINT ("The endpoint is a duplicate.") Currently I just ignore this particular error code and treat it as success, then all the other primitives usually work fine.

What is the correct way of using RpcServerUseProtseqEp()? Should I do any cleanup to revoke the registered endpoint or just keep ignoring the RPC_S_DUPLICATE_ENDPOINT error code?

flag

41% accept rate

1 Answer

vote up 0 vote down

I'm not an expert on RPC, but I think you may want to unregister your endpoint using RpcEpUnregister when your server terminates. The docs for this function mention an endpoint database which I guess is persisting across instatiations of your server.

link|flag
Tried to call RpcServerInqBindings(), then RpcEpUnregister(). The former succeeds, the latter returns "the server endpoint failed to perform the operation". – sharptooth Apr 14 at 10:24

Your Answer

Get an OpenID
or

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