%@ page language="java" %>
<%@ taglib uri="http://beehive.apache.org/netui/tags-html-1.0" prefix="netui"%>
<%@ taglib uri="http://beehive.apache.org/netui/tags-databinding-1.0" prefix="netui-data"%>
MiscJpf Bug 26856 test
MiscJpf Bug 26856 test - Jsp1.jsp
Test 1
Print a message from bundle1.
Test 2
Print a message from bundle2.
Test 3
Print a message from and nonexistant bundle An error is expected.
<% try { %>
<% } catch ( Exception e ) { pageContext.getOut().print( e.getMessage() ); } %>
Test 4
Print a nonexistant message from bundle An error is expected.
<% try { %>
<% } catch ( Exception e ) { pageContext.getOut().print( e.getMessage() ); } %>
Test 5
Declare a bundle with the reserved name "default" An error is expected.
Done