[openmeetings-user] Connecting to the server has been lost ????

2011-11-20 Thread abbas roshan
*hi 
i got error in WAN ,when i want to connect to the environment this problem 
happens,i dont know why  ?
i don't deal with this problem in Lan 
and the 5080 and 1935 port are  open 
please help
thanks in advance
*

-- 
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/openmeetings-user/-/pwvGxrFrqUoJ.
To post to this group, send email to openmeetings-user@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



Re: [openmeetings-user] Installaiton on Debian

2011-11-20 Thread Mike
I know this will sound lame but did you check to see if the server is
running.
Did you start it manually first to see if it's running. And if not, did you
look in the logs to find out why.


On Sat, Nov 19, 2011 at 10:17 PM, Hayk Zakaryan hayk@gmail.com wrote:

 Hello,

 I am trying to install openmeetings on Debian 6 (squeeze)
 The instaructions in
 http://openmeetings.googlecode.com/files/red5-openmeetings_1.0.2760.noarch.deb
 are for Debian etch.

 And there is first variant there, which installs the red5 and
 openmeetings software together.
 Using this debian package
 http://openmeetings.googlecode.com/files/red5-openmeetings_1.0.2760.noarch.deb
 .

 The question is, will this work under debian 6 (squeeze)?
 I tried that, but when i type http://localhost:5080/openmeetings/ on
 my browser window, nothing happens.

 If no,  there are step by step instructions below that.
 Will those ones work under Debian 6?

 Thanks in advance!

 --
 You received this message because you are subscribed to the Google Groups
 OpenMeetings User group.
 To post to this group, send email to openmeetings-user@googlegroups.com.
 To unsubscribe from this group, send email to
 openmeetings-user+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/openmeetings-user?hl=en.



-- 
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To post to this group, send email to openmeetings-user@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



[openmeetings-user] Question about Team-Room feature

2011-11-20 Thread Valery Fremaux
Hi all, 

completing and compiling language export fir full French reveals some 
tracks of an implementation for having subrooms in a Conference
room, but outside of those string entries, no track of such a feature in 
administration panel, project documentation or whatever else

Who knows about that ? 

Thanks to OM community.

-- 
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/openmeetings-user/-/lQl4GeqlEwUJ.
To post to this group, send email to openmeetings-user@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



[openmeetings-user] debian or ubuntu?

2011-11-20 Thread Mike
I've been using rhel/centos exclusively for years and recently found that
running rtmp/xmpp apps on debian seems to run much better, faster than on
centos.

However, now I am trying to find information to decipher if flash apps such
as openfire, red5, etc, would run best on debian or ubuntu. Both of these
systems seem to be more optimized for media than centos.

Has anyone ever done some tests to see if there is any significant
difference.
I've been testing rtmp apps for some time now and it seems there are always
problems and always inconsistent. One day it'll work great, a short while
later, we've got audio delays yet the clients are in the same location,
using the same hardware and it's all on the same lan.

The servers I build have nothing what so ever running on them other than
essential to the xmpp/rtmp applications. The servers have lots of memory
and processor resources and are dedicated, not VPS.

What could cause such variations?

Thanks.

Mike

-- 
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To post to this group, send email to openmeetings-user@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



[openmeetings-user] Re: Problems with uploading files

2011-11-20 Thread Krzysztof
Hi,

openmeetings r4589.
I've looked up the code and suggest the following solutions to the
above problems:

1. Downloading default images from default directory:

   DownloadHandler.class (lines 261, 267, 274)
   full_path = current_dir + File.separatorChar + default +
File.separatorChar + ...;
   should be changed to
   full_path = current_dir + default + File.separatorChar + ...;

2. Uploading swf files to the whiteboard. I'm not sure if the
suggested fix works, theoretically it should as at least the slashes
and backslashes will not be duplicated.

   DonwloadHandler.class (line 159)
   working_dir = working_dir + roomName + File.separatorChar +
parentPath + File.separatorChar;
   should be changed to
   working_dir = working_dir + roomName + parentPath;

Regards,
Krzysztof

-- 
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To post to this group, send email to openmeetings-user@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



Re: [openmeetings-user] Re: Problems with uploading files

