Albert John Thomas

Greenhorn
+ Follow
since Jan 27, 2012
Albert likes ...
Spring Tomcat Server Java
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Albert John Thomas

Could anyone help on how to reference system variables(JBOSS AS 7.1) in web.xml ?

i tried the below , where var=NONE defined in system properties in JBOSS server.
<security-constraint>
<web-resource-collection>
<web-resource-name>Secured resources</web-resource-name>
<url-pattern>/*</url-pattern>
</web-resource-collection>
<user-data-constraint>
<transport-guarantee>${var}</transport-guarantee>
</user-data-constraint>
</security-constraint>
8 years ago
Internally the JSP pages get converted to Servlets , and the with the help of rresponse objects , content types,..etc. are set.
9 years ago