I 've found another way : change the WS_CHANNEL_PROPERTY_ADDRESSING_VERSION not to have "must understand" things
C++ - How to call WS_CALL_PROPERTY_CHECK_MUST_UNDERSTAND to set to MustUnderstand=0 ?
Anne-Sophie Demoulin
1
Reputation point
i'have tried this but MustUnderstand is still equal to 1.
Do i need to set a callback to my WS_PROXY_MESSAGE_CALLBACK_CONTEXT mustUnderstand ? If yes, which callback ?
WS_CALL_PROPERTY callProperties[1];
WS_PROXY_MESSAGE_CALLBACK_CONTEXT mustUnderstand= {0};
BOOL mustU = FALSE;
mustUnderstand.state = &mustU;
callProperties[0].id = WS_CALL_PROPERTY_SEND_MESSAGE_CONTEXT;
callProperties[0].value = &mustUnderstand;
callProperties[0].valueSize = 4;
WsCall...