> b) Its standard java coding style rules NOT TO USE a "_" in a constant.
It is standard Java coding TO USE an undescore between words in a constant. At least according to Sun
Re:We already have software to prevent linking
on
Unwanted Linking
·
· Score: 2
Using the technique described it is possible to provide a link with state information in the URL and bypass the front page.
In order to avoid this the user's state in the current session must also be stored on the server. If the state provided in the URL and the state stored on the server are different then go to the front page. Otherwise go to the requested page. This way, when entering the site from a link, there is no state information for that user on the server, and the user is directed to the front page.
This technique can be applied in other situations, e.g. in order processing to ensure the user follows a sequence of pages in the correct order.
It is standard Java coding TO USE an undescore between words in a constant. At least according to Sun
Using the technique described it is possible to provide a link with state information in the URL and bypass the front page.
In order to avoid this the user's state in the current session must also be stored on the server. If the state provided in the URL and the state stored on the server are different then go to the front page. Otherwise go to the requested page. This way, when entering the site from a link, there is no state information for that user on the server, and the user is directed to the front page.
This technique can be applied in other situations, e.g. in order processing to ensure the user follows a sequence of pages in the correct order.