У меня есть веб-сервис Spring Мыло, который работает хорошо.Но мой клиент js
var req = new XMLHttpRequest();
if(req.readyState == 4){....}
req.open('POST', 'http://localhost:8080/CurrencyService', true);
req.setRequestHeader("Content-Type", "text/xml");
req.send(msg);
бросает
405 Method Not Allowed - http://localhost:8080/CurrencyService
Как я могу это исправить?