When using Fi-ware map viewer mashup for displaying Points of interest from a orion instance I have to allow ALWAYS "Load unsafe scripts" option on my browser to display them on the map. Otherwise nothing is shown.
There is a way to configure properly context orion broker or Map viewer mashup?
I created a self-signed SSL certificate on the server where Orion runs with the following commands:
$ openssl genrsa -des3 -out server.key 1024
$ openssl req -new -key server.key -out server.csr
$ openssl x509 -req -days 365 -in server.csr -signkey server.key -out server.crt
and I run context Orion broker through https:
$contextBroker -https -key <path-to-server-key> cert <path-to-server-cert>
and then I can make requests through "https" but still having this warning. I guess that it is because my certificate is not a valid one? Maybe I have misconceptions? there is a way to fix it without this workaround?