Hello All,

I have a method being declared in a COM Interface. I want this method to take variable number of arguments.

Hence I declared the method as follows in the "IDL" file.
LogMsg(long completionCode, long msgID, ...);

But during compilation time it is giving me an error as follows...

"cannot specify a variable number of arguments to a remote procedure : [ Parameter '...' of Procedure 'LogMsg' ( Interface 'IZLogger' ) ]"

your help will be highly appreciated