PC Review


Reply
Thread Tools Rating: Thread Rating: 2 votes, 1.00 average.

[CDO] MAPI.Session Logoff takes too long

 
 
=?Utf-8?B?S3VydA==?=
Guest
Posts: n/a
 
      19th Feb 2004
Hi

I am using CDO 1.21 from C# in order to iterate through the entries in a users outlook address book (as OOM was too slow). Basically I take the Name field from each "message" and insert it into a ListBox. I shall paste my code at the end, and describe my problem first

If I call my MAPI.Sessions Logoff method when I have finished using it, then this method takes between 1 and 5 minutes to execute, but after that everything is fine

If I DONT call the MAPI.Sessions Logoff method, then I get my ListBox practically instantly filled and on the screen, but if I move the window or use the scroll bars, the program (and any running instances of Outlook) lock up, and only the task manager can kill them

I have seen this problem mentioned in the newsgroup but without a solution. Here is my code: (please note I use OOM and its PickFolder at the start to get my folders Entry and Store IDs

Object oResult;
MAPI.Message oMsg
MAPI.Messages oMsgs
MAPI.Folder oFolder
MAPI.Session oSession
try
{
// OOM Section to get Folder I
Microsoft.Office.Interop.Outlook.Application oa = new Microsoft.Office.Interop.Outlook.ApplicationClass()
Microsoft.Office.Interop.Outlook.NameSpace ns = oa.GetNamespace("mapi")
ns.Logon(Environment.UserName, Missing.Value, true, true)
Microsoft.Office.Interop.Outlook.MAPIFolder contacts = ns.PickFolder()


Object [] argsLogon = new Object[7];
Object[] argsGetFolder = new Object[2] {contacts.EntryID, contacts.StoreID}
contacts = null
ns.Logoff()
ns = null
oa = null

oSession = new MAPI.Session()
argsLogon[0] = Missing.Value; // ProfileNam
argsLogon[1] = Missing.Value; // ProfilePasswor
argsLogon[2] = Missing.Value; // ShowDialo
argsLogon[3] = Missing.Value; // NewSessio
argsLogon[4] = Missing.Value; // ParentWindo
argsLogon[5] = Missing.Value; // NoMai
argsLogon[6] = Missing.Value; // ProfileInf
oSession.GetType().InvokeMember("Logon", BindingFlags.InvokeMethod, null, oSession, argsLogon)
// Get folder chosen above in PickFolder
oFolder =
(MAPI.Folder)oSession.GetType().InvokeMember("GetFolder", BindingFlags.Default |BindingFlags.GetProperty, null, oSession, argsGetFolder)

// Get folder name
oResult =
oFolder.GetType().InvokeMember("Name", BindingFlags.Default |BindingFlags.GetProperty, null, oFolder, null)
Console.WriteLine("Folder Name : {0}", oResult)


// Get AddressLis
oMsgs =
(MAPI.Messages)oFolder.GetType().InvokeMember("Messages", BindingFlags.Default |BindingFlags.GetProperty, null, oFolder, null)

// Get messages count
int totalMessages =
(int)oMsgs.GetType().InvokeMember("Count", BindingFlags.Default |BindingFlags.GetProperty, null, oMsgs, null);
Console.WriteLine("Count: {0}", totalMessages)
// Get the first message
oMsg =
(MAPI.Message)oMsgs.GetType().InvokeMember("GetFirst", BindingFlags.InvokeMethod, null, oMsgs, null)

for(int counter = 1; counter <= totalMessages; counter++


// Get Subject
ListViewItem i = new ListViewItem((string) oMsg.GetType().InvokeMember("Subject", BindingFlags.Default |BindingFlags.GetProperty, null, oMsg, null))
// Get each message
oMsg =
(MAPI.Message)oMsgs.GetType().InvokeMember("GetNext", BindingFlags.InvokeMethod, null, oMsgs, null)
listView1.Items.Add(i)


oSession.Logoff(); // This bit causes problem



// The rest omitted.
 
Reply With Quote
 
 
 
 
Cor
Guest
Posts: n/a
 
      20th Feb 2004
Hi Kurt,

It is not my part, but maybe I can help you a little bit, because I know
that there are more CDO 1.21 (and that is all I know about it). And maybe
you are busy with the wrong one.

- CDO.DLL : CDO version 1.2.1
- CDONTS.DLL : CDO version 1.2.1 for Windows NT Server (not the same as CDO
version 1.2.1!)

http://msdn.microsoft.com/library/de...vr_cdo_top.asp

Not much, but you never know if this helps?

Cor


 
Reply With Quote
 
Russell Mangel
Guest
Posts: n/a
 
      23rd Feb 2004
Your code seemed to work okay, on my system.
Please try the following code, and see if things are better:

Russell Mangel
Las Vegas, NV

// Begin Code
MAPI.SessionClass oSession = new MAPI.SessionClass();
oSession.Logon(System.Environment.UserName, System.Reflection.Missing.Value,
true, true, System.Reflection.Missing.Value, false,
System.Reflection.Missing.Value);

// Notice we are not logging into Outlook
Microsoft.Office.Interop.Outlook.Application oApplication = new
Microsoft.Office.Interop.Outlook.ApplicationClass();
Microsoft.Office.Interop.Outlook.NameSpace oNameSpace =
oApplication.GetNamespace("mapi");
Microsoft.Office.Interop.Outlook.MAPIFolder oMAPIFolder =
oNameSpace.PickFolder();
oNameSpace.Logoff();

MAPI.Folder oFolder = (MAPI.Folder)oSession.GetFolder(oMAPIFolder.EntryID,
oMAPIFolder.StoreID);
Console.WriteLine(oFolder.Name);

MAPI.Messages oMessages = (MAPI.Messages)oFolder.Messages;
MAPI.Message oMessage =
(MAPI.Message)oMessages.GetFirst(System.Reflection.Missing.Value);

while(oMessage != null)
{
Console.WriteLine(" Subject: " + oMessage.Subject);

// Top of Loop
oMessage = null;
oMessage = (MAPI.Message)oMessages.GetNext();
}

// Let's time the Logoff() method
int begin = System.Environment.TickCount;

oSession.Logoff();

int end = System.Environment.TickCount;

Console.WriteLine("{0} milliseconds", (end - begin));

// End Code


 
Reply With Quote
 
Integer Software
Guest
Posts: n/a
 
      23rd Feb 2004
Hi Russell,

Repeated runs of this example result the logoff function taking exactly
120 seconds each time. In other examples I have tried it always takes
exactly 60 seconds.

There must be some MS specified timeout value affecting things here.

I have XP Professional with latest updates
Office 2003 with latest updates
Visual Studio 2003 .net
Outlook runs in exchange mode and exchange server is exchange 2000
running on windows server 2000.

I shall continue to experiment.

Thanks

Kurt

Russell Mangel wrote:
> Your code seemed to work okay, on my system.
> Please try the following code, and see if things are better:
>
> Russell Mangel
> Las Vegas, NV
>
> // Begin Code
> MAPI.SessionClass oSession = new MAPI.SessionClass();
> oSession.Logon(System.Environment.UserName, System.Reflection.Missing.Value,
> true, true, System.Reflection.Missing.Value, false,
> System.Reflection.Missing.Value);
>
> // Notice we are not logging into Outlook
> Microsoft.Office.Interop.Outlook.Application oApplication = new
> Microsoft.Office.Interop.Outlook.ApplicationClass();
> Microsoft.Office.Interop.Outlook.NameSpace oNameSpace =
> oApplication.GetNamespace("mapi");
> Microsoft.Office.Interop.Outlook.MAPIFolder oMAPIFolder =
> oNameSpace.PickFolder();
> oNameSpace.Logoff();
>
> MAPI.Folder oFolder = (MAPI.Folder)oSession.GetFolder(oMAPIFolder.EntryID,
> oMAPIFolder.StoreID);
> Console.WriteLine(oFolder.Name);
>
> MAPI.Messages oMessages = (MAPI.Messages)oFolder.Messages;
> MAPI.Message oMessage =
> (MAPI.Message)oMessages.GetFirst(System.Reflection.Missing.Value);
>
> while(oMessage != null)
> {
> Console.WriteLine(" Subject: " + oMessage.Subject);
>
> // Top of Loop
> oMessage = null;
> oMessage = (MAPI.Message)oMessages.GetNext();
> }
>
> // Let's time the Logoff() method
> int begin = System.Environment.TickCount;
>
> oSession.Logoff();
>
> int end = System.Environment.TickCount;
>
> Console.WriteLine("{0} milliseconds", (end - begin));
>
> // End Code
>
>

 
Reply With Quote
 
Russell Mangel
Guest
Posts: n/a
 
      23rd Feb 2004
This makes no sense, if you are connected to Exchange Server, you should
have a Global Address List.
If you send a Message from this Client using Outlook 2003, is the Global
address List available?
If so, then all of the code I sent should run okay.

One, question? How are you handling, the Outlook Security Dialogs?
As you probably know, the Security Dialogs, can be disabled by implementing
a special form in a public folder.

You seem to have a basic configuration problem here.

1. Make certain your client is in the Windows 2000 domain.
2. Login to the client with Administrator priveledges, and create a new
profile.
3. If this fails, you need to try another client Computer, in the domain.

Russell Mangel
Las Vegas, NV



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
[CDO] MAPI.Session Logoff takes too long =?Utf-8?B?S3VydA==?= Microsoft C# .NET 5 13th Dec 2006 03:42 PM
Logoff Takes Longer with Start; Logoff Than With Ctrl-Alt_Del Bill T. Ray Windows XP General 1 23rd Oct 2004 12:15 PM
Re: IE takes too long to load page and takes too long when scroll/up down is used H Leboeuf Windows XP Internet Explorer 0 27th May 2004 02:48 PM
User logoff takes a long time Christopher Beard Microsoft Windows 2000 2 24th Mar 2004 10:09 PM
debug session takes long time to start mike Microsoft VB .NET 1 16th Oct 2003 08:10 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 07:16 PM.