Hi,
I am able to post an article using following (example) code.
Writer writer = client.postArticle();
if (writer != null) {
SimpleNNTPHeader header=new SimpleNNTPHeader
("foobar@foo.com","Just testing");
Header.addNewsgroup("alt.test");
writer.write(header.toString());
writer.write("This is just a test");
writer.close();
client.completePendingCommand();
}
When I use any of the retrieveArticle and retrieveArticleBody methods the
system just hangs. Please let me know how to use these methods properly.
---------------------------------------------------------------------
To unsubscribe, e-mail: commons-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-user-help@jakarta.apache.org
|