Re: ¿Is it possible to create a contact in Exchange 2007 with webdav operations?

Tech Tip: Click here to run a free scan for Windows Errors and optimize PC performance



Glen:

As always thanks a lot, the c# application is taking shape as the time is
passing. Now the new program lets to add contacts to the distribution list
from a public folder. Nevertheless I still have some doubts and if you let me
I would expose them.

Which of the fields used to add a contact to the distribution list represents
the id of the contact?
I make that question because I could add 2 times the same contact (ziggy,
ziggy@xxxxxxx) to the distribution list using the following code and I supose
that it isn't right.

........................
..................
.........
String oneoffprefix = "00000000812B1FA4BEA310199D6E00DD010F540200000180";
String oneoffpadd = "0000";
String oneoffhex = oneoffprefix +
ConvertToHex("ziggy") + oneoffpadd +
ConvertToHex("SMTP") + oneoffpadd +
ConvertToHex("ziggy@xxxxxxx") + oneoffpadd;
Byte[] oneOffarray = HexStringToByteArray(oneoffhex);

String WrappedEntryIDPrefix = "00000000C091ADD3519DCF11A4A900AA0047FAA4C3";
String ContactEntryID = "0000";
Byte[] Membersarray = HexStringToByteArray((WrappedEntryIDPrefix +
ContactEntryID));
........................
..................
.........


Do you know how to drop contacts from the distribution list?


Cheers, Memo.

p.d. As you have seen am not a master in exchange development, nevertheless i
don't pretend you to tire with all my doubts. Thanks in advance !!

--
Message posted via http://www.winserverkb.com

.