Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gsaslis/c3f18dd2bbefdd2646388c6fc0292f7c to your computer and use it in GitHub Desktop.
Save gsaslis/c3f18dd2bbefdd2646388c6fc0292f7c to your computer and use it in GitHub Desktop.
restcomm connect docker logs osx
<?xml version='1.0' encoding='UTF-8'?>
<server xmlns="urn:jboss:domain:1.4">
<extensions>
<extension module="org.jboss.as.clustering.infinispan"/>
<extension module="org.jboss.as.connector"/>
<extension module="org.jboss.as.deployment-scanner"/>
<extension module="org.jboss.as.ee"/>
<extension module="org.jboss.as.ejb3"/>
<extension module="org.jboss.as.jaxrs"/>
<extension module="org.jboss.as.jdr"/>
<extension module="org.jboss.as.jmx"/>
<extension module="org.jboss.as.jpa"/>
<extension module="org.jboss.as.jsf"/>
<extension module="org.jboss.as.logging"/>
<extension module="org.jboss.as.mail"/>
<extension module="org.jboss.as.naming"/>
<extension module="org.jboss.as.pojo"/>
<extension module="org.jboss.as.remoting"/>
<extension module="org.jboss.as.sar"/>
<extension module="org.jboss.as.security"/>
<extension module="org.jboss.as.threads"/>
<extension module="org.jboss.as.transactions"/>
<extension module="org.jboss.as.web"/>
<extension module="org.jboss.as.webservices"/>
<extension module="org.jboss.as.weld"/>
<extension module="org.mobicents.as7"/>
</extensions>
<management>
<security-realms>
<security-realm name="ManagementRealm">
<authentication>
<local default-user="$local"/>
<properties path="mgmt-users.properties" relative-to="jboss.server.config.dir"/>
</authentication>
</security-realm>
<security-realm name="ApplicationRealm">
<authentication>
<local default-user="$local" allowed-users="*"/>
<properties path="application-users.properties" relative-to="jboss.server.config.dir"/>
</authentication>
<authorization>
<properties path="application-roles.properties" relative-to="jboss.server.config.dir"/>
</authorization>
</security-realm>
</security-realms>
<management-interfaces>
<native-interface security-realm="ManagementRealm">
<socket-binding native="management-native"/>
</native-interface>
<http-interface security-realm="ManagementRealm">
<socket-binding http="management-http"/>
</http-interface>
</management-interfaces>
</management>
<profile>
<subsystem xmlns="urn:jboss:domain:logging:1.2">
<console-handler name="CONSOLE">
<level name="INFO"/>
<formatter>
<pattern-formatter pattern="%K{level}%d{HH:mm:ss,SSS} %-5p [%c] (%t) %s%E%n"/>
</formatter>
</console-handler>
<periodic-rotating-file-handler name="FILE" autoflush="true">
<formatter>
<pattern-formatter pattern="%d{HH:mm:ss,SSS} %-5p [%c] (%t) %s%E%n"/>
</formatter>
<file relative-to="jboss.server.log.dir" path="server.log"/>
<suffix value=".yyyy-MM-dd"/>
<append value="true"/>
</periodic-rotating-file-handler>
<logger category="com.arjuna">
<level name="WARN"/>
</logger>
<logger category="org.apache.tomcat.util.modeler">
<level name="WARN"/>
</logger>
<logger category="org.jboss.as.config">
<level name="INFO"/>
</logger>
<logger category="org.mobicents.servlet.sip">
<level name="INFO"/>
</logger>
<logger category="gov.nist">
<level name="INFO"/>
</logger>
<logger category="sun.rmi">
<level name="WARN"/>
</logger>
<logger category="jacorb">
<level name="WARN"/>
</logger>
<logger category="jacorb.config">
<level name="ERROR"/>
</logger>
<root-logger>
<level name="INFO"/>
<handlers>
<handler name="CONSOLE"/>
<handler name="FILE"/>
</handlers>
</root-logger>
</subsystem>
<subsystem xmlns="urn:jboss:domain:datasources:1.1">
<datasources>
<datasource jta="true" jndi-name="java:/MySqlDS" pool-name="MySqlDS_Pool" enabled="true" use-java-context="true" use-ccm="true">
<connection-url>jdbc:mysql://localhost:3306/restcomm</connection-url>
<driver>com.mysql</driver>
<transaction-isolation>TRANSACTION_READ_COMMITTED</transaction-isolation>
<pool>
<min-pool-size>100</min-pool-size>
<max-pool-size>200</max-pool-size>
</pool>
<security>
<user-name>username</user-name>
<password>password</password>
</security>
<statement>
<prepared-statement-cache-size>100</prepared-statement-cache-size>
<share-prepared-statements/>
</statement>
</datasource>
<datasource jndi-name="java:jboss/datasources/ExampleDS" pool-name="ExampleDS" enabled="true" use-java-context="true">
<connection-url>jdbc:h2:mem:test;DB_CLOSE_DELAY=-1</connection-url>
<driver>h2</driver>
<security>
<user-name>sa</user-name>
<password>sa</password>
</security>
</datasource>
<drivers>
<driver name="com.mysql" module="com.mysql">
<driver-class>com.mysql.jdbc.Driver</driver-class>
<xa-datasource-class>com.mysql.jdbc.jdbc2.optional.MysqlXADataSource</xa-datasource-class>
</driver>
<driver name="h2" module="com.h2database.h2">
<xa-datasource-class>org.h2.jdbcx.JdbcDataSource</xa-datasource-class>
</driver>
</drivers>
</datasources>
</subsystem>
<subsystem xmlns="urn:jboss:domain:deployment-scanner:1.1">
<deployment-scanner path="deployments" relative-to="jboss.server.base.dir" scan-interval="5000"/>
</subsystem>
<subsystem xmlns="urn:jboss:domain:ee:1.1">
<spec-descriptor-property-replacement>false</spec-descriptor-property-replacement>
<jboss-descriptor-property-replacement>true</jboss-descriptor-property-replacement>
</subsystem>
<subsystem xmlns="urn:jboss:domain:ejb3:1.4">
<session-bean>
<stateless>
<bean-instance-pool-ref pool-name="slsb-strict-max-pool"/>
</stateless>
<stateful default-access-timeout="5000" cache-ref="simple"/>
<singleton default-access-timeout="5000"/>
</session-bean>
<pools>
<bean-instance-pools>
<strict-max-pool name="slsb-strict-max-pool" max-pool-size="20" instance-acquisition-timeout="5" instance-acquisition-timeout-unit="MINUTES"/>
<strict-max-pool name="mdb-strict-max-pool" max-pool-size="20" instance-acquisition-timeout="5" instance-acquisition-timeout-unit="MINUTES"/>
</bean-instance-pools>
</pools>
<caches>
<cache name="simple" aliases="NoPassivationCache"/>
<cache name="passivating" passivation-store-ref="file" aliases="SimpleStatefulCache"/>
</caches>
<passivation-stores>
<file-passivation-store name="file"/>
</passivation-stores>
<async thread-pool-name="default"/>
<timer-service thread-pool-name="default">
<data-store path="timer-service-data" relative-to="jboss.server.data.dir"/>
</timer-service>
<remote connector-ref="remoting-connector" thread-pool-name="default"/>
<thread-pools>
<thread-pool name="default">
<max-threads count="10"/>
<keepalive-time time="100" unit="milliseconds"/>
</thread-pool>
</thread-pools>
<default-security-domain value="other"/>
<default-missing-method-permissions-deny-access value="true"/>
</subsystem>
<subsystem xmlns="urn:jboss:domain:infinispan:1.4">
<cache-container name="web" aliases="standard-session-cache" default-cache="local-web" module="org.jboss.as.clustering.web.infinispan">
<local-cache name="local-web" batching="true">
<file-store passivation="false" purge="false"/>
</local-cache>
</cache-container>
<cache-container name="hibernate" default-cache="local-query" module="org.jboss.as.jpa.hibernate:4">
<local-cache name="entity">
<transaction mode="NON_XA"/>
<eviction strategy="LRU" max-entries="10000"/>
<expiration max-idle="100000"/>
</local-cache>
<local-cache name="local-query">
<transaction mode="NONE"/>
<eviction strategy="LRU" max-entries="10000"/>
<expiration max-idle="100000"/>
</local-cache>
<local-cache name="timestamps">
<transaction mode="NONE"/>
<eviction strategy="NONE"/>
</local-cache>
</cache-container>
</subsystem>
<subsystem xmlns="urn:jboss:domain:jaxrs:1.0"/>
<subsystem xmlns="urn:jboss:domain:jca:1.1">
<archive-validation enabled="true" fail-on-error="true" fail-on-warn="false"/>
<bean-validation enabled="true"/>
<default-workmanager>
<short-running-threads>
<core-threads count="50"/>
<queue-length count="50"/>
<max-threads count="50"/>
<keepalive-time time="10" unit="seconds"/>
</short-running-threads>
<long-running-threads>
<core-threads count="50"/>
<queue-length count="50"/>
<max-threads count="50"/>
<keepalive-time time="10" unit="seconds"/>
</long-running-threads>
</default-workmanager>
<cached-connection-manager/>
</subsystem>
<subsystem xmlns="urn:jboss:domain:jdr:1.0"/>
<subsystem xmlns="urn:jboss:domain:jmx:1.2">
<expose-resolved-model/>
<expose-expression-model/>
<remoting-connector/>
</subsystem>
<subsystem xmlns="urn:jboss:domain:jpa:1.1">
<jpa default-datasource="" default-extended-persistence-inheritance="DEEP"/>
</subsystem>
<subsystem xmlns="urn:jboss:domain:jsf:1.0"/>
<subsystem xmlns="urn:jboss:domain:mail:1.0">
<mail-session jndi-name="java:jboss/mail/Default">
<smtp-server outbound-socket-binding-ref="mail-smtp"/>
</mail-session>
</subsystem>
<subsystem xmlns="urn:jboss:domain:naming:1.2">
<remote-naming/>
</subsystem>
<subsystem xmlns="urn:jboss:domain:pojo:1.0"/>
<subsystem xmlns="urn:jboss:domain:remoting:1.1">
<connector name="remoting-connector" socket-binding="remoting" security-realm="ApplicationRealm"/>
</subsystem>
<subsystem xmlns="urn:jboss:domain:resource-adapters:1.0"/>
<subsystem xmlns="urn:jboss:domain:sar:1.0"/>
<subsystem xmlns="urn:jboss:domain:security:1.2">
<security-domains>
<security-domain name="other" cache-type="default">
<authentication>
<login-module code="Remoting" flag="optional">
<module-option name="password-stacking" value="useFirstPass"/>
</login-module>
<login-module code="RealmDirect" flag="required">
<module-option name="password-stacking" value="useFirstPass"/>
</login-module>
</authentication>
</security-domain>
<security-domain name="jboss-web-policy" cache-type="default">
<authorization>
<policy-module code="Delegating" flag="required"/>
</authorization>
</security-domain>
<security-domain name="jboss-ejb-policy" cache-type="default">
<authorization>
<policy-module code="Delegating" flag="required"/>
</authorization>
</security-domain>
<security-domain name="sip-servlets">
<authentication>
<login-module code="UsersRoles" flag="required">
<module-option name="usersProperties" value="${jboss.server.config.dir}/sip-servlets-users.properties"/>
<module-option name="rolesProperties" value="${jboss.server.config.dir}/sip-servlets-roles.properties"/>
<module-option name="hashAlgorithm" value="MD5"/>
<module-option name="hashEncoding" value="RFC2617"/>
<module-option name="hashUserPassword" value="false"/>
<module-option name="hashStorePassword" value="true"/>
<module-option name="passwordIsA1Hash" value="true"/>
<module-option name="storeDigestCallback" value="org.jboss.security.auth.callback.RFC2617Digest"/>
</login-module>
</authentication>
</security-domain>
</security-domains>
</subsystem>
<subsystem xmlns="urn:jboss:domain:threads:1.1"/>
<subsystem xmlns="urn:jboss:domain:transactions:1.2">
<core-environment>
<process-id>
<uuid/>
</process-id>
</core-environment>
<recovery-environment socket-binding="txn-recovery-environment" status-socket-binding="txn-status-manager"/>
<coordinator-environment default-timeout="300"/>
</subsystem>
<subsystem xmlns="urn:jboss:domain:web:1.4" default-virtual-server="default-host" native="false">
<connector name="http" protocol="HTTP/1.1" scheme="http" socket-binding="http"/>
<!--connector name="https" protocol="HTTP/1.1" scheme="https" socket-binding="https" enable-lookups="false" secure="true">
<ssl name="https" key-alias="KEY_ALIAS" password="SECRET" certificate-key-file="${jboss.server.config.dir}/keystore.jks" protocol="TLSv1,TLSv1.1,TLSv1.2"/>
</connector-->
<virtual-server name="default-host" enable-welcome-root="false">
<alias name="localhost"/>
<alias name="example.com"/>
</virtual-server>
</subsystem>
<subsystem xmlns="urn:jboss:domain:webservices:1.2">
<modify-wsdl-address>true</modify-wsdl-address>
<wsdl-host>${jboss.bind.address:127.0.0.1}</wsdl-host>
<endpoint-config name="Standard-Endpoint-Config"/>
<endpoint-config name="Recording-Endpoint-Config">
<pre-handler-chain name="recording-handlers" protocol-bindings="##SOAP11_HTTP ##SOAP11_HTTP_MTOM ##SOAP12_HTTP ##SOAP12_HTTP_MTOM">
<handler name="RecordingHandler" class="org.jboss.ws.common.invocation.RecordingServerHandler"/>
</pre-handler-chain>
</endpoint-config>
<client-config name="Standard-Client-Config"/>
</subsystem>
<subsystem xmlns="urn:jboss:domain:weld:1.0"/>
<subsystem xmlns="urn:org.mobicents:sip-servlets-as7:1.0" application-router="configuration/dars/mobicents-dar.properties" stack-properties="configuration/mss-sip-stack.properties" path-name="org.mobicents.ext" app-dispatcher-class="org.mobicents.servlet.sip.core.SipApplicationDispatcherImpl" concurrency-control-mode="SipApplicationSession" congestion-control-interval="-1" gather-statistics="true">
<connector name="sip-udp" protocol="SIP/2.0" scheme="sip" socket-binding="sip-udp" use-static-address="true" static-server-address="172.17.0.3" static-server-port="5080"/>
<connector name="sip-tcp" protocol="SIP/2.0" scheme="sip" socket-binding="sip-tcp" use-static-address="true" static-server-address="172.17.0.3" static-server-port="5080"/>
<connector name="sip-tls" protocol="SIP/2.0" scheme="sip" socket-binding="sip-tls" use-static-address="true" static-server-address="172.17.0.3" static-server-port="5081"/>
<connector name="sip-ws" protocol="SIP/2.0" scheme="sip" socket-binding="sip-ws" use-static-address="true" static-server-address="172.17.0.3" static-server-port="5082"/>
<connector name="sip-wss" protocol="SIP/2.0" scheme="sip" socket-binding="sip-wss" use-static-address="true" static-server-address="172.17.0.3" static-server-port="5083"/>
</subsystem>
</profile>
<interfaces>
<interface name="management">
<inet-address value="${jboss.bind.address.management:127.0.0.1}"/>
</interface>
<interface name="public">
<inet-address value="${jboss.bind.address:127.0.0.1}"/>
</interface>
<!-- TODO - only show this if the jacorb subsystem is added -->
<interface name="unsecure">
<!--
~ Used for IIOP sockets in the standard configuration.
~ To secure JacORB you need to setup SSL
-->
<inet-address value="${jboss.bind.address.unsecure:127.0.0.1}"/>
</interface>
</interfaces>
<socket-binding-group name="standard-sockets" default-interface="public" port-offset="${jboss.socket.binding.port-offset:0}">
<socket-binding name="management-native" interface="management" port="${jboss.management.native.port:9999}"/>
<socket-binding name="management-http" interface="management" port="${jboss.management.http.port:9990}"/>
<socket-binding name="management-https" interface="management" port="${jboss.management.https.port:9443}"/>
<socket-binding name="ajp" port="8009"/>
<socket-binding name="http" port="8080"/>
<socket-binding name="https" port="8443"/>
<socket-binding name="sip-udp" port="5080"/>
<socket-binding name="sip-tcp" port="5080"/>
<socket-binding name="sip-tls" port="5081"/>
<socket-binding name="sip-ws" port="5082"/>
<socket-binding name="sip-wss" port="5083"/>
<socket-binding name="remoting" port="4447"/>
<socket-binding name="txn-recovery-environment" port="4712"/>
<socket-binding name="txn-status-manager" port="4713"/>
<outbound-socket-binding name="mail-smtp">
<remote-destination host="localhost" port="25"/>
</outbound-socket-binding>
</socket-binding-group>
*** Running /etc/my_init.d/00_regen_ssh_host_keys.sh...
*** Running /etc/my_init.d/restcommautomate.sh...
Will check if Enviromental variables script file is set
Configuration file URL is: https://raw.githubusercontent.com/RestComm/Restcomm-Docker/master/env_files/restcomm_env_locally.sh
url https://raw.githubusercontent.com/RestComm/Restcomm-Docker/master/env_files/restcomm_env_locally.sh /tmp/conf.sh 
--2017-06-21 10:02:06--  https://raw.githubusercontent.com/RestComm/Restcomm-Docker/master/env_files/restcomm_env_locally.sh
Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 151.101.60.133
Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|151.101.60.133|:443... connected.
Run configuratin file /tmp/conf.sh
HTTP request sent, awaiting response... 200 OK
Length: 2187 (2.1K) [text/plain]
Saving to: ‘/tmp/conf.sh’

     0K ..                                                    100% 17.0M=0s

