DCMS FAQ

 Search:
Report Problem
Q1:  
Q2:  
Q1:  
What should I do if I encounter an error in the system?
A1:  

You can report it to us through the online issue tracking system.

Last Updated: 23/06/2010 04:26
Q2:  
Client shows "Data transfer interrupted" while connecting to DCMS Server
A2:  

Your pc is running a program which is using the same port as DCMS. To solve, you can edit {DCMS Installation Path}/tomcat/conf/server.xml. Search for the following text
 

<Connector port="443" protocol="HTTP/1.1" SSLEnabled="true"
           enableLoopups="false" disableUploadTimeout="true"
           maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
           debug="0" scheme="https" secure="true"
           clientAuth="false" sslProtocol="TLS"
           keystoreFile="conf/dcms.bin" keystorePass="yourkeypassword" URIEncoding="UTF-8"/>

Change the port number from 443 to other number. E.g.

<Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true"

Restart the DCMS server after saved the file

Last Updated: 24/06/2010 19:21