[openmeetings] branch 4.0.x updated: [OPENMEETINGS-2383] displayName is used in chat

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

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


The following commit(s) were added to refs/heads/4.0.x by this push:
 new 934b524  [OPENMEETINGS-2383] displayName is used in chat
934b524 is described below

commit 934b5242f1f2045e3c343b279d5c6959a487e50f
Author: Maxim Solodovnik 
AuthorDate: Sat Jun 6 11:41:38 2020 +0700

[OPENMEETINGS-2383] displayName is used in chat
---
 .../src/main/java/org/apache/openmeetings/web/user/chat/raw-chat.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/openmeetings-web/src/main/java/org/apache/openmeetings/web/user/chat/raw-chat.js
 
b/openmeetings-web/src/main/java/org/apache/openmeetings/web/user/chat/raw-chat.js
index ca9857f..6d7b445 100644
--- 
a/openmeetings-web/src/main/java/org/apache/openmeetings/web/user/chat/raw-chat.js
+++ 
b/openmeetings-web/src/main/java/org/apache/openmeetings/web/user/chat/raw-chat.js
@@ -241,7 +241,7 @@ var Chat = function() {
area.mouseleave(function() {
__hideActions();
});
-   
msg.find('.from').addClass(align).data('user-id', cm.from.id).html(cm.from.name 
|| cm.from.displayName);
+   
msg.find('.from').addClass(align).data('user-id', 
cm.from.id).html(cm.from.displayName || cm.from.name);

msg.find('.time').addClass(alignIco).html(cm.time).attr('title', cm.sent);
if (!area.length) {
_addTab(cm.scope, cm.scopeName);



[openmeetings] branch 4.0.x updated: [OPENMEETINGS-2382] email address is not being displayed in contarc and messages

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

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


The following commit(s) were added to refs/heads/4.0.x by this push:
 new 14ff0a9  [OPENMEETINGS-2382] email address is not being displayed in 
contarc and messages
14ff0a9 is described below

commit 14ff0a9b56bc541a7d6216bed4fade283fe73864
Author: Maxim Solodovnik 
AuthorDate: Sat Jun 6 11:34:52 2020 +0700

[OPENMEETINGS-2382] email address is not being displayed in contarc and 
messages
---
 .../web/user/profile/MessagesContactsPanel.java   | 15 ---
 1 file changed, 4 insertions(+), 11 deletions(-)

diff --git 
a/openmeetings-web/src/main/java/org/apache/openmeetings/web/user/profile/MessagesContactsPanel.java
 
b/openmeetings-web/src/main/java/org/apache/openmeetings/web/user/profile/MessagesContactsPanel.java
index 7eea2ce..9fa2f03 100644
--- 
a/openmeetings-web/src/main/java/org/apache/openmeetings/web/user/profile/MessagesContactsPanel.java
+++ 
b/openmeetings-web/src/main/java/org/apache/openmeetings/web/user/profile/MessagesContactsPanel.java
@@ -550,14 +550,14 @@ public class MessagesContactsPanel extends UserBasePanel {
target.add(buttons);
}
 
-   private static String getEmail(User u) {
-   return u == null || u.getAddress() == null ? "" : 
u.getAddress().getEmail();
+   private static String getDisplayName(User u) {
+   return u == null ? "" : u.getDisplayName();
}
 
private void selectMessage(long id, AjaxRequestTarget target) {
PrivateMessage msg = getBean(PrivateMessageDao.class).get(id);
-   selectedMessage.addOrReplace(new Label("from", msg == null ? "" 
: getEmail(msg.getFrom(;
-   selectedMessage.addOrReplace(new Label("to", msg == null ? "" : 
getEmail(msg.getTo(;
+   selectedMessage.addOrReplace(new Label("from", msg == null ? "" 
: getDisplayName(msg.getFrom(;
+   selectedMessage.addOrReplace(new Label("to", msg == null ? "" : 
getDisplayName(msg.getTo(;
selectedMessage.addOrReplace(new Label("subj", msg == null ? "" 
: msg.getSubject()));
selectedMessage.addOrReplace(new Label("body", msg == null ? "" 
: msg.getMessage()).setEscapeModelStrings(false));
if (msg == null) {
@@ -614,13 +614,6 @@ public class MessagesContactsPanel extends UserBasePanel {
}
}
 
-   private static String getDisplayName(User u) {
-   return new StringBuilder().append(u.getFirstname()).append(" ")
-   .append(u.getLastname()).append(" ")
-   .append("<").append(getEmail(u)).append(">")
-   .toString();
-   }
-
private void updateMoveModel() {
List list = new ArrayList<>();
list.add(NOT_MOVE_FOLDER);



[openmeetings] branch master updated: [OPENMEETINGS-2382] email address is not being displayed in contarc and messages

2020-06-05 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 e201d1c  [OPENMEETINGS-2382] email address is not being displayed in 
contarc and messages
e201d1c is described below

commit e201d1c54ae64678e02f4869a1b6be9b20aceb02
Author: Maxim Solodovnik 
AuthorDate: Sat Jun 6 11:34:52 2020 +0700

[OPENMEETINGS-2382] email address is not being displayed in contarc and 
messages
---
 .../web/user/profile/MessagesContactsPanel.java   | 15 ---
 1 file changed, 4 insertions(+), 11 deletions(-)

diff --git 
a/openmeetings-web/src/main/java/org/apache/openmeetings/web/user/profile/MessagesContactsPanel.java
 
b/openmeetings-web/src/main/java/org/apache/openmeetings/web/user/profile/MessagesContactsPanel.java
index 2713f1b..22d82b6 100644
--- 
a/openmeetings-web/src/main/java/org/apache/openmeetings/web/user/profile/MessagesContactsPanel.java
+++ 
b/openmeetings-web/src/main/java/org/apache/openmeetings/web/user/profile/MessagesContactsPanel.java
@@ -543,14 +543,14 @@ public class MessagesContactsPanel extends UserBasePanel {
target.add(buttons);
}
 
-   private static String getEmail(User u) {
-   return u == null || u.getAddress() == null ? "" : 
u.getAddress().getEmail();
+   private static String getDisplayName(User u) {
+   return u == null ? "" : u.getDisplayName();
}
 
private void selectMessage(long id, AjaxRequestTarget target) {
PrivateMessage msg = msgDao.get(id);
-   selectedMessage.addOrReplace(new Label("from", msg == null ? "" 
: getEmail(msg.getFrom(;
-   selectedMessage.addOrReplace(new Label("to", msg == null ? "" : 
getEmail(msg.getTo(;
+   selectedMessage.addOrReplace(new Label("from", msg == null ? "" 
: getDisplayName(msg.getFrom(;
+   selectedMessage.addOrReplace(new Label("to", msg == null ? "" : 
getDisplayName(msg.getTo(;
selectedMessage.addOrReplace(new Label("subj", msg == null ? "" 
: msg.getSubject()));
selectedMessage.addOrReplace(new Label("body", msg == null ? "" 
: msg.getMessage()).setEscapeModelStrings(false));
if (msg == null) {
@@ -606,13 +606,6 @@ public class MessagesContactsPanel extends UserBasePanel {
}
}
 
-   private static String getDisplayName(User u) {
-   return new StringBuilder().append(u.getFirstname()).append(" ")
-   .append(u.getLastname()).append(" ")
-   .append("<").append(getEmail(u)).append(">")
-   .toString();
-   }
-
private void updateMoveModel() {
List list = new ArrayList<>();
list.add(NOT_MOVE_FOLDER);



[openmeetings] branch master updated: [OPENMEETINGS-2383] displayName is used in chat

2020-06-05 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 ff5f859  [OPENMEETINGS-2383] displayName is used in chat
ff5f859 is described below

commit ff5f85933fdb5d5329f47f42020da2e592c4f87b
Author: Maxim Solodovnik 
AuthorDate: Sat Jun 6 11:21:44 2020 +0700

[OPENMEETINGS-2383] displayName is used in chat
---
 .../src/main/java/org/apache/openmeetings/web/user/chat/raw-chat.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/openmeetings-web/src/main/java/org/apache/openmeetings/web/user/chat/raw-chat.js
 
b/openmeetings-web/src/main/java/org/apache/openmeetings/web/user/chat/raw-chat.js
index 94463a3..c4a048a 100644
--- 
a/openmeetings-web/src/main/java/org/apache/openmeetings/web/user/chat/raw-chat.js
+++ 
b/openmeetings-web/src/main/java/org/apache/openmeetings/web/user/chat/raw-chat.js
@@ -303,7 +303,7 @@ var Chat = function() {
area.mouseleave(function() {
__hideActions();
});
-   msg.find('.from').data('user-id', 
cm.from.id).html(cm.from.name || cm.from.displayName);
+   msg.find('.from').data('user-id', 
cm.from.id).html(cm.from.displayName || cm.from.name);
msg.find('.time').html(cm.time).attr('title', 
cm.sent);
if (!area.length) {
_addTab(cm.scope, cm.scopeName);



[openmeetings] branch master updated: [OPENMEETINGS-2380] avatar is editable from admin area

2020-06-05 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 7a5ef06  [OPENMEETINGS-2380] avatar is editable from admin area
7a5ef06 is described below

commit 7a5ef066d4c78d5d822159e8ae2c9a23f086963c
Author: Maxim Solodovnik 
AuthorDate: Sat Jun 6 10:39:51 2020 +0700

[OPENMEETINGS-2380] avatar is editable from admin area
---
 .../apache/openmeetings/web/admin/users/UserForm.html  |  4 
 .../apache/openmeetings/web/admin/users/UserForm.java  |  5 +
 .../web/common/UploadableProfileImagePanel.java| 18 +++---
 3 files changed, 24 insertions(+), 3 deletions(-)

diff --git 
a/openmeetings-web/src/main/java/org/apache/openmeetings/web/admin/users/UserForm.html
 
b/openmeetings-web/src/main/java/org/apache/openmeetings/web/admin/users/UserForm.html
index da6e933..4f96b14 100644
--- 
a/openmeetings-web/src/main/java/org/apache/openmeetings/web/admin/users/UserForm.html
+++ 
b/openmeetings-web/src/main/java/org/apache/openmeetings/web/admin/users/UserForm.html
@@ -26,6 +26,10 @@



+   
+   
+   
+   



diff --git 
a/openmeetings-web/src/main/java/org/apache/openmeetings/web/admin/users/UserForm.java
 
b/openmeetings-web/src/main/java/org/apache/openmeetings/web/admin/users/UserForm.java
index 83e0374..d574583 100644
--- 
a/openmeetings-web/src/main/java/org/apache/openmeetings/web/admin/users/UserForm.java
+++ 
b/openmeetings-web/src/main/java/org/apache/openmeetings/web/admin/users/UserForm.java
@@ -49,6 +49,7 @@ import org.apache.openmeetings.service.mail.EmailManager;
 import org.apache.openmeetings.web.admin.AdminBaseForm;
 import org.apache.openmeetings.web.common.ComunityUserForm;
 import org.apache.openmeetings.web.common.GeneralUserForm;
+import org.apache.openmeetings.web.common.UploadableProfileImagePanel;
 import org.apache.openmeetings.web.util.DateLabel;
 import org.apache.openmeetings.web.util.RestrictiveChoiceProvider;
 import org.apache.wicket.ajax.AjaxRequestTarget;
@@ -94,6 +95,7 @@ public class UserForm extends AdminBaseForm {
private final Modal warning;
private final DropDownChoice domainId = new 
DropDownChoice<>("domainId");
private final PasswordDialog adminPass;
+   private final UploadableProfileImagePanel avatar = new 
UploadableProfileImagePanel("avatar", null);
@SpringBean
private UserDao userDao;
@SpringBean
@@ -115,6 +117,7 @@ public class UserForm extends AdminBaseForm {
protected void onInitialize() {
super.onInitialize();
add(mainContainer);
+   mainContainer.add(avatar.setOutputMarkupPlaceholderTag(true));
mainContainer.add(generalForm = new GeneralUserForm("general", 
getModel(), true));
mainContainer.add(password.setResetPassword(false).setLabel(new 
ResourceModel("110")).setRequired(false)
.add(passValidator = new 
StrongPasswordValidator(getModelObject(;
@@ -338,6 +341,8 @@ public class UserForm extends AdminBaseForm {
 
public void update(AjaxRequestTarget target) {
updateDomain(target);
+   avatar.setUserId(getModelObject().getId());
+   avatar.update();
if (target != null) {
target.add(this, listContainer);
}
diff --git 
a/openmeetings-web/src/main/java/org/apache/openmeetings/web/common/UploadableProfileImagePanel.java
 
b/openmeetings-web/src/main/java/org/apache/openmeetings/web/common/UploadableProfileImagePanel.java
index 9d52c4a..a2249b1 100644
--- 
a/openmeetings-web/src/main/java/org/apache/openmeetings/web/common/UploadableProfileImagePanel.java
+++ 
b/openmeetings-web/src/main/java/org/apache/openmeetings/web/common/UploadableProfileImagePanel.java
@@ -27,24 +27,31 @@ import java.io.File;
 
 import org.apache.openmeetings.core.converter.ImageConverter;
 import org.apache.openmeetings.db.dao.user.UserDao;
+import org.apache.openmeetings.db.entity.user.User;
 import org.apache.openmeetings.util.OmFileHelper;
 import org.apache.openmeetings.util.StoredFile;
 import org.apache.wicket.spring.injection.annot.SpringBean;
 
 public class UploadableProfileImagePanel extends UploadableImagePanel {
private static final long serialVersionUID = 1L;
-   private final long userId;
+   private Long userId;
@SpringBean
private ImageConverter converter;
@SpringBean
private UserDao userDao;
 
-   public UploadableProfileImagePanel(String id, final long userId) {
+   public 

[jira] [Updated] (OPENMEETINGS-2385) turnserver Cannot find credentials of use

2020-06-05 Thread tongzhirong (Jira)


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

tongzhirong updated OPENMEETINGS-2385:
--
Attachment: tu.png

> turnserver Cannot find credentials of use
> -
>
> Key: OPENMEETINGS-2385
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2385
> Project: Openmeetings
>  Issue Type: Improvement
>Reporter: tongzhirong
>Assignee: Maxim Solodovnik
>Priority: Minor
> Attachments: ddd.jpg, tu.png, unauth.png
>
>
> 1431: check_stun_auth: Cannot find credentials of user 
> <1591367443:test:123456>
> 1431: check_stun_auth: Cannot find credentials of user 
> <1591367570:test:123456>
> 1450: check_stun_auth: Cannot find credentials of user 
> <1591367546:test:123456>
> 1450: check_stun_auth: Cannot find credentials of user 
> <1591367546:test:123456>
> 1452: check_stun_auth: Cannot find credentials of user 
> <1591367443:test:123456>
> 1453: check_stun_auth: Cannot find credentials of user 
> <1591367591:test:123456>
> 1471: check_stun_auth: Cannot find credentials of user 
> <1591367546:test:123456>



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


[jira] [Updated] (OPENMEETINGS-2385) turnserver Cannot find credentials of use

2020-06-05 Thread tongzhirong (Jira)


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

tongzhirong updated OPENMEETINGS-2385:
--
Attachment: unauth.png

> turnserver Cannot find credentials of use
> -
>
> Key: OPENMEETINGS-2385
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2385
> Project: Openmeetings
>  Issue Type: Improvement
>Reporter: tongzhirong
>Assignee: Maxim Solodovnik
>Priority: Minor
> Attachments: ddd.jpg, unauth.png
>
>
> 1431: check_stun_auth: Cannot find credentials of user 
> <1591367443:test:123456>
> 1431: check_stun_auth: Cannot find credentials of user 
> <1591367570:test:123456>
> 1450: check_stun_auth: Cannot find credentials of user 
> <1591367546:test:123456>
> 1450: check_stun_auth: Cannot find credentials of user 
> <1591367546:test:123456>
> 1452: check_stun_auth: Cannot find credentials of user 
> <1591367443:test:123456>
> 1453: check_stun_auth: Cannot find credentials of user 
> <1591367591:test:123456>
> 1471: check_stun_auth: Cannot find credentials of user 
> <1591367546:test:123456>



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


[jira] [Updated] (OPENMEETINGS-2386) Java 11: import javax.xml.ws.WebFault: “Cannot resolve symbol WebFault”

2020-06-05 Thread Subin Soman (Jira)


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

Subin Soman updated OPENMEETINGS-2386:
--
Fix Version/s: (was: 5.0.0-M4)

> Java 11: import javax.xml.ws.WebFault: “Cannot resolve symbol WebFault”
> ---
>
> Key: OPENMEETINGS-2386
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2386
> Project: Openmeetings
>  Issue Type: Task
>  Components: Builds
> Environment: eclipse/linux mint
>Reporter: Subin Soman
>Assignee: Maxim Solodovnik
>Priority: Major
>  Labels: code
> Attachments: webFault.png
>
>
> code is from master branch of git 
>  
> !webFault.png!



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


[jira] [Updated] (OPENMEETINGS-2386) Java 11: import javax.xml.ws.WebFault: “Cannot resolve symbol WebFault”

2020-06-05 Thread Subin Soman (Jira)


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

Subin Soman updated OPENMEETINGS-2386:
--
Affects Version/s: (was: 5.0.0-M4)

> Java 11: import javax.xml.ws.WebFault: “Cannot resolve symbol WebFault”
> ---
>
> Key: OPENMEETINGS-2386
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2386
> Project: Openmeetings
>  Issue Type: Task
>  Components: Builds
> Environment: eclipse/linux mint
>Reporter: Subin Soman
>Assignee: Maxim Solodovnik
>Priority: Major
>  Labels: code
> Fix For: 5.0.0-M4
>
> Attachments: webFault.png
>
>
> code is from master branch of git 
>  
> !webFault.png!



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


[jira] [Comment Edited] (OPENMEETINGS-2386) Java 11: import javax.xml.ws.WebFault: “Cannot resolve symbol WebFault”

2020-06-05 Thread Subin Soman (Jira)


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

Subin Soman edited comment on OPENMEETINGS-2386 at 6/5/20, 1:56 PM:


problem find in master branch fixed same with below dependency

 
 javax.xml.ws
 jaxws-api
 2.3.1
 


was (Author: subin.soman):
 fixed same with can u comment

 
 javax.xml.ws
 jaxws-api
 2.3.1


> Java 11: import javax.xml.ws.WebFault: “Cannot resolve symbol WebFault”
> ---
>
> Key: OPENMEETINGS-2386
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2386
> Project: Openmeetings
>  Issue Type: Task
>  Components: Builds
>Affects Versions: 5.0.0-M4
> Environment: eclipse/linux mint
>Reporter: Subin Soman
>Assignee: Maxim Solodovnik
>Priority: Major
>  Labels: code
> Fix For: 5.0.0-M4
>
> Attachments: webFault.png
>
>
> code is from master branch of git 
>  
> !webFault.png!



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


[jira] [Commented] (OPENMEETINGS-2386) Java 11: import javax.xml.ws.WebFault: “Cannot resolve symbol WebFault”

2020-06-05 Thread Subin Soman (Jira)


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

Subin Soman commented on OPENMEETINGS-2386:
---

 fixed same with can u comment

 
 javax.xml.ws
 jaxws-api
 2.3.1


> Java 11: import javax.xml.ws.WebFault: “Cannot resolve symbol WebFault”
> ---
>
> Key: OPENMEETINGS-2386
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2386
> Project: Openmeetings
>  Issue Type: Task
>  Components: Builds
>Affects Versions: 5.0.0-M4
> Environment: eclipse/linux mint
>Reporter: Subin Soman
>Assignee: Maxim Solodovnik
>Priority: Major
>  Labels: code
> Fix For: 5.0.0-M4
>
> Attachments: webFault.png
>
>
> code is from master branch of git 
>  
> !webFault.png!



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


[jira] [Commented] (OPENMEETINGS-2365) Android/iOS/Mobile view prevent screen from sleep

2020-06-05 Thread Jira


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

Peter Dähn commented on OPENMEETINGS-2365:
--

I had this in a private project and use this to overcome the sleep problem:

[https://github.com/richtr/NoSleep.js]

It is under MIT Licence.

 

Alternatively, you can manually add 
[NoSleep.js|https://github.com/richtr/NoSleep.js/blob/master/dist/NoSleep.js] 
to your project (or the [minified 
version|https://github.com/richtr/NoSleep.js/blob/master/dist/NoSleep.min.js]).

> Android/iOS/Mobile view prevent screen from sleep
> -
>
> Key: OPENMEETINGS-2365
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2365
> Project: Openmeetings
>  Issue Type: Improvement
>  Components: UI
>Affects Versions: 5.0.0-M4, 5.0.0
>Reporter: Sebastian Wagner
>Assignee: Sebastian Wagner
>Priority: Major
> Fix For: 5.1.0
>
>
> On Mobile devices the screen will sleep after few seconds.
> What happens then is that the OpenMeetings application freezes and looses 
> real-time connection.
> So when you come back your application is out of sync.
> As well as often it looses the connection and only thing you can do is reload 
> the browser.
> This can be prevented by things like: [https://davidwalsh.name/wake-lock-shim]
> But needs investigation.
>  



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


[jira] [Updated] (OPENMEETINGS-2385) turnserver Cannot find credentials of use

2020-06-05 Thread tongzhirong (Jira)


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

tongzhirong updated OPENMEETINGS-2385:
--
Attachment: ddd.jpg

> turnserver Cannot find credentials of use
> -
>
> Key: OPENMEETINGS-2385
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2385
> Project: Openmeetings
>  Issue Type: Improvement
>Reporter: tongzhirong
>Assignee: Maxim Solodovnik
>Priority: Minor
> Attachments: ddd.jpg
>
>
> 1431: check_stun_auth: Cannot find credentials of user 
> <1591367443:test:123456>
> 1431: check_stun_auth: Cannot find credentials of user 
> <1591367570:test:123456>
> 1450: check_stun_auth: Cannot find credentials of user 
> <1591367546:test:123456>
> 1450: check_stun_auth: Cannot find credentials of user 
> <1591367546:test:123456>
> 1452: check_stun_auth: Cannot find credentials of user 
> <1591367443:test:123456>
> 1453: check_stun_auth: Cannot find credentials of user 
> <1591367591:test:123456>
> 1471: check_stun_auth: Cannot find credentials of user 
> <1591367546:test:123456>



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


[jira] [Comment Edited] (OPENMEETINGS-2385) turnserver Cannot find credentials of use

2020-06-05 Thread tongzhirong (Jira)


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

tongzhirong edited comment on OPENMEETINGS-2385 at 6/5/20, 1:44 PM:


Hello ,  there are no audio/video from other people.  May be that's because of 
the error in turnserver. 
this is my turnserver.conf 

use-auth-secret
static-auth-secret=c8cc9639271c0baf1c23f876f945f8c00d19b724b17c1e9ec51e695ad4558552ff

log-file=/var/log/turnserver/turnserver.log
realm=dev.om.home.ptteng.com
stale-nonce=0
cli-password=qwerty
relay-device=eth0
listening-ip=172.16.245.29
listening-port=3478
tls-listening-port=5349
external-ip=47.114.109.227
relay-ip=172.16.245.29
relay-threads=50
lt-cred-mech
cert=/usr/local/turnserver/etc/turn_server_cert.pem
pkey=/usr/local/turnserver/etc/turn_server_pkey.pem
user=test:123456
~
~   


was (Author: tzr):

use-auth-secret
static-auth-secret=c8cc9639271c0baf1c23f876f945f8c00d19b724b17c1e9ec51e695ad4558552ff

log-file=/var/log/turnserver/turnserver.log
realm=dev.om.home.ptteng.com
stale-nonce=0
cli-password=qwerty
relay-device=eth0
listening-ip=172.16.245.29
listening-port=3478
tls-listening-port=5349
external-ip=47.114.109.227
relay-ip=172.16.245.29
relay-threads=50
lt-cred-mech
cert=/usr/local/turnserver/etc/turn_server_cert.pem
pkey=/usr/local/turnserver/etc/turn_server_pkey.pem
user=test:123456
~
~   

> turnserver Cannot find credentials of use
> -
>
> Key: OPENMEETINGS-2385
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2385
> Project: Openmeetings
>  Issue Type: Improvement
>Reporter: tongzhirong
>Assignee: Maxim Solodovnik
>Priority: Minor
>
> 1431: check_stun_auth: Cannot find credentials of user 
> <1591367443:test:123456>
> 1431: check_stun_auth: Cannot find credentials of user 
> <1591367570:test:123456>
> 1450: check_stun_auth: Cannot find credentials of user 
> <1591367546:test:123456>
> 1450: check_stun_auth: Cannot find credentials of user 
> <1591367546:test:123456>
> 1452: check_stun_auth: Cannot find credentials of user 
> <1591367443:test:123456>
> 1453: check_stun_auth: Cannot find credentials of user 
> <1591367591:test:123456>
> 1471: check_stun_auth: Cannot find credentials of user 
> <1591367546:test:123456>



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


[jira] [Commented] (OPENMEETINGS-2385) turnserver Cannot find credentials of use

2020-06-05 Thread tongzhirong (Jira)


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

tongzhirong commented on OPENMEETINGS-2385:
---


use-auth-secret
static-auth-secret=c8cc9639271c0baf1c23f876f945f8c00d19b724b17c1e9ec51e695ad4558552ff

log-file=/var/log/turnserver/turnserver.log
realm=dev.om.home.ptteng.com
stale-nonce=0
cli-password=qwerty
relay-device=eth0
listening-ip=172.16.245.29
listening-port=3478
tls-listening-port=5349
external-ip=47.114.109.227
relay-ip=172.16.245.29
relay-threads=50
lt-cred-mech
cert=/usr/local/turnserver/etc/turn_server_cert.pem
pkey=/usr/local/turnserver/etc/turn_server_pkey.pem
user=test:123456
~
~   

> turnserver Cannot find credentials of use
> -
>
> Key: OPENMEETINGS-2385
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2385
> Project: Openmeetings
>  Issue Type: Improvement
>Reporter: tongzhirong
>Assignee: Maxim Solodovnik
>Priority: Minor
>
> 1431: check_stun_auth: Cannot find credentials of user 
> <1591367443:test:123456>
> 1431: check_stun_auth: Cannot find credentials of user 
> <1591367570:test:123456>
> 1450: check_stun_auth: Cannot find credentials of user 
> <1591367546:test:123456>
> 1450: check_stun_auth: Cannot find credentials of user 
> <1591367546:test:123456>
> 1452: check_stun_auth: Cannot find credentials of user 
> <1591367443:test:123456>
> 1453: check_stun_auth: Cannot find credentials of user 
> <1591367591:test:123456>
> 1471: check_stun_auth: Cannot find credentials of user 
> <1591367546:test:123456>



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


[jira] [Updated] (OPENMEETINGS-2386) Java 11: import javax.xml.ws.WebFault: “Cannot resolve symbol WebFault”

2020-06-05 Thread Subin Soman (Jira)


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

Subin Soman updated OPENMEETINGS-2386:
--
Description: 
code is from master branch of git 

 

!webFault.png!

  was:!webFault.png!


> Java 11: import javax.xml.ws.WebFault: “Cannot resolve symbol WebFault”
> ---
>
> Key: OPENMEETINGS-2386
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2386
> Project: Openmeetings
>  Issue Type: Task
>  Components: Builds
>Affects Versions: 5.0.0-M4
> Environment: eclipse/linux mint
>Reporter: Subin Soman
>Assignee: Maxim Solodovnik
>Priority: Major
>  Labels: code
> Fix For: 5.0.0-M4
>
> Attachments: webFault.png
>
>
> code is from master branch of git 
>  
> !webFault.png!



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


[jira] [Updated] (OPENMEETINGS-2386) Java 11: import javax.xml.ws.WebFault: “Cannot resolve symbol WebFault”

2020-06-05 Thread Subin Soman (Jira)


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

Subin Soman updated OPENMEETINGS-2386:
--
Issue Type: Task  (was: Bug)

> Java 11: import javax.xml.ws.WebFault: “Cannot resolve symbol WebFault”
> ---
>
> Key: OPENMEETINGS-2386
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2386
> Project: Openmeetings
>  Issue Type: Task
>  Components: Builds
>Affects Versions: 5.0.0-M4
> Environment: eclipse/linux mint
>Reporter: Subin Soman
>Assignee: Maxim Solodovnik
>Priority: Major
>  Labels: code
> Fix For: 5.0.0-M4
>
> Attachments: webFault.png
>
>
> !webFault.png!



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


[jira] [Created] (OPENMEETINGS-2386) Java 11: import javax.xml.ws.WebFault: “Cannot resolve symbol WebFault”

2020-06-05 Thread Subin Soman (Jira)
Subin Soman created OPENMEETINGS-2386:
-

 Summary: Java 11: import javax.xml.ws.WebFault: “Cannot resolve 
symbol WebFault”
 Key: OPENMEETINGS-2386
 URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2386
 Project: Openmeetings
  Issue Type: Bug
  Components: Builds
Affects Versions: 5.0.0-M4
 Environment: eclipse/linux mint
Reporter: Subin Soman
Assignee: Maxim Solodovnik
 Fix For: 5.0.0-M4
 Attachments: webFault.png

!webFault.png!



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


[jira] [Created] (OPENMEETINGS-2385) turnserver Cannot find credentials of use

2020-06-05 Thread tongzhirong (Jira)
tongzhirong created OPENMEETINGS-2385:
-

 Summary: turnserver Cannot find credentials of use
 Key: OPENMEETINGS-2385
 URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2385
 Project: Openmeetings
  Issue Type: Improvement
Reporter: tongzhirong
Assignee: Maxim Solodovnik


1431: check_stun_auth: Cannot find credentials of user <1591367443:test:123456>
1431: check_stun_auth: Cannot find credentials of user <1591367570:test:123456>
1450: check_stun_auth: Cannot find credentials of user <1591367546:test:123456>
1450: check_stun_auth: Cannot find credentials of user <1591367546:test:123456>
1452: check_stun_auth: Cannot find credentials of user <1591367443:test:123456>
1453: check_stun_auth: Cannot find credentials of user <1591367591:test:123456>
1471: check_stun_auth: Cannot find credentials of user <1591367546:test:123456>



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


[jira] [Created] (OPENMEETINGS-2384) internal server error

2020-06-05 Thread tongzhirong (Jira)
tongzhirong created OPENMEETINGS-2384:
-

 Summary: internal server error
 Key: OPENMEETINGS-2384
 URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2384
 Project: Openmeetings
  Issue Type: Bug
  Components: Audio/Video
Affects Versions: 5.0.0-M4
 Environment: centOS 7
Reporter: tongzhirong
Assignee: Maxim Solodovnik
 Fix For: 4.0.11
 Attachments: bug.png

internal server error when enter public rooms. 



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


[jira] [Closed] (OPENMEETINGS-2381) can only receive video/audio by user's own

2020-06-05 Thread tongzhirong (Jira)


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

tongzhirong closed OPENMEETINGS-2381.
-
Fix Version/s: 5.0.0
   Resolution: Staged

> can only receive video/audio by user's own 
> ---
>
> Key: OPENMEETINGS-2381
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2381
> Project: Openmeetings
>  Issue Type: Bug
>  Components: Audio/Video
>Affects Versions: 5.0.0-M4
> Environment: tThe OM was installed on Linux version 
> 3.10.0-1127.8.2.el7.x86_64 (mockbu...@kbuilder.bsys.centos.org) (gcc version 
> 4.8.5 20150623 (Red Hat 4.8.5-39) (GCC) )
> Me I was using a 2019 16 inch macbook pro .
>Reporter: tongzhirong
>Assignee: Maxim Solodovnik
>Priority: Blocker
> Fix For: 5.0.0
>
> Attachments: wx20200604-150...@2x.png, wx20200604-152...@2x.png
>
>
> Hi, I  just finished installing OM and encountered an issue.  In the room I 
> can have video/audio by my own camera and that's fine , but I can only have 
> video/audio on my own which means I can't see video/audio from other people 
> when there are multi people in the room , the situation is same  on anyone's 
> machine. 



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


[jira] [Commented] (OPENMEETINGS-2381) can only receive video/audio by user's own

2020-06-05 Thread tongzhirong (Jira)


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

tongzhirong commented on OPENMEETINGS-2381:
---

Never mind, i've started turnserver  followed the instructions by google.

> can only receive video/audio by user's own 
> ---
>
> Key: OPENMEETINGS-2381
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2381
> Project: Openmeetings
>  Issue Type: Bug
>  Components: Audio/Video
>Affects Versions: 5.0.0-M4
> Environment: tThe OM was installed on Linux version 
> 3.10.0-1127.8.2.el7.x86_64 (mockbu...@kbuilder.bsys.centos.org) (gcc version 
> 4.8.5 20150623 (Red Hat 4.8.5-39) (GCC) )
> Me I was using a 2019 16 inch macbook pro .
>Reporter: tongzhirong
>Assignee: Maxim Solodovnik
>Priority: Blocker
> Attachments: wx20200604-150...@2x.png, wx20200604-152...@2x.png
>
>
> Hi, I  just finished installing OM and encountered an issue.  In the room I 
> can have video/audio by my own camera and that's fine , but I can only have 
> video/audio on my own which means I can't see video/audio from other people 
> when there are multi people in the room , the situation is same  on anyone's 
> machine. 



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


[jira] [Commented] (OPENMEETINGS-2381) can only receive video/audio by user's own

2020-06-05 Thread Alvaro (Jira)


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

Alvaro commented on OPENMEETINGS-2381:
--

...if you don't find "turnserver.conf" file, sorry but i can't help you.

> can only receive video/audio by user's own 
> ---
>
> Key: OPENMEETINGS-2381
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2381
> Project: Openmeetings
>  Issue Type: Bug
>  Components: Audio/Video
>Affects Versions: 5.0.0-M4
> Environment: tThe OM was installed on Linux version 
> 3.10.0-1127.8.2.el7.x86_64 (mockbu...@kbuilder.bsys.centos.org) (gcc version 
> 4.8.5 20150623 (Red Hat 4.8.5-39) (GCC) )
> Me I was using a 2019 16 inch macbook pro .
>Reporter: tongzhirong
>Assignee: Maxim Solodovnik
>Priority: Blocker
> Attachments: wx20200604-150...@2x.png, wx20200604-152...@2x.png
>
>
> Hi, I  just finished installing OM and encountered an issue.  In the room I 
> can have video/audio by my own camera and that's fine , but I can only have 
> video/audio on my own which means I can't see video/audio from other people 
> when there are multi people in the room , the situation is same  on anyone's 
> machine. 



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


[jira] [Created] (OPENMEETINGS-2383) for guests: in the chat area apears guest's email instead of First name/Last name

2020-06-05 Thread Mihai Ion (Jira)
Mihai Ion created OPENMEETINGS-2383:
---

 Summary: for guests: in the chat area apears guest's email instead 
of First name/Last name
 Key: OPENMEETINGS-2383
 URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2383
 Project: Openmeetings
  Issue Type: Bug
  Components: Chat
Affects Versions: 5.0.0-M4, 5.0.0-M2
Reporter: Mihai Ion
Assignee: Maxim Solodovnik
 Attachments: ChatGuestOpenMeetings.jpg

If a guest joins a meeting by invitation link in the chat area al his/her 
messages appear under the guest's email instead of First name/Last name.




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


[openmeetings] branch master updated: no jira: master is switched to be 5.0.0

2020-06-05 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 c11c171  no jira: master is switched to be 5.0.0
c11c171 is described below

commit c11c171371f915d9b30c04ba48842bbf46383b10
Author: Maxim Solodovnik 
AuthorDate: Fri Jun 5 16:19:59 2020 +0700

no jira: master is switched to be 5.0.0
---
 openmeetings-core/pom.xml| 2 +-
 openmeetings-db/pom.xml  | 2 +-
 openmeetings-install/pom.xml | 2 +-
 openmeetings-screenshare/pom.xml | 2 +-
 openmeetings-server/pom.xml  | 2 +-
 openmeetings-service/pom.xml | 2 +-
 openmeetings-util/pom.xml| 2 +-
 openmeetings-web/pom.xml | 2 +-
 openmeetings-webservice/pom.xml  | 2 +-
 pom.xml  | 2 +-
 10 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/openmeetings-core/pom.xml b/openmeetings-core/pom.xml
index 3e985b6..09a6e55 100644
--- a/openmeetings-core/pom.xml
+++ b/openmeetings-core/pom.xml
@@ -22,7 +22,7 @@

org.apache.openmeetings
openmeetings-parent
-   5.0.0-M5-SNAPSHOT
+   5.0.0-SNAPSHOT
..

openmeetings-core
diff --git a/openmeetings-db/pom.xml b/openmeetings-db/pom.xml
index 4e81c39..311d1ee 100644
--- a/openmeetings-db/pom.xml
+++ b/openmeetings-db/pom.xml
@@ -22,7 +22,7 @@

org.apache.openmeetings
openmeetings-parent
-   5.0.0-M5-SNAPSHOT
+   5.0.0-SNAPSHOT
..

openmeetings-db
diff --git a/openmeetings-install/pom.xml b/openmeetings-install/pom.xml
index dc88f9f..f82adcc 100644
--- a/openmeetings-install/pom.xml
+++ b/openmeetings-install/pom.xml
@@ -22,7 +22,7 @@

org.apache.openmeetings
openmeetings-parent
-   5.0.0-M5-SNAPSHOT
+   5.0.0-SNAPSHOT
..

openmeetings-install
diff --git a/openmeetings-screenshare/pom.xml b/openmeetings-screenshare/pom.xml
index 0f592a2..4ed1d1a 100644
--- a/openmeetings-screenshare/pom.xml
+++ b/openmeetings-screenshare/pom.xml
@@ -22,7 +22,7 @@

org.apache.openmeetings
openmeetings-parent
-   5.0.0-M5-SNAPSHOT
+   5.0.0-SNAPSHOT
..

openmeetings-screenshare
diff --git a/openmeetings-server/pom.xml b/openmeetings-server/pom.xml
index b43289a..48801a0 100644
--- a/openmeetings-server/pom.xml
+++ b/openmeetings-server/pom.xml
@@ -22,7 +22,7 @@

org.apache.openmeetings
openmeetings-parent
-   5.0.0-M5-SNAPSHOT
+   5.0.0-SNAPSHOT
..

openmeetings-server
diff --git a/openmeetings-service/pom.xml b/openmeetings-service/pom.xml
index 10f406b..96a2293 100644
--- a/openmeetings-service/pom.xml
+++ b/openmeetings-service/pom.xml
@@ -22,7 +22,7 @@

org.apache.openmeetings
openmeetings-parent
-   5.0.0-M5-SNAPSHOT
+   5.0.0-SNAPSHOT
..

openmeetings-service
diff --git a/openmeetings-util/pom.xml b/openmeetings-util/pom.xml
index 2deba16..a5bbceb 100644
--- a/openmeetings-util/pom.xml
+++ b/openmeetings-util/pom.xml
@@ -22,7 +22,7 @@

org.apache.openmeetings
openmeetings-parent
-   5.0.0-M5-SNAPSHOT
+   5.0.0-SNAPSHOT
..

openmeetings-util
diff --git a/openmeetings-web/pom.xml b/openmeetings-web/pom.xml
index 056a195..755d1f1 100644
--- a/openmeetings-web/pom.xml
+++ b/openmeetings-web/pom.xml
@@ -22,7 +22,7 @@

org.apache.openmeetings
openmeetings-parent
-   5.0.0-M5-SNAPSHOT
+   5.0.0-SNAPSHOT
..

openmeetings-web
diff --git a/openmeetings-webservice/pom.xml b/openmeetings-webservice/pom.xml
index 669889f..1dd5a2a 100644
--- a/openmeetings-webservice/pom.xml
+++ b/openmeetings-webservice/pom.xml
@@ -22,7 +22,7 @@

org.apache.openmeetings
openmeetings-parent
-   5.0.0-M5-SNAPSHOT
+   5.0.0-SNAPSHOT
..

openmeetings-webservice
diff --git a/pom.xml b/pom.xml
index 4af3da4..2884c82 100644
--- a/pom.xml
+++ b/pom.xml
@@ -26,7 +26,7 @@

org.apache.openmeetings
openmeetings-parent
-   5.0.0-M5-SNAPSHOT
+   5.0.0-SNAPSHOT
pom
Openmeetings
Parent project for all OpenMeetings Maven modules. 
Required to hold general settings



[jira] [Commented] (OPENMEETINGS-2381) can only receive video/audio by user's own

2020-06-05 Thread tongzhirong (Jira)


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

tongzhirong commented on OPENMEETINGS-2381:
---

I am experiencing some  difficulties,   after installed coturn (no error) ,  
there are no  such file or directory as  /etc/coturn/turnserver.conf   which 
make me hard to process.  Should I ask for help  via 
https://openmeetings.apache.org/mailing-lists.html ?

> can only receive video/audio by user's own 
> ---
>
> Key: OPENMEETINGS-2381
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2381
> Project: Openmeetings
>  Issue Type: Bug
>  Components: Audio/Video
>Affects Versions: 5.0.0-M4
> Environment: tThe OM was installed on Linux version 
> 3.10.0-1127.8.2.el7.x86_64 (mockbu...@kbuilder.bsys.centos.org) (gcc version 
> 4.8.5 20150623 (Red Hat 4.8.5-39) (GCC) )
> Me I was using a 2019 16 inch macbook pro .
>Reporter: tongzhirong
>Assignee: Maxim Solodovnik
>Priority: Blocker
> Attachments: wx20200604-150...@2x.png, wx20200604-152...@2x.png
>
>
> Hi, I  just finished installing OM and encountered an issue.  In the room I 
> can have video/audio by my own camera and that's fine , but I can only have 
> video/audio on my own which means I can't see video/audio from other people 
> when there are multi people in the room , the situation is same  on anyone's 
> machine. 



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


[jira] [Commented] (OPENMEETINGS-2381) can only receive video/audio by user's own

2020-06-05 Thread Alvaro (Jira)


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

Alvaro commented on OPENMEETINGS-2381:
--

...here you can find it:

https://cwiki.apache.org/confluence/display/OPENMEETINGS/Tutorials+for+installing+OpenMeetings+and+Tools

> can only receive video/audio by user's own 
> ---
>
> Key: OPENMEETINGS-2381
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2381
> Project: Openmeetings
>  Issue Type: Bug
>  Components: Audio/Video
>Affects Versions: 5.0.0-M4
> Environment: tThe OM was installed on Linux version 
> 3.10.0-1127.8.2.el7.x86_64 (mockbu...@kbuilder.bsys.centos.org) (gcc version 
> 4.8.5 20150623 (Red Hat 4.8.5-39) (GCC) )
> Me I was using a 2019 16 inch macbook pro .
>Reporter: tongzhirong
>Assignee: Maxim Solodovnik
>Priority: Blocker
> Attachments: wx20200604-150...@2x.png, wx20200604-152...@2x.png
>
>
> Hi, I  just finished installing OM and encountered an issue.  In the room I 
> can have video/audio by my own camera and that's fine , but I can only have 
> video/audio on my own which means I can't see video/audio from other people 
> when there are multi people in the room , the situation is same  on anyone's 
> machine. 



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


[jira] [Commented] (OPENMEETINGS-2381) can only receive video/audio by user's own

2020-06-05 Thread tongzhirong (Jira)


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

tongzhirong commented on OPENMEETINGS-2381:
---

Excuse me but do you have Coturn installation guide for openMeetings 5.0.0-M4 
on CentOS?
The one you gave above was on Ubuntu.  Much configuration was miss leading. 

> can only receive video/audio by user's own 
> ---
>
> Key: OPENMEETINGS-2381
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2381
> Project: Openmeetings
>  Issue Type: Bug
>  Components: Audio/Video
>Affects Versions: 5.0.0-M4
> Environment: tThe OM was installed on Linux version 
> 3.10.0-1127.8.2.el7.x86_64 (mockbu...@kbuilder.bsys.centos.org) (gcc version 
> 4.8.5 20150623 (Red Hat 4.8.5-39) (GCC) )
> Me I was using a 2019 16 inch macbook pro .
>Reporter: tongzhirong
>Assignee: Maxim Solodovnik
>Priority: Blocker
> Attachments: wx20200604-150...@2x.png, wx20200604-152...@2x.png
>
>
> Hi, I  just finished installing OM and encountered an issue.  In the room I 
> can have video/audio by my own camera and that's fine , but I can only have 
> video/audio on my own which means I can't see video/audio from other people 
> when there are multi people in the room , the situation is same  on anyone's 
> machine. 



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


[jira] [Comment Edited] (OPENMEETINGS-2379) moodle self signed certificate

2020-06-05 Thread Przemyslaw (Jira)


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

Przemyslaw edited comment on OPENMEETINGS-2379 at 6/5/20, 6:18 AM:
---

Result ps - ef|grep java:

[root@R01-OpenMeeting ~]# ps -ef|grep java
root 1682 1 0 maj25 ? 00:28:32 /usr/bin/java 
-Djava.util.logging.config.file=/opt/open504/conf/logging.properties 
-Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager 
-Djdk.tls.ephemeralDHKeySize=2048 
-Djava.protocol.handler.pkgs=org.apache.catalina.webresources 
-Dorg.apache.catalina.security.SecurityListener.UMASK=0027 
-Dignore.endorsed.dirs= -classpath 
/opt/open504/bin/bootstrap.jar:/opt/open504/bin/tomcat-juli.jar 
-Dcatalina.base=/opt/open504 -Dcatalina.home=/opt/open504 
-Djava.io.tmpdir=/opt/open504/temp org.apache.catalina.startup.Bootstrap -u 
nobody -Dcatalina.base start
root 3605 1 0 maj27 ? 00:07:29 /usr/bin/java 
-Djava.util.logging.config.file=/opt/open504/conf/logging.properties 
-Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager 
-Djdk.tls.ephemeralDHKeySize=2048 
-Djava.protocol.handler.pkgs=org.apache.catalina.webresources 
-Dorg.apache.catalina.security.SecurityListener.UMASK=0027 
-Dignore.endorsed.dirs= -classpath 
/opt/open504/bin/bootstrap.jar:/opt/open504/bin/tomcat-juli.jar 
-Dcatalina.base=/opt/open504 -Dcatalina.home=/opt/open504 
-Djava.io.tmpdir=/opt/open504/temp org.apache.catalina.startup.Bootstrap -u 
nobody -Dcatalina.base start
root 3692 1 0 maj27 ? 00:23:08 /usr/bin/java 
-Djava.util.logging.config.file=/opt/open504/conf/logging.properties 
-Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager 
-Djdk.tls.ephemeralDHKeySize=2048 
-Djava.protocol.handler.pkgs=org.apache.catalina.webresources 
-Dorg.apache.catalina.security.SecurityListener.UMASK=0027 
-Dignore.endorsed.dirs= -classpath 
/opt/open504/bin/bootstrap.jar:/opt/open504/bin/tomcat-juli.jar 
-Dcatalina.base=/opt/open504 -Dcatalina.home=/opt/open504 
-Djava.io.tmpdir=/opt/open504/temp org.apache.catalina.startup.Bootstrap -u 
nobody -Dcatalina.base start
root 5360 1 0 maj27 ? 00:06:21 /usr/bin/java 
-Djava.util.logging.config.file=/opt/open504/conf/logging.properties 
-Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager 
-Djdk.tls.ephemeralDHKeySize=2048 
-Djava.protocol.handler.pkgs=org.apache.catalina.webresources 
-Dorg.apache.catalina.security.SecurityListener.UMASK=0027 
-Dignore.endorsed.dirs= -classpath 
/opt/open504/bin/bootstrap.jar:/opt/open504/bin/tomcat-juli.jar 
-Dcatalina.base=/opt/open504 -Dcatalina.home=/opt/open504 
-Djava.io.tmpdir=/opt/open504/temp org.apache.catalina.startup.Bootstrap -u 
nobody -Dcatalina.base start
root 8268 1 0 cze01 ? 00:04:10 /usr/bin/java 
-Djava.util.logging.config.file=/opt/open504/conf/logging.properties 
-Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager 
-Djdk.tls.ephemeralDHKeySize=2048 
-Djava.protocol.handler.pkgs=org.apache.catalina.webresources 
-Dorg.apache.catalina.security.SecurityListener.UMASK=0027 
-Dignore.endorsed.dirs= -classpath 
/opt/open504/bin/bootstrap.jar:/opt/open504/bin/tomcat-juli.jar 
-Dcatalina.base=/opt/open504 -Dcatalina.home=/opt/open504 
-Djava.io.tmpdir=/opt/open504/temp org.apache.catalina.startup.Bootstrap -u 
nobody -Dcatalina.base start
root 8573 1 0 cze02 ? 00:13:28 /usr/bin/java 
-Djava.util.logging.config.file=/opt/open504/conf/logging.properties 
-Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager 
-Djdk.tls.ephemeralDHKeySize=2048 
-Djava.protocol.handler.pkgs=org.apache.catalina.webresources 
-Dorg.apache.catalina.security.SecurityListener.UMASK=0027 
-Dignore.endorsed.dirs= -classpath 
/opt/open504/bin/bootstrap.jar:/opt/open504/bin/tomcat-juli.jar 
-Dcatalina.base=/opt/open504 -Dcatalina.home=/opt/open504 
-Djava.io.tmpdir=/opt/open504/temp org.apache.catalina.startup.Bootstrap -u 
nobody -Dcatalina.base start
root 80332 1 0 cze03 ? 00:05:00 /usr/bin/java 
-Djava.util.logging.config.file=/opt/open504/conf/logging.properties 
-Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager 
-Djdk.tls.ephemeralDHKeySize=2048 
-Djava.protocol.handler.pkgs=org.apache.catalina.webresources 
-Dorg.apache.catalina.security.SecurityListener.UMASK=0027 
-Dignore.endorsed.dirs= -classpath 
/opt/open504/bin/bootstrap.jar:/opt/open504/bin/tomcat-juli.jar 
-Dcatalina.base=/opt/open504 -Dcatalina.home=/opt/open504 
-Djava.io.tmpdir=/opt/open504/temp org.apache.catalina.startup.Bootstrap start
root 107833 1 0 maj28 ? 00:27:16 /usr/bin/java 
-Djava.util.logging.config.file=/opt/open504/conf/logging.properties 
-Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager 
-Djdk.tls.ephemeralDHKeySize=2048 
-Djava.protocol.handler.pkgs=org.apache.catalina.webresources 
-Dorg.apache.catalina.security.SecurityListener.UMASK=0027 
-Dignore.endorsed.dirs= -classpath 

[jira] [Commented] (OPENMEETINGS-2379) moodle self signed certificate

2020-06-05 Thread Przemyslaw (Jira)


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

Przemyslaw commented on OPENMEETINGS-2379:
--

Result ps - ef|grep java:

[root@R01-OpenMeeting ~]# ps -ef|grep java
root 1682 1 0 maj25 ? 00:28:32 /usr/bin/java 
-Djava.util.logging.config.file=/opt/open504/conf/logging.properties 
-Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager 
-Djdk.tls.ephemeralDHKeySize=2048 
-Djava.protocol.handler.pkgs=org.apache.catalina.webresources 
-Dorg.apache.catalina.security.SecurityListener.UMASK=0027 
-Dignore.endorsed.dirs= -classpath 
/opt/open504/bin/bootstrap.jar:/opt/open504/bin/tomcat-juli.jar 
-Dcatalina.base=/opt/open504 -Dcatalina.home=/opt/open504 
-Djava.io.tmpdir=/opt/open504/temp org.apache.catalina.startup.Bootstrap -u 
nobody -Dcatalina.base start
root 3605 1 0 maj27 ? 00:07:29 /usr/bin/java 
-Djava.util.logging.config.file=/opt/open504/conf/logging.properties 
-Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager 
-Djdk.tls.ephemeralDHKeySize=2048 
-Djava.protocol.handler.pkgs=org.apache.catalina.webresources 
-Dorg.apache.catalina.security.SecurityListener.UMASK=0027 
-Dignore.endorsed.dirs= -classpath 
/opt/open504/bin/bootstrap.jar:/opt/open504/bin/tomcat-juli.jar 
-Dcatalina.base=/opt/open504 -Dcatalina.home=/opt/open504 
-Djava.io.tmpdir=/opt/open504/temp org.apache.catalina.startup.Bootstrap -u 
nobody -Dcatalina.base start
root 3692 1 0 maj27 ? 00:23:08 /usr/bin/java 
-Djava.util.logging.config.file=/opt/open504/conf/logging.properties 
-Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager 
-Djdk.tls.ephemeralDHKeySize=2048 
-Djava.protocol.handler.pkgs=org.apache.catalina.webresources 
-Dorg.apache.catalina.security.SecurityListener.UMASK=0027 
-Dignore.endorsed.dirs= -classpath 
/opt/open504/bin/bootstrap.jar:/opt/open504/bin/tomcat-juli.jar 
-Dcatalina.base=/opt/open504 -Dcatalina.home=/opt/open504 
-Djava.io.tmpdir=/opt/open504/temp org.apache.catalina.startup.Bootstrap -u 
nobody -Dcatalina.base start
root 5360 1 0 maj27 ? 00:06:21 /usr/bin/java 
-Djava.util.logging.config.file=/opt/open504/conf/logging.properties 
-Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager 
-Djdk.tls.ephemeralDHKeySize=2048 
-Djava.protocol.handler.pkgs=org.apache.catalina.webresources 
-Dorg.apache.catalina.security.SecurityListener.UMASK=0027 
-Dignore.endorsed.dirs= -classpath 
/opt/open504/bin/bootstrap.jar:/opt/open504/bin/tomcat-juli.jar 
-Dcatalina.base=/opt/open504 -Dcatalina.home=/opt/open504 
-Djava.io.tmpdir=/opt/open504/temp org.apache.catalina.startup.Bootstrap -u 
nobody -Dcatalina.base start
root 8268 1 0 cze01 ? 00:04:10 /usr/bin/java 
-Djava.util.logging.config.file=/opt/open504/conf/logging.properties 
-Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager 
-Djdk.tls.ephemeralDHKeySize=2048 
-Djava.protocol.handler.pkgs=org.apache.catalina.webresources 
-Dorg.apache.catalina.security.SecurityListener.UMASK=0027 
-Dignore.endorsed.dirs= -classpath 
/opt/open504/bin/bootstrap.jar:/opt/open504/bin/tomcat-juli.jar 
-Dcatalina.base=/opt/open504 -Dcatalina.home=/opt/open504 
-Djava.io.tmpdir=/opt/open504/temp org.apache.catalina.startup.Bootstrap -u 
nobody -Dcatalina.base start
root 8573 1 0 cze02 ? 00:13:28 /usr/bin/java 
-Djava.util.logging.config.file=/opt/open504/conf/logging.properties 
-Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager 
-Djdk.tls.ephemeralDHKeySize=2048 
-Djava.protocol.handler.pkgs=org.apache.catalina.webresources 
-Dorg.apache.catalina.security.SecurityListener.UMASK=0027 
-Dignore.endorsed.dirs= -classpath 
/opt/open504/bin/bootstrap.jar:/opt/open504/bin/tomcat-juli.jar 
-Dcatalina.base=/opt/open504 -Dcatalina.home=/opt/open504 
-Djava.io.tmpdir=/opt/open504/temp org.apache.catalina.startup.Bootstrap -u 
nobody -Dcatalina.base start
root 80332 1 0 cze03 ? 00:05:00 /usr/bin/java 
-Djava.util.logging.config.file=/opt/open504/conf/logging.properties 
-Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager 
-Djdk.tls.ephemeralDHKeySize=2048 
-Djava.protocol.handler.pkgs=org.apache.catalina.webresources 
-Dorg.apache.catalina.security.SecurityListener.UMASK=0027 
-Dignore.endorsed.dirs= -classpath 
/opt/open504/bin/bootstrap.jar:/opt/open504/bin/tomcat-juli.jar 
-Dcatalina.base=/opt/open504 -Dcatalina.home=/opt/open504 
-Djava.io.tmpdir=/opt/open504/temp org.apache.catalina.startup.Bootstrap start
root 107833 1 0 maj28 ? 00:27:16 /usr/bin/java 
-Djava.util.logging.config.file=/opt/open504/conf/logging.properties 
-Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager 
-Djdk.tls.ephemeralDHKeySize=2048 
-Djava.protocol.handler.pkgs=org.apache.catalina.webresources 
-Dorg.apache.catalina.security.SecurityListener.UMASK=0027 
-Dignore.endorsed.dirs= -classpath 
/opt/open504/bin/bootstrap.jar:/opt/open504/bin/tomcat-juli.jar