public void start()

in modules/sms/src/main/java/org/apache/axis2/transport/sms/smpp/SMPPImplManager.java [69:85]


    public void start() {
        inSession = new SMPPSession();
        try {
            inSession.connectAndBind(smppTransportInDetails.getHost(), smppTransportInDetails.getPort(), new BindParameter(BindType.BIND_RX, smppTransportInDetails.getSystemId(),
                        smppTransportInDetails.getPassword(), smppTransportInDetails.getSystemType() , TypeOfNumber.UNKNOWN, NumberingPlanIndicator.UNKNOWN, null));

            SMPPListener listener = new SMPPListener(smsInManeger);
            inSession.setMessageReceiverListener(listener);
            stop = false;
            System.out.println(" [Axis2] bind and connect to " + smppTransportInDetails.getHost()+" : " +
                    smppTransportInDetails.getPort() + " on SMPP Transport");

        } catch (IOException e) {
            log.error("Unable to conncet" + e);
        }

    }