public void sendSMS()

in modules/sms/src/main/java/org/apache/axis2/transport/sms/SMSManager.java [178:187]


    public void sendSMS(MessageContext messageContext) {
        try {
            SMSMessage sms = messageFormatter.formatSMS(messageContext);
            sms.addProperty(SMSTransportConstents.INVERT_SOURCE_AND_DESTINATION ,"" + invertSourceAndDestination);
            currentImplimentation.sendSMS(sms);
        } catch (Exception e) {
            log.error("Error while sending the SMS " , e);
        }

    }