protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
doMyCar(request,response); }
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
doMyCar(request,response); }
protected void doMyCar(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
// Build the HTML response
response.setContentType("text/xml;charset=UTF-8");
PrintWriter out = response.getWriter();
out.println("
out.println("
out.println("
out.println("
out.println("
out.println("
out.println("
out.println("
out.println("
out.println("
out.println("
out.println("
out.close();
}
화면상에서는 아래와 같이 서블릿을 호출하면 호출자에게 XML를 던집니다.
2. RTC 프로젝트 영역에 todo 작업항목 유형을 만들고 car 속성을 추가하여 테스트 해 봤습니다
- todo 작업항목 유형 만들기
* "car"라는 small string 유형의 속성을 추가해 봤습니다.
- todo 워크플로우 만들기
- todo 프리젠테이션 만들기
* "car" 속성에 해당하는 프리젠테이션을 추가해 줬습니다. Kind는 Value Set Combo 또는 Value Set Picker를 사용해야 합니다.
- 속성 사용자 정의에 "CarMakeProvider"라는 Value Set 구성을 추가해 줍니다.
Category는 HTTP Filtered Value Set를 사용하고.. 아래와 같이 configuration을 해줍니다.
참고로 서블릿이 던지는 XML 문서 포맷을 다시 싣습니다.
- "car" 속성에 Value Set를 "CarMakeProvider"로 지정해 줍니다.
3. todo 작업항목을 하나 만들어 봅니다.
댓글 없음:
댓글 쓰기