2011-11-20 Thread seba.wag...@gmail.com
I have been testing upload of swfs to openmeetings under windows regularly.
There are no duplicated slashes from my point of view, also the upload and
download works fine. Same for profile pics, at least the default one.

I can't say so much more about your issue as I would need to exactly debug
your problem and tracelog first.

Sebastian
Am 20.11.2011 19:53 schrieb Krzysztof stock1...@gmail.com:

 Hi,

 openmeetings r4589.
 I've looked up the code and suggest the following solutions to the
 above problems:

 1. Downloading default images from default directory:

   DownloadHandler.class (lines 261, 267, 274)
   full_path = current_dir + File.separatorChar + default +
 File.separatorChar + ...;
   should be changed to
   full_path = current_dir + default + File.separatorChar + ...;

 2. Uploading swf files to the whiteboard. I'm not sure if the
 suggested fix works, theoretically it should as at least the slashes
 and backslashes will not be duplicated.

   DonwloadHandler.class (line 159)
   working_dir = working_dir + roomName + File.separatorChar +
 parentPath + File.separatorChar;
   should be changed to
   working_dir = working_dir + roomName + parentPath;

 Regards,
 Krzysztof

 --
 You received this message because you are subscribed to the Google Groups
 OpenMeetings User group.
 To post to this group, send email to openmeetings-user@googlegroups.com.
 To unsubscribe from this group, send email to
 openmeetings-user+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/openmeetings-user?hl=en.



-- 
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To post to this group, send email to openmeetings-user@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



Re: [openmeetings-user] Re: Problems with uploading files

2011-11-20 Thread seba.wag...@gmail.com
Sorry I meant upload of pdfs not swfs.
This will test actually a lot of the document handling esxcept the
oo-service.

Sebastian
Am 20.11.2011 20:08 schrieb seba.wag...@gmail.com seba.wag...@gmail.com:

 I have been testing upload of swfs to openmeetings under windows
 regularly. There are no duplicated slashes from my point of view, also the
 upload and download works fine. Same for profile pics, at least the default
 one.

 I can't say so much more about your issue as I would need to exactly debug
 your problem and tracelog first.

 Sebastian
 Am 20.11.2011 19:53 schrieb Krzysztof stock1...@gmail.com:

 Hi,

 openmeetings r4589.
 I've looked up the code and suggest the following solutions to the
 above problems:

 1. Downloading default images from default directory:

   DownloadHandler.class (lines 261, 267, 274)
   full_path = current_dir + File.separatorChar + default +
 File.separatorChar + ...;
   should be changed to
   full_path = current_dir + default + File.separatorChar + ...;

 2. Uploading swf files to the whiteboard. I'm not sure if the
 suggested fix works, theoretically it should as at least the slashes
 and backslashes will not be duplicated.

   DonwloadHandler.class (line 159)
   working_dir = working_dir + roomName + File.separatorChar +
 parentPath + File.separatorChar;
   should be changed to
   working_dir = working_dir + roomName + parentPath;

 Regards,
 Krzysztof

 --
 You received this message because you are subscribed to the Google Groups
 OpenMeetings User group.
 To post to this group, send email to openmeetings-user@googlegroups.com.
 To unsubscribe from this group, send email to
 openmeetings-user+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/openmeetings-user?hl=en.



-- 
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To post to this group, send email to openmeetings-user@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



Re: [openmeetings-user] debian or ubuntu?

2011-11-20 Thread seba.wag...@gmail.com
99,9 % of all times its a clent side issue.
Maybe the client down or uploads sth at that time or the hardware on the
client is busy because he has 50 browser tabs open.
Actually I can not remember any use-case where a close-up view did reveal
that the server is the issue.
What makes you think that debian or ubuntu are more 'media-optimized'?

Sebastian
Am 20.11.2011 17:34 schrieb Mike cais...@gmail.com:

 I've been using rhel/centos exclusively for years and recently found that
 running rtmp/xmpp apps on debian seems to run much better, faster than on
 centos.

 However, now I am trying to find information to decipher if flash apps
 such as openfire, red5, etc, would run best on debian or ubuntu. Both of
 these systems seem to be more optimized for media than centos.

 Has anyone ever done some tests to see if there is any significant
 difference.
 I've been testing rtmp apps for some time now and it seems there are
 always problems and always inconsistent. One day it'll work great, a short
 while later, we've got audio delays yet the clients are in the same
 location, using the same hardware and it's all on the same lan.

 The servers I build have nothing what so ever running on them other than
 essential to the xmpp/rtmp applications. The servers have lots of memory
 and processor resources and are dedicated, not VPS.

 What could cause such variations?

 Thanks.

 Mike

  --
 You received this message because you are subscribed to the Google Groups
 OpenMeetings User group.
 To post to this group, send email to openmeetings-user@googlegroups.com.
 To unsubscribe from this group, send email to
 openmeetings-user+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/openmeetings-user?hl=en.


-- 
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To post to this group, send email to openmeetings-user@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



[openmeetings-user] Re: Problems with uploading files

2011-11-20 Thread Krzysztof
Hi Sebastian,

I won't argue about uploading swf files, as I wrote, I'm not sure
about the suggested fix.
But I'm pretty sure about  webapps/openmeetings/default directory
bug.
If you have

String current_dir = getServletContext().getRealPath(/);
working_dir = current_dir + upload + File.separatorChar;

then there should be

full_path = current_dir + default + File.separatorChar + ...;

Krzysztof

-- 
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To post to this group, send email to openmeetings-user@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



Re: [openmeetings-user] Re: Problems with uploading files

2011-11-20 Thread seba.wag...@gmail.com
Okay we'll double check on that. But I doubt that this double slashes have
the described effect of your profile picture issue.
Am 20.11.2011 20:46 schrieb Krzysztof stock1...@gmail.com:

 Hi Sebastian,

 I won't argue about uploading swf files, as I wrote, I'm not sure
 about the suggested fix.
 But I'm pretty sure about  webapps/openmeetings/default directory
 bug.
 If you have

 String current_dir = getServletContext().getRealPath(/);
 working_dir = current_dir + upload + File.separatorChar;

 then there should be

 full_path = current_dir + default + File.separatorChar + ...;

 Krzysztof

 --
 You received this message because you are subscribed to the Google Groups
 OpenMeetings User group.
 To post to this group, send email to openmeetings-user@googlegroups.com.
 To unsubscribe from this group, send email to
 openmeetings-user+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/openmeetings-user?hl=en.



-- 
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To post to this group, send email to openmeetings-user@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



Re: [openmeetings-user] debian or ubuntu?

2011-11-20 Thread Mike
99,9 % of all times its a clent side issue.

Yes, and that is something we have tested as well, making sure that the
client isn't downloading updates or a ton of tabs open etc etc. This is
what I am trying to determine, whether these things are client or server
side. The server isn't doing anything different so it kind of leaves the
clients right.

What makes you think that debian or ubuntu are more 'media-optimized'?

 I have no thoughts on this which is why I've asked. There are many
discussions but none of them really give anything other than personal
opinion.
It seems that ubuntu is more geared toward media applications, remote
desktops work well with ubuntu, things of that nature. Debian seems to be
less bloated, more 'industrial' for lack of better term.

While debian may not be media optimized per say, it seems that it is well
suited for specific task purposes where one builds a server which isn't
going to have a ton of things going on but more specific, in my case for
example, running only red5 and xmpp.

-- 
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To post to this group, send email to openmeetings-user@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



Re: [openmeetings-user] Re: Problems with uploading files

2011-11-20 Thread seba.wag...@gmail.com
Hi Krzysztof,

I have been testing upload with latest code frmo trunk on windows7 again.

Upload of PDF and import + drag to whiteboard working fine
Upload of PNG and import + drag to whiteboard working fine
Upload of PNG and import to profile pic working fine
Upload of JPEG and import + drag to whiteboard working fine
Upload of JPEG and import to profile pic working fine

The code snippet that you've posted in the Download-Handler is actually
refering to the part of the code that handles if the import failed, we have
implemented a default document/image if the upload/improt fails like that:
If the system can't find the file, it will try to use a single static
default document.

