Search in sources :

Example 1 with SmppChannelException

use of com.cloudhopper.smpp.type.SmppChannelException in project load-balancer by RestComm.

the class ActiveStandbySmppTest method initialization.

@BeforeClass
public static void initialization() {
    boolean enableSslLbPort = false;
    boolean terminateTLSTraffic = true;
    // start lb
    balancer = new BalancerRunner();
    balancer.start(ConfigInit.getLbProperties(enableSslLbPort, terminateTLSTraffic, false));
    // start servers
    serverArray = new DefaultSmppServer[serverNumbers];
    serverHandlerArray = new DefaultSmppServerHandler[serverNumbers];
    for (int i = 0; i < serverNumbers; i++) {
        serverHandlerArray[i] = new DefaultSmppServerHandler();
        serverArray[i] = new DefaultSmppServer(ConfigInit.getSmppServerConfiguration(i, false), serverHandlerArray[i], executor, monitorExecutor);
        logger.info("Starting SMPP server...");
        try {
            serverArray[i].start();
        } catch (SmppChannelException e) {
            logger.info("SMPP server does not started");
            e.printStackTrace();
        }
        logger.info("SMPP server started");
    }
    sleep(2000);
}
Also used : DefaultSmppServer(com.cloudhopper.smpp.impl.DefaultSmppServer) BalancerRunner(org.mobicents.tools.sip.balancer.BalancerRunner) SmppChannelException(com.cloudhopper.smpp.type.SmppChannelException) BeforeClass(org.junit.BeforeClass)

Example 2 with SmppChannelException

use of com.cloudhopper.smpp.type.SmppChannelException in project load-balancer by RestComm.

the class ErroreResponseFromServerTest method initialization.

@BeforeClass
public static void initialization() {
    // start lb
    balancer = new BalancerRunner();
    LoadBalancerConfiguration lbConfig = ConfigInit.getLbPropertiesWithOneServer();
    lbConfig.getSmppConfiguration().setReconnectPeriod(2000);
    balancer.start(lbConfig);
    // start servers
    serverHandler = new DefaultSmppServerHandler();
    server = new DefaultSmppServer(ConfigInit.getSmppServerConfiguration(0, false), serverHandler, executor, monitorExecutor);
    logger.info("Starting SMPP server...");
    try {
        server.start();
    } catch (SmppChannelException e) {
        logger.info("SMPP server does not started");
        e.printStackTrace();
    }
    logger.info("SMPP server started");
    try {
        Thread.sleep(2000);
    } catch (InterruptedException e) {
        e.printStackTrace();
    }
}
Also used : DefaultSmppServer(com.cloudhopper.smpp.impl.DefaultSmppServer) BalancerRunner(org.mobicents.tools.sip.balancer.BalancerRunner) LoadBalancerConfiguration(org.mobicents.tools.configuration.LoadBalancerConfiguration) SmppChannelException(com.cloudhopper.smpp.type.SmppChannelException) BeforeClass(org.junit.BeforeClass)

Example 3 with SmppChannelException

use of com.cloudhopper.smpp.type.SmppChannelException in project load-balancer by RestComm.

the class RebindingWithOneServer method initialization.

@BeforeClass
public static void initialization() {
    // start lb
    balancer = new BalancerRunner();
    balancer.start(ConfigInit.getLbPropertiesWithOneServer());
    // start servers
    serverHandler = new DefaultSmppServerHandler();
    server = new DefaultSmppServer(ConfigInit.getSmppServerConfiguration(0, false), serverHandler, executor, monitorExecutor);
    logger.info("Starting SMPP server...");
    try {
        server.start();
    } catch (SmppChannelException e) {
        logger.info("SMPP server does not started");
        e.printStackTrace();
    }
    logger.info("SMPP server started");
    try {
        Thread.sleep(2000);
    } catch (InterruptedException e) {
        e.printStackTrace();
    }
}
Also used : DefaultSmppServer(com.cloudhopper.smpp.impl.DefaultSmppServer) BalancerRunner(org.mobicents.tools.sip.balancer.BalancerRunner) SmppChannelException(com.cloudhopper.smpp.type.SmppChannelException) BeforeClass(org.junit.BeforeClass)