2017-06-21 10:02:22 (17.0 MB/s) - ‘/tmp/conf.sh’ saved [2187/2187]

 https://raw.githubusercontent.com/RestComm/Restcomm-Docker/master/env_files/restcomm_env_locally.sh > /etc/container_environment/ENVCONFURL
*** Running /etc/my_init.d/restcommconf.sh...
Will check for enviroment variable and configure restcomm.conf
MEDIASERVER_LOWEST_PORT 65000
MEDIASERVER_HIGHEST_PORT 65535
*** Running /etc/my_init.d/restcommsslconf.sh...
*** Running /etc/my_init.d/restcommtoolsconf.sh...
Archive:  /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus.war
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/META-INF/
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/META-INF/MANIFEST.MF  
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-bootstrap/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/queue/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/ajax/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/ajax/var/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/exports/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/manipulation/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/manipulation/var/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/traversing/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/traversing/var/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/event/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/effects/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/core/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/core/var/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/attributes/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/sizzle/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/sizzle/dist/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/var/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/data/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/data/var/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/css/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/css/var/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/dist/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-resource/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/meteor/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/benchmarks/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/min/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/scripts/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/ng-emoticons/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/ng-emoticons/demo/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/ng-emoticons/demo/js/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/ng-emoticons/src/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/ng-emoticons/src/images/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/ng-emoticons/dist/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/ng-emoticons/dist/images/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/ng-emoticons/fonts/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/flippers/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/fading_exits/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/rotating_exits/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/rotating_entrances/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/zooming_entrances/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/bouncing_exits/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/fading_entrances/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/lightspeed/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/bouncing_entrances/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/specials/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/zooming_exits/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/attention_seekers/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/webcam-directive/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/webcam-directive/dist/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/webcam-directive/app/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/webcam-directive/app/scripts/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-animate/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/grunt/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/js/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/dist/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/dist/js/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/dist/css/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/dist/fonts/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/fonts/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/mixins/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/src/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/src/collapse/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/src/button/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/src/typeahead/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/src/affix/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/src/select/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/src/tab/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/src/modal/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/src/datepicker/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/src/aside/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/src/helpers/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/src/alert/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/src/popover/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/src/dropdown/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/src/tooltip/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/src/navbar/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/src/timepicker/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/src/scrollspy/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-routing/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-sanitize/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/font-awesome/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/font-awesome/css/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/font-awesome/scss/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/font-awesome/fonts/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/font-awesome/less/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-route/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-moment/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-fullscreen/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-fullscreen/src/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/resources/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/resources/css/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/resources/js/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/resources/js/adapter/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/resources/js/controllers/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/resources/js/mobicents-libs/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/resources/audio/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/resources/images/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/WEB-INF/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/WEB-INF/classes/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/WEB-INF/classes/META-INF/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/modules/
   creating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/modules/templates/
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-bootstrap/ui-bootstrap-tpls.min.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-bootstrap/ui-bootstrap.min.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-bootstrap/.bower.json  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-bootstrap/ui-bootstrap-tpls.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-bootstrap/ui-bootstrap.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-bootstrap/bower.json  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/queue/delay.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/data.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/ajax/var/nonce.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/ajax/var/rquery.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/ajax/script.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/ajax/xhr.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/ajax/load.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/ajax/parseJSON.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/ajax/parseXML.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/ajax/jsonp.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/exports/amd.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/exports/global.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/core.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/callbacks.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/manipulation/_evalUrl.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/manipulation/support.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/manipulation/var/rcheckableType.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/wrap.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/offset.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/queue.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/traversing/findFilter.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/traversing/var/rneedsContext.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/serialize.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/jquery.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/event/ajax.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/event/alias.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/event/support.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/deferred.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/selector-sizzle.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/effects/animatedSelector.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/effects/Tween.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/core/init.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/core/access.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/core/var/rsingleTag.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/core/ready.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/core/parseHTML.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/selector-native.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/ajax.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/event.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/selector.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/css.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/effects.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/attributes/support.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/attributes/val.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/attributes/attr.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/attributes/classes.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/attributes/prop.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/deprecated.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/sizzle/dist/sizzle.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/sizzle/dist/sizzle.min.map  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/sizzle/dist/sizzle.min.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/var/push.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/var/strundefined.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/var/rnotwhite.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/var/class2type.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/var/hasOwn.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/var/concat.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/var/support.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/var/slice.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/var/arr.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/var/pnum.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/var/toString.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/var/indexOf.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/data/accepts.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/data/var/data_user.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/data/var/data_priv.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/data/Data.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/traversing.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/attributes.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/css/addGetHookIf.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/css/swap.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/css/defaultDisplay.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/css/support.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/css/curCSS.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/css/var/isHidden.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/css/var/cssExpand.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/css/var/getStyles.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/css/var/rmargin.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/css/var/rnumnonpx.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/css/hiddenVisibleSelectors.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/manipulation.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/intro.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/outro.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/src/dimensions.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/bower.json  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/.bower.json  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/MIT-LICENSE.txt  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/dist/jquery.min.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/dist/jquery.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/jquery/dist/jquery.min.map  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-resource/angular-resource.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-resource/.bower.json  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-resource/package.json  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-resource/README.md  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-resource/angular-resource.min.js.map  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-resource/angular-resource.min.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-resource/bower.json  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular/angular.min.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular/angular.min.js.map  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular/package.json  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular/README.md  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular/angular-csp.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular/.bower.json  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular/angular.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular/angular.min.js.gzip  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular/bower.json  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/meteor/README.md  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/meteor/export.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/meteor/test.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/Moment.js.nuspec  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/benchmarks/clone.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/.bower.json  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/min/moment.min.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/min/locales.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/min/locales.min.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/min/moment-with-locales.min.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/min/moment-with-locales.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/bower.json  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/CHANGELOG.md  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/scripts/npm_prepublish.sh  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/README.md  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/he.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/sr.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/tr.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/pl.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/zh-cn.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/nb.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/km.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/it.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/ru.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/fr.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/ar.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/el.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/hr.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/mk.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/zh-tw.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/sq.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/bn.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/af.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/ar-ma.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/ko.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/sr-cyrl.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/ar-tn.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/vi.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/bo.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/eo.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/en-gb.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/id.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/ml.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/hu.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/ne.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/de-at.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/is.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/cy.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/my.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/ta.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/tl-ph.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/sv.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/en-au.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/fa.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/ms-my.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/lv.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/ar-sa.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/fr-ca.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/ka.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/nn.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/fi.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/ro.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/hi.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/tzm-latn.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/th.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/mr.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/gl.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/hy-am.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/eu.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/nl.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/pt.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/pt-br.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/lb.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/lt.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/cs.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/de.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/uz.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/et.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/sk.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/da.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/ca.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/ja.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/bg.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/fy.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/fo.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/cv.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/uk.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/es.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/sl.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/be.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/bs.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/br.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/tzm.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/az.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/locale/en-ca.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/LICENSE  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/moment/moment.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/ng-emoticons/.bower.json  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/ng-emoticons/demo/screen.png  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/ng-emoticons/demo/index.html  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/ng-emoticons/demo/js/app.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/ng-emoticons/src/images/emojis@2x.png  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/ng-emoticons/src/images/emojis.png  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/ng-emoticons/src/ng-emoticons.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/ng-emoticons/src/ng-emoticons.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/ng-emoticons/dist/ng-emoticons.min.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/ng-emoticons/dist/images/emojis@2x.png  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/ng-emoticons/dist/images/emojis.png  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/ng-emoticons/dist/ng-emoticons.min.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/ng-emoticons/LICENSE  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/ng-emoticons/fonts/smileys.woff  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/ng-emoticons/fonts/smileys.svg  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/ng-emoticons/fonts/smileys.eot  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/ng-emoticons/fonts/smileys.ttf  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/ng-emoticons/bower.json  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/ng-emoticons/GruntFile.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/ng-emoticons/package.json  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/ng-emoticons/README.md  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/Gruntfile.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/bower.json  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/animate.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/animate.min.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/.bower.json  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/package.json  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/.editorconfig  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/README.md  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/animate-config.json  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/flippers/flipOutY.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/flippers/flipOutX.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/flippers/flipInX.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/flippers/flip.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/flippers/flipInY.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/fading_exits/fadeOutLeft.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/fading_exits/fadeOutDownBig.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/fading_exits/fadeOutDown.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/fading_exits/fadeOutRightBig.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/fading_exits/fadeOut.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/fading_exits/fadeOutLeftBig.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/fading_exits/fadeOutUp.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/fading_exits/fadeOutUpBig.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/fading_exits/fadeOutRight.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/rotating_exits/rotateOutUpLeft.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/rotating_exits/rotateOutDownRight.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/rotating_exits/rotateOutUpRight.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/rotating_exits/rotateOutDownLeft.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/rotating_exits/rotateOut.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/rotating_entrances/rotateInUpLeft.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/rotating_entrances/rotateInUpRight.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/rotating_entrances/rotateInDownRight.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/rotating_entrances/rotateIn.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/rotating_entrances/rotateInDownLeft.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/zooming_entrances/zoomInLeft.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/zooming_entrances/zoomInDown.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/zooming_entrances/zoomIn.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/zooming_entrances/zoomInRight.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/zooming_entrances/zoomInUp.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/bouncing_exits/bounceOutLeft.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/bouncing_exits/bounceOutDown.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/bouncing_exits/bounceOutRight.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/bouncing_exits/bounceOut.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/bouncing_exits/bounceOutUp.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/fading_entrances/fadeInRight.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/fading_entrances/fadeInUpBig.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/fading_entrances/fadeInRightBig.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/fading_entrances/fadeInDownBig.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/fading_entrances/fadeInDown.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/fading_entrances/fadeInUp.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/fading_entrances/fadeInLeft.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/fading_entrances/fadeInLeftBig.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/fading_entrances/fadeIn.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/lightspeed/lightSpeedIn.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/lightspeed/lightSpeedOut.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/bouncing_entrances/bounceInUp.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/bouncing_entrances/bounceInDown.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/bouncing_entrances/bounceInLeft.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/bouncing_entrances/bounceInRight.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/bouncing_entrances/bounceIn.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/specials/hinge.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/specials/rollOut.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/specials/rollIn.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/_base.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/zooming_exits/zoomOutRight.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/zooming_exits/zoomOutDown.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/zooming_exits/zoomOutLeft.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/zooming_exits/zoomOutUp.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/zooming_exits/zoomOut.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/attention_seekers/tada.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/attention_seekers/swing.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/attention_seekers/rubberBand.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/attention_seekers/flash.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/attention_seekers/wobble.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/attention_seekers/pulse.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/attention_seekers/bounce.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/animate.css/source/attention_seekers/shake.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/webcam-directive/LICENSE  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/webcam-directive/dist/webcam.min.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/webcam-directive/bower.json  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/webcam-directive/.bower.json  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/webcam-directive/app/scripts/webcam.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-animate/bower.json  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-animate/.bower.json  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-animate/angular-animate.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-animate/angular-animate.min.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-animate/package.json  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-animate/README.md  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-animate/angular-animate.min.js.map  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/Gruntfile.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/grunt/bs-glyphicons-data-generator.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/grunt/configBridge.json  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/grunt/sauce_browsers.yml  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/grunt/.jshintrc  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/grunt/bs-raw-files-generator.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/grunt/bs-lessdoc-parser.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/grunt/bs-commonjs-generator.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/js/alert.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/js/transition.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/js/modal.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/js/.jshintrc  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/js/scrollspy.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/js/tab.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/js/.jscsrc  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/js/carousel.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/js/tooltip.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/js/collapse.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/js/popover.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/js/button.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/js/dropdown.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/js/affix.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/LICENSE  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/.bower.json  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/bower.json  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/README.md  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/dist/js/npm.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/dist/js/bootstrap.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/dist/js/bootstrap.min.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/dist/css/bootstrap-theme.min.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/dist/css/bootstrap.css.map  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/dist/css/bootstrap.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/dist/css/bootstrap-theme.css.map  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/dist/css/bootstrap-theme.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/dist/css/bootstrap.min.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/package.json  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/fonts/glyphicons-halflings-regular.ttf  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/fonts/glyphicons-halflings-regular.woff2  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/fonts/glyphicons-halflings-regular.svg  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/fonts/glyphicons-halflings-regular.woff  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/fonts/glyphicons-halflings-regular.eot  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/forms.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/pagination.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/variables.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/list-group.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/jumbotron.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/popovers.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/alerts.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/mixins.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/mixins/pagination.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/mixins/progress-bar.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/mixins/clearfix.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/mixins/labels.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/mixins/list-group.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/mixins/resize.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/mixins/forms.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/mixins/nav-vertical-align.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/mixins/text-overflow.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/mixins/gradients.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/mixins/hide-text.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/mixins/responsive-visibility.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/mixins/vendor-prefixes.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/mixins/tab-focus.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/mixins/grid-framework.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/mixins/reset-filter.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/mixins/alerts.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/mixins/center-block.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/mixins/table-row.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/mixins/size.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/mixins/image.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/mixins/opacity.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/mixins/background-variant.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/mixins/text-emphasis.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/mixins/grid.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/mixins/buttons.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/mixins/nav-divider.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/mixins/border-radius.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/mixins/panels.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/pager.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/component-animations.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/type.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/scaffolding.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/labels.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/code.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/buttons.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/print.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/.csscomb.json  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/breadcrumbs.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/normalize.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/tables.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/badges.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/responsive-embed.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/navs.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/thumbnails.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/button-groups.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/modals.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/navbar.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/carousel.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/grid.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/tooltip.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/panels.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/wells.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/bootstrap.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/theme.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/.csslintrc  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/progress-bars.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/dropdowns.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/glyphicons.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/media.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/close.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/input-groups.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/responsive-utilities.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/bootstrap/less/utilities.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/.bower.json  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/.editorconfig  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/README.md  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/.travis.yml  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/.npmignore  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/.jshintrc  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/LICENSE.md  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/angular-strap.min.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/angular-strap.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/button.min.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/typeahead.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/affix.min.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/navbar.min.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/tooltip.min.js.map  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/tooltip.min.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/debounce.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/alert.min.js.map  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/typeahead.tpl.min.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/select.min.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/modal.min.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/dropdown.tpl.min.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/button.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/date-formatter.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/datepicker.min.js.map  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/date-parser.min.js.map  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/collapse.min.js.map  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/modal.tpl.min.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/popover.tpl.min.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/timepicker.min.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/debounce.min.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/popover.tpl.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/raf.min.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/datepicker.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/dropdown.min.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/alert.tpl.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/tab.min.js.map  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/dimensions.min.js.map  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/typeahead.min.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/parse-options.min.js.map  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/timepicker.tpl.min.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/aside.min.js.map  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/datepicker.tpl.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/tab.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/aside.min.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/select.min.js.map  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/debounce.min.js.map  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/affix.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/tab.min.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/scrollspy.min.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/collapse.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/dropdown.min.js.map  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/affix.min.js.map  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/tooltip.tpl.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/parse-options.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/collapse.min.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/popover.min.js.map  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/navbar.min.js.map  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/modal.min.js.map  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/dimensions.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/alert.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/datepicker.tpl.min.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/select.tpl.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/modal.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/scrollspy.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/tooltip.tpl.min.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/popover.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/date-formatter.min.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/parse-options.min.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/modal.tpl.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/typeahead.min.js.map  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/alert.tpl.min.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/timepicker.tpl.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/aside.tpl.min.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/timepicker.min.js.map  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/button.min.js.map  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/popover.min.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/date-formatter.min.js.map  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/raf.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/dimensions.min.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/tab.tpl.min.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/navbar.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/dropdown.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/scrollspy.min.js.map  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/raf.min.js.map  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/tooltip.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/alert.min.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/date-parser.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/dropdown.tpl.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/select.tpl.min.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/typeahead.tpl.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/date-parser.min.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/datepicker.min.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/select.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/timepicker.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/aside.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/aside.tpl.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/modules/tab.tpl.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/angular-strap.tpl.min.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/angular-strap.tpl.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/dist/angular-strap.min.js.map  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/src/collapse/collapse.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/src/button/button.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/src/typeahead/typeahead.tpl.html  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/src/typeahead/typeahead.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/src/module.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/src/affix/affix.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/src/select/select.tpl.html  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/src/select/select.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/src/tab/tab.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/src/tab/tab.tpl.html  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/src/modal/modal.tpl.html  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/src/modal/modal.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/src/datepicker/datepicker.tpl.html  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/src/datepicker/datepicker.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/src/aside/aside.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/src/aside/aside.tpl.html  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/src/helpers/date-formatter.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/src/helpers/debounce.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/src/helpers/date-parser.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/src/helpers/raf.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/src/helpers/parse-options.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/src/helpers/dimensions.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/src/alert/alert.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/src/alert/alert.tpl.html  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/src/popover/popover.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/src/popover/popover.tpl.html  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/src/dropdown/dropdown.tpl.html  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/src/dropdown/dropdown.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/src/tooltip/tooltip.tpl.html  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/src/tooltip/tooltip.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/src/navbar/navbar.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/src/timepicker/timepicker.tpl.html  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/src/timepicker/timepicker.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/src/scrollspy/scrollspy.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/gulpfile.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/.bowerrc  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/angular-strap.nuspec  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/package.json  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-strap/bower.json  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-routing/bower.json  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-routing/LICENSE.txt  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-routing/angular-routing.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-routing/README.md  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-routing/.bower.json  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-sanitize/angular-sanitize.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-sanitize/angular-sanitize.min.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-sanitize/angular-sanitize.min.js.map  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-sanitize/README.md  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-sanitize/package.json  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-sanitize/bower.json  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-sanitize/.bower.json  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-sanitize/index.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/font-awesome/bower.json  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/font-awesome/css/font-awesome.min.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/font-awesome/css/font-awesome.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/font-awesome/css/font-awesome.css.map  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/font-awesome/.bower.json  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/font-awesome/scss/_core.scss  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/font-awesome/scss/_variables.scss  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/font-awesome/scss/_icons.scss  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/font-awesome/scss/_mixins.scss  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/font-awesome/scss/_fixed-width.scss  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/font-awesome/scss/_bordered-pulled.scss  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/font-awesome/scss/_animated.scss  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/font-awesome/scss/_larger.scss  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/font-awesome/scss/_rotated-flipped.scss  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/font-awesome/scss/_path.scss  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/font-awesome/scss/_stacked.scss  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/font-awesome/scss/_list.scss  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/font-awesome/scss/font-awesome.scss  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/font-awesome/.npmignore  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/font-awesome/fonts/fontawesome-webfont.ttf  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/font-awesome/fonts/fontawesome-webfont.woff2  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/font-awesome/fonts/FontAwesome.otf  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/font-awesome/fonts/fontawesome-webfont.woff  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/font-awesome/fonts/fontawesome-webfont.eot  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/font-awesome/fonts/fontawesome-webfont.svg  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/font-awesome/less/core.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/font-awesome/less/larger.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/font-awesome/less/icons.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/font-awesome/less/bordered-pulled.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/font-awesome/less/fixed-width.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/font-awesome/less/mixins.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/font-awesome/less/animated.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/font-awesome/less/variables.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/font-awesome/less/font-awesome.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/font-awesome/less/stacked.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/font-awesome/less/path.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/font-awesome/less/list.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/font-awesome/less/rotated-flipped.less  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-route/README.md  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-route/.bower.json  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-route/angular-route.min.js.map  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-route/package.json  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-route/bower.json  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-route/angular-route.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-route/angular-route.min.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-moment/.jshintrc  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-moment/angular-moment.nuspec  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-moment/angular-moment.min.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-moment/tests.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-moment/.npmignore  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-moment/Gruntfile.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-moment/.travis.yml  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-moment/karma.conf.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-moment/angular-moment.min.js.map  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-moment/.editorconfig  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-moment/CHANGELOG.md  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-moment/package.json  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-moment/angular-moment.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-moment/CONTRIBUTING.md  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-moment/.bower.json  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-moment/bower.json  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-moment/README.md  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-fullscreen/bower.json  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-fullscreen/.bower.json  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-fullscreen/README.md  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/lib/angular-fullscreen/src/angular-fullscreen.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/bower.json  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/resources/css/olympus.css  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/resources/js/adapter/adapter.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/resources/js/controllers/room.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/resources/js/controllers/register.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/resources/js/app.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/resources/js/directives.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/resources/js/services.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/resources/js/filters.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/resources/js/mobicents-libs/WebRTComm.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/resources/js/mobicents-libs/jain-sip.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/resources/js/olympus.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/resources/js/controllers.js  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/resources/audio/ringing.wav  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/resources/audio/ringing.mp3  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/resources/audio/dtmf4.wav  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/resources/audio/dtmf3.wav  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/resources/audio/star.wav  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/resources/audio/dtmf2.wav  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/resources/audio/pound.wav  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/resources/audio/dtmf5.wav  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/resources/audio/chat_notification.wav  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/resources/audio/dtmf8.wav  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/resources/audio/dtmf6.wav  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/resources/audio/dtmf1.wav  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/resources/audio/dtmf0.wav  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/resources/audio/dtmf7.wav  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/resources/audio/dtmf9.wav  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/resources/images/mount-olympus.jpg  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/resources/images/male-placeholder.jpg  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/resources/images/telestax-logo-dark.png  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/resources/images/favicon.png  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/resources/images/mobicents-logo.png  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/resources/images/loading.gif  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/resources/images/background.png  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/resources/images/female-placeholder.jpeg  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/WEB-INF/classes/META-INF/MANIFEST.MF  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/WEB-INF/web.xml  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/index.html  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/modules/templates/oly-contacts.html  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/modules/templates/oly-layouts.html  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/modules/templates/oly-console.html  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/modules/templates/oly-contact-card.html  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/modules/templates/oly-sidebar.html  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/modules/templates/oly-keypad.html  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/modules/templates/oly-chat-dropdown.html  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/modules/templates/popover-html-unsafe-popup.html  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/modules/register.html  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/modules/room.html  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/META-INF/maven/org.mobicents.webrtc/webrtc-ui/pom.xml  
  inflating: /opt/Restcomm-JBoss-AS7/standalone/deployments/olympus-exploded.war/META-INF/maven/org.mobicents.webrtc/webrtc-ui/pom.properties  
