NNTP Post reply

  • Thread starter Thread starter Leon
  • Start date Start date
L

Leon

Hi,

Basically I've written a NNTP-client which is able to post new messages,
but inable to post replies to messages.

I've tried posting a reference string into the header of the new article
containing only the message-Id I reply to : results in a new post

I've tried posting a (concat) reference string into the header of the new
article containing all message-id's (message-tree) of the message I reply
to : results in a new post

It comes down to: (request to server transcript)
---------------------------------------------------
From: (e-mail address removed)
Newsgroups: microsoft.public.dotnet.languages.csharp
Reference: <messageid1> <messageid2>
Subject: Re: MessageSubject I reply to

[body text]

..

---------------------------------------------------

And I'm at a loss atm, what am I doing wrong here, or am I barking up the
wrong tree (in this case: reference)?

TIA,
Leon
 
Leon said:
Hi,

Basically I've written a NNTP-client which is able to post new messages,
but inable to post replies to messages.

I've tried posting a reference string into the header of the new article
containing only the message-Id I reply to : results in a new post

I've tried posting a (concat) reference string into the header of the new
article containing all message-id's (message-tree) of the message I reply
to : results in a new post

It comes down to: (request to server transcript)
---------------------------------------------------
From: (e-mail address removed)
Newsgroups: microsoft.public.dotnet.languages.csharp
Reference: <messageid1> <messageid2>
Subject: Re: MessageSubject I reply to

[body text]

.

---------------------------------------------------

And I'm at a loss atm, what am I doing wrong here, or am I barking up the
wrong tree (in this case: reference)?

TIA,
Leon

You might want to review
http://www.mibsoftware.com/userkt/rfc1036/0052.htm. The basic problem
could be that the header is References, not Reference.
 
Leon said:
Hi,

Basically I've written a NNTP-client which is able to post new
messages, but inable to post replies to messages.

I've tried posting a reference string into the header of the new
article containing only the message-Id I reply to : results in a new
post

I've tried posting a (concat) reference string into the header of the
new article containing all message-id's (message-tree) of the message
I reply to : results in a new post

It comes down to: (request to server transcript)
--------------------------------------------------- [SNIP]
---------------------------------------------------

And I'm at a loss atm, what am I doing wrong here, or am I barking up
the wrong tree (in this case: reference)?

TIA,
Leon

You might want to review
http://www.mibsoftware.com/userkt/rfc1036/0052.htm. The basic problem
could be that the header is References, not Reference.

Tom,

thanks! Since I've been staring at the code for hours.. I didn't see that
anymore; LOL, stupid me!

Thanks!

Leon
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top