Errorcode : 8007049a

After a hard reset on a Samsung Ativ S  I8750, I can't install a single app anymore.  I read here Taht the only solution to this is to rollback to update 2. I don't know how to do this. Please  help me .

Hello,
Specifically, you should ask in the
Windows Phone forums on the Microsoft Community forums.
Karl
When you see answers and helpful posts, please click Vote As Helpful, Propose As Answer, and/or Mark As Answer.
My Blog: Unlock PowerShell
My Book: Windows PowerShell 2.0 Bible
My E-mail: -join ('6F6C646B61726C40686F746D61696C2E636F6D'-split'(?<=\G.{2})'|%{if($_){[char][int]"0x$_"}})

Similar Messages

  • 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

  • Lync 2013 failed on windows 7 64-bit system with ErrorCode: 1624(0x658)

    I have HP xw4400 Workstation (64bit) with windows 7 SP1.
    LYNC 2013 is getting failed again and again with error "Microsoft setup bootstrapper has stopped working".
    I checked setup log at %temp% and found something went wrong in c:\MSOCache\All Users but couldn't fix it
    2014/09/02 17:58:28:477::[5164] Error: Failed to configure:  {90150000-012C-0000-0000-0000000FF1CE} ErrorCode: 1624(0x658). 
    2014/09/02 17:58:28:477::[5164] Log level changed from: Standard to: Verbose
    2014/09/02 17:58:28:477::[5164] Rolling back chain
    2014/09/02 17:58:28:477::[5164] Error attaching to OSE, error 0x00000000
    2014/09/02 17:58:28:477::[5164] Stopping running ose
    I followed another TechNet article regarding MSO 2013 getting crashed with same error
    http://social.technet.microsoft.com/forums/office/en-US/4b4c3176-b436-4f07-99c1-ea92091bd621/windows-7-64bit-office-2013-install-error
    Thanks in advance

    Hi,
    Did you solve the issue with the help of Edwin provided above?
    Please try to download the latest version of Office 2013 from Microsoft Website and then install it to check if the issue happen again.
    Please also go to your computer manufacturer’s website and update all driver packages for your computer, such as: Audio drivers, Bluetooth drivers, System chipset drivers, webcam drivers.
    Best Regards,
    Eason Huang
    Eason Huang
    TechNet Community Support

  • Trex error: No embedded object found in document (Errorcode 14037)

    Hi,
    we have following problem with our crawler:
    in the crawler 50 % of documents are returning the error "No embedded object found in document (Errorcode 14037)" and are not displayed in the trex monitor. All other documents are indexed correctly an are in the trex monitor in "OK".
    We are on Stack 14 Patch 4.
    Regards,
    Gerhard

    Hi Gerhard,
    Typically, errors codes 14XXX are related to filter problems during the preprocessing of documents. Details about TREX error codes are explained in the help portal and in the note 898404.
    Unfortunatelly, filter problems could not be easily fixed. However, a good starting point would be to use a newer TREX release. If this doesnt help please open a Customer Message and attach documents, which causes the mentioned error. Please attach only not sensible documents!
    Kind regards,
    Roland

  • Internal errorcode, Errorcode 9050 "disk_not_accessible"  Please Help....

    Hi,
    I'm getting error in Installation-SAP Netweaver 2004s on AIX 5.3 usingMaxDB as database.
    Error Log
    ERROR 2007-03-10 16:09:10
    The dbmcli call for action SET_LOG_WRITER_OFF failed. Check the logfile XCMDOUT.LOG.
    ERROR 2007-03-10 16:09:10
    The dbmcli call for action SET_LOG_WRITER_OFF failed. Check the logfile XCMDOUT.LOG.
    ERROR 2007-03-10 16:09:10
    FCO-00011 The step SdbSwitchLogOffBeforeStatisticUpdate with step key |NW_Onehost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|1|0|NW_CreateDBandLoad|ind|ind|ind|ind|10|0|NW_Postload|ind|ind|ind|ind|10|0|NW_Postload_ADA|ind|ind|ind|ind|1|0|SdbSwitchLogOffBeforeStatisticUpdate was executed with status ERROR .
    <b>I have pasted XCMDOUT.LOG below.
    </b>
    Start subprocess as user with uid: root
    Execute Session Command : sql_connect superdba,********
    Execute Session Command : sql_execute SELECT USERNAME FROM USERS
    Execute Session Command : exit
    > Subprocess stops at 20070309191654
    OK
    OK
    END
    'CONTROL'
    'SUPERDBA'
    'SAPINDDB'
    > Subprocess starts at 20070309191710
    Execute Command : /sapdb/programs/bin/dbmcli -n punlparidm06 -d IND -u control,******** db_state
    Start subprocess as user with uid: root
    > Subprocess stops at 20070309191711
    OK
    State
    ONLINE
    > Subprocess starts at 20070309191711
    Execute Command : /sapdb/programs/bin/dbmcli -n punlparidm06 -d IND -u control,********
    Start subprocess as user with uid: root
    Execute Session Command : sql_connect superdba,********
    Execute Session Command : sql_execute SELECT USERNAME FROM USERS
    Execute Session Command : exit
    > Subprocess stops at 20070309191713
    OK
    OK
    END
    'CONTROL'
    'SUPERDBA'
    'SAPINDDB'
    > Subprocess starts at 20070309191739
    Execute Command : /sapdb/programs/bin/dbmcli -n punlparidm06 -d IND -u CONTROL,********
    Start subprocess as user with uid: root
    Execute Session Command : util_connect
    Execute Session Command : util_execute set log auto overwrite on
    Execute Session Command : exit
    > Subprocess stops at 20070309191741
    OK
    OK
    > Subprocess starts at 20070310160825
    Execute Command : /sapdb/programs/bin/dbmcli -n punlparidm06 -d IND -u CONTROL,********
    Start subprocess as user with uid: root
    Execute Session Command : util_connect
    Execute Session Command : util_execute set log auto overwrite off
    Execute Session Command : exit
    > Subprocess stops at 20070310160832
    OK
    OK
    > Subprocess starts at 20070310160844
    Execute Command : /sapdb/programs/bin/dbmcli -n punlparidm06 -d IND -u CONTROL,******** db_state
    Start subprocess as user with uid: root
    > Subprocess stops at 20070310160845
    OK
    State
    ONLINE
    > Subprocess starts at 20070310160846
    Execute Command : /sapdb/programs/bin/dbmcli -n punlparidm06 -d IND -u CONTROL,******** db_admin
    Start subprocess as user with uid: root
    > Subprocess stops at 20070310160909
    OK
    > Subprocess starts at 20070310160909
    Execute Command : /sapdb/programs/bin/dbmcli -n punlparidm06 -d IND -u CONTROL,********
    Start subprocess as user with uid: root
    Execute Session Command : util_connect
    Execute Session Command : util_execute set log writer off
    > Subprocess stops at 20070310160910
    OK
    ERR
    -24988,ERR_SQL: SQL error
    -9407,System error: unexpected error
    3,Database state: OFFLINE
    6,Internal errorcode, Errorcode 9050 "disk_not_accessible"
    have pasted knldiag.err below:
    Please help.
    2007-03-10 16:09:10 29 ERR 11599 BTRACE Frameinfo [0x16c53df20]
    2007-03-10 16:09:10 29 ERR 11599 BTRACE -
    > End of Stack Back Trace <----
    2007-03-10 16:09:10 29 ERR 51080 SYSERROR -9407 unexpected error
    2007-03-10 16:09:10 29 ERR 3 Admin Database state: OFFLINE
    2007-03-10 16:09:10 29 ERR 6 KernelCo + Internal errorcode, Errorcode 9050 "disk_not_accessible"
    2007-03-10 16:09:13 0 ERR 12006 DBCRASH Kernel exited without core and exit status 0x200
    2007-03-10 16:09:13 0 ERR 12010 DBCRASH Kernel exited exit code 2
    2007-03-10 16:09:14 ___ Stopping GMT 2007-03-10 21:39:14 7.6.00 Build 0
    35-123-139-084
    2007-03-10 16:49:29 --- Starting GMT 2007-03-10 22:19:29 7.6.00 Build 0
    35-123-139-084
    2007-03-10 16:49:45 29 ERR 20043 IOMan Capacity of log volume 1 is different between configuration and
    info page: 563200 vs. 819200
    2007-03-10 16:49:45 29 ERR 11599 BTRACE -
    > Emergency Stack Back Trace <----
    2007-03-10 16:49:45 29 ERR 11599 BTRACE (0):0x1001cf708 [0x16c439740]
    2007-03-10 16:49:45 29 ERR 11599 BTRACE (1):0x1004a4284 [0x16c4397c0]
    2007-03-10 16:49:45 29 ERR 11599 BTRACE (2):0x1004a3e78 [0x16c439980]
    2007-03-10 16:49:45 29 ERR 11599 BTRACE (3):0x1004ad9c4 [0x16c439a90]
    2007-03-10 16:49:45 29 ERR 11599 BTRACE (4):0x100480bac [0x16c439cf0]
    2007-03-10 16:49:45 29 ERR 11599 BTRACE (5):0x10070a994 [0x16c439d70]
    2007-03-10 16:49:45 29 ERR 11599 BTRACE (6):0x1008a5b88 [0x16c43a060]
    2007-03-10 16:49:45 29 ERR 11599 BTRACE (7):0x1008a6ae8 [0x16c43a190]
    2007-03-10 16:49:45 29 ERR 11599 BTRACE (8):0x1008a7b64 [0x16c43a280]
    2007-03-10 16:49:45 29 ERR 11599 BTRACE (9):0x1006fb528 [0x16c43a3c0]
    2007-03-10 16:49:45 29 ERR 11599 BTRACE (10):0x1006fa978 [0x16c43a610]
    2007-03-10 16:49:45 29 ERR 11599 BTRACE (11):0x1006f90d4 [0x16c43a820]
    2007-03-10 16:49:45 29 ERR 11599 BTRACE (12):0x100b86f90 [0x16c43a8e0]
    2007-03-10 16:49:45 29 ERR 11599 BTRACE (13):0x100b88cdc [0x16c43aa30]
    2007-03-10 16:49:45 29 ERR 11599 BTRACE (14):0x10108fa2c [0x16c43ab80]
    2007-03-10 16:49:45 29 ERR 11599 BTRACE (15):0x10108f3d0 [0x16c43b020]
    2007-03-10 16:49:45 29 ERR 11599 BTRACE (16):0x1000d2aa4 [0x16c43cdd0]
    2007-03-10 16:49:45 29 ERR 11599 BTRACE (17):0x10008558c [0x16c43ce50]
    2007-03-10 16:49:45 29 ERR 11599 BTRACE (18):0x1000852d0 [0x16c43cf20]
    2007-03-10 16:49:45 29 ERR 11599 BTRACE (19):0x9000000001bbb48 [0x16c43cf90]
    2007-03-10 16:49:45 29 ERR 11599 BTRACE -
    > Module List <----
    2007-03-10 16:49:45 29 ERR 11599 BTRACE |.text Start |.text End | Module File Name
    2007-03-10 16:49:45 29 ERR 11599 BTRACE |0x0000000100000000|0x0000000101558c1e| kernel
    2007-03-10 16:49:45 29 ERR 11599 BTRACE |0x09000000000372c0|0x09000000002ba00e| /usr/lib/threads/libc.a
    2007-03-10 16:49:45 29 ERR 11599 BTRACE |0x09000000002bb280|0x09000000002bbcab| /usr/lib/libcrypt.a
    2007-03-10 16:49:45 29 ERR 11599 BTRACE |0x09000000002ebc80|0x090000000030da3e| /usr/lib/libC.a
    2007-03-10 16:49:45 29 ERR 11599 BTRACE |0x090000000030e000|0x0900000000345be7| /usr/lib/libpthreads.a
    2007-03-10 16:49:45 29 ERR 11599 BTRACE |0x0900000000346fe0|0x09000000003609e6| /usr/lib/libC.a
    2007-03-10 16:49:45 29 ERR 11599 BTRACE |0x0900000000361a00|0x090000000037fd9b| /usr/lib/libC.a
    2007-03-10 16:49:45 29 ERR 11599 BTRACE |0x0900000000380f80|0x0900000000392406| /usr/lib/libperfstat.a
    2007-03-10 16:49:45 29 ERR 11599 BTRACE |0x0900000000a3f6b0|0x0900000000a4011a| /usr/lib/libC.a
    2007-03-10 16:49:45 29 ERR 11599 BTRACE |0x0900000000a41360|0x0900000000b9763f| /usr/lib/libC.a
    2007-03-10 16:49:45 29 ERR 11599 BTRACE |0x0900000000b988a8|0x0900000000b992b2| /usr/lib/libC.a
    2007-03-10 16:49:45 29 ERR 11599 BTRACE |0x0900000001540040|0x0900000001555401| /usr/lib/libodm.a
    2007-03-10 16:49:45 29 ERR 11599 BTRACE |0x0900000001556f80|0x0900000001569493| /usr/lib/libcfg.a
    2007-03-10 16:49:45 29 ERR 11599 BTRACE |0x090000000156ada0|0x09000000015dbc0c| /usr/lib/liblvm.a
    2007-03-10 16:49:45 29 ERR 11599 BTRACE |0x0900000001de5000|0x0900000001de52fb| /usr/lib/libdl.a
    2007-03-10 16:49:45 29 ERR 11599 BTRACE
    2007-03-10 16:49:45 29 ERR 11599 BTRACE -
    > Symbolic Stack Back Trace <----
    2007-03-10 16:49:45 29 ERR 11599 BTRACE 0: 0x00000001001cf708 vtracestack +0x004c
    2007-03-10 16:49:45 29 ERR 11599 BTRACE kernel
    2007-03-10 16:49:45 29 ERR 11599 BTRACE Frameinfo [0x16c439740]
    2007-03-10 16:49:45 29 ERR 11599 BTRACE 1: 0x00000001004a4284 Offline__21Kernel_AdministrationFRC20S
    APDBErr_MessageListbT2 +0x0188
    2007-03-10 16:49:45 29 ERR 11599 BTRACE kernel
    2007-03-10 16:49:45 29 ERR 11599 BTRACE Frameinfo [0x16c4397c0]
    2007-03-10 16:49:45 29 ERR 11599 BTRACE 2: 0x00000001004a3e78 Offline__21Kernel_AdministrationFsbT2
    +0x00b4
    2007-03-10 16:49:45 29 ERR 11599 BTRACE kernel
    2007-03-10 16:49:45 29 ERR 11599 BTRACE Frameinfo [0x16c439980]
    2007-03-10 16:49:45 29 ERR 11599 BTRACE 3: 0x00000001004ad9c4 SetLogWriting__21Kernel_Administration
    Fib +0x02ac
    2007-03-10 16:49:45 29 ERR 11599 BTRACE kernel
    2007-03-10 16:49:45 29 ERR 11599 BTRACE Frameinfo [0x16c439a90]
    2007-03-10 16:49:45 29 ERR 11599 BTRACE 4: 0x0000000100480bac gg999SetLogWriting +0x003c
    2007-03-10 16:49:45 29 ERR 11599 BTRACE kernel
    2007-03-10 16:49:45 29 ERR 11599 BTRACE Frameinfo [0x16c439cf0]
    2007-03-10 16:49:45 29 ERR 11599 BTRACE 5: 0x000000010070a994 a36_call_semantic +0x01ac
    2007-03-10 16:49:45 29 ERR 11599 BTRACE kernel
    2007-03-10 16:49:45 29 ERR 11599 BTRACE Frameinfo [0x16c439d70]
    2007-03-10 16:49:45 29 ERR 11599 BTRACE 6: 0x00000001008a5b88 ak35dbmcommands +0x00b8
    2007-03-10 16:49:45 29 ERR 11599 BTRACE kernel
    2007-03-10 16:49:45 29 ERR 11599 BTRACE Frameinfo [0x16c43a060]
    2007-03-10 16:49:45 29 ERR 11599 BTRACE 7: 0x00000001008a6ae8 ak35call_semantik +0x03a8
    2007-03-10 16:49:45 29 ERR 11599 BTRACE kernel
    2007-03-10 16:49:45 29 ERR 11599 BTRACE Frameinfo [0x16c43a190]
    2007-03-10 16:49:45 29 ERR 11599 BTRACE 8: 0x00000001008a7b64 a35_asql_statement2 +0x0b00
    2007-03-10 16:49:45 29 ERR 11599 BTRACE kernel
    2007-03-10 16:49:45 29 ERR 11599 BTRACE Frameinfo [0x16c43a280]
    2007-03-10 16:49:45 29 ERR 11599 BTRACE 9: 0x00000001006fb528 ak92not_only_execute +0x082c
    2007-03-10 16:49:45 29 ERR 11599 BTRACE kernel
    2007-03-10 16:49:45 29 ERR 11599 BTRACE Frameinfo [0x16c43a3c0]
    2007-03-10 16:49:45 29 ERR 11599 BTRACE 10: 0x00000001006fa978 ak92analyze_messagetype +0x0864
    2007-03-10 16:49:45 29 ERR 11599 BTRACE kernel
    2007-03-10 16:49:45 29 ERR 11599 BTRACE Frameinfo [0x16c43a610]
    2007-03-10 16:49:45 29 ERR 11599 BTRACE 11: 0x00000001006f90d4 a92_mode_analyzer +0x00e8
    2007-03-10 16:49:45 29 ERR 11599 BTRACE kernel
    2007-03-10 16:49:45 29 ERR 11599 BTRACE Frameinfo [0x16c43a820]
    2007-03-10 16:49:45 29 ERR 11599 BTRACE 12: 0x0000000100b86f90 ak93one_command +0x0570
    2007-03-10 16:49:45 29 ERR 11599 BTRACE kernel
    2007-03-10 16:49:45 29 ERR 11599 BTRACE Frameinfo [0x16c43a8e0]
    2007-03-10 16:49:45 29 ERR 11599 BTRACE 13: 0x0000000100b88cdc a93_user_commands +0x043c
    2007-03-10 16:49:45 29 ERR 11599 BTRACE kernel
    2007-03-10 16:49:45 29 ERR 11599 BTRACE Frameinfo [0x16c43aa30]
    2007-03-10 16:49:45 29 ERR 11599 BTRACE 14: 0x000000010108fa2c SQLTask__FR20tak_all_command_globRUcb
    +0x0094
    2007-03-10 16:49:45 29 ERR 11599 BTRACE kernel
    2007-03-10 16:49:45 29 ERR 11599 BTRACE Frameinfo [0x16c43ab80]
    2007-03-10 16:49:45 29 ERR 11599 BTRACE 15: 0x000000010108f3d0 Kernel_Main__FR13RTETask_ITask +0x0228
    2007-03-10 16:49:45 29 ERR 11599 BTRACE kernel
    2007-03-10 16:49:45 29 ERR 11599 BTRACE Frameinfo [0x16c43b020]
    2007-03-10 16:49:45 29 ERR 11599 BTRACE 16: 0x00000001000d2aa4 RTETask_TaskMain +0x003c
    2007-03-10 16:49:45 29 ERR 11599 BTRACE kernel
    2007-03-10 16:49:45 29 ERR 11599 BTRACE Frameinfo [0x16c43cdd0]
    2007-03-10 16:49:45 29 ERR 11599 BTRACE 17: 0x000000010008558c en88_CallKernelTaskMain__FP9TASK_TYPE
    +0x00c8
    2007-03-10 16:49:45 29 ERR 11599 BTRACE kernel
    2007-03-10 16:49:45 29 ERR 11599 BTRACE Frameinfo [0x16c43ce50]
    2007-03-10 16:49:45 29 ERR 11599 BTRACE 18: 0x00000001000852d0 en88_CallCoroutineKernelTaskMain +0x00
    24
    2007-03-10 16:49:45 29 ERR 11599 BTRACE kernel
    2007-03-10 16:49:45 29 ERR 11599 BTRACE Frameinfo [0x16c43cf20]
    2007-03-10 16:49:45 29 ERR 11599 BTRACE -
    > End of Stack Back Trace <----
    2007-03-10 16:49:45 29 ERR 51080 SYSERROR -9407 unexpected error
    2007-03-10 16:49:45 29 ERR 3 Admin Database state: OFFLINE
    2007-03-10 16:49:45 29 ERR 6 KernelCo + Internal errorcode, Errorcode 9050 "disk_not_accessible"
    2007-03-10 16:49:48 0 ERR 12006 DBCRASH Kernel exited without core and exit status 0x200
    2007-03-10 16:49:48 0 ERR 12010 DBCRASH Kernel exited exit code 2
    2007-03-10 16:49:48 ___ Stopping GMT 2007-03-10 22:19:48 7.6.00 Build 0
    35-123-139-084
    Message was edited by:
            login

    Hi Rajat
    Will you please tell which line of the XCMDOUT.LOG indicates that there is insufficient space and how should I check the required space on my machine.
    I found following things using command df:
    pwd
    /local/sapdb
    ls
    IND       data      programs
    df -g
    Filesystem    GB blocks      Free %Used    Iused %Iused Mounted on
    /dev/hd4           2.00      1.21   40%     2629     1% /
    /dev/hd2          10.00      5.81   42%    56821     5% /usr
    /dev/hd9var        6.00      5.99    1%      191     1% /var
    /dev/hd3           2.00      0.58   71%    15022    10% /tmp
    /proc                 -         -    -         -     -  /proc
    /dev/hd10opt      20.00     17.12   15%     1307     1% /opt
    /dev/fslv00      110.00     37.26   67%    84853     1% /local
    df -g /sapdb/IND/
    Filesystem    GB blocks      Free %Used    Iused %Iused Mounted on
    /dev/fslv00      110.00     37.26   67%    84823     1% /local

  • Errorcode 25600 during adcfgclone.pl

    Hi,
    I'm configuring a clone on and RHEL 5 environment. When I run adcfgclone.pl on the dbTier, it's exiting with an error at 70%. Extracts from the logs are as follows:
    ApplyDBTier log
    -------------------ADX Database Utility Finished---------------
    RC-00118: Error occurred during creation of database
    Raised by oracle.apps.ad.clone.ApplyDatabase
    StackTrace:
    java.lang.Exception: Control file creation failed
    +     at oracle.apps.ad.clone.ApplyDatabase.<init>(ApplyDatabase.java:661)+
    +     at oracle.apps.ad.clone.ApplyDatabase.<init>(ApplyDatabase.java:328)+
    +     at oracle.apps.ad.clone.ApplyDatabase.<init>(ApplyDatabase.java:304)+
    +     at oracle.apps.ad.clone.ApplyDBTier.<init>(ApplyDBTier.java:154)+
    +     at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)+
    +     at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)+
    +     at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)+
    +     at java.lang.reflect.Constructor.newInstance(Unknown Source)+
    +     at oracle.apps.ad.clone.util.CloneProcessor.run(CloneProcessor.java:68)+
    +     at java.lang.Thread.run(Unknown Source)+
    NetServiceHandler.log
    +     Classpath : /u0/svrtest/svrtestdb/10.2.0/jdk/jre/lib/rt.jar:/u0/svrtest/svrtestdb/10.2.0/jdk/lib/dt.jar:/u0/svrtest/svrtestdb/10.2.0/jdk/lib/tools.jar:/u0/svrtest/svrtestdb/10.2.0/jdbc/lib/ojdbc14.jar:/u0/svrtest/svrtestdb/10.2.0/appsutil/java/xmlparserv2.zip:/u0/svrtest/svrtestdb/10.2.0/appsutil/java:/u0/svrtest/svrtestdb/10.2.0/jlib/netcfg.jar:/u0/svrtest/svrtestdb/10.2.0/jlib/ldapjclnt10.jar+
    +===============================================================================+
    NetServiceHandler 115.53 started for tclg-clone-114 at Sun Oct 04 21:36:35 AST 2009
    +===============================================================================+
    +[ Context Information ]+
    Host              : tclg-clone-114
    Domain            : tclgroup.com
    Out Dir           : /u0/svrtest/svrtestdb/10.2.0/appsutil/out/svrtest_tclg-clone-114/10042136
    Tier Type         : DATABASE TIER
    Getting connection...
    ADX Database Utility
    getConnectionUsingAppsJDBCConnector() -->
    APPS_JDBC_URL='null'
    Trying to get connection using SID based connect descriptor
    getConnection() -->
    sDbHost    : tclg-clone-114
    sDbDomain  : tclgroup.com
    sDbPort    : 1598
    sDbSid     : svrtest
    sDbUser    : apps
    Trying to connect using SID...
    getConnectionUsingSID() -->
    JDBC URL: jdbc:oracle:thin:@tclg-clone-114.tclgroup.com:1598:svrtest
    Exception occurred: java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
    Trying to connect using SID as ServiceName
    getConnectionUsingServiceName() -->
    JDBC URL: jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=tclg-clone-114.tclgroup.com)(PORT=1598))(CONNECT_DATA=(SERVICE_NAME=svrtest)))
    Exception occurred: java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
    Trying to connect using SID as ServiceName.DomainName
    getConnectionUsingServiceName() -->
    JDBC URL: jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=tclg-clone-114.tclgroup.com)(PORT=1598))(CONNECT_DATA=(SERVICE_NAME=svrtest.tclgroup.com)))
    Exception occurred: java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
    Connection could not be obtained; returning null
    -------------------ADX Database Utility Finished---------------
    Could not get connection to the database.
    Exiting with status 100 to instantiate the tnsnames.ora template
    Creation of Directory - /u0/svrtest/svrtestdb/10.2.0/network/admin/svrtest_tclg-clone-114 Succeeded.
    instantiate file:
    source : /u0/svrtest/svrtestdb/10.2.0/appsutil/template/ad8itns.ora
    dest   : /u0/svrtest/svrtestdb/10.2.0/network/admin/svrtest_tclg-clone-114/tnsnames.ora
    AutoConfig is exiting with status 0
    instantiate file:
    source : /u0/svrtest/svrtestdb/10.2.0/appsutil/template/ad8ilsnr.ora
    dest   : /u0/svrtest/svrtestdb/10.2.0/network/admin/svrtest_tclg-clone-114/listener.ora
    AutoConfig is exiting with status 0
    adgentns.pl exiting with status 25600
    ERRORCODE = 25600 ERRORCODE_END
    Now I saw from my ApplyDBTier.log that the database was created, and when I tried using sqlplus '/ as sysdba' I was able to logon. So I tried running adautocfg.sh but I still get the 25600 error. Here's the extract from the adconfig.log:
    afdbprf.sh started at Sun Oct  4 21:41:45 AST 2009
    The environment settings are as follows ...
    ORACLE_HOME : /u0/svrtest/svrtestdb/10.2.0
    ORACLE_SID : svrtest
    PATH : /u0/svrtest/svrtestora/iAS/Apache/perl/bin:/u0/svrtest/svrtestdb/10.2.0/bin:/usr/bin:/usr/sbin:/u0/svrtest/svrtestdb/10.2.0/jdk/bin:/usr/ccs/bin:/bin:/usr/bin/X11:/usr/local/bin:/u0/svrtest/svrtestora/iAS/Apache/perl/bin:/u0/svrtest/svrtestora/iAS/Apache/perl/bin:/u0/svrtest/svrtestdb/10.2.0/bin:/usr/bin:/usr/sbin:/u0/svrtest/svrtestdb/10.2.0/jdk/bin:/usr/ccs/bin:/bin:/usr/bin/X11:/usr/local/bin:.:/u0/svrtest/svrtestora/iAS/Apache/perl/bin:/usr/kerberos/bin:/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin:/home/applmgr/bin
    Library Path : /u0/svrtest/svrtestdb/10.2.0/lib:/usr/X11R6/lib:/usr/openwin/lib:/u0/svrtest/svrtestdb/10.2.0/ctx/lib
    Executable : /u0/svrtest/svrtestdb/10.2.0/bin/sqlplus
    SQL*Plus: Release 10.2.0.4.0 - Production on Sun Oct 4 21:41:45 2009
    Copyright (c) 1982, 2007, Oracle.  All Rights Reserved.
    Enter value for 1: Enter value for 2: Enter value for 3: ERROR:
    ORA-12541: TNS:no listener
    ERRORCODE = 1 ERRORCODE_END
    +.end std out.+
    +.end err out.+
    AutoConfig Services Phase
    Running Service Process 1 of 1 for AppsUtil
    Executing script in InstantiateFile:
    +/u0/svrtest/svrtestdb/10.2.0/appsutil/install/svrtest_tclg-clone-114/adcrobj.sh+
    script returned:
    adcrobj.sh started at Sun Oct  4 21:41:45 AST 2009
    Parameters passed are : -nopromptmsg
    The environment settings are as follows ...
    ORACLE_HOME : /u0/svrtest/svrtestdb/10.2.0
    ORACLE_SID : svrtest
    TWO_TASK :
    PATH : /u0/svrtest/svrtestora/iAS/Apache/perl/bin:/u0/svrtest/svrtestdb/10.2.0/bin:/usr/bin:/usr/sbin:/u0/svrtest/svrtestdb/10.2.0/jdk/bin:/usr/ccs/bin:/bin:/usr/bin/X11:/usr/local/bin:/u0/svrtest/svrtestora/iAS/Apache/perl/bin:/u0/svrtest/svrtestora/iAS/Apache/perl/bin:/u0/svrtest/svrtestdb/10.2.0/bin:/usr/bin:/usr/sbin:/u0/svrtest/svrtestdb/10.2.0/jdk/bin:/usr/ccs/bin:/bin:/usr/bin/X11:/usr/local/bin:.:/u0/svrtest/svrtestora/iAS/Apache/perl/bin:/usr/kerberos/bin:/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin:/home/applmgr/bin
    LD_LIBRARY_PATH : /u0/svrtest/svrtestdb/10.2.0/lib:/usr/X11R6/lib:/usr/openwin/lib:/u0/svrtest/svrtestdb/10.2.0/ctx/lib
    SQLPLUS Executable : /u0/svrtest/svrtestdb/10.2.0/bin/sqlplus
    SQL*Plus: Release 10.2.0.4.0 - Production on Sun Oct 4 21:41:45 2009
    Copyright (c) 1982, 2007, Oracle.  All Rights Reserved.
    Connected.
    PL/SQL procedure successfully completed.
    Commit complete.
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    adcrobj.sh exiting with status 0
    ERRORCODE = 0 ERRORCODE_END
    +.end std out.+
    +.end err out.+
    +===========================================================================+
    Starting Restore Profile utility at Sun Oct 04 21:41:46 AST 2009
    Using version 115.6
    ADX Database Utility
    getConnection() -->
    sDbHost    : tclg-clone-114
    sDbDomain  : tclgroup.com
    sDbPort    : 1598
    sDbSid     : svrtest
    sDbUser    : apps
    Trying to connect using SID...
    getConnectionUsingSID() -->
    JDBC URL: jdbc:oracle:thin:@tclg-clone-114.tclgroup.com:1598:svrtest
    Exception occurred: java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
    Trying to connect using SID as ServiceName
    getConnectionUsingServiceName() -->
    JDBC URL: jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=tclg-clone-114.tclgroup.com)(PORT=1598))(CONNECT_DATA=(SERVICE_NAME=svrtest)))
    Exception occurred: java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
    Trying to connect using SID as ServiceName.DomainName
    getConnectionUsingServiceName() -->
    JDBC URL: jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=tclg-clone-114.tclgroup.com)(PORT=1598))(CONNECT_DATA=(SERVICE_NAME=svrtest.tclgroup.com)))
    Exception occurred: java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
    Connection could not be obtained; returning null
    -------------------ADX Database Utility Finished---------------
    +     Verifying connection to the Database : Could not be stablished+
    +     No Restore Profile file created.+
    Restore Profile utility ran successfully
    +===========================================================================+
    +[AutoConfig Error Report]+
    The following report lists errors AutoConfig encountered during each
    phase of its execution.  Errors are grouped by directory and phase.
    The report format is:
    +<filename> <phase> <return code where appropriate>+
    +[PROFILE PHASE]+
    AutoConfig could not successfully execute the following scripts:
    Directory: /u0/svrtest/svrtestdb/10.2.0/appsutil/install/svrtest_tclg-clone-114
    afdbprf.sh              INSTE8_PRF         1
    AutoConfig is exiting with status 1
    Is this an error I can recover from without having to run pre-clone on my source again? Any help would be appreciated.
    Thanks,
    Lia.

    Lia,
    Exception occurred: java.sql.SQLException: Io exception: The Network Adapter could not establish the connectionPlease verify that the database and the database listener are up and running. Also, make sure you have proper entry in the hosts file (i.e. you are able to ping the database hostname and tnsping the entry in the tnsnames.ora file as applmgr user).
    Regards,
    Hussein

  • SOAPFault received from Integration Server. ErrorCode/Category: XIServer/IN

    Hello All,
    I work on PI 7.1 and needed to create an interface using a simple File-to-File scenario. I created this without using any IR/ESR Objects as per a technical article on the website saptechnical dot com /Tutorials/XI/File2File/Demo1.htm
    This worked perfectly fine in my dev environment. However, when I moved it to Test environment, I am having issues. Error message shown in RWB for Adapter engine is
    SOAPFault received from Integration Server. ErrorCode/Category: XIServer/INBOUND_BINDING_ERROR; Params: BS_ECC100, http://abc, ecc-to-external; AdditionalText: null; ApplicationFaultMessage: null; ErrorStack: Error in sender agreement for party , service BS_ECC100, interface namespace http://abc interface ecc-to-external  No sender agreement found for , , , , , 
    Error Transmitting the message to endpoint http://piq.uk.rweutil.net/sap/xi/engine?type=entry using connection File_http://sap.com/xi/XI/System failed, due to: com.sap.engine.interfaces.messaging.api.exception.MessagingException: Received HTTP response code 500 : Error during Sender Agreement Determination.
    I checked the Sender agreement. It seems fine. All other components are also active, however I do not see the sender agreement  in SXI_CACHE transaction. Any clues what could be wrong ?
    Many thanks in advance .
    Regards
    Rajiv

    Hi Rajiv,
    Please perform below tasks
    1. Logon Integration Directory
    2. Click on 'Modification' icon, put a 'dummy' change (may a space) in the description field
    3. Save the change
    4. Active the changed objects
    5. Repeat 2, 3, 4 steps for all those objects you moved to Test environment.
    All the above steps, eventually leads to have forceble cache refresh, if this won't helps resolve, Please perform full CPACache refresh using below URl
    http://<host name>:<http port>/CPACache/refresh?mode=full
    I presume these instructions will help to resolve the issue.
    Regards
    Sekhar

  • Getting Exception - ErrorCode ERRCA0017 :SubStatus ES0007 :There is a temporary failure. Please retry later. (The request failed because the server is in throttled state)

    I have used Azure managed Cache (Basic tier) in my Web App deployed on cloud service.
    Now I am getting exception. ErrorCode<ERRCA0017>:SubStatus<ES0007>:There is a temporary failure. Please retry later. (The request failed because the server is in throttled state) on Production environment.
    I know, this exception is occurred when memory usage reached more than 95%. 
    I want to handle this issue in code so please provide the right solution.
    My Clients are facing it... so please help me .
    Its very urgent.
    Server Error in '/' Application.
    ErrorCode<ERRCA0017>:SubStatus<ES0007>:There is a temporary failure. Please retry later. (The request failed because the server is in throttled state)
    Description: An unhandled exception occurred during the execution of the current
    web request. Please review the stack trace for more information about the error and where it originated in the code. 
    Exception Details: Microsoft.ApplicationServer.Caching.DataCacheException: ErrorCode<ERRCA0017>:SubStatus<ES0007>:There
    is a temporary failure. Please retry later. (The request failed because the server is in throttled state)
    Source Error: 
    An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace
    below.
    Stack Trace: 
    [DataCacheException: ErrorCode<ERRCA0017>:SubStatus<ES0007>:There is a temporary failure. Please retry later. (The request failed because the server is in throttled state)]
       Microsoft.ApplicationServer.Caching.DataCache.ThrowException(ErrStatus errStatus, Guid trackingId, Exception responseException, Byte[][] payload, EndpointID destination) +551
       Microsoft.ApplicationServer.Caching.SocketClientProtocol.ExecuteApi(IVelocityRequestPacket request, IMonitoringListener listener) +287
       Microsoft.ApplicationServer.Caching.SocketClientProtocol.Upsert(VelocityPacketType type, String key, Object value, DataCacheItemVersion oldVersion, TimeSpan timeout, DataCacheTag[]
    tags, String region, IMonitoringListener listener) +357
       Microsoft.ApplicationServer.Caching.SocketClientProtocol.Put(String key, Object value, DataCacheItemVersion oldVersion, TimeSpan timeout, DataCacheTag[] tags, String region, IMonitoringListener
    listener) +74
       Microsoft.ApplicationServer.Caching.DataCache.InternalPut(String key, Object value, DataCacheItemVersion oldVersion, TimeSpan timeout, DataCacheTag[] tags, String region, IMonitoringListener
    listener) +288
       Microsoft.ApplicationServer.Caching.<>c__DisplayClass2f.<Put>b__2e() +146
       Microsoft.ApplicationServer.Caching.DataCache.Put(String key, Object value, TimeSpan timeout) +263
       Microsoft.Web.DistributedCache.<>c__DisplayClass31`1.<PerformCacheOperation>b__30() +19
       Microsoft.Web.DistributedCache.DataCacheRetryWrapper.PerformCacheOperation(Action action) +208
       Microsoft.Web.DistributedCache.DataCacheForwarderBase.PerformCacheOperation(Func`1 func) +134
       Microsoft.Web.DistributedCache.DataCacheForwarderBase.Put(String key, Object value, TimeSpan timeout) +148
       Microsoft.Web.DistributedCache.BlobBasedSessionStoreProvider.SetAndReleaseItemExclusive(HttpContextBase context, String id, SessionStateStoreData item, Object lockId, Boolean newItem)
    +177
       System.Web.SessionState.SessionStateModule.OnReleaseState(Object source, EventArgs eventArgs) +1021
       System.Web.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +80
       System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +165
    Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.34009
    Thanks
    hema

    You should add retry logic in case of retriable exceptions. If the retries fail as well you should reset the DataCacheFactory as suggested in this link.
    http://blogs.msdn.com/b/cie/archive/2014/04/29/cache-retry-fails-what-next.aspx
    Thanks,
    Pallav

  • Errorcode 80043aa3

    Hi,
    When I try to sync my calendar and tasks with outlook, I get the following errorcode: 80043aa3
    I've installed the newest version of OVI-suite, but the errorcode still appears. Tried to reboot my system and reconnect my N97 mini several times, but that doesn't solve the problem.
    My pc works with windows 7 (64bit)
    Photos, contacts and messages are no problem to sync.
    How can I solve this problem?

    Problem solution hiding in plain sight. I think on Windows 8, there's a small issue of maximising Nokia Suite window -- the menu options File, Edit, View, Sync, Tools, Help get hidden beyond the top end of the display frame. Maybe.
    The solution to the error 80043aa3, and other variants (eg. 80043ab4) is simply Nokia Suite>Sync>Sync Repair per the attached .jpg image
    I'm currently running Nokia Suite 3.8.48. There are no further issues.
    Symbian connected me to the world, to my dreams.. Thank-you Nokia
    Attachments:
    Nokia Sync Repair copy.jpg ‏52 KB

  • PrintService error LoadPluginFailed tsprint.dll ErrorCode 0x7e UserId S-1-5-18

    RDP printing not working after downgrade from Windows 10 Technical Preview. 
    Detail log as follow:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
    <System>
      <Provider Name="Microsoft-Windows-PrintService" Guid="{747EF6FD-E535-4D16-B510-42C90F6873A1}"
    />
      <EventID>808</EventID>
      <Version>0</Version>
      <Level>2</Level>
      <Task>36</Task>
      <Opcode>12</Opcode>
      <Keywords>0x8000000000020000</Keywords>
      <TimeCreated
    SystemTime="2015-04-29T04:51:12.373066500Z" />
      <EventRecordID>4526</EventRecordID>
      <Correlation
    />
      <Execution ProcessID="2072" ThreadID="2104" />
      <Channel>Microsoft-Windows-PrintService/Admin</Channel>
      <Computer>L-PC</Computer>
      <Security UserID="S-1-5-18" />
      </System>
    <UserData>
    <LoadPluginFailed xmlns:auto-ns3="http://schemas.microsoft.com/win/2004/08/events" xmlns="http://manifests.microsoft.com/win/2005/08/windows/printing/spooler/core/events">
      <PluginDllName>C:\Windows\system32\spool\DRIVERS\x64\3\tsprint.dll</PluginDllName>
      <ErrorCode>0x7e</ErrorCode>
      <Context>112</Context>
      </LoadPluginFailed>
      </UserData>
      </Event>
    I believe the initialization failed because of UserID is incorrect after downgrade but I have no idea on what I can do to fix it.
    Please let me know if any one have idea on what to do to fix it. Even if I'm wrong about the UserID, any solution to the problem would greatly be appreciated. Thank you.

    Hi,
    Firstly, if there are any third-party software installed, please disable them.
    Secondly, I suggest you un-install printer drivers, then re-install them to see whether it works.
    You may also check whether Print Spooler service has been started and start up type is set to Automatic.
    In addition, please ensure that dependency services which are required for print spooler service are started.
    Here is a Print/Fax forum below you may get more suggestions from print experts:
    https://social.technet.microsoft.com/Forums/windowsserver/en-US/home?forum=winserverprint&filter=alltypes&sort=lastpostdesc
    Best Regards,
    Amy
    Please remember to mark the replies as answers if they help and un-mark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • Enterprsise search error  - HTTP server error: 503 (Errorcode 7266)

    HI
    i am geting following error when serching docs in portal using TREX..
    Search Failure
    Error during search occurred - com.sapportals.wcm.WcmException: HTTP server error: 503 (Errorcode 7266)
    An unexpected severe error occurred during the search call. If the situation persists, inform your system administrator.
    Indexing document failed. Communication error. HTTP server error: 503 (Errorcode 7266)
    Regards
    Buddhike

    Hi,
      Can you please check the information and links given in the below threads. These will give more information of checking the HTTP Server etc..
    https://forums.sdn.sap.com/thread.jspa?threadID=84269
    https://forums.sdn.sap.com/thread.jspa?threadID=23496
    https://forums.sdn.sap.com/thread.jspa?threadID=71527
    Raghavendra

  • Search: Errorcode 1999

    Hello
    We trying to do a search we get the following error message:
    Error during search occurred - com.sapportals.wcm.WcmException: general error (no further information available) (Errorcode 1999)
    Anyone knowing what could be the problem?
    - We have checked the SAP OSS (without results)
    - The TREX search engine is running
    BR
    Tom Bo

    Hi Tom,
    What does the TREX-Monitor show?
    System Administration -> Monotoring -
    Change to left navigation panel:
    Knowledge Management -> TREX
    Can you create a new test-index?
    Regards Matthias

  • A communication error occured, with the TREX TcpIp Server (Errorcode 2982)

    Hi All,
           We are in the process of Migrating our EP 5.0 --> EP 6.0. While upgrading TREX, I am getting following error:
    "Error occurred during search: com.sapportals.wcm.WcmException: <b><u>A communication error occured, with the TREX TcpIp Server (Errorcode 2982)</u></b>
    A communication error occured, with the TREX TcpIp Server (Errorcode 2982)"
           Has any one came across this type of error ?
    <b>Software version details:</b>
    EP 5.0 SP6 Patch 1 Hotfix 8
    CM SP 6 Patch 1 Hotfix 21
    Trex (Earlier 6.0.0.0)---> TREX 6.0 SP 1 Patch 6 (6.0.1.6.0)
    Regards
    Sunil Kulkarni

    Hello James,
                Thanks for writing.
    I am on Windows.
               Now the problem is solved. I had also created a message with service market place for the above mentioned problem.
    <b>Solution:</b> While upgrading the TREX, it has overwritten the "TREXIndexServer.ini", we restored it from the backup & the error was resolved.
    Thanks & Regards
    Sunil Kulkarni

  • The distribution agent failed to create temporary files in 'C:\Program Files\Microsoft SQL Server\110\COM' directory. System returned errorcode 5.

    One of my replication job failed with below error, which means job failed because of permission issue on the folder. To resolve that, I have granted the permission and it started working fine. Now the question is as my job was running fine since long time
    without any issue then how suddenly the permission of the folder got omitted automatically? I am sure that no one deleted the permission from the folder and as the server is part of SQL cluster no failover occurs.
    Error:-The distribution agent failed to create temporary files in 'C:\Program Files\Microsoft SQL Server\110\COM' directory. System returned errorcode 5.
    Rahul

    Hi Rahul,
    Error code 5 indicates that the error is "access is denied."  Please make sure that the COM folder is excluded from any antivirus scan that occurs on the system.
    If the issue still persists, I recommend you use
    Process Monitor to find out a bit more about the accounts and access requests involved. Then grant write permission to the exact COM folder for the account that is running the SQL Server Agent service. For more details, please review the following similar
    thread.
    http://www.sqlservercentral.com/Forums/Topic1364832-1550-1.aspx
    Thanks,
    Lydia Zhang
    If you have any feedback on our support, please click
    here.

  • SharePoint 2013 - Word Automation Services - Conversion fails ErrorCode 10 - Domain Controller on same (development) server as SharePoint

    I have code attached below, running inside SharePoint (in a page), used to convert .docx document to .pdf using Word Automation Services.
    SPFile inputWordFile = ##CODE THAT RETRIEVE THE SPFile ##
    using (Stream inputWordStream = inputWordFile.OpenBinaryStream())
       using (MemoryStream outputPdfStream = new MemoryStream())
    SyncConverter sc = new SyncConverter(wordAutomationServiceName);
    sc.UserToken = web.CurrentUser.UserToken;
    sc.Settings.UpdateFields = true;
    sc.Settings.OutputFormat = SaveFormat.PDF;
    ConversionItemInfo info = sc.Convert(inputWordStream, outputPdfStream);
    if (info.Succeeded)
    What happens is that the conversion fails. errorCode is 10.
    What I came to, is that this is related to the Domain Controller being installed on the same machine.
    I have examinated and excluded all several other possible issues (memory resources, etc.).
    What I had undestood as far, is that the problem is that "the
    converter is executed in the context of a very unprivileged local account, and there are no local accounts on DCs"
    Is this a KNOWN ISSUE?
    Is there a workaround for development enviroment having DC+SQL+VisualStudio+SharePoint on the same machine?

    Hi,
    It is recommended to try the code demo in this documentation below in a Console Application to see if it can work in your environment:
    http://msdn.microsoft.com/en-us/library/office/ff181518(v=office.14).aspx
    If it still can’t work, you can restart the Word Automation Services in SharePoint Central Administration in case it is a service issue.
    Feel free to reply with the test result if the issue still exists.
    Thanks
    Patrick Liang
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Patrick Liang
    TechNet Community Support

Maybe you are looking for

  • 2010 Mac Mini OS 10.10.1 screen is stretched out

    Hi, I have a 2010 Mac Mini that I use at work and I also use a second monitor via an adapter through USB. The setup worked until I installed Yosemite (10.10.1) on Friday. When I go to Settings / Displays I don't get all the resolution options I had b

  • Automatic time zone... where is it?

    I have got iphone with o2. I am in France for a month when I go to general date and time I cannot see set up automatically and time zone is locked to London, anyone can explain this. Thanks you folks for help. David

  • HT201335 can I use airplay mirroring on my macbook pro?

    i have been trying to get my apple tv to show what is on my mac's screen. How do I do that?

  • Extremely slow download from Itunes store when on NAS

    Hi All,      Since the latest Itunes update 10.6 I've been experiencing extremely slow download from the store. Set up is as follows (with all the latest firmware and software upgrades done on everything)      ITunes DB and XML locally stored on HDD

  • Albums and upadating

    Hi, For some reason when i organinse my songs by album, some of the appear to be in seperate albums, when they are actually from the same one. This is very annoying, especially when it splits an album of 12 songs into 12 seperate albums. Also my ipod