I have been verifying if this works by manipulating the successfully
uploaded file on the hdd directly and it also does work, it shows the
deleted document on the whiteboard when loading the missing file.
BUT you are right, the slashes in the loading this fail-document is
duplicate, the path on my the log is:
C:\Users\swagner\workspaces\indigo_red6\ROOT_video\dist\red5\webapps\openmeetings\\default\deleted.swf
... But the deleted.swf will still load. So we will fix those duplicated
slashes, but they have no effect, if the file exists, Java will find it
also with double //

You should check pdf2swf, ghostscript and imagemagick to be correctly
installed.


Sebastian

Am 20.11.2011 21:23 schrieb seba.wag...@gmail.com seba.wag...@gmail.com:

 Okay we'll double check on that. But I doubt that this double slashes have
 the described effect of your profile picture issue.
 Am 20.11.2011 20:46 schrieb Krzysztof stock1...@gmail.com:

 Hi Sebastian,

 I won't argue about uploading swf files, as I wrote, I'm not sure
 about the suggested fix.
 But I'm pretty sure about  webapps/openmeetings/default directory
 bug.
 If you have

 String current_dir = getServletContext().getRealPath(/);
 working_dir = current_dir + upload + File.separatorChar;

 then there should be

 full_path = current_dir + default + File.separatorChar + ...;

 Krzysztof

 --
 You received this message because you are subscribed to the Google Groups
 OpenMeetings User group.
 To post to this group, send email to openmeetings-user@googlegroups.com.
 To unsubscribe from this group, send email to
 openmeetings-user+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/openmeetings-user?hl=en.



-- 
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To post to this group, send email to openmeetings-user@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



[openmeetings-user] Voice Activity Detection?

2011-11-20 Thread 栢分正人
Hi guys, 

I have installed Openmeetings 1.7 for testing. 
It works well but I have a issue in voice.

A sound often goes out as the VAD function is working.  

Can I turn off a VAD function compulsorily? 

-- 
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/openmeetings-user/-/qd9JHvADq9sJ.
To post to this group, send email to openmeetings-user@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



[openmeetings-user] openmeetings ldap connection problem with ad

2011-11-20 Thread Lee Daniel
Hi,
   I have install openmeetings 1.8.8 in ubuntu.Everything is fine but
the ad authentication.
Some ad users can login the system successfully,but the others are
not.Here is the log

[INFO] [NioProcessor-1]
org.red5.server.net.rtmp.codec.RTMPProtocolDecoder - Action
xmlcrm.loginUser
 WARN 11-21 15:13:04.353 MainService.java 16728003 320
org.openmeetings.app.remote.MainService [NioProcessor-1] - loginUser:
c37e54fc655da3db4cee22b1ef708bdf chenshiping
DEBUG 11-21 15:13:04.354 MainService.java 16728004 331
org.openmeetings.app.remote.MainService [NioProcessor-1] - Ldap Login
DEBUG 11-21 15:13:04.360 LdapLoginManagement.java 16728010 217
org.openmeetings.app.ldap.LdapLoginManagement [NioProcessor-1] -
LdapLoginmanagement.doLdapLogin
DEBUG 11-21 15:13:04.361 LdapLoginManagement.java 16728011 173
org.openmeetings.app.ldap.LdapLoginManagement [NioProcessor-1] -
LdapLoginmanagement.getLdapConfigData
DEBUG 11-21 15:13:04.362 LdapLoginManagement.java 16728012 192
org.openmeetings.app.ldap.LdapLoginManagement [NioProcessor-1] -
LdapLoginmanagement.readConfig : /opt/red5/webapps/openmeetings/conf/
om_ldap.cfg
DEBUG 11-21 15:13:04.363 LdapLoginManagement.java 16728013 113
org.openmeetings.app.ldap.LdapLoginManagement [NioProcessor-1] -
isValidAuthType
DEBUG 11-21 15:13:04.364 LdapLoginManagement.java 16728014 348
org.openmeetings.app.ldap.LdapLoginManagement [NioProcessor-1] -
Searching userdata with LDAP Search Filter :
(userPrincipalName=chenshiping@paicdom.local)
DEBUG 11-21 15:13:04.365 LdapAuthBase.java 16728015 66
org.openmeetings.app.ldap.LdapAuthBase [NioProcessor-1] - LdapAuthBase
DEBUG 11-21 15:13:04.365 LdapLoginManagement.java 16728015 359
org.openmeetings.app.ldap.LdapLoginManagement [NioProcessor-1] -
authenticating admin...
DEBUG 11-21 15:13:04.366 LdapAuthBase.java 16728016 83
org.openmeetings.app.ldap.LdapAuthBase [NioProcessor-1] -
authenticateUser
DEBUG 11-21 15:13:04.367 LdapAuthBase.java 16728017 99
org.openmeetings.app.ldap.LdapAuthBase [NioProcessor-1] -

