我正在忙着编写一些代码,这些代码将通过PHPEWS更新Microsoft Exchange服务器上的物理地址;
但是对于我的生活,我无法弄清楚如何更新物理地址,我可以更新除此之外的所有其他内容。
这是我的代码。
// Update Physical Address.
$field = new EWSType_SetItemFieldType();
$field->IndexedFieldURI->FieldURI = 'contacts:PhysicalAddress:Street';
$field->IndexedFieldURI->FieldIndex = EWSType_PhysicalAddressKeyType::HOME;
$field->Contact = new EWSType_ContactItemType();
$field->Contact->PhysicalAddress = new EWSType_PhysicalAddressDictionaryType();
$address = new EWSType_PhysicalAddressDictionaryEntryType();
$address->Key = EWSType_PhysicalAddressKeyType::HOME;
$address->_ = $street;
$field->Contact->PhysicalAddresses->Entry = $address;
$change->Updates->SetItemField[] = $field;
我一直收到以下错误
Array ( [0] => stdClass Object ( [MessageText] => An object within a change description must contain one and only one property to modify. [ResponseCode] => ErrorIncorrectUpdatePropertyCount [DescriptiveLinkKey] => 0 [ResponseClass] => Error [Items] => stdClass Object ( ) ) )
希望有人可以提供帮助
答案 0 :(得分:5)
这是代码,
// Update Physical Address.
$field = new EWSType_SetItemFieldType();
$field->IndexedFieldURI->FieldURI = 'contacts:PhysicalAddress:Street';
$field->IndexedFieldURI->FieldIndex = EWSType_PhysicalAddressKeyType::HOME;
$field->Contact = new EWSType_ContactItemType();
$field->Contact->PhysicalAddresses = new EWSType_PhysicalAddressDictionaryType();
$address = new EWSType_PhysicalAddressDictionaryEntryType();
$address->Key = EWSType_PhysicalAddressKeyType::HOME;
$field->Contact->PhysicalAddresses->Entry = $address;
$field->Contact->PhysicalAddresses->Entry->Street = $street;
$change->Updates->SetItemField[] = $field;
基本上你设置你的FieldURI和Field Index(必须记住,在更新时你一次只能更新一个项目)你会看到FieldURI被设置为“contacts:PhysicalAddress:Street”这是因为你只能更新一次一件。
接下来我们创建Contact标签,然后创建PhysicalAddresses标签,然后创建Entry标签,并为其提供Home of Key,最后我们设置Street标签。
它创建的实际XML看起来像这样。
<t:SetItemField>
<t:IndexedFieldURI FieldURI="contacts:PhysicalAddress:CountryOrRegion" FieldIndex="Business" />
<t:Contact>
<t:PhysicalAddresses>
<t:Entry Key="Business">
<t:CountryOrRegion>
</t:CountryOrRegion>
</t:Entry>
</t:PhysicalAddresses>
</t:Contact>
</t:SetItemField>
就是这样,然后它会更新街道地址。现在你需要做的就是把代码放在一个循环中,用一个开关来查看你想要更新的地址的哪一部分并且让你的叔叔陷入困境。
哦,希望这有助于某人。