Please try run red5 with this script:
---from here---
#
#!/bin/sh -e
#
# Startup script for Red5
export RED5_HOME=/opt/red5304
start_red5="$RED5_HOME/red5.sh start"
stop_red5="$RED5_HOME/red5-shutdown.sh stop"
start() {
echo -n "Starting Red5: "
${start_red5} &
echo "done."
}
stop() {
echo -n "Shutting down Red5: "
${stop_red5}
echo "done."
}
case "$1" in
start)
start
;;
stop)
stop
;;
restart)
stop
sleep 10
start
;;
*)
echo "Usage: $0 {start|stop|restart}"
esac
exit 0
---to here---
Modify the line:
export RED5_HOME=/opt/red5304
...to your path instalation.
Regards
---------------------------
El jue, 26-03-2015 a las 11:47 +0100, Peter Dähn escribió:
> Hi Susheel,
>
> thanks for your reply.
>
> Does it need to be SELinux or CentOS? Probably the easiest way to go on
> is to change the distribution....
>
> Greetings Peter
>
> Am 25.03.2015 um 20:30 schrieb Susheel Jalali:
> > Peter,
> >
> > Thank you for following up.
> >
> > We tried your solution in two scenarios:
> >
> > 1. While SELinux was enabled (as it is by default in Centos-7), we
> > ran the command you suggested:
> >
> > chcon -R -t httpd_sys_content_t <prefix>/red5
> >
> >
> > 2. Then disabled SELinux by setting the line in /etc/selinux/config
> >
> > Changed from: SELINUX=enforcing
> >
> > TO: SELINUX=disabled
> >
> > and reboot the VM.
> >
> >
> > However in both cases we had the same result as before, and file
> > explorer still does not show public and home drives.
> >
> > Regards,
> >
> > Susheel Jalali
> >
> > Customer Operations Leader,
> >
> > Coscend Communications Solutions
> >
> > Elite Premio Complex Suite 200 Survey No 7 & 8 Balewadi Pune 411045
> > Maharashtra India
> >
> > Cell +91-9011000233
> >
> > [email protected]_
> >
> > Web site:www.CoscendCommunications.com
> > <http://www.coscendcommunications.com/>
> >
> > ------------------------------------------------------------------
> >
> > *Coscend’s**Software Service Factory*
> >
> > "*Coscend Communications* is ... *pioneering a new approach*to ...
> > software applications development, and systems integration."
> >
> > *Light Reading Network, *December, 2007
> >
> > "*Coscend*is at the*vanguard of a new evolution*in telco OSS/BSS
> > systems integration."
> >
> > *Caroline Chappell*
> > A leading authority in the communications services software industry
> >
> > "There are *innovative*…*tools*from ... *Coscend *bubbling up, which
> > will help accelerate the data consolidation process and reduce its cost."
> >
> > *Dennis Mendyk, */Editor,/Building a *Telco Service Factory*
> >
> > ------------------------------------------------------------------
> >
> > CONFIDENTIALITY NOTICE: See 'Confidentiality Notice Regarding E-mail
> > Messages from Coscend Communications Solutions' posted at:
> > http://www.CoscendCommunications.com/Terms_and_Conditions.html
> > <http://www.coscendcommunications.com/Terms_and_Conditions.html>
> >
> > On 03/25/15 15:22, Peter Dähn wrote:
> >> Hi there,
> >>
> >> what about "chcon -R -t httpd_sys_content_t /usr/lib/red5 " I
> >> mentioned in my email from 17th of March.
> >>
> >> Greetings Peter
> >>
> >> Am 25.03.2015 um 04:55 schrieb Maxim Solodovnik:
> >>> never saw such error
> >>> it is also not reproducible on demo:
> >>> http://om.alteametasoft.com:5080/openmeetings/services/FileService?wsdl
> >>> have you changed anything?
> >>>
> >>> On Tue, Mar 24, 2015 at 12:47 PM, Susheel Jalali <
> >>> [email protected]> wrote:
> >>>
> >>>> Dear Maxim and Fellow OpenMeetings Developers:
> >>>>
> >>>> As you requested, we looked for this URL: http://yourserver:5080/
> >>>> CoscendCC/services/FileService?wsdl
> >>>>
> >>>> The browser gave: "the server could not find the file". We also
> >>>> collected
> >>>> red5.log as below. We would appreciate it if you could advise why
> >>>> this
> >>>> OpenMeetings instance (CoscendCC) is not finding
> >>>> “/axis2-web/listSingleService.jsp”.
> >>>>
> >>>>
> >>>> Browser output:
> >>>>
> >>>> ---------------------------
> >>>>
> >>>> URL: http://ourserver:5080/CoscendCC/services/FileService?wsdl
> >>>>
> >>>> Output:
> >>>> HTTP Status 500 - File "/axis2-web/listSingleService.jsp"
> >>>> not
> >>>> found
> >>>>
> >>>> type Exception report
> >>>>
> >>>> message File "/axis2-web/listSingleService.jsp" not found
> >>>>
> >>>> description The server encountered an internal error that prevented it
> >>>> from fulfilling this request.
> >>>>
> >>>> exception
> >>>>
> >>>> javax.servlet.ServletException: File
> >>>> "/axis2-web/listSingleService.jsp"
> >>>> not found
> >>>> org.apache.jasper.servlet.JspServlet.handleMissingResource(
> >>>> JspServlet.java:417)
> >>>> org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:384)
> >>>>
> >>>> org.apache.jasper.servlet.JspServlet.service(JspServlet.java:339)
> >>>> javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
> >>>> org.apache.axis2.transport.http.AbstractAgent.renderView(
> >>>> AbstractAgent.java:119)
> >>>> org.apache.axis2.transport.http.ListingAgent.processListService(
> >>>> ListingAgent.java:204)
> >>>> org.apache.axis2.transport.http.AxisServlet.doGet(AxisServlet.java:277)
> >>>>
> >>>> javax.servlet.http.HttpServlet.service(HttpServlet.java:620)
> >>>> javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
> >>>> org.apache.wicket.protocol.http.WicketFilter.processRequest(WicketFilter.
> >>>>
> >>>>
> >>>> java:172)
> >>>> org.apache.wicket.protocol.http.WicketFilter.doFilter(
> >>>> WicketFilter.java:282)
> >>>> org.red5.logging.LoggerContextFilter.doFilter(LoggerContextFilter.java:77)
> >>>>
> >>>>
> >>>> note The full stack trace of the root cause is available in the Apache
> >>>> Tomcat/7.0.57 logs.
> >>>>
> >>>> Apache Tomcat/7.0.57
> >>>>
> >>>> ---------------------------
> >>>>
> >>>> Red5.log:
> >>>>
> >>>> URL: http://ourserver:5080/CoscendCC/services/FileService?wsdl
> >>>>
> >>>> Output:
> >>>> 2015-03-24 00:07:15,090 [Launcher:/CoscendCC] INFO
> >>>> o.s.c.s.DefaultLifecycleProcessor
> >>>> - Starting beans in phase 2147483647
> >>>> 2015-03-24 00:07:43,312 [http-nio-10.10.10.51-5080-exec-1] ERROR
> >>>> o.a.c.c.C.[.[.1.1.5.[.[jsp] - Servlet.service() for servlet jsp threw
> >>>> exception
> >>>> javax.servlet.ServletException: File
> >>>> "/axis2-web/listSingleService.jsp"
> >>>> not found
> >>>> at
> >>>> org.apache.jasper.servlet.JspServlet.handleMissingResource(JspServlet.java:417)
> >>>> ~[tomcat-embed-jasper.jar:7.0.57]
> >>>> at
> >>>> org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:384)
> >>>>
> >>>> ~[tomcat-embed-jasper.jar:7.0.57]
> >>>> at
> >>>> org.apache.jasper.servlet.JspServlet.service(JspServlet.java:339)
> >>>> ~[tomcat-embed-jasper.jar:7.0.57]
> >>>> at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
> >>>> [tomcat-embed-core.jar:7.0.57]
> >>>> at
> >>>> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(
> >>>> ApplicationFilterChain.java:303) [tomcat-embed-core.jar:7.0.57]
> >>>> at org.apache.catalina.core.ApplicationFilterChain.doFilter(
> >>>> ApplicationFilterChain.java:208) [tomcat-embed-core.jar:7.0.57]
> >>>> at org.apache.catalina.core.ApplicationDispatcher.invoke(
> >>>> ApplicationDispatcher.java:748) [tomcat-embed-core.jar:7.0.57]
> >>>> at org.apache.catalina.core.ApplicationDispatcher.doInclude(
> >>>> ApplicationDispatcher.java:604) [tomcat-embed-core.jar:7.0.57]
> >>>> at org.apache.catalina.core.ApplicationDispatcher.include(
> >>>> ApplicationDispatcher.java:543) [tomcat-embed-core.jar:7.0.57]
> >>>> at
> >>>> org.apache.axis2.transport.http.AbstractAgent.renderView(AbstractAgent.java:119)
> >>>> [axis2-transport-http-bundle-1.7.0-SNAPSHOT.jar:na]
> >>>> at
> >>>> org.apache.axis2.transport.http.ListingAgent.processListService(ListingAgent.java:204)
> >>>> [axis2-transport-http-bundle-1.7.0-SNAPSHOT.jar:na]
> >>>> at
> >>>> org.apache.axis2.transport.http.AxisServlet.doGet(AxisServlet.java:277)
> >>>>
> >>>> [axis2-transport-http-bundle-1.7.0-SNAPSHOT.jar:na]
> >>>> at javax.servlet.http.HttpServlet.service(HttpServlet.java:620)
> >>>> [tomcat-embed-core.jar:7.0.57]
> >>>> at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
> >>>> [tomcat-embed-core.jar:7.0.57]
> >>>> at
> >>>> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(
> >>>> ApplicationFilterChain.java:303) [tomcat-embed-core.jar:7.0.57]
> >>>> at org.apache.catalina.core.ApplicationFilterChain.doFilter(
> >>>> ApplicationFilterChain.java:208) [tomcat-embed-core.jar:7.0.57]
> >>>> at org.apache.wicket.protocol.http.WicketFilter.
> >>>> processRequest(WicketFilter.java:172)
> >>>> [wicket-core-jar-6.19.0.jar:6.19.0]
> >>>> at
> >>>> org.apache.wicket.protocol.http.WicketFilter.doFilter(WicketFilter.java:282)
> >>>> [wicket-core-jar-6.19.0.jar:6.19.0]
> >>>> at
> >>>> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(
> >>>> ApplicationFilterChain.java:241) [tomcat-embed-core.jar:7.0.57]
> >>>> at org.apache.catalina.core.ApplicationFilterChain.doFilter(
> >>>> ApplicationFilterChain.java:208) [tomcat-embed-core.jar:7.0.57]
> >>>> at
> >>>> org.red5.logging.LoggerContextFilter.doFilter(LoggerContextFilter.java:77)
> >>>> [red5-server.jar:1.0.5-RELEASE]
> >>>> at
> >>>> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(
> >>>> ApplicationFilterChain.java:241) [tomcat-embed-core.jar:7.0.57]
> >>>> at org.apache.catalina.core.ApplicationFilterChain.doFilter(
> >>>> ApplicationFilterChain.java:208) [tomcat-embed-core.jar:7.0.57]
> >>>> at
> >>>> org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:220)
> >>>> [tomcat-embed-core.jar:7.0.57]
> >>>> at
> >>>> org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:122)
> >>>> [tomcat-embed-core.jar:7.0.57]
> >>>> at
> >>>> org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:503)
> >>>> [tomcat-embed-core.jar:7.0.57]
> >>>> at
> >>>> org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:170)
> >>>> [tomcat-embed-core.jar:7.0.57]
> >>>> at
> >>>> org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:103)
> >>>> [tomcat-embed-core.jar:7.0.57]
> >>>> at
> >>>> org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:950)
> >>>> [tomcat-embed-core.jar:7.0.57]
> >>>> at
> >>>> org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:116)
> >>>> [tomcat-embed-core.jar:7.0.57]
> >>>> at
> >>>> org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:421)
> >>>> [tomcat-embed-core.jar:7.0.57]
> >>>> at org.apache.coyote.http11.AbstractHttp11Processor.process(
> >>>> AbstractHttp11Processor.java:1070) [tomcat-embed-core.jar:7.0.57]
> >>>> at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.
> >>>> process(AbstractProtocol.java:611) [tomcat-embed-core.jar:7.0.57]
> >>>> at
> >>>> org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1736)
> >>>> [tomcat-embed-core.jar:7.0.57]
> >>>> at
> >>>> org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.run(NioEndpoint.java:1695)
> >>>> [tomcat-embed-core.jar:7.0.57]
> >>>> at
> >>>> java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
> >>>> [na:1.7.0_76]
> >>>> at
> >>>> java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
> >>>> [na:1.7.0_76]
> >>>> at
> >>>> org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
> >>>> [tomcat-embed-core.jar:7.0.57]
> >>>> at java.lang.Thread.run(Thread.java:745) [na:1.7.0_76]
> >>>>
> >>>> ---------------------------
> >>>>
> >>>>
> >>>> Regards,
> >>>>
> >>>> Susheel Jalali
> >>>>
> >>>> Customer Operations Leader,
> >>>>
> >>>> Coscend Communications Solutions
> >>>>
> >>>> [email protected]_
> >>>>
> >>>> Web site:www.CoscendCommunications.com <http://www.
> >>>> coscendcommunications.com/>
> >>>>
> >>>> ------------------------------------------------------------------
> >>>>
> >>>> *Coscend’s**Software Service Factory*
> >>>>
> >>>> "*Coscend Communications* is ... *pioneering a new approach*to ...
> >>>> software applications development, and systems integration."
> >>>>
> >>>> *Light Reading Network, *December, 2007
> >>>>
> >>>> "*Coscend*is at the*vanguard of a new evolution*in telco OSS/BSS
> >>>> systems
> >>>> integration."
> >>>>
> >>>> *Caroline Chappell*
> >>>> A leading authority in the communications services software industry
> >>>>
> >>>> "There are *innovative*…*tools*from ... *Coscend *bubbling up,
> >>>> which will
> >>>> help accelerate the data consolidation process and reduce its cost."
> >>>>
> >>>> *Dennis Mendyk, */Editor,/Building a *Telco Service Factory*
> >>>>
> >>>> ------------------------------------------------------------------
> >>>>
> >>>> CONFIDENTIALITY NOTICE: See 'Confidentiality Notice Regarding E-mail
> >>>> Messages from Coscend Communications Solutions' posted at: http://www.
> >>>> CoscendCommunications.com/Terms_and_Conditions.html <http://www.
> >>>> coscendcommunications.com/Terms_and_Conditions.html>
> >>>>
> >>>>
> >>>> -------- Forwarded Message --------
> >>>> Subject: Re: File Upload to File Explorer Error:
> >>>> OpenMeetings 3.0.4
> >>>> in CentOS 7
> >>>> Date: Mon, 23 Mar 2015 15:01:41 +0600
> >>>> From: Maxim Solodovnik <[email protected]>
> >>>>
> >>>>
> >>>>
> >>>>
> >>>>
> >>>>
> >>>> there are no errors in the compilation logs
> >>>>
> >>>> are you able to access: http://yourserver:5080/CoscendCC/services/
> >>>> FileService?wsdl ??
> >>>>
> >>>> On Thu, Mar 19, 2015 at 3:01 PM, Susheel Jalali <Susheel.Jalali@
> >>>> coscendcommunications.com
> >>>> <mailto:[email protected]>>
> >>>> wrote:
> >>>>
> >>>> Dear Maxim and Fellow OpenMeetings Developers:
> >>>>
> >>>> We found some additional information that might be useful in
> >>>> solving
> >>>> the:
> >>>> “AxisEngine:219 … The service cannot be found for the
> >>>> endpoint reference (EPR)”
> >>>>
> >>>> We compiled and installed OpenMeetings 3.0.4 (same source code) on
> >>>> two different servers. When we enter the conference room, then:
> >>>>
> >>>> ·The server with CentOS 6.5 and JDK 7u67 shows the File
> >>>> Explorer and
> >>>> its two drives (Home drive and Public drive).
> >>>>
> >>>> ·The second server with CentOS 7 and JDK 8u31 DOES NOT show the
> >>>> two
> >>>> drives at all (home drive and public drive).
> >>>>
> >>>> ATTACHED are the screenshots of the two instances. In both the
> >>>> cases, we are able to load files directly to whiteboard.
> >>>> Everything
> >>>> else works fine on both the servers.
> >>>>
> >>>> We are running only one server at any time to test.
> >>>>
> >>>> What could be the cause of the discrepancy? Your pointers will
> >>>> help
> >>>> us identify and fix the issue.
> >>>>
> >>>> Beta0-3.0.4
> >>>>
> >>>> Centos 6.5
> >>>> JDK-7u67
> >>>> SWFTools-0.9.2
> >>>> ImageMagick-6.5.4
> >>>>
> >>>> Prod0-3.0.4
> >>>>
> >>>> CentOS 7
> >>>>
> >>>> JDK 8u31
> >>>> SWFTools-0.9.2
> >>>> ImageMagick-6.7.8.9
> >>>>
> >>>>
> >>>>
> >>>> ---
> >>>> Regards,
> >>>>
> >>>> SusheelJalali
> >>>>
> >>>> Customer Operations Leader,
> >>>>
> >>>> Coscend Communications Solutions
> >>>>
> >>>> [email protected]
> >>>> <mailto:[email protected]>_
> >>>>
> >>>> Web site:www.CoscendCommunications.com
> >>>> <http://www.coscendcommunications.com/>
> >>>>
> >>>> ------------------------------------------------------------------
> >>>>
> >>>> *Coscend’s**Software Service Factory*
> >>>>
> >>>> "*Coscend Communications*is ... *pioneering a new approach*to ...
> >>>> software applications development, and systems integration."
> >>>>
> >>>> *Light Reading Network, *December, 2007
> >>>>
> >>>> "*Coscend*is at the*vanguard of a new evolution*in telco OSS/BSS
> >>>> systems integration."
> >>>>
> >>>> *Caroline Chappell*
> >>>> A leading authority in the communications services software
> >>>> industry
> >>>>
> >>>> "There are *innovative*…*tools*from ...*Coscend *bubbling up,
> >>>> which
> >>>> will help accelerate the data consolidation process and reduce its
> >>>> cost."
> >>>>
> >>>> *Dennis Mendyk, */Editor,/Building a *Telco Service Factory*
> >>>>
> >>>> ------------------------------------------------------------------
> >>>>
> >>>> CONFIDENTIALITY NOTICE: See 'Confidentiality Notice Regarding
> >>>> E-mail
> >>>> Messages from Coscend Communications Solutions' posted
> >>>> at:http://www.CoscendCommunications.com/Terms_and_Conditions.html
> >>>> <http://www.coscendcommunications.com/Terms_and_Conditions.html>
> >>>>
> >>>> -----
> >>>>
> >>>> On Wed, 18 Mar 2015 10:09:27 +0600, Maxim Solodovnik
> >>>> <[email protected]> <mailto:[email protected]> wrote:
> >>>>
> >>>> your issue is here:
> >>>>
> >>>> ERROR 03-17 12:27:04.165 o.a.a.e.AxisEngine:219
> >>>>
> >>>> [http-nio-10.10.10.51-5080-exec-4] - The service cannot be
> >>>> found for
> >>>> the
> >>>>
> >>>> endpoint reference (EPR)
> >>>>
> >>>> /CoscendCC/services/FileService/getFileExplorerByRoomSelfInternal?SID=
> >>>> 1f0194f84bc9a5f1a215f3f40bfefc39&roomId=4&%5F%5Flzbc%5F%5F=1426613224478
> >>>>
> >>>>
> >>>> org.apache.axis2.AxisFault: The service cannot be found for the
> >>>> endpoint
> >>>>
> >>>> reference (EPR)
> >>>>
> >>>> /CoscendCC/services/FileService/getFileExplorerByRoomSelfInternal?SID=
> >>>> 1f0194f84bc9a5f1a215f3f40bfefc39&roomId=4&%5F%5Flzbc%5F%5F=1426613224478
> >>>>
> >>>>
> >>>> not sure why
> >>>>
> >>>> never saw such errors
> >>>>
> >>>> On Wed, Mar 18, 2015 at 12:43 AM, Susheel Jalali <
> >>>>
> >>>> [email protected]
> >>>> <mailto:[email protected]>> wrote:
> >>>>
> >>>> >Dear Maxim and Fellow OpenMeetings Developers:
> >>>>
> >>>> >
> >>>>
> >>>> > PS: Some content did not go out in the earlier email.
> >>>>
> >>>> >
> >>>>
> >>>> > As you requested, we did the test again and collected the
> >>>> logs.Here are
> >>>>
> >>>> > the test results and the log files resulting from those
> >>>> tests.Would you
> >>>>
> >>>> > be kind enough to share what we are missing?
> >>>>
> >>>> >
> >>>>
> >>>> >
> >>>>
> >>>> > The sequence of actions/ clicks is:
> >>>>
> >>>> >
> >>>>
> >>>> > Success:PNG File upload to whiteboard by clicking on
> >>>> ‘green+’ icon
> >>>>
> >>>> > (directly upload to whiteboard option CHECKED)
> >>>>
> >>>> >
> >>>>
> >>>> > Failed:PNG File upload to File Explorer (directly upload to
> >>>> whiteboard
> >>>>
> >>>> > option UNCHECKED)
> >>>>
> >>>> >
> >>>>
> >>>> > Failed:Add Folder by clicking on “file folder’ icon
> >>>>
> >>>> >
> >>>>
> >>>> > Failed: Refresh File Explorer by clicking on double-headed
> >>>> green
> >>>> arrow icon
> >>>>
> >>>> >
> >>>>
> >>>> >
> >>>>
> >>>> >
> >>>>
> >>>> > Relevant portion of logs(Full logs are attached as a Zip file).
> >>>>
> >>>> >
> >>>>
> >>>> > Access log:
> >>>>
> >>>> >
> >>>>
> >>>> > 192.168.100.153 - - [17/Mar/2015:12:24:05 -0500] "GET
> >>>>
> >>>> >
> >>>> /CoscendCC/DownloadHandler?fileName=_profile_d.jpg&
> >>>> parentPath=&room_id=&r=1426613045377&moduleName=chat&remoteUserid=1&sid=
> >>>>
> >>>> 1f0194f84bc9a5f1a215f3f40bfefc39
> >>>>
> >>>> > HTTP/1.1" 200 1682
> >>>>
> >>>> >
> >>>>
> >>>> > 192.168.100.153 - - [17/Mar/2015:12:25:35 -0500] "GET
> >>>>
> >>>> >
> >>>> /CoscendCC/services/FileService/getFileExplorerByRoomSelfInternal?SID=
> >>>> 1f0194f84bc9a5f1a215f3f40bfefc39&roomId=4&%5F%5Flzbc%5F%5F=1426613135831
> >>>>
> >>>>
> >>>> > HTTP/1.1" 500 249
> >>>>
> >>>> >
> >>>>
> >>>> > 192.168.100.153 - - [17/Mar/2015:12:25:48 -0500] "POST
> >>>>
> >>>> >
> >>>> /CoscendCC/file.upload?moduleName=videoconf1&publicSID=
> >>>> ca90b3c52bae7be3e199af02be3cf38d&filename=SaaS%20Cloud%
> >>>> 20Sales%2EPNG&parentFolderId=0&room_id=4&secondid=0&isOwner=false&sid=
> >>>> 1f0194f84bc9a5f1a215f3f40bfefc39
> >>>>
> >>>> > HTTP/1.1" 200 -
> >>>>
> >>>> >
> >>>>
> >>>> > 192.168.100.153 - - [17/Mar/2015:12:25:48 -0500] "GET
> >>>>
> >>>> >
> >>>> /CoscendCC/services/FileService/getFileExplorerByRoomSelfInternal?SID=
> >>>> 1f0194f84bc9a5f1a215f3f40bfefc39&roomId=4&%5F%5Flzbc%5F%5F=1426613148630
> >>>>
> >>>>
> >>>> > HTTP/1.1" 500 249
> >>>>
> >>>> >
> >>>>
> >>>> > 192.168.100.153 - - [17/Mar/2015:12:25:50 -0500] "GET
> >>>>
> >>>> >
> >>>> /CoscendCC/DownloadHandler?fileName=3cc932315d106408de8f2ec8ca9034
> >>>> 6c%2Ejpg&moduleName=videoconf1&parentPath=%2F&room_id=files&sid=
> >>>> 1f0194f84bc9a5f1a215f3f40bfefc39
> >>>>
> >>>> > HTTP/1.1" 200 54889
> >>>>
> >>>> >
> >>>>
> >>>> >
> >>>>
> >>>> >
> >>>>
> >>>> > OpenMeetings log:
> >>>>
> >>>> >
> >>>>
> >>>> > DEBUG 03-17 12:27:03.690 o.a.o.s.o.AbstractUploadController:58
> >>>>
> >>>> > [http-nio-10.10.10.51-5080-exec-5] - Starting validate
> >>>>
> >>>> >
> >>>>
> >>>> > DEBUG 03-17 12:27:03.691 o.a.o.s.o.AbstractUploadController:65
> >>>>
> >>>> > [http-nio-10.10.10.51-5080-exec-5] - sid:
> >>>> 1f0194f84bc9a5f1a215f3f40bfefc39
> >>>>
> >>>> >
> >>>>
> >>>> > DEBUG 03-17 12:27:03.778 o.a.o.s.o.AbstractUploadController:69
> >>>>
> >>>> > [http-nio-10.10.10.51-5080-exec-5] - userId = 1
> >>>>
> >>>> >
> >>>>
> >>>> > DEBUG 03-17 12:27:03.779 o.a.o.s.o.AbstractUploadController:81
> >>>>
> >>>> > [http-nio-10.10.10.51-5080-exec-5] - publicSID:
> >>>>
> >>>> > ca90b3c52bae7be3e199af02be3cf38d
> >>>>
> >>>> >
> >>>>
> >>>> > DEBUG 03-17 12:27:03.804 o.a.o.s.o.AbstractUploadController:90
> >>>>
> >>>> > [http-nio-10.10.10.51-5080-exec-5] - uploading 275502 bytes
> >>>>
> >>>> >
> >>>>
> >>>> > DEBUG 03-17 12:27:03.805 o.a.o.s.o.UploadController:110
> >>>>
> >>>> > [http-nio-10.10.10.51-5080-exec-5] - fileSystemName: SaaS
> >>>> Cloud.PNG
> >>>>
> >>>> >
> >>>>
> >>>> > DEBUG 03-17 12:27:03.805 o.a.o.d.f.FileProcessor:76
> >>>>
> >>>> > [http-nio-10.10.10.51-5080-exec-5] - newFileExt: png
> >>>>
> >>>> >
> >>>>
> >>>> > DEBUG 03-17 12:27:03.805 o.a.o.d.f.FileProcessor:89
> >>>>
> >>>> > [http-nio-10.10.10.51-5080-exec-5] - isAsIs: false
> >>>>
> >>>> >
> >>>>
> >>>> > DEBUG 03-17 12:27:03.806 o.a.o.d.f.FileProcessor:101
> >>>>
> >>>> > [http-nio-10.10.10.51-5080-exec-5] - writing file to:
> >>>>
> >>>> >
> >>>> /usr/local/coscendcc/dist/red5/webapps/CoscendCC/uploadtemp/files/
> >>>> e8b2348e0dc3abadfbf163dd278f8941.png
> >>>>
> >>>> >
> >>>>
> >>>> > DEBUG 03-17 12:27:03.809 o.a.o.d.d.f.FileExplorerItemDao:54
> >>>>
> >>>> > [http-nio-10.10.10.51-5080-exec-5] - .add(): adding file SaaS
> >>>> Cloud.PNG
> >>>>
> >>>> > roomID: 4
> >>>>
> >>>> >
> >>>>
> >>>> > DEBUG 03-17 12:27:03.814 o.a.o.d.d.f.FileExplorerItemDao:78
> >>>>
> >>>> > [http-nio-10.10.10.51-5080-exec-5] - .add(): file SaaS
> >>>> Cloud.PNG
> >>>> added as 13
> >>>>
> >>>> >
> >>>>
> >>>> > DEBUG 03-17 12:27:03.847 o.a.o.d.f.FileProcessor:142
> >>>>
> >>>> > [http-nio-10.10.10.51-5080-exec-5] - fileExplorerItemId: 13
> >>>>
> >>>> >
> >>>>
> >>>> > DEBUG 03-17 12:27:03.848 o.a.o.d.f.FileProcessor:146
> >>>>
> >>>> > [http-nio-10.10.10.51-5080-exec-5] - canBeConverted: false
> >>>>
> >>>> >
> >>>>
> >>>> > DEBUG 03-17 12:27:03.848 o.a.o.d.f.FileProcessor:157
> >>>>
> >>>> > [http-nio-10.10.10.51-5080-exec-5] - ##### convert it to JPG:
> >>>>
> >>>> >
> >>>>
> >>>> > DEBUG 03-17 12:27:03.848 o.a.o.c.GenerateImage:64
> >>>>
> >>>> > [http-nio-10.10.10.51-5080-exec-5] - ##### convertImage
> >>>> destinationFile:
> >>>>
> >>>> >
> >>>> /usr/local/coscendcc/dist/red5/webapps/CoscendCC/upload/files/
> >>>> e8b2348e0dc3abadfbf163dd278f8941.jpg
> >>>>
> >>>> >
> >>>>
> >>>> > DEBUG 03-17 12:27:03.855 o.a.o.u.p.ProcessHelper:104
> >>>>
> >>>> > [http-nio-10.10.10.51-5080-exec-5] - START
> >>>> generateBatchThumbByWidth
> >>>>
> >>>> > #################
> >>>>
> >>>> >
> >>>>
> >>>> > DEBUG 03-17 12:27:03.855 o.a.o.u.p.ProcessHelper:105
> >>>>
> >>>> > [http-nio-10.10.10.51-5080-exec-5] -
> >>>> /usr/lib64/ImageMagick-6.7.8/convert
> >>>>
> >>>> >
> >>>> /usr/local/coscendcc/dist/red5/webapps/CoscendCC/uploadtemp/files/
> >>>> e8b2348e0dc3abadfbf163dd278f8941.png
> >>>>
> >>>> >
> >>>> /usr/local/coscendcc/dist/red5/webapps/CoscendCC/upload/files/
> >>>> e8b2348e0dc3abadfbf163dd278f8941.jpg
> >>>>
> >>>> >
> >>>>
> >>>> >
> >>>>
> >>>> > DEBUG 03-17 12:27:03.939 o.a.o.u.p.ProcessHelper:153
> >>>>
> >>>> > [http-nio-10.10.10.51-5080-exec-5] - exitVal: 0
> >>>>
> >>>> >
> >>>>
> >>>> > DEBUG 03-17 12:27:03.940 o.a.o.u.p.ProcessHelper:111
> >>>>
> >>>> > [http-nio-10.10.10.51-5080-exec-5] - END
> >>>> generateBatchThumbByWidth
> >>>>
> >>>> > #################
> >>>>
> >>>> >
> >>>>
> >>>> > DEBUG 03-17 12:27:03.940 o.a.o.c.GenerateThumbs:35
> >>>>
> >>>> > [http-nio-10.10.10.51-5080-exec-5] - generateThumb
> >>>>
> >>>> >
> >>>>
> >>>> > DEBUG 03-17 12:27:03.963 o.a.o.u.p.ProcessHelper:104
> >>>>
> >>>> > [http-nio-10.10.10.51-5080-exec-5] - START
> >>>> generateBatchThumbByWidth
> >>>>
> >>>> > #################
> >>>>
> >>>> >
> >>>>
> >>>> > DEBUG 03-17 12:27:03.964 o.a.o.u.p.ProcessHelper:105
> >>>>
> >>>> > [http-nio-10.10.10.51-5080-exec-5] -
> >>>> /usr/lib64/ImageMagick-6.7.8/convert
> >>>>
> >>>> > -thumbnail 50x50
> >>>>
> >>>> >
> >>>> /usr/local/coscendcc/dist/red5/webapps/CoscendCC/upload/files/
> >>>> e8b2348e0dc3abadfbf163dd278f8941.jpg
> >>>>
> >>>> >
> >>>> /usr/local/coscendcc/dist/red5/webapps/CoscendCC/upload/files/_thumb_
> >>>> e8b2348e0dc3abadfbf163dd278f8941.jpg
> >>>>
> >>>> >
> >>>>
> >>>> >
> >>>>
> >>>> > DEBUG 03-17 12:27:04.047 o.a.o.u.p.ProcessHelper:153
> >>>>
> >>>> > [http-nio-10.10.10.51-5080-exec-5] - exitVal: 0
> >>>>
> >>>> >
> >>>>
> >>>> > DEBUG 03-17 12:27:04.048 o.a.o.u.p.ProcessHelper:111
> >>>>
> >>>> > [http-nio-10.10.10.51-5080-exec-5] - END
> >>>> generateBatchThumbByWidth
> >>>>
> >>>> > #################
> >>>>
> >>>> >
> >>>>
> >>>> > ERROR 03-17 12:27:04.165 o.a.a.e.AxisEngine:219
> >>>>
> >>>> > [http-nio-10.10.10.51-5080-exec-4] - The service cannot be
> >>>> found
> >>>> for the
> >>>>
> >>>> > endpoint reference (EPR)
> >>>>
> >>>> >
> >>>> /CoscendCC/services/FileService/getFileExplorerByRoomSelfInternal?SID=
> >>>> 1f0194f84bc9a5f1a215f3f40bfefc39&roomId=4&%5F%5Flzbc%5F%5F=1426613224478
> >>>>
> >>>>
> >>>> >
> >>>>
> >>>> > org.apache.axis2.AxisFault: The service cannot be found for the
> >>>> endpoint
> >>>>
> >>>> > reference (EPR)
> >>>>
> >>>> >
> >>>> /CoscendCC/services/FileService/getFileExplorerByRoomSelfInternal?SID=
> >>>> 1f0194f84bc9a5f1a215f3f40bfefc39&roomId=4&%5F%5Flzbc%5F%5F=1426613224478
> >>>>
> >>>>
> >>>> >
> >>>>
> >>>> >at
> >>>>
> >>>> >
> >>>> org.apache.axis2.engine.DispatchPhase.checkPostConditions(
> >>>> DispatchPhase.java:78)
> >>>>
> >>>> > ~[axis2-jar-1.7.0-SNAPSHOT.jar:na]
> >>>>
> >>>> >
> >>>>
> >>>> >at org.apache.axis2.engine.Phase.invoke(Phase.java:329)
> >>>>
> >>>> > ~[axis2-jar-1.7.0-SNAPSHOT.jar:na]
> >>>>
> >>>> >
> >>>>
> >>>> >at org.apache.axis2.engine.AxisEngine.invoke(AxisEngine.java:262)
> >>>>
> >>>> > ~[axis2-jar-1.7.0-SNAPSHOT.jar:na]
> >>>>
> >>>> >
> >>>>
> >>>> >at
> >>>> org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:168)
> >>>>
> >>>> > ~[axis2-jar-1.7.0-SNAPSHOT.jar:na]
> >>>>
> >>>> >
> >>>>
> >>>> >at
> >>>>
> >>>> >
> >>>> org.apache.axis2.transport.http.util.RESTUtil.
> >>>> invokeAxisEngine(RESTUtil.java:242)
> >>>>
> >>>> > [axis2-transport-http-bundle-1.7.0-SNAPSHOT.jar:na]
> >>>>
> >>>> >
> >>>>
> >>>> >
> >>>>
> >>>> >
> >>>>
> >>>> > Red5.log:
> >>>>
> >>>> >
> >>>>
> >>>> > 015-03-17 12:19:13,385 [Launcher:/CoscendCC] INFO
> >>>>
> >>>> > o.s.c.s.DefaultLifecycleProcessor - Starting beans in phase
> >>>> 2147483647
> >>>>
> >>>> >
> >>>>
> >>>> > 2015-03-17 12:23:58,504
> >>>> [RTMPConnectionExecutor#STAWDHVNLU2EL-1]
> >>>> INFO
> >>>>
> >>>> > o.a.o.r.r.ScopeApplicationAdapter - W3C x-category:session
> >>>> x-event:connect
> >>>>
> >>>> > c-ip:192.168.100.153 c-client-id:0
> >>>>
> >>>> >
> >>>>
> >>>> > 2015-03-17 12:24:03,674
> >>>> [RTMPConnectionExecutor#NJTO3EKXPFH4B-1]
> >>>> INFO
> >>>>
> >>>> > o.a.o.r.r.ScopeApplicationAdapter - W3C x-category:session
> >>>> x-event:connect
> >>>>
> >>>> > c-ip:192.168.100.153 c-client-id:1
> >>>>
> >>>> >
> >>>>
> >>>> > 2015-03-17 12:24:10,338
> >>>> [RTMPConnectionExecutor#NJTO3EKXPFH4B-1]
> >>>> INFO
> >>>>
> >>>> > org.red5.server.scope.BasicScope - ClientBroadcastStream
> >>>> already
> >>>> exists:
> >>>>
> >>>> > org.red5.server.stream.ClientBroadcastStream@3c690610 new:
> >>>>
> >>>> > org.red5.server.stream.ClientBroadcastStream@3c690610
> >>>>
> >>>> >
> >>>>
> >>>> > 2015-03-17 12:24:10,339
> >>>> [RTMPConnectionExecutor#NJTO3EKXPFH4B-1]
> >>>> INFO
> >>>>
> >>>> > o.r.s.stream.ClientBroadcastStream - Stream start: 0
> >>>>
> >>>> >
> >>>>
> >>>> > 2015-03-17 12:25:35,667 [http-nio-10.10.10.51-5080-exec-1] WARN
> >>>>
> >>>> > o.a.a.om.impl.llom.OMElementImpl - Deprecated usage of
> >>>>
> >>>> > OMElement#declareNamespace(String,String) with empty prefix
> >>>>
> >>>> >
> >>>>
> >>>> > 2015-03-17 12:25:46,837 [http-nio-10.10.10.51-5080-exec-6] INFO
> >>>>
> >>>> > o.a.c.c.C.[.[.1.10.51].[/CoscendCC] - Initializing Spring
> >>>> FrameworkServlet
> >>>>
> >>>> > 'spring-mvc'
> >>>>
> >>>> >
> >>>>
> >>>> > 2015-03-17 12:25:46,838 [http-nio-10.10.10.51-5080-exec-6] INFO
> >>>>
> >>>> > o.s.web.servlet.DispatcherServlet - FrameworkServlet
> >>>> 'spring-mvc':
> >>>>
> >>>> > initialization started
> >>>>
> >>>> >
> >>>>
> >>>> > 2015-03-17 12:25:46,848 [http-nio-10.10.10.51-5080-exec-6] INFO
> >>>>
> >>>> > o.s.w.c.s.XmlWebApplicationContext - Refreshing
> >>>> WebApplicationContext for
> >>>>
> >>>> > namespace 'spring-mvc-servlet': startup date [Tue Mar 17
> >>>> 12:25:46 CDT
> >>>>
> >>>> > 2015]; parent: Root WebApplicationContext
> >>>>
> >>>> >
> >>>>
> >>>> > 2015-03-17 12:25:46,850 [http-nio-10.10.10.51-5080-exec-6] INFO
> >>>>
> >>>> > o.s.b.f.xml.XmlBeanDefinitionReader - Loading XML bean
> >>>> definitions
> >>>> from
> >>>>
> >>>> > ServletContext resource [/WEB-INF/spring-mvc-servlet.xml]
> >>>>
> >>>> >
> >>>>
> >>>> > 2015-03-17 12:25:47,102 [http-nio-10.10.10.51-5080-exec-6] INFO
> >>>>
> >>>> > o.s.web.servlet.DispatcherServlet - FrameworkServlet
> >>>> 'spring-mvc':
> >>>>
> >>>> > initialization completed in 264 ms
> >>>>
> >>>> >
> >>>>
> >>>> > 2015-03-17 12:25:48,335 [http-nio-10.10.10.51-5080-exec-7] WARN
> >>>>
> >>>> > o.a.a.om.impl.llom.OMElementImpl - Deprecated usage of
> >>>>
> >>>> > OMElement#declareNamespace(String,String) with empty prefix
> >>>>
> >>>> >
> >>>>
> >>>> > 2015-03-17 12:27:04,166 [http-nio-10.10.10.51-5080-exec-4] WARN
> >>>>
> >>>> > o.a.a.om.impl.llom.OMElementImpl - Deprecated usage of
> >>>>
> >>>> > OMElement#declareNamespace(String,String) with empty prefix
> >>>>
> >>>> >
> >>>>
> >>>> > 2015-03-17 12:27:15,291 [http-nio-10.10.10.51-5080-exec-8] WARN
> >>>>
> >>>> > o.a.a.om.impl.llom.OMElementImpl - Deprecated usage of
> >>>>
> >>>> > OMElement#declareNamespace(String,String) with empty prefix
> >>>>
> >>>> >
> >>>>
> >>>> >---
> >>>>
> >>>> >
> >>>>
> >>>> > Regards,
> >>>>
> >>>> >
> >>>>
> >>>> > Susheel Jalali
> >>>>
> >>>> > Coscend Communications Solutions
> >>>>
> >>>> >
> >>>>
> >>>>
> >>>>
> >>>>
> >>>> --
> >>>> WBR
> >>>> Maxim aka solomax
> >>>>
> >>>>
> >>>>
> >>>>
> >>>>
> >>>
> >>
> >>
> >
> >