CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Oct 2005
    Location
    Seattle, WA U.S.A.
    Posts
    353

    Huh ? Pop3Client in namespace "Microsoft.Crm..."

    Hello again, old friend.

    I'm back once again to reveal my infinite ignorance.


    After taking the time to download, print and review rfc 1939 (POP3 - Post Office Protocol), and to make a first pass at coding it, I found, quite by accident, that C# found in Visual Studio 2008 (.NET Framework version 3.5 SP1) already has a POP3Client class.

    Naturally, I'd like to save time by scrapping my code and using the Microsoft-provided class, but here's the problem .... While the 'HELP' version of VS2008 is well aware of the POP3Client class and describes it in great detail, the compiler doesn't have a clue about it. The compiler asks if I'm missing a 'using' or assembly reference statement.

    Well, I probably am missing one or both, but I'll be darned if I know what the compiler wants. The help section says the POP3Client class is found in namespace "Microsoft.Crm.Tools.email.Providers". Huh ? It has been my experience that all namespaces begin with "System......".

    So, "Microsoft.Crm.Tools.email.Providers" .... what up wit' dat ?

    As I was typing this note, it occurred to me that it may be associated with the Professional release rather than the Cheapie "beginner's version" that I have (standard edition). Is that it? Is that namespace something that would have been available to me if I'd paid the few extra dollars, or is it available to all, but under some other name ?

    This really isn't a big deal because I can always fall back on my home-brew POP3 client code, but it'd be much easier to use something Microsoft provided .... I KNOW their stuff works. I can only HOPE mine would, too.

    thanks for any help you can provide this foolish old man.

    Best wishes.

    bill
    Last edited by ThermoSight; March 27th, 2009 at 11:38 PM.

  2. #2
    Join Date
    Sep 2000
    Location
    FL
    Posts
    1,452

    Re: Huh ? Pop3Client in namespace "Microsoft.Crm..."

    It looks like is is part of Microsoft Dynamics CRM 4.0. You would probably have to download the Microsoft CRM SDK to have access to it.

    Download link

  3. #3
    Join Date
    Oct 2005
    Location
    Seattle, WA U.S.A.
    Posts
    353

    Re: Huh ? Pop3Client in namespace "Microsoft.Crm..."

    Whoa ... N E A T !

    Hey Toasty, thanks so much for your advice.

    Man, I never even knew that existed. Makes one wonder what other goodies are waiting there under the tree with one's name on it. Clearly, I gotta get with the program.

    Lovin' that .NET ! (For all of the power it places in one's hands, I can't believe Microsoft charges so little for it).

    Thanks again, Toasty.

    Best wishes.

    bill

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured