[jira] [Commented] (OPENMEETINGS-2394) installation fails through web interface

2020-06-13 Thread Mat MacEley-Young (Jira)


[ 
https://issues.apache.org/jira/browse/OPENMEETINGS-2394?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17134663#comment-17134663
 ] 

Mat MacEley-Young commented on OPENMEETINGS-2394:
-

Hi Maxim, 

The only thing i can think that could cause an issue, is updates from Ubuntu. 

When it is as asked on two of the updates to keep the file to be changed or to 
stay with the publishers updated file, I choose to go with the publishers 
updated file. 

As these are root operational files, would this make a difference to how the 
installed programs (including open meetings) would work? 

Also I did get this error when installing LetsEncrypt.. 

Domain: co-vid20.co.uk
Type: unauthorized
Detail: Invalid response from
http://co-vid20.co.uk/.well-known/acme-challenge/IKTgjNWj2un5HQ5N1LUkyMv3YEdmXQD3Bbygc7JbjNI
[2a07:7800::138]: "   http://www.co-vid20.co.uk/.well-known/acme-challenge/fYMwU9qlkGiZB-DzpYDnVpL2EhcjGwjTh3-vz4mcUxg
[2a07:7800::138]: "installation fails through web interface
> 
>
> Key: OPENMEETINGS-2394
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2394
> Project: Openmeetings
>  Issue Type: Bug
>  Components: Installer
>Affects Versions: 5.0.0-M4
> Environment: ubuntu 18.04 - vps firefox browser
>Reporter: Mat MacEley-Young
>Assignee: Maxim Solodovnik
>Priority: Major
>
> Hi, tried installing and got all the way through then when attempting to 
> install via web interface for these issues.
> am using ubuntu 18.04
> org.apache.wicket.WicketRuntimeException: There is no application attached to 
> current thread Openmeetings - Installation
>  at org.apache.wicket.Application.get(Application.java:213)
>  at 
> org.apache.wicket.spring.injection.annot.SpringComponentInjector$ContextLocator.getSpringContext(SpringComponentInjector.java:156)
>  at 
> org.apache.wicket.spring.SpringBeanLocator.getSpringContext(SpringBeanLocator.java:207)
>  at 
> org.apache.wicket.spring.SpringBeanLocator.locateProxyTarget(SpringBeanLocator.java:196)
>  at 
> org.apache.wicket.proxy.LazyInitProxyFactory$AbstractCGLibInterceptor.intercept(LazyInitProxyFactory.java:362)
>  at 
> org.apache.openmeetings.installation.Wicket_Proxy_ImportInitvalues$$EnhancerByCGLIB$$a91c4bf1.loadAll()
>  at 
> org.apache.openmeetings.web.pages.install.InstallWizard$InstallProcess.run(InstallWizard.java:833)
>  at java.base/java.lang.Thread.run(Thread.java:834)



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Resolved] (OPENMEETINGS-2395) Media Server and sdp error on activating audio-video

