Package org.apache.camel.component.sip.listener

Examples of org.apache.camel.component.sip.listener.SipSubscriptionListener


        super.doStart();
        Properties properties = configuration.createInitialProperties();
        sipStack = configuration.getSipFactory().createSipStack(properties);
       
        configuration.parseURI();
        sipSubscriptionListener = new SipSubscriptionListener(this);
        ListeningPoint listeningPoint =
            sipStack.createListeningPoint(configuration.getFromHost(), Integer.valueOf(configuration.getFromPort()).intValue(), configuration.getTransport());
        configuration.setListeningPoint(listeningPoint);
        provider = sipStack.createSipProvider(configuration.getListeningPoint());
        provider.addSipListener(sipSubscriptionListener);
View Full Code Here

TOP

Related Classes of org.apache.camel.component.sip.listener.SipSubscriptionListener

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.