How to use a SipServlet with Spring such as the available on http://www.javaworld.com/article/2071781/java-web-development/sip-programming-for-the-java-developer.html?page=2 ?
I'm using Spring MVC
to map HTTP requests so for any given function I can use the annotation @RequestMapping
. Is there any way to map the requests like spring MVC?
To summarize: From where can I start to implement a SIP endpoint in my current Spring project that already serves as a HTTP endpoint?