TwitNotes - v. 1.0.2 released
TwitNotes v. 1.0.2 has been released to the update site. This release fixes the row height issue, some minor label provider stuff and adds the source of TwitNotes to posts so the source show up as "TwitNotes" instead of "web".
This release also adds a "Clear author cache" action to reset the cache of Twitter author details during runtime. I use this to clear the cache if Twitter for some reason sends me incorrect images or I'm simply want to refetch the images. TwitNotes will cache author info for the duration of your Notes session otherwise.
Re: TwitNotes - v. 1.0.2 released
Awesome effort. I had been avoiding looking at Twitter becuase I couldn't stand the though of 'another portal'. Bringing it into Notes has made it so much easier.
The only problem is I can't get it to work and am wondering if it is the corporate proxy server. Does TwitNotes support going out through a proxy?
It all installed fine, I am just not getting updates.
Re: TwitNotes - v. 1.0.2 released
you are using jakarta.commons.HttpClient, right?
HttpClient has good support for proxy servers.
Here some source code of one of my project which handles the proxy issue:
[code]
private void initProxy(final String proxyHost, final int proxyPort,
final String proxyUser, final String proxyPwd) {
client.getHostConfiguration().setProxy(proxyHost, proxyPort);
HttpState state = client.getState();
AuthScope authScope = new AuthScope(proxyHost, proxyPort,
AuthScope.ANY_REALM);
state.setProxyCredentials(authScope, new UsernamePasswordCredentials(
proxyUser, proxyPwd));
client.getParams().setAuthenticationPreemptive(true);
}
[/code]
Might help. Not sure if AuthScope.ANY_REALM is really a good idea.
client is of course a org.apache.commons.httpclient.HttpClient instance. Project uses HttpClient 3.1.





