473,503 Members | 1,678 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

About MS Newsgroups

Hi All!

I do not find any relevant newsgroups to post this question so I just posted
to this VB DotNet and General DotNet groups.

I'm trying to create a VB.NET application that will scan newsgroups.

What I like to know is if there are any different between a MS newsgroup
(microsoft.public.dotnet.general) and a UseNet newsgroup (comp.software)
apart from their topic? Because as a NNTP newsreader user, it is totally
transparent. Obviously UseNet is a collection of non-commercial newsgroups
and MS newsgroups are commercial. But they both use NNTP protocol.

So what really puzzle me is that...
1. do MS newsgroups duplicated across servers like UseNet newsgroups do?
Or
2. MS newsgroups stay only on MS owned servers (and possibly duplicated
across other 'MS' servers across the world)?

In a nutshell, I would like to know what are the difference between UseNet
and MS newsgroups? How are they distributed and maintained. etc...etc.

If there's a relevant group to my question in mcirosft.* please point me
out. If anyone have the answer to my questions, also please point me out :)
An URL explaining this issue would be quite useful!

Cheers,
Don
Jul 21 '05 #1
5 1899
There is really no difference except who owns/maintains them.

They are run on an NNTP server just like most other Usenet newsgroups.

They are propagated to several other services, for example my ISP (Adelphia)
carries a few of the groups on their NNTP servers but I refer to come right
to the source (msnews.microsoft.com) for the feeds for reliability sake.
"Don Wash" <do*@wash.com> wrote in message
news:eK*************@TK2MSFTNGP12.phx.gbl...
Hi All!

I do not find any relevant newsgroups to post this question so I just posted to this VB DotNet and General DotNet groups.

I'm trying to create a VB.NET application that will scan newsgroups.

What I like to know is if there are any different between a MS newsgroup
(microsoft.public.dotnet.general) and a UseNet newsgroup (comp.software)
apart from their topic? Because as a NNTP newsreader user, it is totally
transparent. Obviously UseNet is a collection of non-commercial newsgroups
and MS newsgroups are commercial. But they both use NNTP protocol.

So what really puzzle me is that...
1. do MS newsgroups duplicated across servers like UseNet newsgroups do?
Or
2. MS newsgroups stay only on MS owned servers (and possibly duplicated
across other 'MS' servers across the world)?

In a nutshell, I would like to know what are the difference between UseNet
and MS newsgroups? How are they distributed and maintained. etc...etc.

If there's a relevant group to my question in mcirosft.* please point me
out. If anyone have the answer to my questions, also please point me out :) An URL explaining this issue would be quite useful!

Cheers,
Don

Jul 21 '05 #2
Hi Don,

There are a lot of newsservers on the world, some have there own newsgroups,
some import (often selections) from the newsgroups from others (The
microsoft newsserver does not by instance). From some newsservers the
retention time is very short and from some very long (by instance Google).

In my opinion is a good newsgroup to discuss that

alt.free.newsservers
(when it is not on your newsserver)
news.readfreenews.net has it, that is a read only newsserver which are a lot
on the world.

A good site to find software for NNTP seems to be.
http://www.indyproject.org/indy.html

I hope this helps?

Cor
Jul 21 '05 #3
Don Wash wrote:
Hi All!

I do not find any relevant newsgroups to post this question so I just posted
to this VB DotNet and General DotNet groups.

I'm trying to create a VB.NET application that will scan newsgroups.

What I like to know is if there are any different between a MS newsgroup
(microsoft.public.dotnet.general) and a UseNet newsgroup (comp.software)
apart from their topic? Because as a NNTP newsreader user, it is totally
transparent. Obviously UseNet is a collection of non-commercial newsgroups
and MS newsgroups are commercial. But they both use NNTP protocol.

So what really puzzle me is that...
1. do MS newsgroups duplicated across servers like UseNet newsgroups do?
Or
2. MS newsgroups stay only on MS owned servers (and possibly duplicated
across other 'MS' servers across the world)?

In a nutshell, I would like to know what are the difference between UseNet
and MS newsgroups? How are they distributed and maintained. etc...etc.

If there's a relevant group to my question in mcirosft.* please point me
out. If anyone have the answer to my questions, also please point me out :)
An URL explaining this issue would be quite useful!

Cheers,
Don


Hi Don,

There is an implementation of an ADO.NET Data Provider for NNTP
by Dirk_Primbs [MS].

http://workspaces.gotdotnet.com/nntpClient

This library allows you to :

