Why am I getting ErrorCode: OperationNotSupported _Code: 204 When I am trying to get campaigns from sandbox account

Hi All,
      Seasonal Greetings. 
      I am new one to bing ads . I am trying to get Campaigns from my sandbox account. The following is my code.                    
 <?php
// To ensure that a cached WSDL is not being used,
// disable WSDL caching.
ini_set("soap.wsdl_cache_enabled", "0");
try
    //$accountId = <youraccountid>; // Application-specific value.
     $accountId = "8951263";
    // Use either the sandbox or the production URI.
    // This example is for the sandbox URI.
    $URI =
        "https://api.sandbox.bingads.microsoft.com/Api/Advertiser/v8/";
    // The following commented-out line contains the production URI.
    //$URI = "https://adcenterapi.microsoft.com/api/advertiser/v8/";
    // The API namespace.
    $xmlns = "https://adcenter.microsoft.com/v8";
    // The proxy for the Campaign Management Web service.
    $campaignProxy = 
        $URI . "CampaignManagement/CampaignManagementService.svc?wsdl";
    // The name of the service operation that will be called.
    $action = "GetCampaignsByAccountId";
    // The user name, password, and developer token are
    // expected to be passed in as command-line
    // arguments.
    // $argv[0] is the PHP file name.
    // $argv[1] is the user name.
    // $argv[2] is the password.
    // $argv[3] is the developer token.
    if ($argc !=4)
        printf("Usage:\n");
        printf(
          "php file.php username password devtoken\n");
        exit(0);
    $username = $argv[1];
    $password = $argv[2];
    $developerToken = $argv[3];
    $applicationToken = "";
    // Create the SOAP headers.
    $headerApplicationToken = 
        new SoapHeader
            $xmlns,
            'ApplicationToken',
            $applicationToken,
            false
    $headerDeveloperToken = 
        new SoapHeader
            $xmlns,
            'DeveloperToken',
            $developerToken,
            false
    $headerUserName = 
        new SoapHeader
            $xmlns,
            'UserName',
            $username,
            false
    $headerPassword = 
        new SoapHeader
            $xmlns,
            'Password',
            $password,
            false
    $headerCustomerAccountId = 
        new SoapHeader
            $xmlns,
            'CustomerAccountId',
            $accountId,
            false
    // Create the SOAP input header array.
    $inputHeaders = array
        $headerApplicationToken,
        $headerDeveloperToken,
        $headerUserName,
        $headerPassword,
        $headerCustomerAccountId
    // Create the SOAP client.
    $opts = array('trace' => true);
    $client = new SOAPClient($campaignProxy, $opts); 
    // Specify the parameters for the SOAP call.
    $params = array
        'AccountId' => $accountId,
    // Execute the SOAP call.
    $result = $client->__soapCall
        $action,
        array( $action.'Request' => $params ),
        null,
        $inputHeaders,
        $outputHeaders
     print "Successful $action call.\n";
     print "TrackingId output from response header: "
          . $outputHeaders['TrackingId']
          . ".\n";
     // Insert a blank line to separate the text that follows.
     print "\n";
    // Retrieve the campaigns.
    if (isset(
        $result->Campaigns
        if (is_array($result->Campaigns->Campaign))
            // An array of campaigns has been returned.
            $obj = $result->Campaigns->Campaign;
        else
            // A single campaign has been returned.
            $obj = $result->Campaigns;
        // Display the campaigns.
        foreach ($obj as $campaign)
            print "Name          : " . $campaign->Name . "\n";
            print "Description   : " . $campaign->Description . "\n";
            print "MonthlyBudget : " . $campaign->MonthlyBudget . "\n";
            print "BudgetType    : " . $campaign->BudgetType . "\n";
            print "\n";
catch (Exception $e)
    print "$action failed.\n";
    if (isset($e->detail->ApiFaultDetail))
      print "ApiFaultDetail exception encountered\n";
      print "Tracking ID: " . 
          $e->detail->ApiFaultDetail->TrackingId . "\n";
      // Process any operation errors.
      if (isset(
          $e->detail->ApiFaultDetail->OperationErrors->OperationError
          if (is_array(
              $e->detail->ApiFaultDetail->OperationErrors->OperationError
              // An array of operation errors has been returned.
              $obj = $e->detail->ApiFaultDetail->OperationErrors->OperationError;
          else
              // A single operation error has been returned.
              $obj = $e->detail->ApiFaultDetail->OperationErrors;
          foreach ($obj as $operationError)
              print "Operation error encountered:\n";
              print "\tMessage: ". $operationError->Message . "\n"; 
              print "\tDetails: ". $operationError->Details . "\n"; 
              print "\tErrorCode: ". $operationError->ErrorCode . "\n"; 
              print "\tCode: ". $operationError->Code . "\n"; 
      // Process any batch errors.
      if (isset(
          $e->detail->ApiFaultDetail->BatchErrors->BatchError
          if (is_array(
              $e->detail->ApiFaultDetail->BatchErrors->BatchError
              // An array of batch errors has been returned.
              $obj = $e->detail->ApiFaultDetail->BatchErrors->BatchError;
          else
              // A single batch error has been returned.
              $obj = $e->detail->ApiFaultDetail->BatchErrors;
          foreach ($obj as $batchError)
              print "Batch error encountered for array index " . $batchError->Index . ".\n";
              print "\tMessage: ". $batchError->Message . "\n"; 
              print "\tDetails: ". $batchError->Details . "\n"; 
              print "\tErrorCode: ". $batchError->ErrorCode . "\n"; 
              print "\tCode: ". $batchError->Code . "\n"; 
    if (isset($e->detail->AdApiFaultDetail))
      print "AdApiFaultDetail exception encountered\n";
      print "Tracking ID: " . 
          $e->detail->AdApiFaultDetail->TrackingId . "\n";
      // Process any operation errors.
      if (isset(
          $e->detail->AdApiFaultDetail->Errors
          if (is_array(
              $e->detail->AdApiFaultDetail->Errors
              // An array of errors has been returned.
              $obj = $e->detail->AdApiFaultDetail->Errors;
          else
              // A single error has been returned.
              $obj = $e->detail->AdApiFaultDetail->Errors;
          foreach ($obj as $Error)
              print "Error encountered:\n";
              print "\tMessage: ". $Error->Message . "\n"; 
              print "\tDetail: ". $Error->Detail . "\n"; 
              print "\tErrorCode: ". $Error->ErrorCode . "\n"; 
              print "\tCode: ". $Error->Code . "\n"; 
    // Display the fault code and the fault string.
    print $e->faultcode . " " . $e->faultstring . ".\n";
    // Output the last request.
    print "Last SOAP request:\n";
    print $client->__getLastRequest() . "\n";
?>
http://msdn.microsoft.com/en-us/library/bing-ads-campaign-management-php-samples-get-campaigns(v=msads.80).aspx
But I am getting responce 
GetCampaignsByAccountId failed.
ApiFaultDetail exception encountered
Tracking ID: efa654c5-b112-4e96-8c3d-79bac7e70112
Operation error encountered:
Message: This operation is not supported.
Details: 
ErrorCode: OperationNotSupported
Code: 204
s:Server Invalid client data. Check the SOAP fault details for more information.
Last SOAP request:
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="https://adcenter.microsoft.com/v8"><SOAP-ENV:Header><ns1:ApplicationToken></ns1:ApplicationToken><ns1:DeveloperToken>BBD37VB98</ns1:DeveloperToken><ns1:UserName>-XXXXXX-</ns1:UserName><ns1:Password>-XXXXX-</ns1:Password><ns1:CustomerAccountId>8951263</ns1:CustomerAccountId></SOAP-ENV:Header><SOAP-ENV:Body><ns1:GetCampaignsByAccountIdRequest><ns1:AccountId>8951263</ns1:AccountId></ns1:GetCampaignsByAccountIdRequest></SOAP-ENV:Body></SOAP-ENV:Envelope>
Please Help me to get out of this .  
Thank you in advance.
Deepa Varma 

Hello Nalin,
          Thank you for the reply . Now I am using
$campaignProxy ="https://api.sandbox.bingads.microsoft.com/Api/Advertiser/CampaignManagement/v9/CampaignManagementService.svc?wsdl" ;
// The API namespace.
    $xmlns = "https://adcenter.microsoft.com/v9";
    $xmlns = "https://bingads.microsoft.com/AdIntelligence/v9";
But I am getting 
GetCampaignsByAccountId failed.
AdApiFaultDetail exception encountered
Tracking ID: ca31d743-7b7b-4479-8082-44997d60d549
Error encountered:
Message: Authentication failed. Either supplied credentials are invalid or the account is inactive
Detail: 
ErrorCode: InvalidCredentials
Code: 105
s:Server Invalid client data. Check the SOAP fault details for more information.
Last SOAP request:
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="https://bingads.microsoft.com/CampaignManagement/v9" xmlns:ns2="https://adcenter.microsoft.com/v8"><SOAP-ENV:Header><ns2:ApplicationToken></ns2:ApplicationToken><ns2:DeveloperToken>BBD37VB98</ns2:DeveloperToken><ns2:UserName>vbridgellp</ns2:UserName><ns2:Password>XXXX</ns2:Password><ns2:CustomerAccountId>8951263</ns2:CustomerAccountId></SOAP-ENV:Header><SOAP-ENV:Body><ns1:GetCampaignsByAccountIdRequest><ns1:AccountId>8951263</ns1:AccountId></ns1:GetCampaignsByAccountIdRequest></SOAP-ENV:Body></SOAP-ENV:Envelope>
I am able to login to sand box UI and see my campaigns. What may be reason for the error ? 
Thank you in Advance. 
Deepa Varma

Similar Messages

  • ExchangeEWS throws ErrorCalendarOccurrenceIndexIsOutOfRecurrenceRange when I'm trying to get an existing occurence by index

    I have the strange situation:
    I created recurring calendar event by Exchange web service using the request like this:
            <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
            xmlns:mes="http://schemas.microsoft.com/exchange/services/2006/messages"
            xmlns:typ="http://schemas.microsoft.com/exchange/services/2006/types">
              <soapenv:Header>
                <typ:RequestServerVersion Version="Exchange2007_SP1"/>
                <typ:ExchangeImpersonation>
                  <typ:ConnectingSID>
                    <typ:PrimarySmtpAddress>[email protected]</typ:PrimarySmtpAddress>
                  </typ:ConnectingSID>
                </typ:ExchangeImpersonation>
              </soapenv:Header>
              <soapenv:Body>
            <mes:CreateItem MessageDisposition="SaveOnly" SendMeetingInvitations="SendToAllAndSaveCopy">
                  <mes:Items>
                    <typ:CalendarItem>
                      <typ:Subject>QC42135 test 3</typ:Subject>
                      <typ:Body BodyType="HTML"/>
                      <typ:Importance>Normal</typ:Importance>
                      <typ:ReminderIsSet>false</typ:ReminderIsSet>
                      <typ:Start>2014-07-25T04:00:00-05:00</typ:Start>
                      <typ:End>2014-07-25T05:00:00-05:00</typ:End>
                      <typ:Location/>
                      <typ:IsResponseRequested>false</typ:IsResponseRequested>
                      <typ:RequiredAttendees>
                        <typ:Attendee>
                          <typ:Mailbox>
                            <typ:EmailAddress>[email protected]</typ:EmailAddress>
                          </typ:Mailbox>
                        </typ:Attendee>
                      </typ:RequiredAttendees>
                      <typ:Recurrence>
                        <typ:WeeklyRecurrence>
                          <typ:Interval>2</typ:Interval>
                          <typ:DaysOfWeek>Wednesday Thursday Friday Saturday Sunday</typ:DaysOfWeek>
                        </typ:WeeklyRecurrence>
                        <typ:EndDateRecurrence>
                          <typ:StartDate>2014-07-20</typ:StartDate>
                          <typ:EndDate>2014-07-30</typ:EndDate>
                        </typ:EndDateRecurrence>
                      </typ:Recurrence>
                      <typ:MeetingTimeZone TimeZoneName="FLE Standard Time"/>
                    </typ:CalendarItem>
                  </mes:Items>
                </mes:CreateItem>
              </soapenv:Body>
            </soapenv:Envelope>
    Series of occurences were successfully created:
        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
           <soap:Header>
              <t:ServerVersionInfo MajorVersion="8" MinorVersion="3" MajorBuildNumber="348" MinorBuildNumber="2" Version="Exchange2007_SP1" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"/>
           </soap:Header>
           <soap:Body>
              <m:CreateItemResponse xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
                 <m:ResponseMessages>
                    <m:CreateItemResponseMessage ResponseClass="Success">
                       <m:ResponseCode>NoError</m:ResponseCode>
                       <m:Items>
                          <t:CalendarItem>
                             <t:ItemId Id="AAMkADVmYWI5YjhjLTdiN2MtNDJjNi04ZWIzLTUzNjVjZjk1MWY5OQBGAAAAAACuKk855hnzQ7gDOBltDFd1BwAa27cU8ukoS5yPRueWn38YAAobNHU+AAAa27cU8ukoS5yPRueWn38YAHDq5rCGAAA="
    ChangeKey="DwAAABYAAAAa27cU8ukoS5yPRueWn38YAHDq52bj"/>
                          </t:CalendarItem>
                       </m:Items>
                    </m:CreateItemResponseMessage>
                 </m:ResponseMessages>
              </m:CreateItemResponse>
           </soap:Body>
        </soap:Envelope>
    But when I'm trying to get occurrences of the event
    by index right after creation I'm able to get only first occurrence. For the others I receive ErrorCalendarOccurrenceIndexIsOutOfRecurrenceRange.
    Here is GetItem request:
        <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:typ="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:mes="http://schemas.microsoft.com/exchange/services/2006/messages">
        <soapenv:Header><typ:RequestServerVersion   Version="Exchange2007_SP1"/>
            <typ:ExchangeImpersonation>
              <typ:ConnectingSID>
                <typ:PrimarySmtpAddress>[email protected]</typ:PrimarySmtpAddress>
              </typ:ConnectingSID>
            </typ:ExchangeImpersonation>
        </soapenv:Header>
          <soapenv:Body>
              <mes:GetItem>
                 <mes:ItemShape>
                    <typ:BaseShape>IdOnly</typ:BaseShape>
                </mes:ItemShape>
                 <mes:ItemIds>
                    <typ:OccurrenceItemId RecurringMasterId="AAMkADVmYWI5YjhjLTdiN2MtNDJjNi04ZWIzLTUzNjVjZjk1MWY5OQBGAAAAAACuKk855hnzQ7gDOBltDFd1BwAa27cU8ukoS5yPRueWn38YAAobNHU+AAAa27cU8ukoS5yPRueWn38YAHDq5rCGAAA="
    ChangeKey="DwAAABYAAAAa27cU8ukoS5yPRueWn38YAHDq52bj" InstanceIndex="1" />
                     <typ:OccurrenceItemId RecurringMasterId="AAMkADVmYWI5YjhjLTdiN2MtNDJjNi04ZWIzLTUzNjVjZjk1MWY5OQBGAAAAAACuKk855hnzQ7gDOBltDFd1BwAa27cU8ukoS5yPRueWn38YAAobNHU+AAAa27cU8ukoS5yPRueWn38YAHDq5rCGAAA="
    ChangeKey="DwAAABYAAAAa27cU8ukoS5yPRueWn38YAHDq52bj" InstanceIndex="2" />
                     <typ:OccurrenceItemId RecurringMasterId="AAMkADVmYWI5YjhjLTdiN2MtNDJjNi04ZWIzLTUzNjVjZjk1MWY5OQBGAAAAAACuKk855hnzQ7gDOBltDFd1BwAa27cU8ukoS5yPRueWn38YAAobNHU+AAAa27cU8ukoS5yPRueWn38YAHDq5rCGAAA="
    ChangeKey="DwAAABYAAAAa27cU8ukoS5yPRueWn38YAHDq52bj" InstanceIndex="3" />
                     <typ:OccurrenceItemId RecurringMasterId="AAMkADVmYWI5YjhjLTdiN2MtNDJjNi04ZWIzLTUzNjVjZjk1MWY5OQBGAAAAAACuKk855hnzQ7gDOBltDFd1BwAa27cU8ukoS5yPRueWn38YAAobNHU+AAAa27cU8ukoS5yPRueWn38YAHDq5rCGAAA="
    ChangeKey="DwAAABYAAAAa27cU8ukoS5yPRueWn38YAHDq52bj" InstanceIndex="4" />
                     <typ:OccurrenceItemId RecurringMasterId="AAMkADVmYWI5YjhjLTdiN2MtNDJjNi04ZWIzLTUzNjVjZjk1MWY5OQBGAAAAAACuKk855hnzQ7gDOBltDFd1BwAa27cU8ukoS5yPRueWn38YAAobNHU+AAAa27cU8ukoS5yPRueWn38YAHDq5rCGAAA="
    ChangeKey="DwAAABYAAAAa27cU8ukoS5yPRueWn38YAHDq52bj" InstanceIndex="5" />
                 </mes:ItemIds>
              </mes:GetItem>
           </soapenv:Body>
        </soapenv:Envelope>
    And response
        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
           <soap:Header>
              <t:ServerVersionInfo MajorVersion="8" MinorVersion="3" MajorBuildNumber="348" MinorBuildNumber="2" Version="Exchange2007_SP1" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"/>
           </soap:Header>
           <soap:Body>
              <m:GetItemResponse xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
                 <m:ResponseMessages>
                    <m:GetItemResponseMessage ResponseClass="Success">
                       <m:ResponseCode>NoError</m:ResponseCode>
                       <m:Items>
                          <t:CalendarItem>
                             <t:ItemId Id="AAMkADVmYWI5YjhjLTdiN2MtNDJjNi04ZWIzLTUzNjVjZjk1MWY5OQFRAAiI0XGjJ/YgAEYAAAAAripPOeYZ80O4AzgZbQxXdQcAGtu3FPLpKEucj0bnlp9/GAAKGzR1PgAAGtu3FPLpKEucj0bnlp9/GABw6uawhgAAEA=="
    ChangeKey="DwAAABYAAAAa27cU8ukoS5yPRueWn38YAHDq52bj"/>
                          </t:CalendarItem>
                       </m:Items>
                    </m:GetItemResponseMessage>
                    <m:GetItemResponseMessage ResponseClass="Error">
                       <m:MessageText>Occurrence index is out of recurrence range.</m:MessageText>
                       <m:ResponseCode>ErrorCalendarOccurrenceIndexIsOutOfRecurrenceRange</m:ResponseCode>
                       <m:DescriptiveLinkKey>0</m:DescriptiveLinkKey>
                       <m:Items/>
                    </m:GetItemResponseMessage>
                    <m:GetItemResponseMessage ResponseClass="Error">
                       <m:MessageText>Occurrence index is out of recurrence range.</m:MessageText>
                       <m:ResponseCode>ErrorCalendarOccurrenceIndexIsOutOfRecurrenceRange</m:ResponseCode>
                       <m:DescriptiveLinkKey>0</m:DescriptiveLinkKey>
                       <m:Items/>
                    </m:GetItemResponseMessage>
                    <m:GetItemResponseMessage ResponseClass="Error">
                       <m:MessageText>Occurrence index is out of recurrence range.</m:MessageText>
                       <m:ResponseCode>ErrorCalendarOccurrenceIndexIsOutOfRecurrenceRange</m:ResponseCode>
                       <m:DescriptiveLinkKey>0</m:DescriptiveLinkKey>
                       <m:Items/>
                    </m:GetItemResponseMessage>
                    <m:GetItemResponseMessage ResponseClass="Error">
                       <m:MessageText>Occurrence index is out of recurrence range.</m:MessageText>
                       <m:ResponseCode>ErrorCalendarOccurrenceIndexIsOutOfRecurrenceRange</m:ResponseCode>
                       <m:DescriptiveLinkKey>0</m:DescriptiveLinkKey>
                       <m:Items/>
                    </m:GetItemResponseMessage>
                 </m:ResponseMessages>
              </m:GetItemResponse>
           </soap:Body>
        </soap:Envelope>
    I found the description of recurrent event on Microsoft site http://msdn.microsoft.com/en-us/library/office/dd633684%28v=exchg.80%29.aspx
    and according the documentation when a recurring series is created, each occurrence item has as index that represents its position in the series.
    The index starts at one and advances by one for each item in the series. But it seems to be incorrect.
    In my case obviously occurrences are indexed in different way.
    Can anyone explain how Exchange indexes occurrences? How can I get certain occurrence in the series?

    >>If its a bug you should be able to reliably reproduce the issue. In your test case you only have a recurrence period of 10 days but your using an interval of 2 ??
    I found the case when it reproduces reliably. It happens exactly when recurrence period is shorter then the interval. When I set the suitable period like this:
                 <typ:Recurrence>
                      <typ:WeeklyRecurrence>
                         <typ:Interval>3</typ:Interval>
                         <typ:DaysOfWeek>Thursday Friday</typ:DaysOfWeek>
                      </typ:WeeklyRecurrence>
                      <typ:EndDateRecurrence>
                         <typ:StartDate>2014-08-06</typ:StartDate>
                         <typ:EndDate>2014-09-13</typ:EndDate>
                      </typ:EndDateRecurrence>
                   </typ:Recurrence>
    I can get the 2nd and 3d occurrences by index. But there are 4 occurrences in the calendar and for 4th I still get ErrorCalendarOccurrenceIndexIsOutOfRecurrenceRange.
    Here is CalendarView for this new appointment:
    <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
       <soap:Header>
          <t:ServerVersionInfo MajorVersion="8" MinorVersion="3" MajorBuildNumber="348" MinorBuildNumber="2" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"/>
       </soap:Header>
       <soap:Body>
          <m:FindItemResponse xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
             <m:ResponseMessages>
                <m:FindItemResponseMessage ResponseClass="Success">
                   <m:ResponseCode>NoError</m:ResponseCode>
                   <m:RootFolder TotalItemsInView="4" IncludesLastItemInRange="true">
                      <t:Items>
                         <t:CalendarItem>
                            <t:ItemId Id="AAAYAGFuaWt1c2hraW5hQGNveGxhYi5sb2NhbAFRAAiI0X/II2WgAEYAAAAAm/SFMIOmk0S20kr3aAh9lQcAGtu3FPLpKEucj0bnlp9/GAAKG6ycXQAAGtu3FPLpKEucj0bnlp9/GABw6uYOBgAAEA=="
    ChangeKey="DwAAABYAAAAa27cU8ukoS5yPRueWn38YAHDq57Py"/>
                            <t:Subject>Occurrence Pattern Test 1</t:Subject>
                            <t:Start>2014-08-07T08:45:00Z</t:Start>
                            <t:End>2014-08-07T08:55:00Z</t:End>
                         </t:CalendarItem>
                         <t:CalendarItem>
                            <t:ItemId Id="AAAYAGFuaWt1c2hraW5hQGNveGxhYi5sb2NhbAFRAAiI0YCRTc9gAEYAAAAAm/SFMIOmk0S20kr3aAh9lQcAGtu3FPLpKEucj0bnlp9/GAAKG6ycXQAAGtu3FPLpKEucj0bnlp9/GABw6uYOBgAAEA=="
    ChangeKey="DwAAABYAAAAa27cU8ukoS5yPRueWn38YAHDq57Py"/>
                            <t:Subject>Occurrence Pattern Test 1</t:Subject>
                            <t:Start>2014-08-08T08:45:00Z</t:Start>
                            <t:End>2014-08-08T08:55:00Z</t:End>
                         </t:CalendarItem>
                         <t:CalendarItem>
                            <t:ItemId Id="AAAYAGFuaWt1c2hraW5hQGNveGxhYi5sb2NhbAFRAAiI0ZBInhJgAEYAAAAAm/SFMIOmk0S20kr3aAh9lQcAGtu3FPLpKEucj0bnlp9/GAAKG6ycXQAAGtu3FPLpKEucj0bnlp9/GABw6uYOBgAAEA=="
    ChangeKey="DwAAABYAAAAa27cU8ukoS5yPRueWn38YAHDq57Py"/>
                            <t:Subject>Occurrence Pattern Test 1</t:Subject>
                            <t:Start>2014-08-28T08:45:00Z</t:Start>
                            <t:End>2014-08-28T08:55:00Z</t:End>
                         </t:CalendarItem>
                         <t:CalendarItem>
                            <t:ItemId Id="AAAYAGFuaWt1c2hraW5hQGNveGxhYi5sb2NhbAFRAAiI0ZERyHwgAEYAAAAAm/SFMIOmk0S20kr3aAh9lQcAGtu3FPLpKEucj0bnlp9/GAAKG6ycXQAAGtu3FPLpKEucj0bnlp9/GABw6uYOBgAAEA=="
    ChangeKey="DwAAABYAAAAa27cU8ukoS5yPRueWn38YAHDq57Py"/>
                            <t:Subject>Occurrence Pattern Test 1</t:Subject>
                            <t:Start>2014-08-29T08:45:00Z</t:Start>
                            <t:End>2014-08-29T08:55:00Z</t:End>
                         </t:CalendarItem>
                      </t:Items>
                   </m:RootFolder>
                </m:FindItemResponseMessage>
             </m:ResponseMessages>
          </m:FindItemResponse>
       </soap:Body>
    </soap:Envelope>
    Here we have clearly 4 occurrences. I still don't understand why I can't get the last one by index. When I set the period for 10 days and interval 2 weeks I know it's stupid case but anyway 2 occurrences appear on Thursday and Friday in the calendar and
    I can find them in CalendarView too but I can't get the last one by index.
    Probably the reason why it happens is the last occurrence is defined incorrectly. You see Exchange shows it on 2014-08-28 meanwhile really it should be 2014-08-29
    Here is part of GetItemResponse for the recurring master
                         <t:Recurrence>
                            <t:WeeklyRecurrence>
                               <t:Interval>3</t:Interval>
                               <t:DaysOfWeek>Thursday Friday</t:DaysOfWeek>
                            </t:WeeklyRecurrence>
                            <t:EndDateRecurrence>
                               <t:StartDate>2014-08-07Z</t:StartDate>
                               <t:EndDate>2014-09-13Z</t:EndDate>
                            </t:EndDateRecurrence>
                         </t:Recurrence>
                         <t:FirstOccurrence>
                            <t:ItemId Id="AAMkAGMwZmFmZWM2LTkxOTUtNDc4ZC04MGE4LTk0ODA5NGM2MjM5NQFRAAiI0X/II2WgAEYAAAAAm/SFMIOmk0S20kr3aAh9lQcAGtu3FPLpKEucj0bnlp9/GAAKG6ycXQAAGtu3FPLpKEucj0bnlp9/GABw6uYOBgAAEA=="
    ChangeKey="DwAAABYAAAAa27cU8ukoS5yPRueWn38YAHDq57Py"/>
                            <t:Start>2014-08-07T08:45:00Z</t:Start>
                            <t:End>2014-08-07T08:55:00Z</t:End>
                            <t:OriginalStart>2014-08-07T08:45:00Z</t:OriginalStart>
                         </t:FirstOccurrence>
                         <t:LastOccurrence>
                            <t:ItemId Id="AAMkAGMwZmFmZWM2LTkxOTUtNDc4ZC04MGE4LTk0ODA5NGM2MjM5NQFRAAiI0ZBInhJgAEYAAAAAm/SFMIOmk0S20kr3aAh9lQcAGtu3FPLpKEucj0bnlp9/GAAKG6ycXQAAGtu3FPLpKEucj0bnlp9/GABw6uYOBgAAEA=="
    ChangeKey="DwAAABYAAAAa27cU8ukoS5yPRueWn38YAHDq57Py"/>
                            <t:Start>2014-08-28T08:45:00Z</t:Start>
                            <t:End>2014-08-28T08:55:00Z</t:End>
                            <t:OriginalStart>2014-08-28T08:45:00Z</t:OriginalStart>
                         </t:LastOccurrence>
    With best regards,
    Natalia

  • I keep getting this error in Dreamweaver when I am trying to upload my website?  Can you tell me what I am doing wrong?  here is the error message: /html - error occurred - Unable to create remote folder /html.  Access denied.  The file may not exist, or

    I keep getting this error in Dreamweaver when I am trying to upload my website?  Can you tell me what I am doing wrong?  here is the error message: /html - error occurred - Unable to create remote folder /html.  Access denied.  The file may not exist, or there could be a permission problem.   Make sure you have proper authorization on the server and the server is properly configured.  File activity incomplete. 1 file(s) or folder(s) were not completed.  Files with errors: 1 /html

    Nobody can tell you anything without knowing exact site and server specs, but I would suspect that naming the folder "html" wasn't the brightest of ideas, since that's usually a default (invisible) folder name existing somewhere on the server and the user not having privileges to overwrite it.
    Mylenium

  • I am trying to sync to Outlook 2010.  I get a weird error message when I am trying to setup on my pc.  Its not english.  It says "der automatische refresh konnte nicht gestartet werden"  Help!

    I am trying to sync to Outlook 2010.  I get a weird error message when I am trying to setup on my pc.  Its not english.  It says "der automatische refresh konnte nicht gestartet werden"  Help!

    Hello,
    '''Try Firefox Safe Mode''' to see if the problem goes away. Safe Mode is a troubleshooting mode, which disables most add-ons.
    ''(If you're not using it, switch to the Default theme.)''
    * On Windows you can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * On Mac you can open Firefox 4.0+ in Safe Mode by holding the '''option''' key while starting Firefox.
    * On Linux you can open Firefox 4.0+ in Safe Mode by quitting Firefox and then going to your Terminal and running: firefox -safe-mode (you may need to specify the Firefox installation path e.g. /usr/lib/firefox)
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    [[Image:FirefoxSafeMode|width=520]]
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    [[Image:Safe Mode Fx 15 - Win]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    ''When you figure out what's causing your issues, please let us know. It might help other users who have the same problem.''
    Thank you.

  • HT201302 When I am trying to import pictures from my iphone to PC, I get the message'No new pictures of videos were found on this device'. There are lots of pictures which i can see on the iphone. I have a 4S. Is there a way to get around that?

    When I am trying to import pictures from my iphone to PC, I get the message'No new pictures of videos were found on this device'. There are lots of pictures which i can see on the iphone. I have a 4S. Is there a way to get around that?

    It sounds like you are using an application to import. You can do it manually.
    Start > Computer (on the right) > scroll to the bottom and you will see your iPhone under Portable Devices > Open it and you will see a Drive, open that and there will be a DCIM folder. That is where your photos will be (There may be other folders each holding photos).

  • TS2972 Why is the "Import" button grey when I'm trying to transfer music from one computer to another?

    Why is the "Import" button grey when I'm trying to transfer music from one computer to another using Home Sharing?

    Hi lexipuppy,
    I dont know if you have your music on your other computer was on itunes, but if it was, make sure that you signed into your itunes account on your other computer. If you are signed in then your music should show up in your library.

  • [svn:bz-trunk] 21394: bug fix for watson 2887837 Not getting duplicate session detected error when same flex client id is used from two different HTTP sessions in CRX .

    Revision: 21394
    Revision: 21394
    Author:   [email protected]
    Date:     2011-06-16 12:34:13 -0700 (Thu, 16 Jun 2011)
    Log Message:
    bug fix for watson 2887837 Not getting duplicate session detected error when same flex client id is used from two different HTTP sessions in CRX.
    get the sessions id before we invalidate the duplicate session.
    Checkintests pass
    Modified Paths:
        blazeds/trunk/modules/core/src/flex/messaging/endpoints/BaseHTTPEndpoint.java

    For our profect I think this issue was caused as follows:
    Believing that remoting was full asynchronous we fired a 2 or 3 remote calls to the server at the same time ( within the same function ) - usually when the users goes to a new section of the app.
    This seemed to trigger the duplicate http session error since according to http://blogs.adobe.com/lin/2011/05/duplication-session-error.html  two remote calls arriving before a session is created will cause 2 sessions to be created.
    Our current solution ( too early to say it works ) is to daisy chain the multiple calls together .
    Also there seemed to be an issue where mobile apps that never quit ( thanks Apple! )  caused the error when activated after a few hours.
    I guess the session expires on the server and the error above occurs on activation.
    So the mobile apps now ping the server with a remote call when activated after sleeping for more than one hour.
    All duplicate http errors are silently caught and reported.
    Fingers crossed we won't get any more!

  • When I was trying to get icloud downloaded to my ipad I got an 1603 error. Then my ipad got the beginning hook up to itunes as you get when you first try your new ipad.

    When I was trying to get icloud downloaded to my ipad 2 I got an 1603 error.   Now my ipad 2 is showing the icon tha says to hook up to itunes.

    http://support.apple.com/kb/TS3694#error1603
    There have been some problems accessing pages on the Apple web site.  If the hyperlink gives you a "We're sorry" message, try again.

  • Oh Lordy, Santa Pazienza! Let's start again now that I have an official profile in the Apple Forum! Why Apple keeps asking me my billing address when i am trying to download the free application Fotor?

    Oh Lordy, Santa Pazienza! Let's start again now that I have an official profile in the Apple Forum!
    Why Apple keeps asking me my billing address when I am trying to download the free application Fotor from the Fotor webesite?

    ?

  • HT4993 hello, for some reason when I'm trying to get into my itune on my phone says my apple id is disable

    hello, for some reason when I'm trying to get into my itune on my phone says my apple id is disable

    Contact the store support staff at http://www.apple.com/emea/suppot/itunes/contact.html they are very good with these issues.

  • HT1420 I get en error message 42408. I have tried several times to activate my account but the same message keeps reappearing. Please help. I cant even sink my iPad or iPhone. Thanks

    I get en error message 42408. I have tried several times to activate my account but the same message keeps reappearing. Please help. I cant even sink my iPad or iPhone. Thanks

    After searching, found a few answers and tried one last thing-- allowing Safari to accept Cookies. I never use Safari so never changed any settings in it ever. However, I guess an update along the way turned off cookies in it and that was the blockage. Once I allowed Safari to use cookies I was able to redeem the gift card. SO, glad this board is here for these types of questions!!!!

  • Refresh DSV - why does it keep indicating it "Added" things, when its already been done? (repost from DW forum)

    Note to moderator(s):
    Please remove the other post
    https://social.msdn.microsoft.com/Forums/sqlserver/en-US/d4e30da8-5234-4373-963f-c165b99f8df2/bids-2008-refresh-dsv-why-does-it-keep-indicating-it-added-things-when-its-already-been-done?forum=sqldatawarehousing
    There were a number of changes done and earlier I had used the "refresh" button in the DSV view, and the updates were reflected in the DSV.  Now, however everything should be updates, yet when I hit refresh, the dialog still comes up and list
    all the changes it did earlier as "Added".  What is going on here?
    Now however, all my tables, dimensions, relations etc are setup with no errors and the cube builds, processes and deploys without any errors, yet if I refresh the DSV, I still get the dialog that displays all the things that it "sees" as "Added".
     This is even after closing down BIDS and re-opening.
    Also, I wonder if this has something to do this this thread, since its concerning the DSV getting "confused"
    https://social.msdn.microsoft.com/forums/sqlserver/en-US/33918238-cbe0-4017-bec9-0fe1bad15909/refresh-dsv-gives-net-error-column-argument-cannot-be-null

    Hi Shiftbit,
    According to your description, you need to know why the dialog still comes up and list all the changes it did earlier as "Added" when there is nothing changed in the data source view, right?
    I have tested it on my local environment. We use the sample project AdventureWorks, we didn't make any modification on the DSV and click the Refresh button, and all the changes were list on Refresh Data Source View dialog. So as per my understanding, this
    is default settings. If we click the button, it will list all the changes from the date when you create this project.
    If you have any concern about this behavior, you can submit a feedback at
    http://connect.microsoft.com/SQLServer/Feedback  Your feedback enables Microsoft to make software and services the best that they can be.
    Regards,
    Charlie Liao
    TechNet Community Support

  • I just purchased a new iPhone and it told me to plug it into iTunes, I did. Now when I am trying to get on to iCloud to get all of my data from previous phone, it won't let me. I keep getting my old apple ID

    I just purchased a new iPhone and I am not able to get into my iCloud.  When I plugged it into my computer, I used iTunes to get my phone up and running.  Well it gave me my old apple ID as my info.  Now I cannot get into anything because I don't remember my old password and when I go to the website to recover my password it is of no help cause I don't remember any security questions(over 8 years old) and that email account don't even exist anymore.  Now when I go to try I cloud on my new phone all it keeps doing is trying to verify my old iTunes and won't let me use my new apple ID to sign in it keeps sAying to type in my old password from my old apple ID that I just don t have.  Can anybody help me?

    Hello Timmy790
    Try the suggestions in the article below to resolve the issue of seeing your old Apple ID on your iPhone.
    iOS 7: If you're asked for the password to your previous Apple ID when signing out of iCloud
    http://support.apple.com/kb/ts5223
    Regards,
    -Norm G.

  • I'm getting the "App Activate" error when I try to download my bundles from the DPS App Builder.

    I have a Single-App subscription to the Adobe Creative Cloud.
    According to this FAQ (link: http://www.adobe.com/products/creativecloud/faq.html#single-app) I should be able to publish unlimited single .folios with DPS with my Single-App subscription to the Creative Cloud. Here is the exact paragraph I'm refering to from that FAQ:
    As a Creative Cloud member, do I have access to Digital Publishing Suite?
    Digital Publishing Suite Single Edition is not available to free Creative Cloud members. Creative Cloud single-app and complete members have an unlimited Digital Publishing Suite Single Edition license. Creative Cloud for teams members also have an unlimited Digital Publishing Suite Single Edition license.
    When I build the app in the DPS App Builder and reach the end of the process, I'm getting the error where it asks me to provide a Single Edition subscription serial to download the developer bundles for my app. 
    I have tried all the methods described on this forum to solve this problem, including deleting and reinstalling the DPS App Builder, deleting the old apps and creating new ones after redownloading the DPS App Builder, deleting the DPS App Builder, signing out of my Folio Builder in InDesign, redownloading the DPS App Builder, signing into my Folio Builder in InDesign again, etc., to no avail.
    Can anyone help? This is a time-sensitive issue and I'm trying to get this app into the Apple submission process immediately. I can answer any questions if you all have troubleshooting advice for me.
    Thanks,
    David

    Thank you for the information and the response. We will be upgrading to the full version of Creative Cloud to publish our single .folio.
    I do want to remark on the issues created by Adobe's inconsistent explanation of how DPS can be used with the Creative Cloud. After reading that FAQ, I also spoke with an "Adobe Agent" through the chat system that pops up on various product pages and asked the agent as specifically as I could if the Single-app version of Creative Cloud would allow me to publish single .folios through DPS. In no uncertain terms the agent said the Single-app version would be fine, and referred me to the order page to begin the order process.
    I spoke with another agent over chat in the morning on Saturday and they also said I should be able to publish single .folios with the Singe-app subscription to Creative Cloud. When I presented my App Activation problem to the agent, the agent said I should just wait 24-48 hours for my subscription to Creative Cloud to process so I could create my app.
    This has been a very vexing process that has cost my team valuable app review time. If I had not encountered the FAQ and two agents who specifically told me that I could use the Single-app version of Creative Cloud to publish my .folio, I would have been happy to go straight to purchasing the full version of Creative Cloud.
    Thanks again for the assistance.

  • I can't get the album info when I'm trying to import songs from a cd. Any Help?

    When I click on advanced-get track names it says Server Error. And when I import anyways and go to library and try to get info again it says can't connect to gracenote database or cddb is not available for some of these items. Which I know is not true because they are not hard to find cd's or whatever. I try with a few other cd's and still nothing same problem. What do I do? Reinstall Itunes or what?

    Hi there,
    I have included a couple of article below that should cover the process for importing the CDs and then syncing those to your iPhone. I would recommend reviewing it thuroughly as a lot has changed in iTunes 11.
    iTunes 11 for Windows: Import songs from CDs
    http://support.apple.com/kb/PH12486
    iTunes 11 for Windows: Set up syncing for iPod, iPhone, or iPad
    http://support.apple.com/kb/PH12313
    -Griff W.

Maybe you are looking for