~~Title: Deployment Descriptor for JVx~~ The configuration of a deployment descriptor is required for the integration of JVx in an application server. The deployment descriptor is usually an XML file called web.xml. For Apache Tomcat, for example, the file should be constructed as follows: Application name index.html index.jsp ServletServer com.sibvisions.rad.server.http.ServletServer ServletServer /services/Server DownloadServlet com.sibvisions.rad.server.http.DownloadServlet DownloadServlet /services/Download UploadServlet com.sibvisions.rad.server.http.UploadServlet UploadServlet /services/Upload Help com.sibvisions.rad.help.server.HelpServiceImpl Help /help/services/Help csv application/vnd.ms-excel As we can see here, configuration is limited to a minimum. The relevant server objects have to be used depending on the desired client options. * The Servlet server is used for the communication between client and server using http(s) protocoll * If data is uploaded to or downloaded from the server by the client, the UploadServlet and DownloadServlet are required as well * The HelpService is used when dynamic online help is available