Rakesh

Try attaching a ProtocolCommandListener to the in/out streams so you can debug what is happening on the wire:

client = new NNTPClient();
client.addProtocolCommandListener(new PrintCommandListener(new 
PrintWriter(System.out)));

I also dont think you need to call completePendingCommand() ( I may be mistaken 
here, its been a while since I had a look at this).

Make sure you have called selectNewsgroup() as well.

Cheers
Rory




Rakesh Shukla wrote:

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]





---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to