cp: cannot create regular file ‘’: No such file or directory
RestComm configured Properly!
*** Running /etc/my_init.d/restcommtoolsconf_loadbalancer.sh...
*** Running /etc/rc.local...
*** Booting runit daemon...
*** Runit started as PID 730
Jun 21 10:02:23 0abe6a52aabd syslog-ng[738]: syslog-ng starting up; version='3.5.3'
BASEDIR: /opt/Restcomm-JBoss-AS7/bin/restcomm
RESTCOMM_HOME: /opt/Restcomm-JBoss-AS7
Looking for the appropriate interface
Looking for the IP Address, subnet, network and broadcast_address

RestComm automatic configuration started:
Executing configuration file /opt/Restcomm-JBoss-AS7/bin/restcomm/autoconfig.d/config-dialogic-xms.sh...
Configuring Dialogic XMS...MS_MODE: mms
...activated Dialogic XMS...
...finished configuring Dialogic XMS!
Finished executing configuration file /opt/Restcomm-JBoss-AS7/bin/restcomm/autoconfig.d/config-dialogic-xms.sh!

Executing configuration file /opt/Restcomm-JBoss-AS7/bin/restcomm/autoconfig.d/config-jboss-as.sh...
Configuring JBoss AS...
...disabled JBoss splash screen...
Finished configuring JBoss AS!
Finished executing configuration file /opt/Restcomm-JBoss-AS7/bin/restcomm/autoconfig.d/config-jboss-as.sh!