- Simple access using a DataReader:
Dim cn As NntpConnection = New NntpConnection("news.microsoft.com")
Dim cmd As NntpCommand = _
New NntpCommand("select top 10 * from
microsoft.public.dotnet.languages.csharp", cn)
cn.Open()
Dim reader As NntpDataReader = cmd.ExecuteReader()

- Getting a DataSet:

Dim ds As DataSet = new DataSet()
Dim cn As NntpConnection = New NntpConnection("news.microsoft.com")
Dim cmd As NntpCommand = _
New NntpCommand("select top 10 * from
microsoft.public.dotnet.languages.csharp", cn)

Dim da As NntpDataAdapter = new NntpDataAdapter(cmd)
da.Fill(ds)

It is also possible to post a message:

NntpPosting:
Dim cn As NntpConnection = New NntpConnection("news.microsoft.com")
cn.Open()
Dim p As NntpPosting = New NntpPosting("Arne Janning",
"sp*****************@msn.com", "Re: fourtytwo", "This is a test.",
"microsoft.test")
p.Post(cn)
cn.Close()

If you use the DataAdapter, just call the Update()-Method.

Cheers

Arne Janning
Jul 21 '05 #4
Nice post, I might just try that myself :)

--

OHM ( Terry Burns )
. . . One-Handed-Man . . .
"Arne Janning" <sp*****************@msn.com> wrote in message
news:uv**************@tk2msftngp13.phx.gbl...
Don Wash wrote:
Hi All!

I do not find any relevant newsgroups to post this question so I just posted to this VB DotNet and General DotNet groups.

I'm trying to create a VB.NET application that will scan newsgroups.

What I like to know is if there are any different between a MS newsgroup
(microsoft.public.dotnet.general) and a UseNet newsgroup (comp.software)
apart from their topic? Because as a NNTP newsreader user, it is totally
transparent. Obviously UseNet is a collection of non-commercial newsgroups and MS newsgroups are commercial. But they both use NNTP protocol.

So what really puzzle me is that...
1. do MS newsgroups duplicated across servers like UseNet newsgroups do?
Or
2. MS newsgroups stay only on MS owned servers (and possibly duplicated
across other 'MS' servers across the world)?

In a nutshell, I would like to know what are the difference between UseNet and MS newsgroups? How are they distributed and maintained. etc...etc.

If there's a relevant group to my question in mcirosft.* please point me
out. If anyone have the answer to my questions, also please point me out :) An URL explaining this issue would be quite useful!

Cheers,
Don


Hi Don,

There is an implementation of an ADO.NET Data Provider for NNTP
by Dirk_Primbs [MS].

http://workspaces.gotdotnet.com/nntpClient

This library allows you to :

- Simple access using a DataReader:
Dim cn As NntpConnection = New NntpConnection("news.microsoft.com")
Dim cmd As NntpCommand = _
New NntpCommand("select top 10 * from
microsoft.public.dotnet.languages.csharp", cn)
cn.Open()
Dim reader As NntpDataReader = cmd.ExecuteReader()

- Getting a DataSet:

Dim ds As DataSet = new DataSet()
Dim cn As NntpConnection = New NntpConnection("news.microsoft.com")
Dim cmd As NntpCommand = _
New NntpCommand("select top 10 * from
microsoft.public.dotnet.languages.csharp", cn)

Dim da As NntpDataAdapter = new NntpDataAdapter(cmd)
da.Fill(ds)

It is also possible to post a message:

NntpPosting:
Dim cn As NntpConnection = New NntpConnection("news.microsoft.com")
cn.Open()
Dim p As NntpPosting = New NntpPosting("Arne Janning",
"sp*****************@msn.com", "Re: fourtytwo", "This is a test.",
"microsoft.test")
p.Post(cn)
cn.Close()

If you use the DataAdapter, just call the Update()-Method.

Cheers

Arne Janning

Jul 21 '05 #5
Thanks all for all their replies. All of the replies has been very helpful
and I have gained insights of newsgroups for my project.

Many thanks!!
Don

"Don Wash" <do*@wash.com> wrote in message
news:eK*************@TK2MSFTNGP12.phx.gbl...
Hi All!

I do not find any relevant newsgroups to post this question so I just posted to this VB DotNet and General DotNet groups.

I'm trying to create a VB.NET application that will scan newsgroups.

What I like to know is if there are any different between a MS newsgroup
(microsoft.public.dotnet.general) and a UseNet newsgroup (comp.software)
apart from their topic? Because as a NNTP newsreader user, it is totally
transparent. Obviously UseNet is a collection of non-commercial newsgroups
and MS newsgroups are commercial. But they both use NNTP protocol.

So what really puzzle me is that...
1. do MS newsgroups duplicated across servers like UseNet newsgroups do?
Or
2. MS newsgroups stay only on MS owned servers (and possibly duplicated
across other 'MS' servers across the world)?

In a nutshell, I would like to know what are the difference between UseNet
and MS newsgroups? How are they distributed and maintained. etc...etc.

If there's a relevant group to my question in mcirosft.* please point me
out. If anyone have the answer to my questions, also please point me out :) An URL explaining this issue would be quite useful!

Cheers,
Don

Jul 21 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
1582
by: Pjotr Wedersteers | last post by:
Hello, I took quite elaborate SQL and SQL-admin courses at Oracle, but that was years ago. Have never since used SQL but for some extremely simple straightforward queries on single table db's....
65
5279
by: perseus | last post by:
I think that everyone who told me that my question is irrelevant, in particular Mr. David White, is being absolutely ridiculous. Obviously, most of you up here behave like the owners of the C++...
9
1065
by: Don Wash | last post by:
Hi All! I do not find any relevant newsgroups to post this question so I just posted to this VB DotNet and General DotNet groups. I'm trying to create a VB.NET application that will scan...
7
1816
by: Victor S. | last post by:
1. What is System.Windows.Forms.VisualStyles.TextMetricsCharacterSet good for? 2. Are the Indic scripts supported? Are all supported scripts fully supported? (for printing and fine measuring)...
10
3682
by: Rider | last post by:
Hi, simple(?) question about asp.net configuration.. I've installed ASP.NET 2.0 QuickStart Sample successfully. But, When I'm first start application the follow message shown. ========= Server...
5
1276
by: Peter Oliphant | last post by:
I was thinking it might be a good idea to split this newsgroup into different newsgroups, depending on the version of VS C++.NET being discussed. Thus, there would be 2002, 2003, and 2005...
7
1270
by: Ryan | last post by:
I'm in the process of learning more about building my ASP.NET website to use my SQL datastore and am a bit confused about how ADO.NET works with ASP.NET. This Microsoft article implies that using...
3
1114
by: Max2006 | last post by:
Hi, Where are WF and WCF newsgroups? Thank you, Max
0
7201
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
7083
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7278
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
7328
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
7456
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
5578
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
5011
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
4672
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
379
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.