사용자 정의 JSP 단편은 HTML 양식 태그에 임베드됩니다. 런타임 시, Business Process Choreographer 탐색기는 표현된 페이지에 이러한 단편을 포함합니다.
<html....> ... <form...> Input JSP (display task input message) Output JSP (display task output message) </form> ... </html>
<input id="address" type="text" name="${prefix}/selectPromotionalGiftResponse/address" value="${messageMap['/selectPromotionalGiftResponse/address"]} size="60" align="left" />
String prefix = (String)request.getAttribute("prefix");
... <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"% ... <c:choose> <c:when test="${not empty prefix}"> <!--Read/write mode--> </c:when> <c:otherwise> <!--Read-only mode--> </c:otherwise> </c:choose>
ⓒ Copyright IBM Corporation 2005, 2006.
이 Information Center는 Eclipse 기술을 기반으로 합니다. (http://www.eclipse.org)