Executing configuration file /opt/Restcomm-JBoss-AS7/bin/restcomm/autoconfig.d/config-load-balancer.sh...
Deactivated Load Balancer on SIP stack configuration file
Finished executing configuration file /opt/Restcomm-JBoss-AS7/bin/restcomm/autoconfig.d/config-load-balancer.sh!

Executing configuration file /opt/Restcomm-JBoss-AS7/bin/restcomm/autoconfig.d/config-mobicents-ms.sh...
TRUSTSTORE_FILE is not set
Configuring Mobicents Media Server... MS_ADDRESS  BIND_ADDRESS 172.17.0.3 NETWORK 172.17.0.0 SUBNET_MASK 255.255.0.0 RTP_LOW_PORT 65000 RTP_HIGH_PORT 65535
Configured UDP Manager
Updated log configuration
Finished configuring Mobicents Media Server!
Finished executing configuration file /opt/Restcomm-JBoss-AS7/bin/restcomm/autoconfig.d/config-mobicents-ms.sh!

Executing configuration file /opt/Restcomm-JBoss-AS7/bin/restcomm/autoconfig.d/config-restcomm.sh...
Configuring RestComm...
Updated mobicents-dar properties
Updated RestComm configuration
Configured Fax Service credentials
Configured Sms Aggregator using OUTBOUND PROXY 
Configured the Speech Recognizer
Configured Acapela Speech Synthesizer
Configured VoiceRSS Speech Synthesizer
Disabled TeleStax Proxy
Configured SMPP Account Details
Updated MSaddress
Configured RestComm!
Finished executing configuration file /opt/Restcomm-JBoss-AS7/bin/restcomm/autoconfig.d/config-restcomm.sh!

Executing configuration file /opt/Restcomm-JBoss-AS7/bin/restcomm/autoconfig.d/config-sip-connectors.sh...
Configuring Application Server...
Configured SIP Connectors and Bindings
Configured gather-statistics
TRUSTSTORE_FILE is not set
Finished configuring Application Server!
Finished executing configuration file /opt/Restcomm-JBoss-AS7/bin/restcomm/autoconfig.d/config-sip-connectors.sh!

Executing configuration file /opt/Restcomm-JBoss-AS7/bin/restcomm/autoconfig.d/create-mysql-datasource.sh...
--2017-06-21 10:02:24--  http://repo1.maven.org/maven2/mysql/mysql-connector-java/5.1.36/mysql-connector-java-5.1.36.jar
Resolving repo1.maven.org (repo1.maven.org)... 151.101.60.209
Connecting to repo1.maven.org (repo1.maven.org)|151.101.60.209|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 972007 (949K) [application/java-archive]
Saving to: ‘/tmp/mysql-connector-java-5.1.36.jar’

     0K .......... .......... .......... .......... ..........  5%  295K 3s
    50K .......... .......... .......... .......... .......... 10%  672K 2s
   100K .......... .......... .......... .......... .......... 15% 1.52M 1s
   150K .......... .......... .......... .......... .......... 21% 1.42M 1s
   200K .......... .......... .......... .......... .......... 26% 1.11M 1s
   250K .......... .......... .......... .......... .......... 31% 1.32M 1s
   300K .......... .......... .......... .......... .......... 36% 1.50M 1s
   350K .......... .......... .......... .......... .......... 42%  317K 1s
   400K .......... .......... .......... .......... .......... 47% 2.82M 1s
   450K .......... .......... .......... .......... .......... 52% 18.4M 1s
   500K .......... .......... .......... .......... .......... 57%  134M 0s
   550K .......... .......... .......... .......... .......... 63%  569K 0s
   600K .......... .......... .......... .......... .......... 68%  943K 0s
   650K .......... .......... .......... .......... .......... 73% 1.19M 0s
   700K .......... .......... .......... .......... .......... 79%  424K 0s
   750K .......... .......... .......... .......... .......... 84% 1.07M 0s
   800K .......... .......... .......... .......... .......... 89% 2.56M 0s
   850K .......... .......... .......... .......... .......... 94% 2.73M 0s
   900K .......... .......... .......... .......... ......... 100%  105M=1.0s

