Package javax.sdp

Examples of javax.sdp.SessionDescription


        Response sipResponse = messageFactory.createResponse(response);
        System.out.println("Parsed SIP Response is :\n" + sipResponse);
        contentBytes = sipResponse.getRawContent();
        contentString = new String(contentBytes);
        SdpFactory sdpFactory = SdpFactory.getInstance();
        SessionDescription sd = sdpFactory.createSessionDescription(contentString);
        System.out.println("Parsed Content is :\n" + sd.toString());

    }
View Full Code Here

TOP

Related Classes of javax.sdp.SessionDescription

Copyright © 2018 www.massapicom. 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.