Hi all, I've written a little tool that writes some Appoimtments to a EX2003 Server(via WebDAV) to differ between appointments that have been written by my tool and others I've used the ProdID property. Unfortunately our company changed to exchange 2007 and I'm not able to find the ProdID property anymore via WebServices. I thought that it should be something like: UnindexedFieldURIType.calendarProdID but it is not. Does someone know how to access this property via webservices? Thanks for help, Sebastian
If this is a custom property then you need to use something like PathToExtendedFieldType excustprop = new PathToExtendedFieldType(); excustprop.DistinguishedPropertySetId = DistinguishedPropertySetType.PublicStrings; excustprop.DistinguishedPropertySetIdSpecified = true; excustprop.PropertyType = MapiPropertyTypeType.String; excustprop.PropertyName = "CustomProp"; You might want to take a look at the property yourself using a MAPI editor like OutlookSpy of MFCMapi these type of tools should be able to help you resolve these types of problems. Cheers Glen "Sebastian Kaiser" wrote in message news:e9c7e1c4-9a8f-4ae5-89bd-dde72ca9cc34@k37g2000hsf.googlegroups.com... > Hi all, > > I've written a little tool that writes some Appoimtments to a EX2003 > Server(via WebDAV) to differ between appointments that have been > written by my tool and others I've used the ProdID property. > Unfortunately our company changed to exchange 2007 and I'm not able to > find the ProdID property anymore via WebServices. > I thought that it should be something like: > UnindexedFieldURIType.calendarProdID but it is not. > Does someone know how to access this property via webservices? > > Thanks for help, > > Sebastian