publishing from ios and android

Gabriel T

Member
Hello

i just updated to latest version, and it looks like examples are not working anymore on ios and android: android can playback livestreams but publishing is not working, and ios cant even connect...did you notice same behavior ?

thank you
 

Gabriel T

Member
thx for reply, i guess its a ssl issue. I installed it via lets encrypt, and ssl connection on port 443 is ok. but not on port 8888 to access the dashboard...any clue on how to fix this ?
 
Last edited:

Max

Administrator
Staff member
Yes iOS SDK connection won't work without SSL.
You have to import letsenrypt certs over Dashboard / Security / Certificates
Please see how it looks on our demo server
 

Attachments

Max

Administrator
Staff member
You have to cleanup internal database to fix that.
1. Stop WCS server
Code:
service webcallserver stop
2. Cleanup database
Code:
cd /usr/local/FlashphonerWebCallServer/database
rm -f *
3. Start WCS server
Code:
service webcallserver start
 

Gabriel T

Member
i have this error when trying to access the certificate page:

Whitelabel Error Page
This application has no explicit mapping for /error, so you are seeing this as a fallback.

Wed Nov 15 08:53:55 CET 2017
There was an unexpected error (type=Internal Server Error, status=500).
org.hibernate.exception.SQLGrammarException: could not prepare statement
 

Max

Administrator
Staff member
Tried the dashboard: connection is secure.

Also, this command can be used to verify the connection:
Code:
openssl s_client -showcerts -connect <WCS domain name>:8443
(should result in "Verify return code: 0 (OK)", and it does for the server)
 
Last edited:
Top