vote up 0 vote down star

I have an application that uses RPC for interprocess communications. Turns out that synchronous RPC pipes used with "ncalrpc" protocol sequence are not alowed on Vista. I want to switch to "ncacn_np" and use RpcServerRegisterEpEx() with RPC_IF_ALLOW_LOCAL_ONLY flag.

Has anyone tried the same yet? Are there any possible problems associated with such transition?

flag

66% accept rate

1 Answer

vote up 1 vote down check

You've seen this information about flag usage :

...When this interface flag is registered, the RPC runtime rejects calls made by remote clients. All local calls using ncadg_* and ncacn_* protocol sequences are also rejected, with the exception of ncacn_np. RPC allows ncacn_NP calls only if the call does not come from SRV. Calls from ncalrpc are always processed...

RPC for local really use LPC (Microsoft Windows Internals 4 ed, fron page 802):
Local RPC can be used for communication between two processes located on the same system, and the RPC run-time DLL uses the local procedure call (LPC) facilities in kernel mode as the local networking API.

[EDITED]
More some help How to troubleshoot connectivity issues that are caused by RPC client protocol registry entries

link|flag
Do you mean tt if I specify "ncacn_np" and "loca only" flag it will still be using "ncalrpc"? Btw what is "SRV" here? – sharptooth May 9 at 4:10
SRV should be location of services referenced at RFC2782 (ietf.org/rfc/rfc2782.txt) – lsalamon May 11 at 14:01
Totally confused about SRV. Opened a new question stackoverflow.com/questions/851294/… – sharptooth May 12 at 5:42

Your Answer

Get an OpenID
or

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