diff --git a/DocService/sources/server.js b/DocService/sources/server.js index 222b11c7..2c975099 100644 --- a/DocService/sources/server.js +++ b/DocService/sources/server.js @@ -180,8 +180,8 @@ docsCoServer.install(server, () => { let forms = multer(); app.get('/coauthoring/CommandService.ashx', utils.checkClientIp, rawFileParser, docsCoServer.commandFromServer); - app.post('/coauthoring/CommandService.ashx', utils.checkClientIp, rawFileParser, - docsCoServer.commandFromServer); + app.post('/coauthoring/CommandService.ashx', utils.checkClientIp, rawFileParser, docsCoServer.commandFromServer); + app.post('/coauthoring/command', utils.checkClientIp, rawFileParser, docsCoServer.commandFromServer); app.get('/ConvertService.ashx', utils.checkClientIp, rawFileParser, converterService.convertXml); app.post('/ConvertService.ashx', utils.checkClientIp, rawFileParser, converterService.convertXml);