Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mslosarz/nextrtc-videochat-with-rest
Application with spring security, spring rest, spring jpa to show how to use NextRTC signaling server with existing application (treat it like prototype!)
https://github.com/mslosarz/nextrtc-videochat-with-rest
nextrtc webrtc webrtc-call webrtc-demos webrtc-experiments
Last synced: 2 months ago
JSON representation
Application with spring security, spring rest, spring jpa to show how to use NextRTC signaling server with existing application (treat it like prototype!)
- Host: GitHub
- URL: https://github.com/mslosarz/nextrtc-videochat-with-rest
- Owner: mslosarz
- License: mit
- Created: 2015-08-17T08:02:39.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-05-15T19:37:48.000Z (over 7 years ago)
- Last Synced: 2024-04-15T10:06:08.448Z (10 months ago)
- Topics: nextrtc, webrtc, webrtc-call, webrtc-demos, webrtc-experiments
- Language: Java
- Homepage: https://restvideochat.nextrtc.org/
- Size: 123 KB
- Stars: 15
- Watchers: 6
- Forks: 16
- Open Issues: 4
-
Metadata Files:
- Readme: README
- License: LICENSE
Awesome Lists containing this project
README
Clone project and then
- enter to directory with project
- run: mvn clean install && java -jar target/videochat.warenter to directory src/main/resources
and generate self signed certificate (in repository certificate might be expired):
keytool -genkey -alias tomcat -keyalg RSA -keystore keystore.jksEnter keystore password: password
Re-enter new password: password
What is your first and last name?
[Unknown]: 127.0.0.1
What is the name of your organizational unit?
[Unknown]: Develepment
What is the name of your organization?
[Unknown]: NextRTC
What is the name of your City or Locality?
[Unknown]: Cracow
What is the name of your State or Province?
[Unknown]: Malopolskie
What is the two-letter country code for this unit?
[Unknown]: PL
Is CN=127.0.0.1, OU=Develepment, O=NextRTC, L=Cracow, ST=Malopolskie, C=PL corre
ct?
[no]: yesEnter key password for (RETURN if same as keystore password):
then:
- run: mvn clean install && java -jar target/restvideochat.war
- enter https://localhost:8433 in your favourite browser
#### HTTPS is important, because default http handler isn't configured ####
- accept untrusted certificate###############
Sometimes websocket (js side) is throwing exception then try to change localhost to 127.0.0.1run with debug enabled on port 5005
java -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=5005 -jar target/restvideochat.war