Hi,

I am able to post an article using following (example) code.

Writer writer = client.postArticle();
if (writer != null) {
SimpleNNTPHeader header=new SimpleNNTPHeader
("[EMAIL PROTECTED]","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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to