Hi all,
My question is "CC3200 can create HTTPS server?".
If it can, how to setting?
Thanks.
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Hi all,
My question is "CC3200 can create HTTPS server?".
If it can, how to setting?
Thanks.
Hi,
Yes it is possible. You need to use webserver in application processor. Internal web server from NWP (network processor) does not support https.
Webserver in application processor is used in "websock_camera" example from SDK.
Update:
But one important thing. Pre-build library of webserver does not support https. You need import source code of http server and build your own library. You need modify:
- HTTP_CORE_SERVER_PORT to 443
- upload your key into "/cert/serverkey.der" file
- upload your certificate into "/cert/servercert.der" file
- etc.
Jan
Hi,
Session in webserver is not directly supported by CC3200. You can add support by your own code.
Internal Webserver in CC3200 NWP:
- Session are not supported. Supported is only http authentication (unfortunately in CC3200 is a bug which not allows to use all combination username/password, this bug is not fixable by the ServicePack).
- Using user-tokens and javascript on web, you can simulate something like a sessions. But this will not be bullet-proof solution.
TI webserver in application processor:
- I think sessions are not directly supported by default server code. Sessions using cookie can be implemented.
Your own webserver code:
- There are no limitations, you can do anything you want.
Jan