2017-06-21 10:02:41 (964 KB/s) - ‘/tmp/mysql-connector-java-5.1.36.jar’ saved [972007/972007]

create mysql datasource done
Finished executing configuration file /opt/Restcomm-JBoss-AS7/bin/restcomm/autoconfig.d/create-mysql-datasource.sh!

Executing configuration file /opt/Restcomm-JBoss-AS7/bin/restcomm/autoconfig.d/reconfigure-mysqldb.sh...
Finished executing configuration file /opt/Restcomm-JBoss-AS7/bin/restcomm/autoconfig.d/reconfigure-mysqldb.sh!

RestComm automatic configuration finished!

Starting Mobicents Media Server...
Media Server will bind to the IP Address: 172.17.0.3
...Mobicents Media Server started running on screen "mms"!
TelScale RestComm started running on standalone mode. Screen session: restcomm.
Using IP Address: 172.17.0.3
=========================================================================

  JBoss Bootstrap Environment

  JBOSS_HOME: /opt/Restcomm-JBoss-AS7

  JAVA: java

  JAVA_OPTS:  -server -XX:+UseCompressedOops -Xms64m -Xmx512m -XX:MaxPermSize=256m -Djava.net.preferIPv4Stack=true -Djboss.modules.system.pkgs=org.jboss.byteman -Djava.awt.headless=true -Djboss.server.default.config=standalone-sip.xml

=========================================================================

10:02:42,925 INFO  [org.jboss.modules] (main) JBoss Modules version 1.2.0.CR1
10:02:43,189 INFO  [org.jboss.msc] (main) JBoss MSC version 1.0.4.GA
10:02:43,380 INFO  [org.jboss.as] (MSC service thread 1-3) JBAS015899: JBoss AS 7.2.0.Final "Janus" starting
10:02:45,860 INFO  [org.jboss.as.server.deployment.scanner] (DeploymentScanner-threads - 1) JBAS015003: Found olympus.war in deployment directory. To trigger deployment create a file called olympus.war.dodeploy
10:02:45,862 INFO  [org.jboss.as.server.deployment.scanner] (DeploymentScanner-threads - 1) JBAS015003: Found restcomm-rvd.war in deployment directory. To trigger deployment create a file called restcomm-rvd.war.dodeploy
10:02:45,863 INFO  [org.jboss.as.server.deployment.scanner] (DeploymentScanner-threads - 1) JBAS015003: Found restcomm.war in deployment directory. To trigger deployment create a file called restcomm.war.dodeploy
10:02:45,898 INFO  [org.jboss.as.server] (Controller Boot Thread) JBAS015888: Creating http management service using socket-binding (management-http)
10:02:45,907 INFO  [org.xnio] (MSC service thread 1-2) XNIO Version 3.0.7.GA
10:02:45,937 INFO  [org.xnio.nio] (MSC service thread 1-2) XNIO NIO Implementation Version 3.0.7.GA
10:02:45,966 INFO  [org.jboss.remoting] (MSC service thread 1-2) JBoss Remoting version 3.2.14.GA
10:02:46,031 INFO  [org.jboss.as.clustering.infinispan] (ServerService Thread Pool -- 30) JBAS010280: Activating Infinispan subsystem.
10:02:46,074 INFO  [org.jboss.as.connector.logging] (MSC service thread 1-3) JBAS010408: Starting JCA Subsystem (JBoss IronJacamar 1.0.15.Final)
10:02:46,117 INFO  [org.jboss.as.jsf] (ServerService Thread Pool -- 36) JBAS012605: Activated the following JSF Implementations: [main, 1.2]
10:02:46,132 INFO  [org.jboss.as.naming] (ServerService Thread Pool -- 38) JBAS011800: Activating Naming Subsystem
10:02:46,177 INFO  [org.jboss.as.security] (ServerService Thread Pool -- 43) JBAS013171: Activating Security Subsystem
10:02:46,204 INFO  [org.jboss.as.webservices] (ServerService Thread Pool -- 47) JBAS015537: Activating WebServices Extension
10:02:46,336 INFO  [org.jboss.as.security] (MSC service thread 1-2) JBAS013170: Current PicketBox version=4.0.15.Final
10:02:46,342 INFO  [org.jboss.as.naming] (MSC service thread 1-4) JBAS011802: Starting Naming Service
10:02:46,543 INFO  [org.jboss.as.connector.subsystems.datasources] (ServerService Thread Pool -- 26) JBAS010404: Deploying non-JDBC-compliant driver class com.mysql.jdbc.Driver (version 5.1)
10:02:46,682 INFO  [org.jboss.as.mail.extension] (MSC service thread 1-2) JBAS015400: Bound mail session [java:jboss/mail/Default]
10:02:46,751 INFO  [org.jboss.as.connector.subsystems.datasources] (ServerService Thread Pool -- 26) JBAS010403: Deploying JDBC-compliant driver class org.h2.Driver (version 1.3)
10:02:47,732 INFO  [org.jboss.ws.common.management] (MSC service thread 1-4) JBWS022052: Starting JBoss Web Services - Stack CXF Server 4.1.3.Final
10:02:47,905 INFO  [org.mobicents.servlet.sip.catalina.SipStandardService] (MSC service thread 1-3) Pretty encoding of headers enabled ? true
10:02:47,936 INFO  [org.mobicents.servlet.sip.catalina.SipStandardService] (MSC service thread 1-3) Sip Stack path name : org.mobicents.ext
10:02:48,001 INFO  [org.apache.coyote.http11] (MSC service thread 1-2) JBWEB003001: Coyote HTTP/1.1 initializing on : http-/172.17.0.3:8080
10:02:48,113 INFO  [org.apache.coyote.http11] (MSC service thread 1-2) JBWEB003000: Coyote HTTP/1.1 starting on: http-/172.17.0.3:8080
10:02:48,371 INFO  [org.mobicents.servlet.sip.core.SipApplicationDispatcherImpl] (MSC service thread 1-3) DNSServerLocator will be using timeout of 1 seconds 
10:02:48,377 INFO  [org.mobicents.ext.javax.sip.dns.DefaultDNSLookupPerformer] (MSC service thread 1-3) DefaultDNSLookupPerformer will be using timeout of 1 seconds 
10:02:48,405 INFO  [org.mobicents.servlet.sip.catalina.SipStandardService] (MSC service thread 1-3) Mobicents Sip Servlets sip stack properties : {gov.nist.javax.sip.MESSAGE_PROCESSOR_FACTORY=gov.nist.javax.sip.stack.NioMessageProcessorFactory, gov.nist.javax.sip.DEBUG_LOG=/opt/Restcomm-JBoss-AS7/standalone/tmp/logs/mss-jsip-debuglog.txt, gov.nist.javax.sip.PASS_INVITE_NON_2XX_ACK_TO_LISTENER=true, gov.nist.javax.sip.MAX_LISTENER_RESPONSE_TIME=120, gov.nist.javax.sip.LOG4J_LOGGER_NAME=gov.nist, javax.sip.AUTOMATIC_DIALOG_SUPPORT=off, gov.nist.javax.sip.SERVER_LOG=/opt/Restcomm-JBoss-AS7/standalone/tmp/logs/mss-jsip-messages.xml, org.mobicents.ha.javax.sip.LOCAL_HTTP_PORT=8080, gov.nist.javax.sip.REENTRANT_LISTENER=true, gov.nist.javax.sip.MAX_FORK_TIME_SECONDS=0, org.mobicents.ext.javax.sip.congestion.CONGESTION_CONTROL_MONITOR_INTERVAL=-1, org.mobicents.ha.javax.sip.REPLICATE_APPLICATION_DATA=false, gov.nist.javax.sip.RECEIVE_UDP_BUFFER_SIZE=131072, javax.sip.STACK_NAME=Restcomm-SIP-Servlets, org.mobicents.servlet.sip.USER_AGENT_HEADER=Restcomm 7.6.0.879, gov.nist.javax.sip.TCP_POST_PARSING_THREAD_POOL_SIZE=30, gov.nist.javax.sip.LOOSE_DIALOG_VALIDATION=true, org.mobicents.ha.javax.sip.REPLICATION_STRATEGY=ConfirmedDialog, org.mobicents.servlet.sip.SERVER_HEADER=Restcomm 7.6.0.879, gov.nist.javax.sip.AGGRESSIVE_CLEANUP=true, gov.nist.javax.sip.TRACE_LEVEL=LOG4J, org.mobicents.ext.javax.sip.congestion.SIP_SCANNERS=sipvicious,sipcli,friendly-scanner,VaxSIPUserAgent, gov.nist.javax.sip.MAX_MESSAGE_SIZE=40000, gov.nist.javax.sip.AUTOMATIC_DIALOG_ERROR_HANDLING=false, gov.nist.javax.sip.SEND_UDP_BUFFER_SIZE=131072, gov.nist.javax.sip.SIP_MESSAGE_VALVE=org.mobicents.ext.javax.sip.congestion.CongestionControlMessageValve, gov.nist.javax.sip.LOG_MESSAGE_CONTENT=true, gov.nist.javax.sip.THREAD_POOL_SIZE=512, gov.nist.javax.sip.DELIVER_UNSOLICITED_NOTIFY=true, javax.sip.ROUTER_PATH=org.mobicents.ext.javax.sip.dns.DNSAwareRouter, org.mobicents.ha.javax.sip.LOCAL_SSL_PORT=8443}
10:02:48,653 INFO  [gov.nist.javax.sip.stack.SIPTransactionStack] (MSC service thread 1-3) value -1000 will be used for reliableConnectionKeepAliveTimeout stack property
10:02:48,677 INFO  [gov.nist.javax.sip.stack.SIPTransactionStack] (MSC service thread 1-3) Setting Stack Thread priority to 10
10:02:48,697 WARN  [gov.nist.javax.sip.SipStackImpl] (MSC service thread 1-3) using default tls security policy
10:02:48,730 WARN  [gov.nist.core.net.DefaultSecurityManagerProvider] (MSC service thread 1-3) Using default keystore type jks
10:02:48,731 WARN  [gov.nist.core.net.DefaultSecurityManagerProvider] (MSC service thread 1-3) TLS server settings will be inactive - TLS key store will use JVM defaults keyStoreType=jks javax.net.ssl.keyStore=null javax.net.ssl.keyStorePassword=null
10:02:48,731 INFO  [gov.nist.core.net.DefaultSecurityManagerProvider] (MSC service thread 1-3) javax.net.ssl.trustStorePassword is null, using the password passed through javax.net.ssl.keyStorePassword
10:02:48,732 WARN  [gov.nist.core.net.DefaultSecurityManagerProvider] (MSC service thread 1-3) Using default truststore type jks
10:02:48,733 WARN  [gov.nist.core.net.DefaultSecurityManagerProvider] (MSC service thread 1-3) TLS trust settings will be inactive - TLS trust store will use JVM defaults. trustStoreType=jks javax.net.ssl.trustStore=null javax.net.ssl.trustStorePassword=null
10:02:48,919 INFO  [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-4) JBAS010400: Bound data source [java:/MySqlDS]
10:02:48,925 INFO  [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-1) JBAS010400: Bound data source [java:jboss/datasources/ExampleDS]
10:02:49,223 INFO  [org.jboss.as.remoting] (MSC service thread 1-2) JBAS017100: Listening on 172.17.0.3:4447
10:02:49,234 INFO  [org.jboss.as.remoting] (MSC service thread 1-4) JBAS017100: Listening on 172.17.0.3:9999
10:02:49,308 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015876: Starting deployment of "olympus.war" (runtime-name: "olympus.war")
10:02:49,313 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-2) JBAS015876: Starting deployment of "restcomm-rvd.war" (runtime-name: "restcomm-rvd.war")
10:02:49,333 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015876: Starting deployment of "restcomm-management.war" (runtime-name: "restcomm-management.war")
10:02:49,317 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-2) JBAS015876: Starting deployment of "RvdExternalServicesDemo.war" (runtime-name: "RvdExternalServicesDemo.war")
10:02:49,340 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015876: Starting deployment of "jolokia.war" (runtime-name: "jolokia.war")
10:02:49,343 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015876: Starting deployment of "restcomm.war" (runtime-name: "restcomm.war")
10:02:49,345 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-2) JBAS015876: Starting deployment of "sip-servlets-management.war" (runtime-name: "sip-servlets-management.war")
10:02:49,369 INFO  [org.jboss.as.server.deployment.scanner] (MSC service thread 1-4) JBAS015012: Started FileSystemDeploymentService for directory /opt/Restcomm-JBoss-AS7/standalone/deployments
10:02:49,621 INFO  [gov.nist.javax.sip.stack.timers.DefaultSipTimer] (MSC service thread 1-3) the sip stack timer gov.nist.javax.sip.stack.timers.DefaultSipTimer has been started
10:02:49,729 INFO  [org.mobicents.ext.javax.sip.congestion.CongestionControlMessageValve] (MSC service thread 1-3) Initializing congestion control valve
10:02:49,733 INFO  [org.mobicents.ext.javax.sip.congestion.CongestionControlMessageValve] (MSC service thread 1-3) No Congestion control background task started since the checking interval is equals to -1 milliseconds.
10:02:49,739 INFO  [org.mobicents.ext.javax.sip.SipStackImpl] (MSC service thread 1-3) SIP Stack send trying right away false
10:02:49,754 INFO  [org.mobicents.servlet.sip.catalina.SipStandardService] (MSC service thread 1-3) no AddressResolver will be used since none has been specified.
10:02:49,787 INFO  [org.mobicents.servlet.sip.catalina.SipStandardService] (MSC service thread 1-3) SIP stack initialized
10:02:49,789 INFO  [org.mobicents.servlet.sip.core.SipApplicationDispatcherImpl] (MSC service thread 1-3) SIP Base Timer Interval set to 500ms
10:02:49,789 INFO  [org.mobicents.servlet.sip.core.SipApplicationDispatcherImpl] (MSC service thread 1-3) SIP Timer T2 Interval set to 4000ms
10:02:49,790 INFO  [org.mobicents.servlet.sip.core.SipApplicationDispatcherImpl] (MSC service thread 1-3) SIP Timer T4 Interval set to 5000ms
10:02:49,801 INFO  [org.mobicents.servlet.sip.core.SipApplicationDispatcherImpl] (MSC service thread 1-3) SIP Timer D Interval set to 32000ms
10:02:49,805 INFO  [org.mobicents.servlet.sip.core.SipApplicationDispatcherImpl] (MSC service thread 1-3) Memory threshold set to 85%
10:02:49,807 INFO  [org.mobicents.servlet.sip.core.SipApplicationDispatcherImpl] (MSC service thread 1-3) Back To Normal Memory threshold set to 75%
10:02:49,842 INFO  [org.mobicents.servlet.sip.core.SipApplicationDispatcherImpl] (MSC service thread 1-3) Congestion Control policy set to ErrorResponse
10:02:49,848 INFO  [org.mobicents.servlet.sip.core.SipApplicationDispatcherImpl] (MSC service thread 1-3) Queue Size set to 1500
10:02:49,851 INFO  [org.mobicents.servlet.sip.core.SipApplicationDispatcherImpl] (MSC service thread 1-3) Back To Normal Queue Size set to 1300
10:02:49,853 INFO  [org.mobicents.servlet.sip.core.SipApplicationDispatcherImpl] (MSC service thread 1-3) Gathering Statistics set to true
10:02:49,854 INFO  [org.mobicents.servlet.sip.core.SipApplicationDispatcherImpl] (MSC service thread 1-3) Container wide Concurrency Control set to SipApplicationSession
10:02:49,858 INFO  [org.mobicents.servlet.sip.core.SipApplicationDispatcherImpl] (MSC service thread 1-3) Bypass Request Executor enabled ?true
10:02:49,859 INFO  [org.mobicents.servlet.sip.core.SipApplicationDispatcherImpl] (MSC service thread 1-3) Bypass Response Executor enabled ?true
10:02:49,862 INFO  [org.mobicents.servlet.sip.core.SipApplicationDispatcherImpl] (MSC service thread 1-3) Using the Service Provider Framework to load the application router provider
10:02:49,899 INFO  [org.mobicents.servlet.sip.core.SipApplicationDispatcherImpl] (MSC service thread 1-3) org.mobicents.servlet.sip.core.SipApplicationDispatcherImpl@2abdfb5e Using the following Application Router instance: org.mobicents.servlet.sip.router.DefaultApplicationRouter@1ec1ee3e
10:02:49,923 INFO  [org.mobicents.servlet.sip.core.SipApplicationDispatcherImpl] (MSC service thread 1-3) Using default MobicentsDNSResolver since none has been specified.
10:02:49,951 INFO  [org.mobicents.servlet.sip.core.SipApplicationDispatcherImpl] (MSC service thread 1-3) Sip Application dispatcher registered under following name jboss.sip:type=SipApplicationDispatcher
10:02:49,956 INFO  [org.mobicents.servlet.sip.core.SipApplicationDispatcherImpl] (MSC service thread 1-3) bypassRequestExecutor ? true
10:02:49,958 INFO  [org.mobicents.servlet.sip.core.SipApplicationDispatcherImpl] (MSC service thread 1-3) bypassResponseExecutor ? true
10:02:50,026 INFO  [org.mobicents.servlet.sip.core.SipApplicationDispatcherImpl] (MSC service thread 1-3) AsynchronousThreadPoolExecutor size is 15
10:02:50,036 INFO  [org.mobicents.servlet.sip.core.SipApplicationDispatcherImpl] (MSC service thread 1-3) No Congestion control background task started since the checking interval is equals to -1 milliseconds.
10:02:50,040 INFO  [org.mobicents.servlet.sip.core.Version] (MSC service thread 1-3) Release ID: (Restcomm) Sip Servlets 3.1.695 (build: Git Hash=r4642ff6ee7cab452f08a24331d1f8eb93cffe47a date=201604231628)
10:02:50,042 INFO  [org.mobicents.servlet.sip.core.Version] (MSC service thread 1-3) Restcomm Sip Servlets 3.1.695 (build: Git Hash=r4642ff6ee7cab452f08a24331d1f8eb93cffe47a date=201604231628) Started.
10:02:50,043 INFO  [org.mobicents.servlet.sip.core.Version] (MSC service thread 1-3) 
==============================================================================
==                                                                          ==
==              Thank you for running Restcomm Community code               ==
==              		 that is licensed under AGPL	            ==
==   For Commercial Grade Support, please request a TelScale Subscription   ==
==                         http://www.telestax.com/                         ==
==                                                                          ==
==============================================================================

