vote up 2 vote down star
1

My application uses Microsoft RPC for interprocess communications. When two processes are run on the same machine and one process tries to call a method declared as (IDL notation):

error_status_t rpcMethod( [in] pipe byte parameter );

this call fails with RPC_S_CANNOT_SUPPORT ("The requested operation is not supported") and never reaches the server side and the push()/pull() primitives of the supplied pipe are never called. This is only reproduced on Vista when using ncalrpc protocol and not otherwise.

I also found the following in the Event Viewer logs:

Application ("my program exe file name here" \service) (PID: 344) is using Windows functionality that is not present in this release of Windows. For obtaining an updated version of the application, please, contact the application vendor. The technical information that needs to be conveyed to the application vendor is this: "An RPC method using synchronous pipes has been called on on protocol sequence ncalrpc interface with unique identifier (actual UUID here). Usage and support of synchronous pipes on this protocol sequence has been deprecated for this release of Windows. For information on the deprecation process, please, see http://go.microsoft.com/fwlink/?LinkId=36415." User Action Contact the application vendor for updated version of the application

The link in the message text redirects to a page that is not likely relevant.

Is there a workaround for this problem except for changing the protocol sequence or not using pipes?

flag

42% accept rate
are there any info at events related to failure ? – lsalamon Apr 15 at 21:55
What compiler are you using? Is this COM? – Aaron Apr 21 at 8:26
@Aaron Tomlin: I use RPC directly from a VC++ compiled program. – sharptooth Apr 21 at 8:30

2 Answers

vote up 0 vote down

this trace tools maybe help you Trace RPC Calls and Notify the COM+ Events to Your Program

link|flag
vote up 1 vote down

You are most likely using a method that is unsupported in Vista.

RPC_NOTIFICATIONS enumeration value that specifies the type of notification requested from RPC by the server.

Windows Vista: Currently, only RpcNotificationClientDisconnect and RpcNotificationCallCancel are supported. If any other value is specified for this parameter, the RPC_S_CANNOT_SUPPORT error code is returned.

See MSDN

link|flag
I don't call RpcServerSubscribeForNotification() - I call a MIDL-generated stub that redirects to NdrClientCall2. – sharptooth Apr 15 at 15:17
It's quite likely a marshalling problem. Vista is more pedantic about this. Which compiler are you using? – Edouard A. Apr 15 at 15:35

Your Answer

Get an OpenID
or

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