0

ActiveSync を使用して電子メールのステータス フラグを設定しようとしています。以下、私のお願いです。ステータス 6 を受け取りました。リクエストの何が問題になっていますか?

リクエスト

<Sync xmlns="AirSync:" xmlns:email="Email:" xmlns:tasks="Tasks:" >
 <Collections>
     <Collection>
         <SyncKey>648263900</SyncKey>
         <CollectionId>11</CollectionId>
         <GetChanges>0</GetChanges>
         <Commands>
             <Change>
                 <ServerId>11:2</ServerId>
                 <ApplicationData>
                      <email:Flag>
                         <email:Status>1</email:Status>
                         <email:FlagType>Follow Up</email:FlagType>
                         <tasks:StartDate>113-04-23T05:30:00.000Z</tasks:StartDate>
                         <tasks:UTCStartDate>113-04-23T05:30:00.000Z</tasks:UTCStartDate>
                         <tasks:DueDate>113-04-26T05:30:00.000Z</tasks:DueDate> 
                         <tasks:UTCDueDate>113-04-26T05:30:00.000Z</tasks:UTCDueDate>
                     </email:Flag>
                 </ApplicationData>
             </Change>
         </Commands>
     </Collection>
 </Collections>

私が受け取る応答

 <?xml version="1.0"?>
<!DOCTYPE ActiveSync PUBLIC "-//MICROSOFT//DTD ActiveSync//EN" "http://www.microsoft.com/">
<Sync xmlns="AirSync:">
    <Collections>
        <Collection>
            <SyncKey>648263900</SyncKey>
            <CollectionId>11</CollectionId>
            <Status>1</Status>
            <Responses>
                <Change>
                    <ServerId>11:2</ServerId>
                    <Status>6</Status>
                </Change>
            </Responses>
        </Collection>
    </Collections>
</Sync>
4

1 に答える 1