Authentification to LDAP - Server start
DEBUG 11-21 15:13:04.367 LdapAuthBase.java 16728017 133
org.openmeetings.app.ldap.LdapAuthBase [NioProcessor-1] -
loginToLdapServer
DEBUG 11-21 15:13:04.630 LdapLoginManagement.java 16728280 362
org.openmeetings.app.ldap.LdapLoginManagement [NioProcessor-1] -
Checking server type...
DEBUG 11-21 15:13:04.631 LdapAuthBase.java 16728281 83
org.openmeetings.app.ldap.LdapAuthBase [NioProcessor-1] -
authenticateUser
DEBUG 11-21 15:13:04.631 LdapAuthBase.java 16728281 99
org.openmeetings.app.ldap.LdapAuthBase [NioProcessor-1] -

Authentification to LDAP - Server start
DEBUG 11-21 15:13:04.632 LdapAuthBase.java 16728282 133
org.openmeetings.app.ldap.LdapAuthBase [NioProcessor-1] -
loginToLdapServer
DEBUG 11-21 15:13:04.881 Usermanagement.java 16728531 1564
org.openmeetings.app.data.user.Usermanagement [NioProcessor-1] -
Usermanagement.getUserByLogin : chenshiping@paicdom.local
DEBUG 11-21 15:13:04.889 LdapLoginManagement.java 16728539 408
org.openmeetings.app.ldap.LdapLoginManagement [NioProcessor-1] - user
doesnt exist local - create new
DEBUG 11-21 15:13:04.890 LdapAuthBase.java 16728540 156
org.openmeetings.app.ldap.LdapAuthBase [NioProcessor-1] - getData
ERROR 11-21 15:13:19.963 LdapAuthBase.java 16743613 212
org.openmeetings.app.ldap.LdapAuthBase [NioProcessor-1] - Error
occured on LDAP Search : null
ERROR 11-21 15:13:19.970 LdapAuthBase.java 16743620 213
org.openmeetings.app.ldap.LdapAuthBase [NioProcessor-1] - Error
occured on LDAP Search :
javax.naming.PartialResultException: null
at
com.sun.jndi.ldap.LdapNamingEnumeration.hasMoreImpl(LdapNamingEnumeration.java:
224) ~[na:1.6.0_26]
at
com.sun.jndi.ldap.LdapNamingEnumeration.hasMore(LdapNamingEnumeration.java:
171) ~[na:1.6.0_26]
at
org.openmeetings.app.ldap.LdapAuthBase.getData(LdapAuthBase.java:174)
~[openmeetings.jar:na]
at
org.openmeetings.app.ldap.LdapLoginManagement.doLdapLogin(LdapLoginManagement.java:
435) [openmeetings.jar:na]
at
org.openmeetings.app.remote.MainService.loginUser(MainService.java:
346) [openmeetings.jar:na]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
~[na:1.6.0_26]
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:
39) ~[na:1.6.0_26]
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:
25) ~[na:1.6.0_26]
at java.lang.reflect.Method.invoke(Method.java:597) ~[na:
1.6.0_26]
at
org.red5.server.service.ServiceInvoker.invoke(ServiceInvoker.java:200)
[red5.jar:na]
at
org.red5.server.service.ServiceInvoker.invoke(ServiceInvoker.java:118)
[red5.jar:na]
at
org.red5.server.net.rtmp.RTMPHandler.invokeCall(RTMPHandler.java:163)
[red5.jar:na]
at
org.red5.server.net.rtmp.RTMPHandler.onInvoke(RTMPHandler.java:410)
[red5.jar:na]
at
org.red5.server.net.rtmp.BaseRTMPHandler.messageReceived(BaseRTMPHandler.java:
134) [red5.jar:na]
at