Package com.ericsson.ssa.sip

Examples of com.ericsson.ssa.sip.SipServletRequestImpl.createResponse()


   
    public void timeout(GeneralTimer timer) {
        SipServletRequestImpl req = this.getRequest();
        if(!req.isSentResponse()) {
            try {
                SipServletResponse resp = req.createResponse(408);
                resp.send();
                if (_log.isLoggable(Level.FINE)) {
                    _log.log(Level.FINE, "Sending 408, no action on requesr : "+req.toString());
                }
            } catch (IOException ex) {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.