I use the following commands to stop the RPC server
RPC_STATUS status;
while(RpcMgmtWaitServerListen() != RPC_S_NOT_LISTENING)
status = RpcMgmtStopServerListening(NULL);
RPC_BINDING_VECTOR *binding_vector;
status = RpcServerInqBindings(&binding_vector);
if (status)
{
throw std::exception("RPC ERROR!");
}
status = RpcEpUnregister(Comms_v1_0_s_ifspec,binding_vector,NULL);
if (status)
{
throw std::exception("RPC ERROR!");
}
status = RpcBindingVectorFree(&binding_vector);
if (status)
{
throw std::exception("RPC ERROR!");
}
When i invoke the RpcEpUnregister statement it ends with a cannot perform operation on endpoint error.
if i use the following code to stop the server
RPC_STATUS status;
while(RpcMgmtWaitServerListen() != RPC_S_NOT_LISTENING)
status = RpcMgmtStopServerListening(NULL);
status = RpcServerUnregisterIf(NULL,NULL,FALSE);
upon server restart RpcServerUseProtseqEp throws endpoint The endpoint is a duplicate
no matter how much i try running the code RpcServerUseProtseqEp its still the same.