Examples of doBegin()


Examples of com.daou.BizSend.doBegin()

    String smsServer = GlobalContext.getPropertyString("sms.server", "biz.ppurio.com");
    String smsPort = GlobalContext.getPropertyString("sms.port", "5000");
    String smsUser = GlobalContext.getPropertyString("sms.user", "uengine");
    String smsPwd = GlobalContext.getPropertyString("sms.pwd", "18925ung");
    //bs.doBegin("biz.ppurio.com", 5000, "uengine", "18925ung");
    bs.doBegin(smsServer, Integer.parseInt(smsPort), smsUser, smsPwd);
    /* 메시지 정의 */
    // 다음의 setter 를 사용하여 필요한 정보를 정의
    // ex. SMS 의 경우, MSG_TYPE, DEST_PHONE, SEND_PHONE, MSG_BODY 정보를 정의
    sme = new SendMsgEntity();
    //sme.setCMID      ("");    // 데이터 id
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.