10:02:51,390 INFO  [org.mobicents.servlet.sip.catalina.SipProtocolHandler] (MSC service thread 1-3) Sip Connector started on ip address: 172.17.0.3, port 5082, transport ws, useStun false, stunAddress null, stunPort : -1, useStaticAddress: true, staticServerAddress 172.17.0.3, staticServerPort 5082
10:02:51,386 INFO  [org.mobicents.servlet.sip.catalina.SipProtocolHandler] (MSC service thread 1-1) Sip Connector started on ip address: 172.17.0.3, port 5080, transport udp, useStun false, stunAddress null, stunPort : -1, useStaticAddress: true, staticServerAddress 172.17.0.3, staticServerPort 5080
10:02:52,035 INFO  [org.mobicents.servlet.sip.catalina.SipProtocolHandler] (MSC service thread 1-1) Sip Connector started on ip address: 172.17.0.3, port 5083, transport wss, useStun false, stunAddress null, stunPort : -1, useStaticAddress: true, staticServerAddress 172.17.0.3, staticServerPort 5083
10:02:52,181 INFO  [org.mobicents.servlet.sip.catalina.SipProtocolHandler] (MSC service thread 1-3) Sip Connector started on ip address: 172.17.0.3, port 5081, transport tls, useStun false, stunAddress null, stunPort : -1, useStaticAddress: true, staticServerAddress 172.17.0.3, staticServerPort 5081
10:02:52,232 INFO  [org.mobicents.servlet.sip.catalina.SipProtocolHandler] (MSC service thread 1-1) Sip Connector started on ip address: 172.17.0.3, port 5080, transport tcp, useStun false, stunAddress null, stunPort : -1, useStaticAddress: true, staticServerAddress 172.17.0.3, staticServerPort 5080
10:02:53,600 INFO  [org.jboss.as.connector.deployers.jdbc] (MSC service thread 1-3) JBAS010403: Deploying JDBC-compliant driver class org.hsqldb.jdbc.JDBCDriver (version 2.3)
10:02:54,024 INFO  [org.jboss.web] (ServerService Thread Pool -- 56) JBAS018210: Register web context: /olympus
10:02:54,025 INFO  [org.jboss.web] (ServerService Thread Pool -- 53) JBAS018210: Register web context: /RvdExternalServicesDemo
10:02:54,027 INFO  [org.jboss.web] (ServerService Thread Pool -- 55) JBAS018210: Register web context: /sip-servlets-management
10:02:54,052 INFO  [org.jboss.web] (ServerService Thread Pool -- 54) JBAS018210: Register web context: 
10:02:54,147 INFO  [org.jboss.web] (ServerService Thread Pool -- 52) JBAS018210: Register web context: /jolokia
10:02:54,394 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[default-host].[/jolokia]] (ServerService Thread Pool -- 52) jolokia-agent: No access restrictor found at classpath:/jolokia-access.xml, access to all MBeans is allowed
10:02:54,660 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015893: Encountered invalid class name 'org.xmlpull.mxp1.MXParser,org.xmlpull.mxp1_serializer.MXSerializer' for service type 'org.xmlpull.v1.XmlPullParserFactory'
10:02:54,689 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015893: Encountered invalid class name 'com.sun.jersey.server.impl.model.parameter.multivalued.StringReaderProviders$TypeFromStringEnum' for service type 'com.sun.jersey.spi.StringReaderProvider'
10:02:54,690 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015893: Encountered invalid class name 'com.sun.jersey.server.impl.model.parameter.multivalued.StringReaderProviders$TypeValueOf' for service type 'com.sun.jersey.spi.StringReaderProvider'
10:02:54,691 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015893: Encountered invalid class name 'com.sun.jersey.server.impl.model.parameter.multivalued.StringReaderProviders$TypeFromString' for service type 'com.sun.jersey.spi.StringReaderProvider'
10:02:54,693 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015893: Encountered invalid class name 'com.sun.jersey.server.impl.model.parameter.multivalued.StringReaderProviders$StringConstructor' for service type 'com.sun.jersey.spi.StringReaderProvider'
10:02:54,694 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015893: Encountered invalid class name 'com.sun.jersey.server.impl.model.parameter.multivalued.StringReaderProviders$DateProvider' for service type 'com.sun.jersey.spi.StringReaderProvider'
10:02:54,696 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015893: Encountered invalid class name 'com.sun.jersey.server.impl.model.parameter.multivalued.JAXBStringReaderProviders$RootElementProvider' for service type 'com.sun.jersey.spi.StringReaderProvider'
10:02:54,710 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLRootElementProvider$App' for service type 'javax.ws.rs.ext.MessageBodyReader'
10:02:54,711 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLRootElementProvider$Text' for service type 'javax.ws.rs.ext.MessageBodyReader'
10:02:54,711 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLRootElementProvider$General' for service type 'javax.ws.rs.ext.MessageBodyReader'
10:02:54,712 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLJAXBElementProvider$App' for service type 'javax.ws.rs.ext.MessageBodyReader'
10:02:54,717 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLJAXBElementProvider$Text' for service type 'javax.ws.rs.ext.MessageBodyReader'
10:02:54,720 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLJAXBElementProvider$General' for service type 'javax.ws.rs.ext.MessageBodyReader'
10:02:54,722 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLListElementProvider$App' for service type 'javax.ws.rs.ext.MessageBodyReader'
10:02:54,723 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLListElementProvider$Text' for service type 'javax.ws.rs.ext.MessageBodyReader'
10:02:54,726 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLListElementProvider$General' for service type 'javax.ws.rs.ext.MessageBodyReader'
10:02:54,727 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.SourceProvider$StreamSourceReader' for service type 'javax.ws.rs.ext.MessageBodyReader'
10:02:54,732 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.SourceProvider$SAXSourceReader' for service type 'javax.ws.rs.ext.MessageBodyReader'
10:02:54,734 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.SourceProvider$DOMSourceReader' for service type 'javax.ws.rs.ext.MessageBodyReader'
10:02:54,741 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLRootObjectProvider$App' for service type 'javax.ws.rs.ext.MessageBodyReader'
10:02:54,744 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLRootObjectProvider$Text' for service type 'javax.ws.rs.ext.MessageBodyReader'
10:02:54,748 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLRootObjectProvider$General' for service type 'javax.ws.rs.ext.MessageBodyReader'
10:02:54,755 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLRootElementProvider$App' for service type 'javax.ws.rs.ext.MessageBodyWriter'
10:02:54,756 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLRootElementProvider$Text' for service type 'javax.ws.rs.ext.MessageBodyWriter'
10:02:54,760 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLRootElementProvider$General' for service type 'javax.ws.rs.ext.MessageBodyWriter'
10:02:54,762 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLJAXBElementProvider$App' for service type 'javax.ws.rs.ext.MessageBodyWriter'
10:02:54,763 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLJAXBElementProvider$Text' for service type 'javax.ws.rs.ext.MessageBodyWriter'
10:02:54,768 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLJAXBElementProvider$General' for service type 'javax.ws.rs.ext.MessageBodyWriter'
10:02:54,771 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLListElementProvider$App' for service type 'javax.ws.rs.ext.MessageBodyWriter'
10:02:54,772 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLListElementProvider$Text' for service type 'javax.ws.rs.ext.MessageBodyWriter'
10:02:54,775 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLListElementProvider$General' for service type 'javax.ws.rs.ext.MessageBodyWriter'
10:02:54,777 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.SourceProvider$SourceWriter' for service type 'javax.ws.rs.ext.MessageBodyWriter'
10:02:55,873 INFO  [org.jboss.as.connector.deployers.jdbc] (MSC service thread 1-2) JBAS010403: Deploying JDBC-compliant driver class org.hsqldb.jdbc.JDBCDriver (version 2.3)
10:02:55,874 WARN  [org.jboss.weld.deployer] (MSC service thread 1-2) JBAS016012: Deployment deployment "restcomm-rvd.war" contains CDI annotations but beans.xml was not found.
10:02:55,948 INFO  [org.jboss.web] (ServerService Thread Pool -- 55) JBAS018210: Register web context: /restcomm-rvd
10:02:56,453 INFO  [com.sun.jersey.server.impl.application.WebApplicationImpl] (ServerService Thread Pool -- 55) Initiating Jersey application, version 'Jersey: 1.13 06/29/2012 05:14 PM'
10:02:56,606 INFO  [com.sun.jersey.server.impl.application.DeferredResourceConfig] (ServerService Thread Pool -- 55) Instantiated the Application class org.mobicents.servlet.restcomm.rvd.bootstrap.RvdRestApplication
10:02:57,787 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015960: Class Path entry activation.jar in /opt/Restcomm-JBoss-AS7/standalone/deployments/restcomm.war/WEB-INF/lib/mail-1.4.jar  does not point to a valid jar for a Class-Path reference.
10:02:57,935 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015893: Encountered invalid class name 'org.xmlpull.mxp1.MXParser,org.xmlpull.mxp1_serializer.MXSerializer' for service type 'org.xmlpull.v1.XmlPullParserFactory'
10:02:57,947 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015893: Encountered invalid class name 'com.sun.jersey.server.impl.model.parameter.multivalued.StringReaderProviders$TypeFromStringEnum' for service type 'com.sun.jersey.spi.StringReaderProvider'
10:02:57,949 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015893: Encountered invalid class name 'com.sun.jersey.server.impl.model.parameter.multivalued.StringReaderProviders$TypeValueOf' for service type 'com.sun.jersey.spi.StringReaderProvider'
10:02:57,952 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015893: Encountered invalid class name 'com.sun.jersey.server.impl.model.parameter.multivalued.StringReaderProviders$TypeFromString' for service type 'com.sun.jersey.spi.StringReaderProvider'
10:02:57,953 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015893: Encountered invalid class name 'com.sun.jersey.server.impl.model.parameter.multivalued.StringReaderProviders$StringConstructor' for service type 'com.sun.jersey.spi.StringReaderProvider'
10:02:57,955 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015893: Encountered invalid class name 'com.sun.jersey.server.impl.model.parameter.multivalued.StringReaderProviders$DateProvider' for service type 'com.sun.jersey.spi.StringReaderProvider'
10:02:57,957 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015893: Encountered invalid class name 'com.sun.jersey.server.impl.model.parameter.multivalued.JAXBStringReaderProviders$RootElementProvider' for service type 'com.sun.jersey.spi.StringReaderProvider'
10:02:57,968 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLRootElementProvider$App' for service type 'javax.ws.rs.ext.MessageBodyReader'
10:02:57,970 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLRootElementProvider$Text' for service type 'javax.ws.rs.ext.MessageBodyReader'
10:02:57,972 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLRootElementProvider$General' for service type 'javax.ws.rs.ext.MessageBodyReader'
10:02:57,975 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLJAXBElementProvider$App' for service type 'javax.ws.rs.ext.MessageBodyReader'
10:02:57,985 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLJAXBElementProvider$Text' for service type 'javax.ws.rs.ext.MessageBodyReader'
10:02:57,991 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLJAXBElementProvider$General' for service type 'javax.ws.rs.ext.MessageBodyReader'
10:02:57,996 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLListElementProvider$App' for service type 'javax.ws.rs.ext.MessageBodyReader'
10:02:57,999 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLListElementProvider$Text' for service type 'javax.ws.rs.ext.MessageBodyReader'
10:02:58,002 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLListElementProvider$General' for service type 'javax.ws.rs.ext.MessageBodyReader'
10:02:58,004 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.SourceProvider$StreamSourceReader' for service type 'javax.ws.rs.ext.MessageBodyReader'
10:02:58,008 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.SourceProvider$SAXSourceReader' for service type 'javax.ws.rs.ext.MessageBodyReader'
10:02:58,011 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.SourceProvider$DOMSourceReader' for service type 'javax.ws.rs.ext.MessageBodyReader'
10:02:58,013 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLRootObjectProvider$App' for service type 'javax.ws.rs.ext.MessageBodyReader'
10:02:58,016 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLRootObjectProvider$Text' for service type 'javax.ws.rs.ext.MessageBodyReader'
10:02:58,018 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLRootObjectProvider$General' for service type 'javax.ws.rs.ext.MessageBodyReader'
10:02:58,022 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLRootElementProvider$App' for service type 'javax.ws.rs.ext.MessageBodyWriter'
10:02:58,028 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLRootElementProvider$Text' for service type 'javax.ws.rs.ext.MessageBodyWriter'
10:02:58,032 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLRootElementProvider$General' for service type 'javax.ws.rs.ext.MessageBodyWriter'
10:02:58,035 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLJAXBElementProvider$App' for service type 'javax.ws.rs.ext.MessageBodyWriter'
10:02:58,038 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLJAXBElementProvider$Text' for service type 'javax.ws.rs.ext.MessageBodyWriter'
10:02:58,043 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLJAXBElementProvider$General' for service type 'javax.ws.rs.ext.MessageBodyWriter'
10:02:58,044 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLListElementProvider$App' for service type 'javax.ws.rs.ext.MessageBodyWriter'
10:02:58,046 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLListElementProvider$Text' for service type 'javax.ws.rs.ext.MessageBodyWriter'
10:02:58,050 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLListElementProvider$General' for service type 'javax.ws.rs.ext.MessageBodyWriter'
10:02:58,051 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.SourceProvider$SourceWriter' for service type 'javax.ws.rs.ext.MessageBodyWriter'
10:02:58,593 INFO  [org.jboss.as.connector.deployers.jdbc] (MSC service thread 1-4) JBAS010403: Deploying JDBC-compliant driver class org.hsqldb.jdbc.JDBCDriver (version 2.3)
10:02:58,598 WARN  [org.jboss.weld.deployer] (MSC service thread 1-4) JBAS016012: Deployment deployment "restcomm.war" contains CDI annotations but beans.xml was not found.
10:02:58,651 INFO  [org.jboss.web] (ServerService Thread Pool -- 54) JBAS018210: Register web context: /restcomm
10:02:58,730 INFO  [org.mobicents.servlet.restcomm.rvd.bootstrap.RvdInitializationServlet] (ServerService Thread Pool -- 55) Initializing RVD. Project version: 1.6
10:02:58,730 INFO  [org.mobicents.servlet.restcomm.rvd.RvdConfiguration] (ServerService Thread Pool -- 55) contextRootPath: /opt/Restcomm-JBoss-AS7/standalone/deployments/restcomm-rvd.war/
10:02:58,741 INFO  [org.apache.shiro.web.servlet.IniShiroFilter] (ServerService Thread Pool -- 54) Null or empty configuration specified via 'config' init-param.  Checking path-based configuration.
10:02:58,929 INFO  [org.apache.shiro.realm.AuthorizingRealm] (ServerService Thread Pool -- 54) No cache or cacheManager properties have been set.  Authorization cache cannot be obtained.
10:02:58,938 WARN  [com.vendor.dialogic.javax.media.mscontrol.spi.DlgcDriver] (ServerService Thread Pool -- 54) Configuration File: DLG_PROPERTY_FILE not provided
10:02:58,946 INFO  [org.mobicents.servlet.sip.core.SipApplicationDispatcherImpl] (ServerService Thread Pool -- 54) No concurrency control mode for application RestComm , defaulting to the container wide one : SipApplicationSession
10:02:58,980 INFO  [org.mobicents.servlet.restcomm.rvd.RvdConfiguration] (ServerService Thread Pool -- 55) Using workspace at /opt/Restcomm-JBoss-AS7/standalone/deployments/restcomm-rvd.war/workspace
10:02:59,073 INFO  [org.mobicents.servlet.restcomm.rvd.upgrade.UpgradeService] (ServerService Thread Pool -- 55) --- All RVD projects are up to date
10:02:59,544 INFO  [akka.event.slf4j.Slf4jEventHandler] (RestComm-akka.actor.default-dispatcher-5) Slf4jEventHandler started
10:03:00,188 INFO  [com.telestax.servlet.MonitoringService] (RestComm-akka.actor.default-dispatcher-2) Monitoring Service started
10:03:00,192 INFO  [org.mobicents.servlet.restcomm.Bootstrapper] (ServerService Thread Pool -- 54) Monitoring Service created and stored in the context
10:03:00,206 WARN  [org.mobicents.protocols.mgcp.stack.JainMgcpStackImpl] (RestComm-akka.actor.default-dispatcher-5) Failed to locate properties file, using default values
10:03:00,216 INFO  [org.mobicents.protocols.mgcp.stack.JainMgcpStackImpl] (RestComm-akka.actor.default-dispatcher-5) Jain Mgcp stack bound to IP /172.17.0.3 and UDP port 2727
10:03:00,219 INFO  [stdout] (RestComm-akka.actor.default-dispatcher-5) Jain Mgcp stack bound to IP /172.17.0.3 and UDP port 2727
10:03:00,353 INFO  [akka.event.slf4j.Slf4jEventHandler] (default-akka.actor.default-dispatcher-5) Slf4jEventHandler started
10:03:00,456 INFO  [org.mobicents.servlet.restcomm.RvdProjectsMigrator] (ServerService Thread Pool -- 54) Workspace migration skipped in 2017-06-21 10:03:00.37
10:03:00,829 INFO  [hsqldb.db.HSQLDB5CCA1AEB56.ENGINE] (ServerService Thread Pool -- 54) open start - state modified
10:03:00,919 INFO  [hsqldb.db.HSQLDB5CCA1AEB56.ENGINE] (ServerService Thread Pool -- 54) checkpointClose start
10:03:00,982 INFO  [hsqldb.db.HSQLDB5CCA1AEB56.ENGINE] (ServerService Thread Pool -- 54) checkpointClose end
10:03:00,985 INFO  [hsqldb.db.HSQLDB5CCA1AEB56.ENGINE] (ServerService Thread Pool -- 54) Checkpoint start
10:03:00,985 INFO  [hsqldb.db.HSQLDB5CCA1AEB56.ENGINE] (ServerService Thread Pool -- 54) checkpointClose start
10:03:01,046 INFO  [hsqldb.db.HSQLDB5CCA1AEB56.ENGINE] (ServerService Thread Pool -- 54) checkpointClose end
10:03:01,047 INFO  [hsqldb.db.HSQLDB5CCA1AEB56.ENGINE] (ServerService Thread Pool -- 54) Checkpoint end - txts: 45
10:03:01,076 INFO  [org.mobicents.servlet.restcomm.Version] (ServerService Thread Pool -- 54) Release ID: (Mobicents) Restcomm 7.6.0.879 (build: Git Hash=rd1d68adede153a8bb7b8560002627baf285dd6f9 date=201604252011)
10:03:01,077 INFO  [org.mobicents.servlet.restcomm.Version] (ServerService Thread Pool -- 54) Mobicents Mobicents Restcomm 7.6.0.879 (build: Git Hash=rd1d68adede153a8bb7b8560002627baf285dd6f9 date=201604252011) Started.
10:03:01,077 INFO  [org.mobicents.servlet.restcomm.Version] (ServerService Thread Pool -- 54) =
==============================================================================
==                                                                          ==
==         Thank you for running Restcomm Community code                    ==
==   For Commercial Grade Support, please request a TelScale Subscription   ==
==                         http://www.telestax.com/                         ==
==                                                                          ==
==============================================================================

