This week's book giveaway is in the Open Source Projects forum.
We're giving away four copies of Eclipse Collections Categorically: Level up your programming game and have Donald Raab on-line!
See this thread for details.

Jay Urbain

Greenhorn
+ Follow
since May 24, 2002
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by Jay Urbain

Will JspWriter.out.flush(), flush header info if nothing has been written out to the response body?
Thanks,
Jay
22 years ago
JSP
Bear,
It was discussed in the SCWCD Certification book and I thought I should know it for the test (you probably know how anal those certification exams could be).
I would think this behavior would be defined.
Tx,
Jay
22 years ago
JSP
Hi,
What are the JSP scriplet rules for handling conditionals that are not using { braces } to
denote code blocks?
I found an example similar to the one I created below in the SCWCD Certification book.
As it turns out, the example below generates:
"Howdy, Bill: welcome to overpricedstocks.com!
Your stocks are down today."
With Tomcat, the following servlet code is generated (note the ";")
from the example:
if( displayName ) out.write("\r\n ");
Is this standard behavior for all app servers?
Thanks,
Jay
Example:
<html>
<head><title>Untitled</title></head>
<body>
<% String name = "Bill";
boolean displayName = false;
if( displayName ) %>
<b>Howdy, <%= name %></b>:
<i>welcome to overpricedstocks.com!</i>
<br>
Your stocks are down today.
</body>
</html>
22 years ago
JSP
You should know the different transaction attributes: Required, Requires New, etc.
Also know ACID properties.