2020-06-13 Thread Maxim Solodovnik (Jira)


 [ 
https://issues.apache.org/jira/browse/OPENMEETINGS-2395?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Maxim Solodovnik resolved OPENMEETINGS-2395.

  Assignee: Maxim Solodovnik  (was: Sebastian Wagner)
Resolution: Fixed

should be fixed

> Media Server and sdp error on activating audio-video
> 
>
> Key: OPENMEETINGS-2395
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2395
> Project: Openmeetings
>  Issue Type: Bug
>Affects Versions: 5.0.0
>Reporter: Sebastian Wagner
>Assignee: Maxim Solodovnik
>Priority: Major
> Fix For: 5.0.0
>
> Attachments: image-2020-06-13-11-00-54-041.png
>
>
> See below screenshot.
> When entering the room (or activating the audio) you get:
>  * a duplicated video box 
>  * A Media Server error
> !image-2020-06-13-11-00-54-041.png|width=524,height=227!
> This is latest master as of f3f86bf69b8bbb05e51a2257d8ba0d455243c038



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[openmeetings] branch master updated: [OPENMEETINGS-2395] video clean-up is improved

2020-06-13 Thread solomax
This is an automated email from the ASF dual-hosted git repository.

solomax pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openmeetings.git


The following commit(s) were added to refs/heads/master by this push:
 new cb5abf3  [OPENMEETINGS-2395] video clean-up is improved
cb5abf3 is described below

commit cb5abf3253559247bb9c3e88157dd210bb6e5383
Author: Maxim Solodovnik 
AuthorDate: Sat Jun 13 14:36:03 2020 +0700

[OPENMEETINGS-2395] video clean-up is improved
---
 .../org/apache/openmeetings/web/room/raw-video.js  | 33 +-
 1 file changed, 19 insertions(+), 14 deletions(-)

diff --git 
a/openmeetings-web/src/main/java/org/apache/openmeetings/web/room/raw-video.js 
b/openmeetings-web/src/main/java/org/apache/openmeetings/web/room/raw-video.js
index 129928d..e5f6988 100644
--- 
a/openmeetings-web/src/main/java/org/apache/openmeetings/web/room/raw-video.js
+++ 
b/openmeetings-web/src/main/java/org/apache/openmeetings/web/room/raw-video.js
@@ -71,6 +71,9 @@ var Video = (function() {
}
navigator.mediaDevices.getUserMedia(cnts)
.then(function(stream) {
+   if (msg.instanceUid !== 
v.data('instance-uid')) {
+   return;
+   }
let _stream = stream;
const data = {};
if (stream.getAudioTracks().length !== 
0) {
@@ -151,10 +154,10 @@ var Video = (function() {
data.rtcPeer = new kurentoUtils.WebRtcPeer.WebRtcPeerSendonly(
VideoUtil.addIceServers(options, msg)
, function (error) {
+   if (true === this.cleaned) {
+   return;
+   }
if (error) {
-   if (true === this.cleaned) {
-   return;
-   }
return OmUtil.error(error);
}
if (data.analyser) {
@@ -162,10 +165,10 @@ var Video = (function() {
level.meter(data.analyser, lm, 
_micActivity, OmUtil.error);
}
this.generateOffer(function(error, offerSdp) {
+   if (true === this.cleaned) {
+   return;
+   }
if (error) {
-   if (true === this.cleaned) {
-   return;
-   }
return OmUtil.error('Sender sdp 
offer error ' + error);
}
OmUtil.log('Invoking Sender SDP offer 
callback function');
@@ -201,17 +204,17 @@ var Video = (function() {
data.rtcPeer = new kurentoUtils.WebRtcPeer.WebRtcPeerRecvonly(
options
, function(error) {
+   if (true === this.cleaned) {
+   return;
+   }
if (error) {
-   if (true === this.cleaned) {
-   return;
-   }
return OmUtil.error(error);
}
this.generateOffer(function(error, offerSdp) {
+   if (true === this.cleaned) {
+   return;
+   }
if (error) {
-   if (true === this.cleaned) {
-   return;
-   }
return OmUtil.error('Receiver 
sdp offer error ' + error);
}
OmUtil.log('Invoking Receiver SDP offer 
callback function');
@@ -238,7 +241,7 @@ var Video = (function() {
t.removeClass('mic-on');
}
}
-   function _initContainer(_id, name, opts) {
+   function _initContainer(_id, name, opts, instanceUid) {
let contSel = '#user' + sd.cuid;
const _hasVideo = 

[jira] [Commented] (OPENMEETINGS-2395) Media Server and sdp error on activating audio-video

2020-06-13 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/OPENMEETINGS-2395?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17134661#comment-17134661
 ] 

ASF subversion and git services commented on OPENMEETINGS-2395:
---

Commit cb5abf3253559247bb9c3e88157dd210bb6e5383 in openmeetings's branch 
refs/heads/master from Maxim Solodovnik
[ https://gitbox.apache.org/repos/asf?p=openmeetings.git;h=cb5abf3 ]

[OPENMEETINGS-2395] video clean-up is improved


> Media Server and sdp error on activating audio-video
> 
>
> Key: OPENMEETINGS-2395
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2395
> Project: Openmeetings
>  Issue Type: Bug
>Affects Versions: 5.0.0
>Reporter: Sebastian Wagner
>Assignee: Sebastian Wagner
>Priority: Major
> Fix For: 5.0.0
>
> Attachments: image-2020-06-13-11-00-54-041.png
>
>
> See below screenshot.
> When entering the room (or activating the audio) you get:
>  * a duplicated video box 
>  * A Media Server error
> !image-2020-06-13-11-00-54-041.png|width=524,height=227!
> This is latest master as of f3f86bf69b8bbb05e51a2257d8ba0d455243c038



--
This message was sent by Atlassian Jira
(v8.3.4#803005)