No SSL certification in C SDK
Just a simple method to disable SSL certification in the SteamSensor sample in C SDK, for those who wants to use that in development mode or show to customer, as you may know use twApi_DisableCertValidation() function will not work:
1. Locate the src/config/twConfig.h in the SDK file, add:
#define USING_NO_TLS
#undef USING_AXTLS
right after #define OFFLINE_MSG_STORE 1, the result should be like:

2. Locate the src/tls/twTls.h in the SDK file, modify #include TW_TLS_INCLUDE to include more condition:
#if defined USING_AXTLS
#include "twAxTls.h"
#elif defined USING_NO_TLS
#include "twNoTls.h"
#else
#include TW_TLS_INCLUDE
#endif
and the result should be like:

After all these are done, compile your code and start, you will connect to your Thingworx server without SSL.

