튜토리얼
PowerBuilder 개발환경에서 팝빌 SDK를 추가하여 예금주성명 조회 (CheckAccountInfo) 함수를 구현하는 예시입니다.
1. POPBiLL SDK 추가
① 팝빌 연동자료실에서 PowerBuilder SDK 예제코드 다운로드 후 압축을 해제합니다.
② 압축해제한 SDK 예제코드에서 linkhub.pbl, popbill.pbl 파일을 기존 프로젝트 폴더로 복사하고 Library List에 추가합니다.
2. POPBiLL SDK 설정
Window 폼의 Declare Instance Variables 탭에 API Key 와 클래스를 선언하고 open() 함수에 클래스 초기화 코드를 추가합니다.
Declare Instance Variables 탭
// 링크아이디
in_accountcheckservice.linkid = in_linkid
// 비밀키
in_accountcheckservice.secretkey = in_secretkey
// 예금주조회 서비스 객체 선언
accountcheckservice in_accountcheckservice
Window Form Open() 함수
3. CheckAccountInfo 기능 구현
Form에 버튼을 생성하고 버튼의 Click Event 코드에 예금주성명 조회 (CheckAccountInfo) 기능을 추가합니다.
/********************************************************
* 1건의 계좌에 대한 예금주정보를 조회합니다.
********************************************************/
// checkaccountinfo 함수 결과를 담을 객체
accountcheckinfo l_accountinfo
// 팝빌 회원 사업자번호
string corpnum = "1234567890"
// 기관코드
string bankcode = "0011"
// 계좌번호
string accountnumber = "3011599770921"
// 결과 출력할 변수
string infostr
try
l_accountinfo = in_accountcheckservice.checkaccountinfo(corpnum, bankcode, accountnumber)
If IsNull(l_accountinfo.bankCode) Then infostr +="bankCode (기관코드) : ~n" Else infostr += "bankCode (기관코드) : " +l_accountinfo.bankCode +"~n"
If IsNull(l_accountinfo.accountNumber) Then infostr +="accountNumber (계좌번호) : ~n" Else infostr += "accountNumber (계좌번호) : " +l_accountinfo.accountNumber +"~n"
If IsNull(l_accountinfo.accountName) Then infostr +="accountName (예금주 성명) : ~n" Else infostr += "accountName (예금주 성명) : " +l_accountinfo.accountName +"~n"
If IsNull(l_accountinfo.checkDate) Then infostr +="checkDate (확인일시) : ~n" Else infostr += "checkDate (확인일시) : " +l_accountinfo.checkDate +"~n"
If IsNull(l_accountinfo.result) Then infostr +="result (응답코드) : ~n" Else infostr += "result (응답코드) : " +l_accountinfo.result +"~n"
If IsNull(l_accountinfo.resultMessage) Then infostr +="resultMessage (응답메시지) : ~n" Else infostr += "resultMessage (응답메시지) : " +l_accountinfo.resultMessage +"~n"
messagebox("예금주조회", infostr)
catch(popbillexception pe)
messagebox("예금주조회","응답코드 : " + String(pe.getcode()) + "~n응답메시지 : " + pe.getmessage())
end try
4. 결과 확인
함수 호출 반환 결과는 아래와 같습니다.
- 성공 : Response code 로 숫자 1 반환
- 실패 : PopbillException 으로 음의 정수 8자리 숫자값 오류코드와 오류메시지 반환 [오류코드]