Logga in med Microsoft
Logga in eller skapa ett konto.
Hej,
Välj ett annat konto.
Du har flera konton
Välj det konto som du vill logga in med.

Symptom

Du försöker generera proxy kod som baseras på Microsoft Exchange Server 2010 Service Pack 1 (SP1)-schemat automatiskt. I det här fallet saknas följande rad i koden proxy:

[System.Web.Services.Protocols.SoapHeaderAttribute("ExchangeImpersonation")] 

Därför stöder automatiskt genererad proxy inte Exchange Impersonation.This problemet påverkar följande tre åtgärder:

  • GetUserOofSettings

  • SetUserOofSettings

  • GetUserAvailability

Lösning

Lös problemet genom att installera följande uppdatering:

2579150 Beskrivning av Samlad uppdatering 4 för Exchange Server 2010 servicepack 1

Lösning

Undvik problemet genom att använda Microsoft Exchange Web Services (EWS) hanterade API 1.1 för att ändra genererade klasser i schemat. Om du vill göra detta lägger du till följande rad i proxy-kod:

[System.Web.Services.Protocols.SoapHeaderAttribute("ExchangeImpersonation")] 

Nedan ges ett exempel för åtgärden GetUserOofSettings . Ursprunglig kod:

[System.Web.Services.Protocols.SoapHeaderAttribute("ServerVersionInfoValue", Direction = System.Web.Services.Protocols.SoapHeaderDirection.Out)][System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://schemas.microsoft.com/exchange/services/2006/messages/GetUserOofSettings", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Bare)][return: System.Xml.Serialization.XmlElementAttribute("GetUserOofSettingsResponse", Namespace = "http://schemas.microsoft.com/exchange/services/2006/messages")]public GetUserOofSettingsResponse GetUserOofSettings([System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.microsoft.com/exchange/services/2006/messages")] GetUserOofSettingsRequest GetUserOofSettingsRequest){    object[] results = this.Invoke("GetUserOofSettings", new object[] {    GetUserOofSettingsRequest});    return ((GetUserOofSettingsResponse)(results[0]));}

Ändrad kod:

[System.Web.Services.Protocols.SoapHeaderAttribute("ServerVersionInfoValue", Direction = System.Web.Services.Protocols.SoapHeaderDirection.Out)][System.Web.Services.Protocols.SoapHeaderAttribute("ExchangeImpersonation")][System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://schemas.microsoft.com/exchange/services/2006/messages/GetUserOofSettings", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Bare)][return: System.Xml.Serialization.XmlElementAttribute("GetUserOofSettingsResponse", Namespace = "http://schemas.microsoft.com/exchange/services/2006/messages")]public GetUserOofSettingsResponse GetUserOofSettings([System.Xml.Serialization.XmlElementAttribute(Namespace = "http://schemas.microsoft.com/exchange/services/2006/messages")] GetUserOofSettingsRequest GetUserOofSettingsRequest){    object[] results = this.Invoke("GetUserOofSettings", new object[] {    GetUserOofSettingsRequest});    return ((GetUserOofSettingsResponse)(results[0]));}

Status

Microsoft har bekräftat att detta är ett problem i Microsoft-produkterna som nämns i avsnittet ”gäller”.

Mer information

Mer information om GetUserOofSettings -funktionen finns på följande Microsoft-webbplats:

Allmän information om hur GetUserOofSettingsMer information om SetUserOofSettings -funktionen finns på följande Microsoft-webbplats:

Allmän information om hur SetUserOofSettingsMer information om GetUserAvailability -funktionen finns på följande Microsoft-webbplats:

Allmän information om hur GetUserAvailabilityMer information om personifiering för Exchange finns på följande Microsoft-webbplats:

Allmän information om Exchange personifiering

Behöver du mer hjälp?

Vill du ha fler alternativ?

Utforska prenumerationsförmåner, bläddra bland utbildningskurser, lär dig hur du skyddar din enhet med mera.

Communities hjälper dig att ställa och svara på frågor, ge feedback och få råd från experter med rika kunskaper.

Hade du nytta av den här informationen?

Hur nöjd är du med språkkvaliteten?
Vad påverkade din upplevelse?
Genom att trycka på skicka, kommer din feedback att användas för att förbättra Microsofts produkter och tjänster. IT-administratören kan samla in denna data. Sekretesspolicy.

Tack för din feedback!

×