jboss « Parameter « JSP-Servlet Q&A





1. Unable to pass none string parameters to TAG files    stackoverflow.com

I'm using JBOSS 4.0.2 with JSP 2.0. I have created a TAG file with the following directives:

<%@ attribute name="id" required="true" %>
<%@ attribute name="upgradeAccount" type="com.upc.domain.UpgradeAccountData" %>
However, when I try to pass an ...

2. JSP parameter names in HttpServletRequest    stackoverflow.com

Background

Using Eclipse Helios, Apache Tomcat, JSPs, and JBoss RichFaces. Input parameters are coded as follows:
<h:inputHidden name="system_REPORT_RESOURCE" value="city" />
<h:inputHidden name="system_REPORT_FILENAME" value="city" />
<h:inputHidden name="report_REPORT_TITLE" value="City Listing" />
... and others ...

Problem

The following code shows the ...