튜토리얼
.NET 개발환경에서 팝빌 SDK를 추가하여 홈택스 현금영수증 수집요청 (RequestJob) 함수를 구현하는 예시입니다.
1. POPBiLL SDK 추가
① 팝빌 연동자료실에서 ASP.NET SDK 예제코드 다운로드 후 압축을 해제합니다.
② 다운받은 SDK 예제코드의 Linkhub/, Popbill/ 폴더를 SDK를 적용할 프로젝트 경로에 복사하고. Linkhub.csproj, Popbill.csproj를 각각 기존 프로젝트로 추가합니다.
③ Popbill 프로젝트를 적용할 프로젝트의 참조로 추가합니다.
2. POPBiLL SDK 설정
프로젝트에 Global.asax 파일을 생성하여 연동환경 설정값, 홈택스수집 서비스 클래스를 선언하고 Application_Start() 함수에 홈택스수집 서비스 클래스 초기화 코드를 추가합니다.
using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.SessionState;
using System.Xml.Linq;
using Popbill.HomeTax.Cashbill;
namespace Tutorial_Example
{
public class Global : System.Web.HttpApplication
{
// 링크아이디
private string LinkID = "TESTER";
// 비밀키
private string SecretKey = "SwWxqU+0TExEXy/9TVjKPExI2VTUMMSLZtJf3Ed8q3I=";
// 홈택스수집(현금) 서비스 객체 선언
public static HTCashbillService htCasbillService;
protected void Application_Start(object sender, EventArgs e)
{
// 홈택스수집(현금) 서비스 객체 초기화
htCasbillService = new HTCashbillService(LinkID, SecretKey);
// 연동환경 설정, true-테스트, false-운영(Production), (기본값:false)
htCasbillService.IsTest = true;
// 인증토큰 IP 검증 설정, true-사용, false-미사용, (기본값:true)
htCasbillService.IPRestrictOnOff = true;
// 통신 IP 고정, true-사용, false-미사용, (기본값:false)
htCasbillService.UseStaticIP = false;
// 로컬시스템 시간 사용여부, true-사용, false-미사용, (기본값:false)
htCasbillService.UseLocalTimeYN = true;
}
}
}
3. RequestJob 기능 구현
Web Form을 추가하여 requestJob.aspx를 생성하여 응답코드, 메시지 확인 페이지를 추가하고, requestJob.aspx.cs 파일의 Page_Load 이벤트에 함수 호출 코드를 추가합니다.
requsetJob.aspx
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="requestJob.aspx.cs" Inherits="Popbill.HomeTax.Cashbill.Example.requestJob" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Popbill HomeTax Cashbill</title>
</head>
<body>
<div>
<p>Response</p>
<br/>
<fieldset>
<legend>수집 요청</legend>
<ul>
<% if (!String.IsNullOrEmpty(code)) { %>
<li>Response.code : <%= code %> </li>
<li>Response.message : <%= message %></li>
<% } else { %>
<li>jobID (작업아이디) : <%= jobID %></li>
<% } %>
</ul>
</fieldset>
</div>
</body>
</html>
requsetJob.aspx.cs
using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
namespace Popbill.HomeTax.Cashbill.Example
{
public partial class requestJob : System.Web.UI.Page
{
public String code;
public String message;
public String jobID;
protected void Page_Load(object sender, EventArgs e)
{
// 팝빌회원 사업자번호, '-' 제외 10자리
String testCorpNum = "6798700433";
// 현금영수증 유형 SELL-매출, BUY-매입
KeyType tiKeyType = KeyType.BUY;
// 시작일자, 표시형식(yyyyMMdd)
String SDate = "20220101";
// 종료일자, 표시형식(yyyyMMdd)
String EDate = "20220130";
try
{
jobID = Global.htCashbillService.RequestJob(testCorpNum, tiKeyType, SDate, EDate);
}
catch (PopbillException ex)
{
code = ex.code.ToString();
message = ex.Message;
}
}
}
}
4. 결과 확인
함수 호출 반환 결과는 아래와 같습니다.
- 성공 : Response code 로 숫자 1 반환
- 실패 : PopbillException 으로 음의 정수 8자리 숫자값 오류코드와 오류메시지 반환 [오류코드]