I am implementing a relatively complex object model service using WWSAPI (WCF hosted) and have successfully downloaded the wsdl and code gen'd the service implementation. My question is, has anyone else noticed all of the
#if defined(WS_CPLUSPLUS)
defines littered throughout the generated code? Inside them is a C++ object representation of my service payload that would be 100x easier to use, however when I define WS_CPLUSPLUS
all sorts of bad breaks loose on the compiler.
My question is this: Has anyone successfully gotten that define to work, and if so, what resource or example did you use to get it to work?