Example 4 with SmppChannelException

use of com.cloudhopper.smpp.type.SmppChannelException in project load-balancer by RestComm.

the class RuntimeAddServerTest method initialization.

@BeforeClass
public static void initialization() {
    // start lb
    balancer = new BalancerRunner();
    pathToConfig = UrlRewriteTest.class.getClassLoader().getResource("lb-configuration-smpp.xml").getFile();
    balancer.start(pathToConfig);
    // start servers
    serverArray = new DefaultSmppServer[serverNumbers];
    serverHandlerArray = new DefaultSmppServerHandler[serverNumbers];
    for (int i = 0; i < serverNumbers; i++) {
        serverHandlerArray[i] = new DefaultSmppServerHandler();
        serverArray[i] = new DefaultSmppServer(ConfigInit.getSmppServerConfiguration(i, false), serverHandlerArray[i], executor, monitorExecutor);
        logger.info("Starting SMPP server...");
        try {
            serverArray[i].start();
        } catch (SmppChannelException e) {
            logger.info("SMPP server does not started");
            e.printStackTrace();
        }
        logger.info("SMPP server started");
    }
    try {
        Thread.sleep(2000);
    } catch (InterruptedException e) {
        e.printStackTrace();
    }
}
Also used : DefaultSmppServer(com.cloudhopper.smpp.impl.DefaultSmppServer) BalancerRunner(org.mobicents.tools.sip.balancer.BalancerRunner) UrlRewriteTest(org.mobicents.tools.http.balancer.UrlRewriteTest) SmppChannelException(com.cloudhopper.smpp.type.SmppChannelException) BeforeClass(org.junit.BeforeClass)

Example 5 with SmppChannelException

use of com.cloudhopper.smpp.type.SmppChannelException in project load-balancer by RestComm.

the class SpliterModeRebindTest method initialization.

@BeforeClass
public static void initialization() {
    boolean enableSslLbPort = false;
    boolean terminateTLSTraffic = true;
    // start lb
    balancer = new BalancerRunner();
    balancer.start(ConfigInit.getLbSpliterProperties(enableSslLbPort, terminateTLSTraffic));
    // start servers
    serverArray = new DefaultSmppServer[serverNumbers];
    for (int i = 0; i < serverNumbers; i++) {
        serverHandlerArray[i] = new DefaultSmppServerHandler();
        serverArray[i] = new DefaultSmppServer(ConfigInit.getSmppServerConfiguration(i, false), serverHandlerArray[i], executor, monitorExecutor);
        logger.info("Starting SMPP server...");
        try {
            serverArray[i].start();
        } catch (SmppChannelException e) {
            logger.info("SMPP server does not started");
            e.printStackTrace();
        }
        logger.info("SMPP server started");
    }
    try {
        Thread.sleep(2000);
    } catch (InterruptedException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
}
Also used : DefaultSmppServer(com.cloudhopper.smpp.impl.DefaultSmppServer) BalancerRunner(org.mobicents.tools.sip.balancer.BalancerRunner) SmppChannelException(com.cloudhopper.smpp.type.SmppChannelException) BeforeClass(org.junit.BeforeClass)

Aggregations

SmppChannelException (com.cloudhopper.smpp.type.SmppChannelException)22 BeforeClass (org.junit.BeforeClass)21 BalancerRunner (org.mobicents.tools.sip.balancer.BalancerRunner)21 DefaultSmppServer (com.cloudhopper.smpp.impl.DefaultSmppServer)19 LoadBalancerConfiguration (org.mobicents.tools.configuration.LoadBalancerConfiguration)3 SubmitSm (com.cloudhopper.smpp.pdu.SubmitSm)1 SubmitSmResp (com.cloudhopper.smpp.pdu.SubmitSmResp)1 Tlv (com.cloudhopper.smpp.tlv.Tlv)1 Address (com.cloudhopper.smpp.type.Address)1 UrlRewriteTest (org.mobicents.tools.http.balancer.UrlRewriteTest)1