Hi ricardo,
Yes the HTTP receiver still works through https
I just tested a Mango running with a selfsigned certificate and I was able to get values into my JSON receiver point with identifier /key by both
#HttpPost.txt
POST /httpds HTTP/1.1
User-Agent: Mango M2M2 HTTP Sender publisher
Content-Length: 15
Content-Type: application/json
Host: localhost:8088
Connection: Keep-Alive
{"key":"value"}
nc 127.0.0.1 8080 < HttPost.txt
and via curl to the SSL port,
curl -v -k -H "Content-Type: application/json" -d "{\"key\":\"value2\"}" https://127.0.0.1:8443/httpds
Note that I'm using 127.0.0.1 instead of localhost, which can resolve to ::1 which doesn't pass the whitelist check. Whitelisting for IPv6 addresses was added to Mango 3.5 but the entry *:*:*:*:*:*:*:* is not present by default yet.