Design
app2date.txt
Associated article: Automating Release Notifications
Tags: Global Developer Database .NET Security C/C++ Tools Open Source JVM Languages Design
Published source code accompanying the article by Scott Miller inwhich he presents an automated approach for notifying users about updates to libraries and frameworks. Also see APP2DATE.ZIP.
Automating Release Notifications
by Scott Miller
Listing One
public static String getContent(HttpClient httpClient, String url)
{
logger.info("getting content from url: " + url);
GetMethod get = new GetMethod(url);
get.setFollowRedirects(true);
// impersonate browser
get.setRequestHeader("User-Agent", &...