==============================================================================
==                                                                          ==
==                 Restcomm ships with G.729 codec.                         ==
==      G.729 includes patents from several companies and is licensed by    ==
==      Sipro Lab Telecom. Sipro Lab Telecom is the authorized Intellectual ==
==      Property Licensing Administrator for G.729 technology and patent    ==
==      pool. In a number of countries, the use of G.729 may require        ==
==      a license fee and/or royalty fee. For more information please visit ==
==                       http://www.sipro.com/G-729.html                    ==
==                                                                          ==
==============================================================================

10:03:01,079 INFO  [org.mobicents.servlet.restcomm.GenerateInstanceId] (ServerService Thread Pool -- 54) Host for InstanceId: 172.17.0.3:5080
10:03:01,095 INFO  [org.mobicents.servlet.restcomm.GenerateInstanceId] (ServerService Thread Pool -- 54) Restcomm Instance ID created: IDee527247d2ea404498c9f911fa1cce11/172.17.0.3:5080
10:03:01,098 INFO  [com.telestax.servlet.MonitoringService] (RestComm-akka.actor.default-dispatcher-5) MonitoringService Processing Message: "org.mobicents.servlet.restcomm.entities.InstanceId sender : class akka.actor.DeadLetterActorRef self is terminated: false
10:03:01,102 INFO  [org.mobicents.servlet.restcomm.telephony.CallManagerProxy] (ServerService Thread Pool -- 54) CallManagerProxy sip servlet initialized. Will proceed to create CallManager and UssdManager
10:03:01,128 INFO  [org.mobicents.servlet.restcomm.telephony.proxy.ProxyManagerProxy] (ServerService Thread Pool -- 54) ProxyManagerProxy sip servlet initialized. Will proceed to create ProxyManager
10:03:01,131 INFO  [org.mobicents.servlet.sip.core.SipApplicationDispatcherImpl] (ServerService Thread Pool -- 54) org.mobicents.servlet.sip.core.SipApplicationDispatcherImpl@2abdfb5e the following sip servlet application has been added : RestComm
10:03:01,132 INFO  [org.mobicents.servlet.sip.core.SipApplicationDispatcherImpl] (ServerService Thread Pool -- 54) It contains the following Sip Servlets : 
10:03:01,132 INFO  [org.mobicents.servlet.sip.core.SipApplicationDispatcherImpl] (ServerService Thread Pool -- 54) SipApplicationName : RestComm/ServletName : CallManager
10:03:01,133 INFO  [org.mobicents.servlet.sip.core.SipApplicationDispatcherImpl] (ServerService Thread Pool -- 54) SipApplicationName : RestComm/ServletName : ProxyManager
10:03:01,133 INFO  [org.mobicents.servlet.sip.core.SipApplicationDispatcherImpl] (ServerService Thread Pool -- 54) SipApplicationName : RestComm/ServletName : UserAgentManager
10:03:01,134 INFO  [org.mobicents.servlet.sip.core.SipApplicationDispatcherImpl] (ServerService Thread Pool -- 54) SipApplicationName : RestComm/ServletName : RestComm
10:03:01,134 INFO  [org.mobicents.servlet.sip.core.SipApplicationDispatcherImpl] (ServerService Thread Pool -- 54) SipApplicationName : RestComm/ServletName : SmsService
10:03:01,134 INFO  [org.mobicents.servlet.sip.core.SipApplicationDispatcherImpl] (ServerService Thread Pool -- 54) SipApplicationName : RestComm/ServletName : DlgcSipServlet
10:03:01,160 INFO  [org.mobicents.servlet.restcomm.telephony.proxy.ProxyManager] (RestComm-akka.actor.default-dispatcher-2) First time registration for the gateways
10:03:01,170 INFO  [org.mobicents.servlet.restcomm.telephony.proxy.ProxyManager] (RestComm-akka.actor.default-dispatcher-3) Proxy Manager started.
10:03:01,223 INFO  [org.jboss.as.server] (ServerService Thread Pool -- 27) JBAS018559: Deployed "restcomm-rvd.war" (runtime-name : "restcomm-rvd.war")
10:03:01,225 INFO  [org.jboss.as.server] (ServerService Thread Pool -- 27) JBAS018559: Deployed "olympus.war" (runtime-name : "olympus.war")
10:03:01,228 INFO  [org.jboss.as.server] (ServerService Thread Pool -- 27) JBAS018559: Deployed "jolokia.war" (runtime-name : "jolokia.war")
10:03:01,228 INFO  [org.jboss.as.server] (ServerService Thread Pool -- 27) JBAS018559: Deployed "sip-servlets-management.war" (runtime-name : "sip-servlets-management.war")
10:03:01,229 INFO  [org.jboss.as.server] (ServerService Thread Pool -- 27) JBAS018559: Deployed "RvdExternalServicesDemo.war" (runtime-name : "RvdExternalServicesDemo.war")
10:03:01,229 INFO  [org.jboss.as.server] (ServerService Thread Pool -- 27) JBAS018559: Deployed "restcomm.war" (runtime-name : "restcomm.war")
10:03:01,230 INFO  [org.jboss.as.server] (ServerService Thread Pool -- 27) JBAS018559: Deployed "restcomm-management.war" (runtime-name : "restcomm-management.war")
10:03:01,283 INFO  [org.jboss.as] (Controller Boot Thread) JBAS015961: Http management interface listening on http://172.17.0.3:9990/management
10:03:01,286 INFO  [org.jboss.as] (Controller Boot Thread) JBAS015951: Admin console listening on http://172.17.0.3:9990
10:03:01,287 INFO  [org.jboss.as] (Controller Boot Thread) JBAS015874: JBoss AS 7.2.0.Final "Janus" started in 19075ms - Started 479 of 561 services (80 services are passive or on-demand)

Here is the docker command used to run the container:

docker run -i -d --name=restcomm-yorgos -v logs:/var/log/restcomm/ -e RCADVCONF_SECURESSL="SELF" -e RCADVCONF_SSL_MODE="allowall" -e RCADVCONF_TRUSTSTORE_PASSWORD="bamies" -e RCADVCONF_TRUSTSTORE_ALIAS="restcomm" -e ENVCONFURL="https://raw.githubusercontent.com/RestComm/Restcomm-Docker/master/env_files/restcomm_env_locally.sh" -p 8080:8080 -p 8443:8443 -p 9990:9990 -p 5080:5080 -p 5081:5081 -p 5082:5082 -p 5083:5083 -p 5080:5080/udp -p 65000-65050:65000-65050/udp restcomm/restcomm:stable

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment