You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@commons.apache.org by Rakesh Shukla <ry...@hotmail.com> on 2006/02/07 03:08:58 UTC

[Net] NNTPClient: How to use retrieveArticle and retrieveArticleBody methods?

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