SMTP Error in concurrent program log file

Hi All,
Please help me on this asap.
I need to send an excel file as attachment in a mail through a concurrent request submission. But after run the program I am getting the following error in log file.
'Error in Send Mail: ORA-29279: SMTP permanent error: 501 5.5.4 Invalid Address' for any email id.
Please let me know how can I resolve this issue. Appreciate your help.
Thanks,
JP

Thanks for the reply.
My OS is windows, EBS is 11.5.10.2. It is a custom concurrent program. We have SMTP server and this the first time I am working on mail sending. I am using the same code existed in my production env which sends mail for different purpose. I did not identified where the issue casues.
IF fexists THEN
fnd_file.put_line (FND_FILE.LOG,'File Exist');
if file_length > 1 then
fnd_file.put_line (FND_FILE.LOG,'File Size: '||file_length);
fnd_file.put_line (FND_FILE.LOG,'Block Size: '||block_size);
l_mail_error:= SendMailJPkg.SENDMAIL(
SMTPServerName => 'mocrsmtp',
Sender => '[email protected]',
Recipient => [email protected],
CcRecipient => '',
BccRecipient => '',
Subject => 'testmail',
Body => 'Dear Super User, '
||chr(13)
||chr(13)
||'Testing mail sending'
||chr(13)
||chr(13)
||'Thank you for your cooperation.',
ErrorMessage => l_mail_error,
Attachments => SendMailJPkg.ATTACHMENTS_LIST(v_file_path, NULL));
ELSE
fnd_file.put_line (FND_FILE.LOG,'File Size Else: '||file_length);
fnd_file.put_line (FND_FILE.LOG,'Block Size Else: '||block_size);
ots_send_mail_pkg.send
( p_sender_email => '[email protected]',
p_from => '[email protected]',
p_to => ots_send_mail_pkg.array('[email protected]'),
-- p_cc => ots_send_mail_pkg.array('[email protected]'),
p_bcc => ots_send_mail_pkg.array(''),
p_subject => v_subject_error,
p_body => v_body_error||v_file_name||'PDF' );
END IF;
ELSE
fnd_file.put_line (FND_FILE.LOG,'File Does Not Exist 1');
ots_send_mail_pkg.send
( p_sender_email => '[email protected]',
p_from => '[email protected]',
p_to => ots_send_mail_pkg.array('[email protected]'),
-- p_cc => ots_send_mail_pkg.array('[email protected]'),
p_bcc => ots_send_mail_pkg.array(''),
p_subject => v_subject_error_c,
p_body => v_body_error_c||v_file_name||'PDF' );
END IF;
ELSIF v_file_type = 'EXCEL' then
v_file_path := 'e:\oracle\uatcomn\admin\out\UAT_a7erpdb\'||v_file_name||'EXCEL';
utl_file.fgetattr('e:\oracle\uatcomn\admin\out\UAT_a7erpdb',
v_file_name||'EXCEL',
fexists,
file_length,
block_size);
I changed the original mail id. Please look into this code and correct me...thank you so much
Regards
JP

Similar Messages

  • FS-CANT OPEN TEMPFILE issue in opening a concurrent program log file

    Hi all,
    I am working in Order Management authorization process in oracle apps 11i. After completion of order authorization , i did the shipping and delivery process in oracle Forms. During this Shipping and Delivery process the concurrent program gets error. (i.e status is : Completed -Error ).
    Then i tried to open a concurrent program view log and view output file , but it shows following error in window.
    Error: FS-CANT OPEN TEMPFILE.
    I never did anything in server recently. But it throws the "FS-CANT OPEN TEMPFILE" error in forms while running the concurrent program.
    Please Help How to resolve this issue.
    Thanks
    Prabu

    Pl post details of OS, database and EBS versions, along with complete steps to reproduce the issue. Are there any errors in the database alert log or the concurrent manager log ? Has this ever worked before ? If so, what has changed since then ?
    Pl see if these MOS Docs can help
    "FS-CANT OPEN TEMPFILE" MESSAGE WHEN OPENING ANY VIEW LOGS OR OUTPUT LOGS [ID 462277.1]
    Copy File functionality generates FS-CANT OPEN TEMPFILE [ID 780516.1]
    FS-Cant Open Tempfile When Try to Send Output to Excel [ID 236311.1]
    FS-CANT OPEN TEMPFILE in 11i
    HTH
    Srini

  • SQL*Loader-128:  Error in Concurrent program of type SQL* Loader

    Hi,
    Am facing below error with CP of SQL*Loader execution format. Both Control and data files are placed under bin directory under CUSTOM TOP.
    CP doesnt have any parameter. I believe we dont need to pass login details to a CP. So how can we default the DB Login to SQL Loader in CP?
    Appreciate your quick help.
    SQL*Loader-128: unable to begin a session
    ORA-01017: invalid username/password; logon denied
    SQL*Loader: Release 10.1.0.5.0 - Production on Wed Dec 14 02:03:59 2011
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    SQL*Loader-128: unable to begin a session
    ORA-01017: invalid username/password; logon denied
    Program exited with status 1
    Concurrent Manager encountered an error while running SQL*Loader for your concurrent request 1040692.
    Review your concurrent request log file for more detailed information.
    Here the Control and Data file for the same.
    Control file:
    LOAD DATA
    INFILE 'XXX_Customer_Master.dat'
    BADFILE 'Customer_bad.bad'
    DISCARDFILE 'Customer_discard.bsc'
    APPEND
    INTO TABLE XXX_AR_CUSTOMERS_INT FIELDS TERMINATED BY "|" OPTIONALLY ENCLOSED BY '"'
    ORIG_SYSTEM_PARENT_REF ,
    ORIG_SYSTEM_CUSTOMER_REF,
    CUSTOMER_NAME,
    CUSTOMER_NAME_PHONETIC,
    COUNTRY,
    STATE,
    CITY,
    ADDRESS1,
    POSTAL_CODE,
    RECORD_NUMBER          SEQUENCE(MAX, 1),          
    CREATED_BY                CONSTANT -1,
    CREATION_DATE           CONSTANT SYSDATE,
    CUSTOMER_TYPE          CONSTANT 'R',
    INSERT_UPDATE_FLAG           CONSTANT 'I',
    LAST_UPDATE_DATE           CONSTANT SYSDATE,
    LAST_UPDATE_LOGIN          CONSTANT -1,
    LAST_UPDATED_BY          CONSTANT -1,
    ORG_ID               CONSTANT 102,
    PRIMARY_SITE_USE_FLAG     CONSTANT 'Y',
    SITE_USE_CODE          CONSTANT 'BILL_TO'
    *Data file:*
    'XXX_Customer_Master.dat'
    50|792086|Test Customer |Test Customer |759843055|Australia|VIC|MELBOURNE|"Level 4 457 St Kilda Road"|3004
    59|792232|Test Customer |Test Customer |751756404|Australia|ACT|Tuggeranong|PO Box 1035|2901

    Do we have to create soft link like we create for host program directory ?How to Register a Host Concurrent Program in Applications [ID 156636.1]
    How To Create A Custom Concurrent Program With Host Method and Pass Parameters To The Shell Script [ID 266268.1]
    How To Setup A Custom Concurrent Host Program [ID 147455.1]
    Also, please see (How to Use 9i or 10g Features in SQL*Loader for Apps? [ID 423035.1]).
    Thanks,
    Hussein

  • Concurrent manager Log file is not shwoing.

    User not able to view concurrent manager log file.
    when click on View log buttion below error showed.
    "Client routine fdpvwr failed to prepare for file transfer"
    Thank in advance for you help

    Hi Hussain,
    i am replying to Milind's mail.As per your given note id 466743.1.We have checked that if any interoperablity patch is missing,but in our case we haven't missed interoperability patch before applying RUP 7 patch.After that we compiled apps schema&relinked f60webmx as per given google resolution.Since than the error is not yet resplved.It is comming "Client routine fdpvrw failed for file transfer".Please help us to provide a exact resolution for this.
    Regards,
    Pavan Kumar K.

  • In R12 how to change concurrent output/log file name prefix?

    how to change concurrent output/log file name prefix?

    but i want to change change concurrent output/log file name prefix?You cannot, and I believe it is not supported for all concurrent requests -- Please log a SR to confirm this with Oracle support.
    Thanks,
    Hussein

  • Help on printing error messages to a log file

    Hi, may I know whether is there any way to print the error messages to a log file? Thanks for your help!

    noobboy,
    Please refrain from crossposting all of your questions into multiple forums. You were asked to stop this the last time you did this as well. Please be more considerate in future.

  • Repeatedly the same error in the omsca.log file during 11g installation

    Hi Experts,
    One of my customer is getting the below error in the OMSCA.log file:
    java.lang.Exception: CREATING_WEBTIER_INST_FAILED
         at oracle.sysman.omsca.adapter.wls.OMSWLSAdapter.adapterConfigWebTier(OMSWLSAdapter.java:1808)
         at oracle.sysman.omsca.framework.OMSGenericAdapter.configWebTier(OMSGenericAdapter.java:306)
    I have checked his setup and pre-reqs,all seems to be perfectly fine.
    Kindly let me some pointers related to this issue.
    SR:3-4090870221
    I have uploaded the log file here.
    Regards
    Sumani
    Edited by: 893642 on Oct 28, 2011 1:13 AM

    Here some screenshots, this error came back all few minutes!

  • How to send concurrent program output file as an attachment in the notification mail

    Hi All,
    We are on Oracle apps version - 11.5.10.2
    We have a requirement wherein we need to send the concurrent program output file as an attachment while sending the notification mail to the user.
    Currently we have tried the approach wherein we are specifying the user id in the OPTIONS tab (Notifying the following people) while submitting the concurrent program.
    But using this approach, the user gets only the URL of the output file in the notification mail and not the output file as an attachment.
    Kindly let us know if anyone has incorporated the logic to send the output file as attachment in the notification mail.
    Please Note - We do not want any custom code to be written to send the attachment.
    Any pointers to this will be helpful.
    Regards,
    Shruti

    Hi All,
    We are on Oracle apps version - 11.5.10.2
    We have a requirement wherein we need to send the concurrent program output file as an attachment while sending the notification mail to the user.
    Currently we have tried the approach wherein we are specifying the user id in the OPTIONS tab (Notifying the following people) while submitting the concurrent program.
    But using this approach, the user gets only the URL of the output file in the notification mail and not the output file as an attachment.
    Kindly let us know if anyone has incorporated the logic to send the output file as attachment in the notification mail.
    Please Note - We do not want any custom code to be written to send the attachment.
    Any pointers to this will be helpful.
    Regards,
    Shruti

  • How to convert concurrent program out files .out file to .txt files in

    Hi
    Trying to know if there is a way to convert the concurrent programs' output files witn '.out' extension to files with extension '.txt'
    thanks
    kp

    Why you want to change the file extension to txt instead of out?
    I believe you cannot do and you are not supposed to change it. Controlling the report output to different types can be done as explained in these docs.
    How to Setup The Report Output to Different Viewer Types in Oracle Applications 11i [ID 184375.1]
    How to Control the Name and the Application that Opens the Concurrent Request Output File on the Client? [ID 316752.1]
    Thanks,
    Hussein

  • How to view concurrent program LOG from custom FORMs

    Hi,
    How to view concurrent program LOG from custom FORMs?
    Thanks
    ESL

    Hi Thanks for your response....
    lets assume there are 2 buttons, first button to submit concurrent program and second button to view concurrent program output/log.
    Actually im able to submit concurrent program from oracle custom form(6i) in ebusiness(11.5.0.2) i.e first button (WHEN-BUTTON_PRESSED buitin).
    Rather user navigating to VIEW-> REQUEST, i would like to give option to user to view concurrent program output/log when user clicks on second button (WHEN-BUTTON_PRESSED buitin)
    How can i achive this?
    Thanks,
    ESL

  • Concurrent manger log files shows

    Hi ,
    APPS-11.5.10.2
    DB----10g(RAC 2node)
    0S----HPUNIX
    In concurrent manager log file it shows like this.....some times..please help me to reslove this.In this crmapp1 is application server.CRMPRD is database.
    Adding Node:(CRMAPP1),Instance:(CRMPRD) to Unavailable list
    Adding Node:(CRMAPP1),Instance:(CRMPRD) to Unavailable list
    Rgs,
    ram

    Hi hussian,
    I have checked note 271090.1.MY ICM is in CRMAPP1 and my STANDARD MANAGER is in ALCCCRMAPP.ashokleyland.com.Please let me know i have to apply any patch on this?
    C:\Users\dbadmin.ale>ping crmapp1.ashokleyland.com
    Pinging crmapp1.ashokleyland.com [10.1.225.31] with 32 bytes of data:
    Reply from 10.1.225.31: bytes=32 time=84ms TTL=64
    Reply from 10.1.225.31: bytes=32 time<1ms TTL=64
    Reply from 10.1.225.31: bytes=32 time<1ms TTL=64
    Reply from 10.1.225.31: bytes=32 time<1ms TTL=64
    Ping statistics for 10.1.225.31:
    Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
    Approximate round trip times in milli-seconds:
    Minimum = 0ms, Maximum = 84ms, Average = 21ms
    C:\Users\dbadmin.ale>ping alcccrmapp.ashokleyland.com
    Pinging crmapp.ashokleyland.com [10.1.225.30] with 32 bytes of data:
    Reply from 10.1.225.30: bytes=32 time=7ms TTL=64
    Reply from 10.1.225.30: bytes=32 time<1ms TTL=64
    Reply from 10.1.225.30: bytes=32 time<1ms TTL=64
    Reply from 10.1.225.30: bytes=32 time<1ms TTL=64
    Ping statistics for 10.1.225.30:
    Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
    Approximate round trip times in milli-seconds:
    Minimum = 0ms, Maximum = 7ms, Average = 1ms
    C:\Users\dbadmin.ale>ping crmapp1.ashokleyland.com
    Pinging crmapp1.ashokleyland.com [10.1.225.31] with 32 bytes of data:
    Reply from 10.1.225.31: bytes=32 time=84ms TTL=64
    Reply from 10.1.225.31: bytes=32 time<1ms TTL=64
    Reply from 10.1.225.31: bytes=32 time<1ms TTL=64
    Reply from 10.1.225.31: bytes=32 time<1ms TTL=64
    Ping statistics for 10.1.225.31:
    Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
    Approximate round trip times in milli-seconds:
    Minimum = 0ms, Maximum = 84ms, Average = 21ms
    C:\Users\dbadmin.ale>ping alcccrmapp.ashokleyland.com
    Pinging crmapp.ashokleyland.com [10.1.225.30] with 32 bytes of data:
    Reply from 10.1.225.30: bytes=32 time=7ms TTL=64
    Reply from 10.1.225.30: bytes=32 time<1ms TTL=64
    Reply from 10.1.225.30: bytes=32 time<1ms TTL=64
    Reply from 10.1.225.30: bytes=32 time<1ms TTL=64
    Ping statistics for 10.1.225.30:
    Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
    Approximate round trip times in milli-seconds:
    Minimum = 0ms, Maximum = 7ms, Average = 1ms
    SQL> select * from v$instance;
    INSTANCE_NUMBER INSTANCE_NAME HOST_NAME VERSION STARTUP_TIME STATUS PAR THREAD# ARCHIVE LOG_SWITCH_ LOGINS SHU DATABASE_STATUS INSTANCE_ROLE ACTIVE_ST
    2 CRMPRD2 crmdb002 10.1.0.5.0 16-FEB-13 OPEN YES 2 STARTED ALLOWED NO ACTIVE PRIMARY_INSTANCE NORMAL
    SQL> select * from v$thread;
    THREAD# STATUS ENABLED GROUPS INSTANCE OPEN_TIME CURRENT_GROUP# SEQUENCE# CHECKPOINT_CHANGE# CHECKPOINT_TIME ENABLE_CHANGE# ENABLE_TIME DISABLE_CHANGE# DISABLE_TIME
    1 OPEN PUBLIC 4 CRMPRD1 17-FEB-13 2 49444 1.0738E+11 19-FEB-13 3.9187E+10 19-OCT-08 0
    2 OPEN PRIVATE 4 CRMPRD2 17-FEB-13 7 63249 1.0738E+11 19-FEB-13 3.9187E+10 19-OCT-08 0
    Rgs,
    Ram

  • Error in  Concurrent Program Details Report - XML Publisher program

    hi,
    i m executing a Concurrent Program Details Report - XML Publisher program and i m getting following errors
    Error:
    Beginning post-processing of request 4365650 on node APPS1 at 01-DEC-2010 08:04:00.
    Post-processing of request 4365650 failed at 01-DEC-2010 08:04:04 with the error message:
    One or more post-processing actions failed. Consult the OPP service log for details.
    Can u specify where exactly the problem is the OPP log file shows:
    11/25/10 5:08:20 AM] [main] Starting GSF service with concurrent process id = 1272712.
    [11/25/10 5:08:20 AM] [main] Initialization Parameters: oracle.apps.fnd.cp.opp.OPPServiceThread:2:0:max_threads=6
    [11/25/10 5:08:20 AM] [Thread-18] Service thread starting up.
    [11/25/10 5:08:20 AM] [Thread-19] Service thread starting up.
    [11/25/10 1:00:02 PM] [GSMServiceController:1272712] New Initialization Parameters: oracle.apps.fnd.cp.opp.OPPServiceThread:2:0:max_threads=4
    [11/26/10 12:01:08 AM] [GSMServiceController:1272712] New Initialization Parameters: oracle.apps.fnd.cp.opp.OPPServiceThread:2:0:max_threads=6
    [11/26/10 1:00:33 PM] [GSMServiceController:1272712] New Initialization Parameters: oracle.apps.fnd.cp.opp.OPPServiceThread:2:0:max_threads=4
    [11/27/10 12:01:48 AM] [GSMServiceController:1272712] New Initialization Parameters: oracle.apps.fnd.cp.opp.OPPServiceThread:2:0:max_threads=6
    [11/27/10 1:01:11 PM] [GSMServiceController:1272712] New Initialization Parameters: oracle.apps.fnd.cp.opp.OPPServiceThread:2:0:max_threads=4
    [11/28/10 12:00:18 AM] [GSMServiceController:1272712] New Initialization Parameters: oracle.apps.fnd.cp.opp.OPPServiceThread:2:0:max_threads=6
    [11/28/10 1:01:39 PM] [GSMServiceController:1272712] New Initialization Parameters: oracle.apps.fnd.cp.opp.OPPServiceThread:2:0:max_threads=4
    [11/29/10 12:00:48 AM] [GSMServiceController:1272712] New Initialization Parameters: oracle.apps.fnd.cp.opp.OPPServiceThread:2:0:max_threads=6
    [11/29/10 1:00:20 PM] [GSMServiceController:1272712] New Initialization Parameters: oracle.apps.fnd.cp.opp.OPPServiceThread:2:0:max_threads=4
    [11/30/10 12:01:51 AM] [GSMServiceController:1272712] New Initialization Parameters: oracle.apps.fnd.cp.opp.OPPServiceThread:2:0:max_threads=6
    [11/30/10 1:01:00 PM] [GSMServiceController:1272712] New Initialization Parameters: oracle.apps.fnd.cp.opp.OPPServiceThread:2:0:max_threads=4
    [12/1/10 12:00:20 AM] [GSMServiceController:1272712] New Initialization Parameters: oracle.apps.fnd.cp.opp.OPPServiceThread:2:0:max_threads=6
    [12/1/10 8:04:02 AM] [OPPServiceThread1] Post-processing request 4365650.
    [12/1/10 8:04:03 AM] [1272712:RT4365650] Executing post-processing actions for request 4365650.
    [12/1/10 8:04:03 AM] [1272712:RT4365650] Starting XML Publisher post-processing action.
    [12/1/10 8:04:03 AM] [1272712:RT4365650]
    Template code: FNDCPPGD_XML
    Template app: FND
    Language: en
    Territory: US
    Output type: PDF
    [12/1/10 8:04:04 AM] [UNEXPECTED] [1272712:RT4365650] java.sql.SQLException: No corresponding LOB data found :SELECT L.FILE_DATA FILE_DATA,DBMS_LOB.GETLENGTH(L.FILE_DATA) FILE_LENGTH, L.LANGUAGE LANGUAGE, L.TERRITORY TERRITORY, B.DEFAULT_LANGUAGE DEFAULT_LANGUAGE, B.DEFAULT_TERRITORY DEFAULT_TERRITORY,B.TEMPLATE_TYPE_CODE TEMPLATE_TYPE_CODE, B.USE_ALIAS_TABLE USE_ALIAS_TABLE, B.START_DATE START_DATE, B.END_DATE END_DATE, B.TEMPLATE_STATUS TEMPLATE_STATUS, B.USE_ALIAS_TABLE USE_ALIAS_TABLE, B.DS_APP_SHORT_NAME DS_APP_SHORT_NAME, B.DATA_SOURCE_CODE DATA_SOURCE_CODE, L.LOB_TYPE LOB_TYPE FROM XDO_LOBS L, XDO_TEMPLATES_B B WHERE L.APPLICATION_SHORT_NAME= :1 AND L.LOB_CODE = :2 AND L.APPLICATION_SHORT_NAME = B.APPLICATION_SHORT_NAME AND L.LOB_CODE = B.TEMPLATE_CODE AND (L.LOB_TYPE = 'TEMPLATE' OR L.LOB_TYPE = 'MLS_TEMPLATE') AND ( (L.LANGUAGE = :3 AND L.TERRITORY = :4) OR (L.LANGUAGE = :5 AND L.TERRITORY = :6) OR (L.LANGUAGE= B.DEFAULT_LANGUAGE AND L.TERRITORY= B.DEFAULT_TERRITORY ))
         at oracle.apps.xdo.oa.schema.server.TemplateInputStream.initStream(TemplateInputStream.java:402)
         at oracle.apps.xdo.oa.schema.server.TemplateInputStream.<init>(TemplateInputStream.java:235)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.getTemplateFile(TemplateHelper.java:1159)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3430)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3527)
         at oracle.apps.fnd.cp.opp.XMLPublisherProcessor.process(XMLPublisherProcessor.java:244)
         at oracle.apps.fnd.cp.opp.OPPRequestThread.run(OPPRequestThread.java:166)
    [12/1/10 8:04:04 AM] [1272712:RT4365650] Completed post-processing actions for request 4365650.
    [GC 6798K->4234K(9108K), 0.0020110 secs]
    [GC 6858K->4321K(9108K), 0.0399700 secs]
    [GC 6945K->4256K(9108K), 0.0021440 secs]
    [GC 6880K->4272K(9108K), 0.0021000 secs]
    [GC 6896K->4232K(9108K), 0.0020110 secs]
    [GC 6856K->4316K(9108K), 0.0020590 secs]
    [GC 6940K->4408K(9108K), 0.0597480 secs]
    [GC 7032K->4495K(9108K), 0.0034290 secs]
    [GC 7119K->4581K(9108K), 0.0031930 secs]
    [GC 7205K->4667K(9108K), 0.0027380 secs]
    [GC 7291K->4753K(9108K), 0.0028380 secs]
    [GC 7377K->4840K(9108K), 0.0030960 secs]
    [GC 7464K->4926K(9108K), 0.0026830 secs]
    [GC 7550K->5011K(9108K), 0.7886420 secs]
    [GC 7635K->5099K(9108K), 0.0029910 secs]
    [GC 7723K->5183K(9108K), 0.0650420 secs]
    [GC 7807K->5287K(9108K), 0.0137250 secs]
    [GC 7911K->5375K(9108K), 0.0028940 secs]
    [GC 7999K->5461K(9108K), 0.0121010 secs]
    [GC 8085K->5544K(9108K), 0.0025770 secs]
    [GC 8168K->5634K(9108K), 0.0035770 secs]
    [GC 8258K->5723K(9108K), 0.0134410 secs]
    [GC 8347K->5810K(9108K), 0.0028090 secs]
    [GC 8434K->5891K(9108K), 0.0029380 secs]
    [GC 8515K->5981K(9108K), 0.0029140 secs]
    [GC 8605K->6069K(9108K), 0.0027600 secs]
    [GC 8693K->6154K(9108K), 0.1243500 secs]
    [GC 8778K->6241K(9108K), 0.0039650 secs]
    [GC 8865K->6326K(9108K), 0.0028650 secs]
    [GC 8950K->6413K(9236K), 0.0039710 secs]
    [Full GC[Unloading class sun.reflect.GeneratedSerializationConstructorAccessor6]
    6413K->5352K(9236K), 1.1909030 secs]
    [GC 8936K->5472K(12956K), 0.0023870 secs]
    [GC 9056K->5591K(12956K), 0.0033830 secs]
    [GC 9175K->5729K(12956K), 0.0042040 secs]
    [GC 9313K->5849K(12956K), 0.0034840 secs]
    [GC 9433K->5961K(12956K), 0.0100990 secs]
    [GC 9545K->6086K(12956K), 0.0030080 secs]
    [GC 9670K->6201K(12956K), 0.0031240 secs]
    [GC 9785K->6319K(12956K), 0.0032300 secs]
    [GC 9903K->6440K(12956K), 0.0034340 secs]
    [GC 10024K->6559K(12956K), 0.0034880 secs]
    [GC 10143K->6672K(12956K), 0.0035840 secs]
    [GC 10256K->6798K(12956K), 0.0057700 secs]
    [GC 10382K->6910K(12956K), 0.0060400 secs]
    [GC 10494K->7033K(12956K), 0.0100290 secs]
    [GC 10617K->7155K(12956K), 0.0071060 secs]
    [GC 10739K->6968K(12956K), 0.0096190 secs]
    [GC 10551K->7022K(12956K), 0.0018430 secs]
    [GC 10606K->7024K(12956K), 0.0019950 secs]
    [GC 10608K->7020K(12956K), 0.0019460 secs]
    [GC 10604K->7024K(12956K), 0.0021440 secs]
    [GC 10607K->7011K(12956K), 0.0018930 secs]
    [GC 10595K->7048K(12956K), 0.0027050 secs]
    [GC 10632K->7174K(12956K), 0.0028100 secs]
    [GC 10758K->7059K(12956K), 0.0015890 secs]
    [GC 10643K->7070K(12956K), 0.0032490 secs]
    [GC 10654K->7192K(12956K), 0.0332620 secs]
    [GC 10776K->7313K(12956K), 0.0035480 secs]
    [GC 10897K->7437K(12956K), 0.0042360 secs]
    [GC 11021K->7555K(12956K), 0.0158540 secs]
    [GC 11139K->7679K(12956K), 0.0036930 secs]
    [GC 11263K->7800K(12956K), 0.0035670 secs]
    [GC 11384K->7919K(12956K), 0.0036300 secs]
    [GC 11503K->8043K(12956K), 0.0039190 secs]
    [GC 11627K->8164K(12956K), 0.0036210 secs]
    [GC 11748K->8284K(12956K), 0.0034810 secs]
    [GC 11868K->8405K(12956K), 0.0224470 secs]
    [GC 11989K->8538K(12956K), 0.1723720 secs]
    [GC 12122K->8661K(12956K), 0.0036210 secs]
    [GC 12245K->8782K(12956K), 0.0101020 secs]
    [GC 12366K->8903K(12956K), 0.0036410 secs]
    [GC 12487K->9031K(12956K), 0.0037570 secs]
    [GC 12615K->9152K(12956K), 0.1185410 secs]
    [GC 12736K->9273K(13084K), 0.0037680 secs]
    [Full GC[Unloading class sun.reflect.GeneratedSerializationConstructorAccessor16]
    [Unloading class sun.reflect.GeneratedSerializationConstructorAccessor18]
    9273K->6003K(13084K), 0.2840530 secs]
    [GC 10163K->6154K(14616K), 0.0024850 secs]
    [GC 10314K->6296K(14616K), 0.1144950 secs]
    [GC 10456K->6436K(14616K), 0.0194160 secs]
    [GC 10596K->6261K(14616K), 0.0069170 secs]
    [GC 10421K->6264K(14616K), 0.0014630 secs]
    [GC 10424K->6344K(14616K), 0.0027370 secs]
    [GC 10504K->6481K(14616K), 0.0034770 secs]
    [GC 10641K->6620K(14616K), 0.0282380 secs]
    [GC 10780K->6758K(14616K), 0.0027550 secs]
    [GC 10918K->6901K(14616K), 0.0026610 secs]
    [GC 11061K->7042K(14616K), 0.0033920 secs]
    [GC 11202K->7183K(14616K), 0.1176190 secs]
    [GC 11343K->7328K(14616K), 0.0026570 secs]
    [GC 11488K->7468K(14616K), 0.0037760 secs]
    [GC 11628K->7602K(14616K), 0.0030830 secs]
    [GC 11762K->7747K(14616K), 0.0037920 secs]
    [GC 11907K->7880K(14616K), 0.0039450 secs]
    [GC 12040K->8029K(14616K), 0.0037420 secs]
    [GC 12189K->8168K(14616K), 0.0059800 secs]
    [GC 12328K->8308K(14616K), 0.0040210 secs]
    [GC 12468K->8447K(14616K), 0.0141800 secs]
    [GC 12607K->8588K(14616K), 0.0040530 secs]
    [GC 12748K->8731K(14616K), 0.0927280 secs]
    [GC 12891K->8869K(14616K), 0.0039840 secs]
    [GC 13029K->8761K(14616K), 0.0167970 secs]
    [GC 12921K->8655K(14616K), 0.0013430 secs]
    [GC 12815K->8692K(14616K), 0.0027280 secs]
    [GC 12852K->8697K(14616K), 0.0022180 secs]
    [GC 12857K->8698K(14616K), 0.0018800 secs]
    [GC 12858K->8844K(14616K), 0.0030390 secs]
    [GC 13004K->8703K(14616K), 0.0020500 secs]
    [GC 12863K->8775K(14616K), 0.0022840 secs]
    [GC 12935K->8762K(14616K), 0.0021550 secs]
    [GC 12922K->8897K(14616K), 0.0029530 secs]
    [GC 13057K->9028K(14616K), 0.0321850 secs]
    [GC 13188K->9175K(14616K), 0.0037260 secs]
    [GC 13335K->9307K(14616K), 0.0197840 secs]
    [GC 13467K->9436K(14616K), 0.0037780 secs]
    [GC 13596K->9565K(14616K), 0.0254750 secs]
    [GC 13725K->9691K(14616K), 0.0032600 secs]
    [GC 13851K->9828K(14616K), 0.0034450 secs]
    [GC 13988K->9966K(14616K), 0.0038190 secs]
    [GC 14126K->10107K(14616K), 0.0039240 secs]
    [GC 14267K->10247K(14616K), 0.1258140 secs]
    [GC 14407K->10387K(14744K), 0.0040400 secs]
    [Full GC[Unloading class sun.reflect.GeneratedSerializationConstructorAccessor19]
    10387K->5407K(14744K), 1.3601020 secs]
    [GC 9567K->5549K(14616K), 0.0024490 secs]
    [GC 9709K->5695K(14616K), 0.0159350 secs]

    Pl post details of OS, database and EBS versions. The error is here
    >
    [12/1/10 8:04:04 AM] [UNEXPECTED] [1272712:RT4365650] java.sql.SQLException: No corresponding LOB data found :SELECT L.FILE_DATA ...
    >
    Pl see if the solution in MOS Doc 367456.1 (Why Does the 'Concurrent Program Details Report - XML Publisher' Fail with 'No corresponding LOB dat) is applicable. Other possibly relevant MOS Docs are
    XML Report Preview : Java.Sql.Sqlexception: No Corresponding Lob Data Found          (Doc ID 418374.1)
    Getting ''No Corresponding Lob Data Found'' Error From XDOREPPB 'XML Report Publisher'          (Doc ID 399349.1)
    Publish Fsg Report fails with "java.sql.SQLException: No corresponding LOB data found"          (Doc ID 420528.1)
    The Canadian RL1 Electronic Interface is Ending in Error: 'java.sql.SQLException: No corresponding L          (Doc ID 1068986.1)
    AR Customer Balance Statement Letter /Statements Output is in XMLand not in PDF          (Doc ID 975501.1)
    "An error encountered either due to invalid Template details or due to null Data Input Stream" While          (Doc ID 1068524.1)
    XML Publisher Invoice Print Report Has No Output Generated          (Doc ID 427314.1)
    HTH
    Srini

  • Error for Generating a log file

    Hi Cezar sanos,
    i am trying to generate a log file for ODI with details like who logged in and what is is doing kind of things.
    For this i am executing the command like
    lagentscheduler.bat "-PORT=20910" "-NAME=localagent" "-V=2" > C:\OraHome_1\logs\agent1.log.
    But its getting the error like
    A JDK is required to execute Web Services with OracleDI. You are currently using a JRE.
    OracleDI: Starting Scheduler Agent ...
    Starting Oracle Data Integrator Agent...
    Version : 10.1.3.5 - 10/11/2008
    DwgJv.main: Exit. Return code:-1

    Just in case,
    the following message :
    A JDK is required to execute Web Services with OracleDI. You are currently using a JRE.
    is only a warning and not an error message....

  • Getting the error while transporting the log file

    Hi,
    I have the primary and physical standby setup on my pc. i want to transport the log file by using the command on primary database
    alter system archive current log;
    alter system swicth archive logfile;
    i am recieving error not able to find the log sequence 15 #.
    Thanks
    vj0011590

    OCI requires a native library.
    Native libraries must be in the shared library path of the application (this is a feature of the OS not java.)

  • Ipod touch 4g is in recovery mode, whey try to restore it thorugh iTunes, I get error 40 below is log file....

    pls help me to fix this problem.
    log file...
    2014-02-24 14:04:20.396 [1192:14d4]: restore library built Jan  7 2014 at 02:02:33
    2014-02-24 14:04:20.397 [1192:14d4]: iTunes: iTunes 11.1.4.62
    2014-02-24 14:04:20.397 [1192:14d4]: iTunes: Software payload version: 10B500
    2014-02-24 14:04:20.397 [1192:14d4]: iTunes: Using iTunes state machine
    2014-02-24 14:12:16.573 [1192:10d0]: iTunes: Specifying UOI boot image
    2014-02-24 14:12:16.774 [1192:10d0]: requested restore behavior: Erase
    2014-02-24 14:12:16.774 [1192:10d0]: requested variant: Erase
    2014-02-24 14:12:16.997 [1192:10d0]: *** UUID B30995A9-9CBE-F743-9507-039BDD0D56EF ***
    2014-02-24 14:12:17.390 [1192:10d0]: amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    2014-02-24 14:12:22.429 [1192:10d0]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: withApTicket is True
    2014-02-24 14:12:22.429 [1192:10d0]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "RestoreLogo" Digest = "<CFData 063BE060 [720A907C]>{length = 20, capacity = 20, bytes = 0x3ced32535b4f03e3cdd4f55d4d29e16bdf6b3536}"
    2014-02-24 14:12:22.430 [1192:10d0]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "RestoreDeviceTree" Digest = "<CFData 063BFF08 [720A907C]>{length = 20, capacity = 20, bytes = 0x8b90263d2d4d916029bb28321fe214b7056dab33}"
    2014-02-24 14:12:22.430 [1192:10d0]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "RestoreKernelCache" Digest = "<CFData 063BECC0 [720A907C]>{length = 20, capacity = 20, bytes = 0x7788d3144dbc9f173ff12878570d11c0cdff4e35}"
    2014-02-24 14:12:22.430 [1192:10d0]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "RestoreRamDisk" Digest = "<CFData 063BFDE8 [720A907C]>{length = 20, capacity = 20, bytes = 0x947ce636269ab8f999739b5a72d820c70102912a}"
    2014-02-24 14:12:22.430 [1192:10d0]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "iBEC" Digest = "<CFData 063BEC78 [720A907C]>{length = 20, capacity = 20, bytes = 0x86aa6a33d416b8183226d0b9188df879c0666e8a}"
    2014-02-24 14:12:22.430 [1192:10d0]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "iBSS" Digest = "<CFData 063BF890 [720A907C]>{length = 20, capacity = 20, bytes = 0xd1534e338ae80b9b4addae3c77a83a6186fe75ab}"
    2014-02-24 14:12:22.430 [1192:10d0]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "KernelCache" Digest = "<CFData 063BFE78 [720A907C]>{length = 20, capacity = 20, bytes = 0x7788d3144dbc9f173ff12878570d11c0cdff4e35}"
    2014-02-24 14:12:22.430 [1192:10d0]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "BatteryLow1" Digest = "<CFData 063BF338 [720A907C]>{length = 20, capacity = 20, bytes = 0x79be5d2f2f7054aa2d7bdd5b66e3a0eca07a725b}"
    2014-02-24 14:12:22.430 [1192:10d0]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "BatteryLow0" Digest = "<CFData 063BFE30 [720A907C]>{length = 20, capacity = 20, bytes = 0x1abed33b398f978c681b346ea167eb26eaf3b38e}"
    2014-02-24 14:12:22.430 [1192:10d0]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "LLB" Digest = "<CFData 063BDF88 [720A907C]>{length = 20, capacity = 20, bytes = 0x21abcad73c393fb9d197b34403d52ec82643ffc4}"
    2014-02-24 14:12:22.430 [1192:10d0]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "iBoot" Digest = "<CFData 063BEC30 [720A907C]>{length = 20, capacity = 20, bytes = 0xfa0dc3003aeb828feda55a4ffb8027d10f054bce}"
    2014-02-24 14:12:22.430 [1192:10d0]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "DeviceTree" Digest = "<CFData 063BFDA0 [720A907C]>{length = 20, capacity = 20, bytes = 0x8b90263d2d4d916029bb28321fe214b7056dab33}"
    2014-02-24 14:12:22.430 [1192:10d0]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "BatteryCharging1" Digest = "<CFData 063BFD58 [720A907C]>{length = 20, capacity = 20, bytes = 0xc504724a963b954e32478d6920311a32baca15b9}"
    2014-02-24 14:12:22.431 [1192:10d0]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "BatteryCharging" Digest = "<CFData 063BFC38 [720A907C]>{length = 20, capacity = 20, bytes = 0x808a3980c646bd6d87921c9dba79c54a7759395a}"
    2014-02-24 14:12:22.431 [1192:10d0]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "AppleLogo" Digest = "<CFData 063BED08 [720A907C]>{length = 20, capacity = 20, bytes = 0x3ced32535b4f03e3cdd4f55d4d29e16bdf6b3536}"
    2014-02-24 14:12:22.431 [1192:10d0]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "BatteryPlugin" Digest = "<CFData 063BF578 [720A907C]>{length = 20, capacity = 20, bytes = 0x62d392da7901734968084e882ab8d687bc917be8}"
    2014-02-24 14:12:22.431 [1192:10d0]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "BatteryFull" Digest = "<CFData 063BFBA8 [720A907C]>{length = 20, capacity = 20, bytes = 0x059a392a0e7dccbfdc2f918cd59f4f5b4b140df8}"
    2014-02-24 14:12:22.431 [1192:10d0]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "BatteryCharging0" Digest = "<CFData 063BF410 [720A907C]>{length = 20, capacity = 20, bytes = 0x421d229710239b268c3a2544a4fb161a3d6288aa}"
    2014-02-24 14:12:22.431 [1192:10d0]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "RecoveryMode" Digest = "<CFData 063BF3C8 [720A907C]>{length = 20, capacity = 20, bytes = 0xa01b8483c6d2f2355569951d0e72df454f4432a7}"
    2014-02-24 14:12:22.431 [1192:10d0]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: using UniqueBuildID <CFData 063C3700 [720A907C]>{length = 20, capacity = 20, bytes = 0x9738ff132ae5b77833acdf2aa72af1558c4734d2}
    2014-02-24 14:12:22.431 [1192:10d0]: amai: AMAuthInstallRequestSendSync: SSO function returned NULL, SSO disabled.
    2014-02-24 14:12:22.685 [1192:10d0]: amai: AMAuthInstallDebugWriteObject: debug object written: file://localhost/C:/Users/RAKESH~1/AppData/Local/Temp/Per76A5.tmp/amai/debug/ts s-request.plist
    2014-02-24 14:12:24.350 [1192:10d0]: amai: tss_submit_job: HttpQueryInfo returned 200
    2014-02-24 14:12:25.032 [1192:10d0]: amai: AMAuthInstallRequestSendSync: received tss response (server version: 2.1.0)
    2014-02-24 14:12:25.078 [1192:10d0]: amai: AMAuthInstallDebugWriteObject: debug object written: file://localhost/C:/Users/RAKESH~1/AppData/Local/Temp/Per76A5.tmp/amai/debug/ts s-response.plist
    2014-02-24 14:12:26.597 [1192:10d0]: amai: _AMAuthInstallBundlePopulatePersonalizedBundle: no entry in manifest found for "Diags"
    2014-02-24 14:12:27.466 [1192:3a4]: iBoot build-version = iBoot-1537.9.55
    2014-02-24 14:12:27.467 [1192:3a4]: iBoot build-style = RELEASE
    2014-02-24 14:12:27.468 [1192:3a4]: requested restore behavior: Erase
    2014-02-24 14:12:27.469 [1192:3a4]: requested restore behavior: Erase
    2014-02-24 14:12:27.471 [1192:3a4]: unable to open device_map.txt: No such file or directory
    2014-02-24 14:12:27.472 [1192:3a4]: found device map entry for 0x00008930 0x00000008. boardConfig=n81ap platform=s5l8930x
    2014-02-24 14:12:27.473 [1192:3a4]: _AMRestoreCopyDeviceMapPlistEntryForHardware: firmwareDirectory not in options
    2014-02-24 14:12:27.474 [1192:3a4]: AMDeviceIoControl: GetOverlappedResult failed
    2014-02-24 14:12:27.475 [1192:3a4]: AMDeviceIoControl: pipe stall
    2014-02-24 14:12:27.476 [1192:3a4]: USBControlTransfer: error 31, usbd status c0000004
    2014-02-24 14:12:27.477 [1192:3a4]: command device request for 'getenv radio-error' failed: 2008
    2014-02-24 14:12:27.477 [1192:3a4]: radio-error not set
    2014-02-24 14:12:27.478 [1192:3a4]: unable to open device_map.txt: No such file or directory
    2014-02-24 14:12:27.480 [1192:3a4]: <Recovery Mode Device 025E0430>: production fused device
    2014-02-24 14:12:27.481 [1192:3a4]: requested restore behavior: Erase
    2014-02-24 14:12:27.481 [1192:3a4]: requested restore behavior: Erase
    2014-02-24 14:12:27.482 [1192:3a4]: interface has 1 endpoints, file pipe = 1
    2014-02-24 14:12:27.482 [1192:3a4]: <Recovery Mode Device 025E0430>: operation 4 progress -1
    2014-02-24 14:12:30.448 [1192:3a4]: bootstrapping restore with iBEC
    2014-02-24 14:12:30.449 [1192:3a4]: requested restore behavior: Erase
    2014-02-24 14:12:30.463 [1192:3a4]: <Recovery Mode Device 025E0430>: operation 31 progress -1
    2014-02-24 14:12:31.463 [1192:3a4]: <Recovery Mode Device 025E0430>: Recovery mode succeeded
    2014-02-24 14:12:37.516 [1192:17a4]: WinAMRestore::OnInterfaceRemoval: \\?\USB#VID_05AC&PID_1281#{ED82A167-D61A-4AF6-9AB6-11E52236C576}\IB0000#7caf03a 3
    2014-02-24 14:12:37.521 [1192:17a4]: WinAMRestore::AddAppleDeviceToDeviceList: \\?\USB#VID_05AC&PID_1281#{B8085869-FEB9-404B-8CB1-1E5C14FA8C54}\0000#3702aee4
    2014-02-24 14:12:37.590 [1192:17a4]: AppleDevice::EnumerateHubPorts: DoesDriverNameMatchDeviceID failed
    2014-02-24 14:12:37.622 [1192:17a4]: AppleDevice::EnumerateHubPorts: DoesDriverNameMatchDeviceID failed
    2014-02-24 14:12:37.651 [1192:17a4]: AppleDevice::EnumerateHubPorts: DoesDriverNameMatchDeviceID failed
    2014-02-24 14:12:37.664 [1192:17a4]: AppleDevice::SetNotification: CONNECT, interface type: 1, id: \\?\USB#VID_05AC&PID_1281#{B8085869-FEB9-404B-8CB1-1E5C14FA8C54}\0000#3702aee4, inst: 0x10bf1a50
    2014-02-24 14:12:37.664 [1192:17a4]: WinAMRestore::AddAppleDeviceToDeviceList, new device
    2014-02-24 14:12:37.665 [1192:17a4]: WinAMRestore::AddAppleDeviceToDeviceList: \\?\USB#VID_05AC&PID_1281#{ED82A167-D61A-4AF6-9AB6-11E52236C576}\IB0000#3702aee 4
    2014-02-24 14:12:37.692 [1192:17a4]: AppleDevice::EnumerateHubPorts: DoesDriverNameMatchDeviceID failed
    2014-02-24 14:12:37.716 [1192:17a4]: AppleDevice::EnumerateHubPorts: DoesDriverNameMatchDeviceID failed
    2014-02-24 14:12:37.739 [1192:17a4]: AppleDevice::EnumerateHubPorts: DoesDriverNameMatchDeviceID failed
    2014-02-24 14:12:37.869 [1192:17a4]: WinAMRestore::AddAppleDeviceToDeviceList, device already connected, new interface
    2014-02-24 14:12:37.869 [1192:17a4]: AppleDevice::SetDeviceID: AMD_INTERFACE_IBOOT \\?\USB#VID_05AC&PID_1281#{ED82A167-D61A-4AF6-9AB6-11E52236C576}\IB0000#3702aee 4, inst: 0x10bf1a50
    2014-02-24 14:12:37.869 [1192:17a4]: AppleDevice::SetNotification: CONNECT, interface type: 1, id: \\?\USB#VID_05AC&PID_1281#{ED82A167-D61A-4AF6-9AB6-11E52236C576}\IB0000#3702aee 4, inst: 0x10bf1a50
    2014-02-24 14:12:37.869 [1192:17a4]: WinAMRestore::ProcessDevNodesChanges: device: 0x063eb870, notify: 2, connected: 1
    2014-02-24 14:12:37.869 [1192:17a4]: AppleDevice::NotifyDisconnect: IBOOT, IBOOT \\?\USB#VID_05AC&PID_1281#{ED82A167-D61A-4AF6-9AB6-11E52236C576}\IB0000#7caf03a 3, inst: 0x63eb870
    2014-02-24 14:12:37.869 [1192:17a4]:                                IBOOT, DFU \\?\USB#VID_05AC&PID_1281#{B8085869-FEB9-404B-8CB1-1E5C14FA8C54}\0000#7caf03a3, inst: 0x63eb870
    2014-02-24 14:12:37.869 [1192:17a4]: WinAMRestore::ProcessDevNodesChanges: device: 0x10bf1a50, notify: 1, connected: 0
    2014-02-24 14:12:37.869 [1192:17a4]: AppleDevice::NotifyConnect: Device type: 2, Interfaces total: 2, arrived: 2
    2014-02-24 14:12:37.870 [1192:17a4]: AppleDevice::NotifyConnect: IBOOT, IBOOT \\?\USB#VID_05AC&PID_1281#{ED82A167-D61A-4AF6-9AB6-11E52236C576}\IB0000#3702aee 4, inst: 0x10bf1a50
    2014-02-24 14:12:37.870 [1192:17a4]:                             IBOOT, DFU \\?\USB#VID_05AC&PID_1281#{B8085869-FEB9-404B-8CB1-1E5C14FA8C54}\0000#3702aee4, inst: 0x10bf1a50
    2014-02-24 14:12:37.874 [1192:1558]: Recovery mode device disconnected
    2014-02-24 14:12:37.874 [1192:1558]: Recovery mode device disconnected
    2014-02-24 14:12:37.877 [1192:1558]: Recovery mode device connected
    2014-02-24 14:12:37.877 [1192:1558]: Found new device.
    2014-02-24 14:12:37.880 [1192:1450]: _AMRecoveryModeDeviceFinalize: 025E0430
    2014-02-24 14:12:37.881 [1192:14d4]: iTunes: SCEP 2
    2014-02-24 14:12:37.969 [1192:544]: iBoot build-version = iBoot-1537.9.55
    2014-02-24 14:12:37.970 [1192:544]: iBoot build-style = RELEASE
    2014-02-24 14:12:37.970 [1192:544]: <Recovery Mode Device 025DFDD0>: operation 44 progress -1
    2014-02-24 14:12:37.970 [1192:544]: requested restore behavior: Erase
    2014-02-24 14:12:37.970 [1192:544]: requested variant: Erase
    2014-02-24 14:12:37.971 [1192:544]: amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    2014-02-24 14:12:38.674 [1192:544]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: withApTicket is False
    2014-02-24 14:12:38.674 [1192:544]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreLogo"
    2014-02-24 14:12:38.674 [1192:544]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreDeviceTree"
    2014-02-24 14:12:38.674 [1192:544]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: entry "RestoreKernelCache" has been previously personalized; skipping it
    2014-02-24 14:12:38.674 [1192:544]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: entry "RestoreRamDisk" has been previously personalized; skipping it
    2014-02-24 14:12:38.674 [1192:544]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: entry "iBEC" has been previously personalized; skipping it
    2014-02-24 14:12:38.674 [1192:544]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: entry "iBSS" has been previously personalized; skipping it
    2014-02-24 14:12:38.674 [1192:544]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: entry "KernelCache" has been previously personalized; skipping it
    2014-02-24 14:12:38.675 [1192:544]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryLow1"
    2014-02-24 14:12:38.675 [1192:544]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryLow0"
    2014-02-24 14:12:38.675 [1192:544]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: entry "LLB" has been previously personalized; skipping it
    2014-02-24 14:12:38.675 [1192:544]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "iBoot"
    2014-02-24 14:12:38.675 [1192:544]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "DeviceTree"
    2014-02-24 14:12:38.675 [1192:544]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryCharging1"
    2014-02-24 14:12:38.675 [1192:544]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryCharging"
    2014-02-24 14:12:38.675 [1192:544]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "AppleLogo"
    2014-02-24 14:12:38.675 [1192:544]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryPlugin"
    2014-02-24 14:12:38.675 [1192:544]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryFull"
    2014-02-24 14:12:38.675 [1192:544]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryCharging0"
    2014-02-24 14:12:38.675 [1192:544]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RecoveryMode"
    2014-02-24 14:12:38.675 [1192:544]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: nothing to be done
    2014-02-24 14:12:38.675 [1192:544]: requested restore behavior: Erase
    2014-02-24 14:12:38.676 [1192:544]: requested restore behavior: Erase
    2014-02-24 14:12:38.676 [1192:544]: unable to open device_map.txt: No such file or directory
    2014-02-24 14:12:38.677 [1192:544]: found device map entry for 0x00008930 0x00000008. boardConfig=n81ap platform=s5l8930x
    2014-02-24 14:12:38.677 [1192:544]: _AMRestoreCopyDeviceMapPlistEntryForHardware: firmwareDirectory not in options
    2014-02-24 14:12:38.677 [1192:544]: AMDeviceIoControl: GetOverlappedResult failed
    2014-02-24 14:12:38.677 [1192:544]: AMDeviceIoControl: pipe stall
    2014-02-24 14:12:38.677 [1192:544]: USBControlTransfer: error 31, usbd status c0000004
    2014-02-24 14:12:38.677 [1192:544]: command device request for 'getenv radio-error' failed: 2008
    2014-02-24 14:12:38.677 [1192:544]: radio-error not set
    2014-02-24 14:12:38.677 [1192:544]: unable to open device_map.txt: No such file or directory
    2014-02-24 14:12:38.678 [1192:544]: <Recovery Mode Device 025DFDD0>: production fused device
    2014-02-24 14:12:38.678 [1192:544]: requested restore behavior: Erase
    2014-02-24 14:12:38.678 [1192:544]: requested restore behavior: Erase
    2014-02-24 14:12:38.679 [1192:544]: interface has 1 endpoints, file pipe = 1
    2014-02-24 14:12:38.679 [1192:544]: <Recovery Mode Device 025DFDD0>: operation 4 progress -1
    2014-02-24 14:12:41.655 [1192:544]: unable to open device_map.txt: No such file or directory
    2014-02-24 14:12:41.656 [1192:544]: found device map entry for 0x00008930 0x00000008. boardConfig=n81ap platform=s5l8930x
    2014-02-24 14:12:41.656 [1192:544]: _AMRestoreCopyDeviceMapPlistEntryForHardware: firmwareDirectory not in options
    2014-02-24 14:12:41.656 [1192:544]: requested restore behavior: Erase
    2014-02-24 14:12:41.659 [1192:544]: amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    2014-02-24 14:12:41.661 [1192:544]: requested restore behavior: Erase
    2014-02-24 14:12:41.664 [1192:544]: amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    2014-02-24 14:12:41.666 [1192:544]: <Recovery Mode Device 025DFDD0>: operation 42 progress -1
    2014-02-24 14:12:41.666 [1192:544]: requested restore behavior: Erase
    2014-02-24 14:12:41.669 [1192:544]: amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    2014-02-24 14:12:42.160 [1192:17a4]: WinAMRestore::OnInterfaceRemoval: \\?\USB#VID_05AC&PID_1281#{B8085869-FEB9-404B-8CB1-1E5C14FA8C54}\0000#7caf03a3
    2014-02-24 14:12:42.163 [1192:17a4]: WinAMRestore::AddAppleDeviceToDeviceList: \\?\USB#VID_05AC&PID_1281#{B8085869-FEB9-404B-8CB1-1E5C14FA8C54}\0000#3702aee4
    2014-02-24 14:12:42.231 [1192:17a4]: AppleDevice::EnumerateHubPorts: DoesDriverNameMatchDeviceID failed
    2014-02-24 14:12:42.285 [1192:17a4]: AppleDevice::EnumerateHubPorts: DoesDriverNameMatchDeviceID failed
    2014-02-24 14:12:42.340 [1192:17a4]: AppleDevice::EnumerateHubPorts: DoesDriverNameMatchDeviceID failed
    2014-02-24 14:12:42.364 [1192:17a4]: AppleDevice::SetNotification: NONE, interface type: 0, id: \\?\USB#VID_05AC&PID_1281#{B8085869-FEB9-404B-8CB1-1E5C14FA8C54}\0000#3702aee4, inst: 0x10bf1a50
    2014-02-24 14:12:42.367 [1192:17a4]: WinAMRestore::AddAppleDeviceToDeviceList: \\?\USB#VID_05AC&PID_1281#{ED82A167-D61A-4AF6-9AB6-11E52236C576}\IB0000#3702aee 4
    2014-02-24 14:12:42.432 [1192:17a4]: AppleDevice::EnumerateHubPorts: DoesDriverNameMatchDeviceID failed
    2014-02-24 14:12:42.487 [1192:17a4]: AppleDevice::EnumerateHubPorts: DoesDriverNameMatchDeviceID failed
    2014-02-24 14:12:42.541 [1192:17a4]: AppleDevice::EnumerateHubPorts: DoesDriverNameMatchDeviceID failed
    2014-02-24 14:12:42.566 [1192:17a4]: AppleDevice::SetNotification: NONE, interface type: 0, id: \\?\USB#VID_05AC&PID_1281#{ED82A167-D61A-4AF6-9AB6-11E52236C576}\IB0000#3702aee 4, inst: 0x10bf1a50
    2014-02-24 14:12:42.567 [1192:17a4]: WinAMRestore::ProcessDevNodesChanges: device: 0x063eb870, notify: 2, connected: 0
    2014-02-24 14:12:42.567 [1192:17a4]: WinAMRestore::ProcessDevNodesChanges: device: 0x10bf1a50, notify: 0, connected: 1
    2014-02-24 14:12:42.706 [1192:544]: AMDeviceIoControl: GetOverlappedResult failed
    2014-02-24 14:12:42.706 [1192:544]: AMDeviceIoControl: pipe stall
    2014-02-24 14:12:42.706 [1192:544]: USBControlTransfer: error 31, usbd status c0000004
    2014-02-24 14:12:42.706 [1192:544]: command device request for 'getenv ramdisk-size' failed: 2008
    2014-02-24 14:12:42.707 [1192:544]: Unable to query iBoot ramdisk-size. Libusbrestore error : 67108864
    2014-02-24 14:12:42.707 [1192:544]: <Recovery Mode Device 025DFDD0>: operation 5 progress -1
    2014-02-24 14:12:43.100 [1192:544]: unable to open device_map.txt: No such file or directory
    2014-02-24 14:12:43.100 [1192:544]: found device map entry for 0x00008930 0x00000008. boardConfig=n81ap platform=s5l8930x
    2014-02-24 14:12:43.100 [1192:544]: _AMRestoreCopyDeviceMapPlistEntryForHardware: firmwareDirectory not in options
    2014-02-24 14:12:43.102 [1192:544]: AMDeviceIoControl: GetOverlappedResult failed
    2014-02-24 14:12:43.102 [1192:544]: AMDeviceIoControl: pipe stall
    2014-02-24 14:12:43.102 [1192:544]: USBControlTransfer: error 31, usbd status c0000004
    2014-02-24 14:12:43.102 [1192:544]: command device request for 'getenv ramdisk-delay' failed: 2008
    2014-02-24 14:12:44.141 [1192:17a4]: WinAMRestore::OnInterfaceArrival: \\?\USB#VID_05AC&PID_1281#{ED82A167-D61A-4AF6-9AB6-11E52236C576}\IB0000#3702aee 4
    2014-02-24 14:12:44.141 [1192:17a4]: WinAMRestore::AddAppleDeviceToDeviceList: \\?\USB#VID_05AC&PID_1281#{ED82A167-D61A-4AF6-9AB6-11E52236C576}\IB0000#3702aee 4
    2014-02-24 14:12:44.187 [1192:17a4]: AppleDevice::EnumerateHubPorts: DoesDriverNameMatchDeviceID failed
    2014-02-24 14:12:44.227 [1192:17a4]: AppleDevice::EnumerateHubPorts: DoesDriverNameMatchDeviceID failed
    2014-02-24 14:12:44.260 [1192:17a4]: AppleDevice::EnumerateHubPorts: DoesDriverNameMatchDeviceID failed
    2014-02-24 14:12:44.272 [1192:17a4]: AppleDevice::SetNotification: NONE, interface type: 0, id: \\?\USB#VID_05AC&PID_1281#{ED82A167-D61A-4AF6-9AB6-11E52236C576}\IB0000#3702aee 4, inst: 0x10bf1a50
    2014-02-24 14:12:44.272 [1192:17a4]: WinAMRestore::ProcessDevNodesChanges: device: 0x063eb870, notify: 2, connected: 0
    2014-02-24 14:12:44.272 [1192:17a4]: WinAMRestore::ProcessDevNodesChanges: device: 0x10bf1a50, notify: 0, connected: 1
    2014-02-24 14:12:44.361 [1192:17a4]: WinAMRestore::OnInterfaceArrival: \\?\USB#VID_05AC&PID_1281#{B8085869-FEB9-404B-8CB1-1E5C14FA8C54}\0000#3702aee4
    2014-02-24 14:12:44.361 [1192:17a4]: WinAMRestore::AddAppleDeviceToDeviceList: \\?\USB#VID_05AC&PID_1281#{B8085869-FEB9-404B-8CB1-1E5C14FA8C54}\0000#3702aee4
    2014-02-24 14:12:44.389 [1192:17a4]: AppleDevice::EnumerateHubPorts: DoesDriverNameMatchDeviceID failed
    2014-02-24 14:12:44.412 [1192:17a4]: AppleDevice::EnumerateHubPorts: DoesDriverNameMatchDeviceID failed
    2014-02-24 14:12:44.435 [1192:17a4]: AppleDevice::EnumerateHubPorts: DoesDriverNameMatchDeviceID failed
    2014-02-24 14:12:44.446 [1192:17a4]: AppleDevice::SetNotification: NONE, interface type: 0, id: \\?\USB#VID_05AC&PID_1281#{B8085869-FEB9-404B-8CB1-1E5C14FA8C54}\0000#3702aee4, inst: 0x10bf1a50
    2014-02-24 14:12:44.446 [1192:17a4]: WinAMRestore::ProcessDevNodesChanges: device: 0x063eb870, notify: 2, connected: 0
    2014-02-24 14:12:44.446 [1192:17a4]: WinAMRestore::ProcessDevNodesChanges: device: 0x10bf1a50, notify: 0, connected: 1
    2014-02-24 14:12:45.138 [1192:544]: <Recovery Mode Device 025DFDD0>: operation 6 progress -1
    2014-02-24 14:12:46.148 [1192:544]: <Recovery Mode Device 025DFDD0>: operation 7 progress -1
    2014-02-24 14:12:46.482 [1192:544]: <Recovery Mode Device 025DFDD0>: operation 8 progress -1
    2014-02-24 14:12:46.483 [1192:544]: unable to open device_map.txt: No such file or directory
    2014-02-24 14:12:46.484 [1192:544]: found device map entry for 0x00008930 0x00000008. boardConfig=n81ap platform=s5l8930x
    2014-02-24 14:12:46.484 [1192:544]: _AMRestoreCopyDeviceMapPlistEntryForHardware: firmwareDirectory not in options
    2014-02-24 14:12:46.485 [1192:544]: <Recovery Mode Device 025DFDD0>: operation 9 progress -1
    2014-02-24 14:12:46.485 [1192:544]: <Recovery Mode Device 025DFDD0>: Recovery mode succeeded
    2014-02-24 14:12:48.195 [1192:17a4]: WinAMRestore::OnInterfaceRemoval: \\?\USB#VID_05AC&PID_1281#{ED82A167-D61A-4AF6-9AB6-11E52236C576}\IB0000#3702aee 4
    2014-02-24 14:12:48.200 [1192:17a4]: WinAMRestore::ProcessDevNodesChanges: device: 0x063eb870, notify: 2, connected: 0
    2014-02-24 14:12:48.201 [1192:17a4]: WinAMRestore::ProcessDevNodesChanges: device: 0x10bf1a50, notify: 2, connected: 1
    2014-02-24 14:12:48.201 [1192:17a4]: AppleDevice::NotifyDisconnect: IBOOT, IBOOT \\?\USB#VID_05AC&PID_1281#{ED82A167-D61A-4AF6-9AB6-11E52236C576}\IB0000#3702aee 4, inst: 0x10bf1a50
    2014-02-24 14:12:48.201 [1192:17a4]:                                IBOOT, DFU \\?\USB#VID_05AC&PID_1281#{B8085869-FEB9-404B-8CB1-1E5C14FA8C54}\0000#3702aee4, inst: 0x10bf1a50
    2014-02-24 14:12:48.210 [1192:1450]: Recovery mode device disconnected
    2014-02-24 14:12:48.211 [1192:1450]: Recovery mode device disconnected
    2014-02-24 14:12:48.214 [1192:1558]: _AMRecoveryModeDeviceFinalize: 025DFDD0
    2014-02-24 14:12:48.382 [1192:17a4]: WinAMRestore::OnInterfaceRemoval: \\?\USB#VID_05AC&PID_1281#{B8085869-FEB9-404B-8CB1-1E5C14FA8C54}\0000#3702aee4
    2014-02-24 14:12:48.384 [1192:17a4]: WinAMRestore::ProcessDevNodesChanges: device: 0x063eb870, notify: 2, connected: 0
    2014-02-24 14:12:48.384 [1192:17a4]: WinAMRestore::ProcessDevNodesChanges: device: 0x10bf1a50, notify: 2, connected: 0
    2014-02-24 14:13:00.982 [1192:cfc]: Mux version 3 event happened
    2014-02-24 14:13:00.982 [1192:cfc]: Passing control to mux version 2 handler
    2014-02-24 14:13:00.983 [1192:cfc]: Muxed mode device connected
    2014-02-24 14:13:01.049 [1192:e7c]: <Restore Device 0641A9E8>: operation 3 progress -1
    2014-02-24 14:13:01.055 [1192:e7c]: <Restore Device 0641A9E8>: operation 4 progress -1
    2014-02-24 14:13:01.266 [1192:1664]: received kAMDeviceAttached action, device id E80CE514C875BC07 (0641AB88), AFC error 0XE8000028
    2014-02-24 14:13:01.266 [1192:1664]: iTunes: Restore-mode device appeared, device 0641AB88
    2014-02-24 14:13:01.266 [1192:1664]: iTunes: Creating restore mode device with usbMuxDeviceID 0X1
    2014-02-24 14:13:01.267 [1192:1664]: <Restore Device 06F59780>: operation 3 progress -1
    2014-02-24 14:13:01.272 [1192:1664]: <Restore Device 06F59780>: operation 4 progress -1
    2014-02-24 14:13:01.297 [1192:e7c]: Supports value queries: 1
    2014-02-24 14:13:01.300 [1192:1664]: Supports value queries: 1
    2014-02-24 14:13:01.314 [1192:e7c]: value query for 'SerialNumber' returned 'C3VDMTBQDCP9'
    2014-02-24 14:13:01.314 [1192:e7c]: <Restore Device 0641A9E8>: operation 3 progress -1
    2014-02-24 14:13:01.321 [1192:e7c]: <Restore Device 0641A9E8>: operation 4 progress -1
    2014-02-24 14:13:01.326 [1192:e7c]: Supports value queries: 1
    2014-02-24 14:13:01.336 [1192:1154]: Found new device
    2014-02-24 14:13:01.368 [1192:f44]: <Restore Device 06F59780>: operation 44 progress -1
    2014-02-24 14:13:01.368 [1192:f44]: requested restore behavior: Erase
    2014-02-24 14:13:01.368 [1192:f44]: requested variant: Erase
    2014-02-24 14:13:01.372 [1192:f44]: amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    2014-02-24 14:13:02.146 [1192:f44]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: withApTicket is False
    2014-02-24 14:13:02.146 [1192:f44]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreLogo"
    2014-02-24 14:13:02.146 [1192:f44]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreDeviceTree"
    2014-02-24 14:13:02.146 [1192:f44]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: entry "RestoreKernelCache" has been previously personalized; skipping it
    2014-02-24 14:13:02.146 [1192:f44]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: entry "RestoreRamDisk" has been previously personalized; skipping it
    2014-02-24 14:13:02.146 [1192:f44]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: entry "iBEC" has been previously personalized; skipping it
    2014-02-24 14:13:02.146 [1192:f44]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: entry "iBSS" has been previously personalized; skipping it
    2014-02-24 14:13:02.146 [1192:f44]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: entry "KernelCache" has been previously personalized; skipping it
    2014-02-24 14:13:02.146 [1192:f44]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryLow1"
    2014-02-24 14:13:02.146 [1192:f44]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryLow0"
    2014-02-24 14:13:02.146 [1192:f44]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: entry "LLB" has been previously personalized; skipping it
    2014-02-24 14:13:02.146 [1192:f44]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "iBoot"
    2014-02-24 14:13:02.146 [1192:f44]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "DeviceTree"
    2014-02-24 14:13:02.147 [1192:f44]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryCharging1"
    2014-02-24 14:13:02.147 [1192:f44]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryCharging"
    2014-02-24 14:13:02.147 [1192:f44]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "AppleLogo"
    2014-02-24 14:13:02.147 [1192:f44]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryPlugin"
    2014-02-24 14:13:02.147 [1192:f44]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryFull"
    2014-02-24 14:13:02.147 [1192:f44]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryCharging0"
    2014-02-24 14:13:02.147 [1192:f44]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RecoveryMode"
    2014-02-24 14:13:02.147 [1192:f44]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: nothing to be done
    2014-02-24 14:13:02.147 [1192:f44]: requested restore behavior: Erase
    2014-02-24 14:13:02.149 [1192:f44]: amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    2014-02-24 14:13:02.166 [1192:f44]: fixed TcpWindowSize (65535) can cause restore failure if too large
    2014-02-24 14:13:02.238 [1192:f44]: device did not return saved USB log
    2014-02-24 14:13:02.238 [1192:f44]: device had saved panic logs: panic(cpu 0 caller 0x80632111): "partition scheme present; however, no partition devices were created"@/SourceCache/IOFlashStorage/IOFlashStorage-558.4/IOFlashPartitionSchem e.cpp:267
    Debugger message: panic
    OS version: 9A405
    Kernel version: Darwin Kernel Version 11.0.0: Tue Nov  1 20:33:58 PDT 2011; root:xnu-1878.4.46~1/RELEASE_ARM_S5L8930X
    iBoot version: iBoot-1219.43.32
    secure boot?: YES
    Paniclog version: 1
    Epoch Time:        sec       usec
      Boot    : 0x526e9493 0x00000000
      Sleep   : 0x00000000 0x00000000
      Wake    : 0x00000000 0x00000000
      Calendar: 0x526e94a6 0x000e2944
    Task 0xc0562d20: 2451 pages, 81 threads: pid 0: kernel_task
              thread 0xc064b230
                        kernel backtrace: cb643e2c
                          lr: 0x8007cc6b  fp: 0xcb643e58
                          lr: 0x8007d26f  fp: 0xcb643e88
                          lr: 0x80016391  fp: 0xcb643ea0
                          lr: 0x80632111  fp: 0xcb643ecc
                          lr: 0x806323b9  fp: 0xcb643ee0
                          lr: 0x8020dd3b  fp: 0xcb643f18
                          lr: 0x8020db31  fp: 0xcb643f5c
                          lr: 0x8020e509  fp: 0xcb643f80
                          lr: 0x8020e2e5  fp: 0xcb643fa8
                          lr: 0x8007b37c  fp: 0x00000000
    Task 0xc0562ac0: 283 pages, 3 threads: pid 1: launchd
    Task 0xc0562860: 515 pages, 1 threads: pid 2: launchctl
    Task 0xc0562600: 690 pages, 1 threads: pid 3: restored_externa
    Task 0xc05623a0: 3000 pages, 2 threads: pid 4: restored_externa
    2014-02-24 14:13:02.248 [1192:f44]: connected to service com.apple.mobile.restored
    2014-02-24 14:13:02.248 [1192:f44]: using protocol version 12
    2014-02-24 14:13:02.256 [1192:f44]: unable to open device_map.txt: No such file or directory
    2014-02-24 14:13:02.257 [1192:f44]: board config = n81ap
    2014-02-24 14:13:02.264 [1192:f44]: no value returned for BootArgs
    2014-02-24 14:13:02.264 [1192:f44]: _copyDeviceProperty() failed for restore bootargs
    2014-02-24 14:13:02.272 [1192:f44]: no value returned for MarketingPartNumber
    2014-02-24 14:13:02.272 [1192:f44]: _copyDeviceProperty() failed for mpn
    2014-02-24 14:13:02.273 [1192:f44]: requested restore behavior: Erase
    2014-02-24 14:13:02.274 [1192:f44]: amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    2014-02-24 14:13:02.285 [1192:f44]: value query for 'HardwareModel' returned 'N81AP'
    2014-02-24 14:13:32.300 [1192:f44]: <Restore Device 06F59780>: operation 28 progress -1
    2014-02-24 14:13:32.364 [1192:f44]: device returned CFError with code 40
    2014-02-24 14:13:32.364 [1192:f44]: dumping CFError returned by restored:
    2014-02-24 14:13:32.364 [1192:f44]: CFError domain:AMRestoreErrorDomain code:40 description:storage device did not become available
    2014-02-24 14:13:32.384 [1192:f44]:
    ==== device restore output ====
    "P=N81 m=2.2 V=m"
    AppleBCMWLANBusInterfaceSdio::start(): Started by: IOSDIOIoCardDevice, AppleBCMWLANV2-169.10 Feb 13 2013 22:10:14
    AppleBCMWLANCore::init(): AppleBCMWLANV2-169.10 Feb 13 2013 22:10:17
    000522.906303 wlan.W[0] AppleBCMWLANProvisioningManager::parseApplePrivateCIS():  @24 - Invalid 2.4 GHz Cal data in tuple 0x02
    000522.907778 wlan.N[1] AppleBCMWLANProvisioningManager::handleBluetoothRegistrationGated():  Wrote bluetooth Mac Addr <<<mac address>>>
    000522.909596 wlan.N[2] AppleBCMWLANConfigManager::gatherParameterData():  AWDL is not supported.
    000522.914563 wlan.N[3] AppleBCMWLANCore:start(): Starting with MAC Address: <<<mac address>>>
    000522.914795 wlan.W[4] AppleBCMWLANCore::apple80211Request():  Rejecting ioctl 80, error 61 (state 0x20)
    IO80211PeerManager::initWithInterface cant add monitoring timer
    IO80211PeerManager::initWithInterface: inited peer manager
    IO80211Interface::init peerManager=0x916e0600
    000522.916824 wlan.N[5] AppleBCMWLANCore::setPowerStateGated():   powerState 1, fStateFlags 0x20, dev 0x83b41000 (this 1, provider 0)
    000522.916944 wlan.N[6] AppleBCMWLANCore::setPowerStateGated():  Received power state change before driver has initialized, ignoring
    display-scale = 2
    display-rotation = 0
    found suitable IOMobileFramebuffer: AppleCLCD
    display: 640 x 960
    found PTP interface
    AppleSynopsysOTGDevice - Configuration: PTP
    AppleSynopsysOTGDevice          Interface: PTP
    AppleSynopsysOTGDevice - Configuration: iPod USB Interface
    AppleSynopsysOTGDevice          Interface: USBAudioControl
    AppleSynopsysOTGDevice          Interface: USBAudioStreaming
    AppleSynopsysOTGDevice          Interface: IapOverUsbHid
    AppleSynopsysOTGDevice - Configuration: PTP + Apple Mobile Device
    AppleSynopsysOTGDevice          Interface: PTP
    AppleSynopsysOTGDevice          Interface: AppleUSBMux
    AppleSynopsysOTGDevice - Configuration: PTP + Apple Mobile Device + Apple USB Ethernet
    AppleSynopsysOTGDevice          Interface: PTP
    AppleSynopsysOTGDevice          Interface: AppleUSBMux
    AppleSynopsysOTGDevice          Interface: AppleUSBEthernet
    AppleSynopsysOTGDevice::gated_registerFunction Register function USBAudioControl
    AppleSynopsysOTGDevice::gated_registerFunction Register function USBAudioStreaming
    IOAccessoryPortUSB::start
    AppleSynopsysOTGDevice::gated_registerFunction Register function IapOverUsbHid
    virtual bool AppleUSBDeviceMux::start(IOService *) build: Feb 13 2013 22:02:59
    init_waste
    AppleSynopsysOTGDevice::gated_registerFunction Register function AppleUSBMux
    AppleSynopsysOTGDevice::gated_registerFunction Register function AppleUSBEthernet
    AppleSynopsysOTGDevice::gated_registerFunction Register function PTP
    AppleSynopsysOTGDevice::startUSBStack Starting usb stack
    IOReturn AppleUSBDeviceMux::setPropertiesGated(OSObject *) setting debug level to 7
    read new style signature 0x43313131 (line:389)
    [FTL:MSG] VSVFL Register  [OK]
    [WMR:MSG] Metadata whitening is set in NAND signature
    [FTL:MSG] VFL Init            [OK]
    [VFL:ERR] _LoadVFLCxt(line:1479) fail CS 1!
    [VFL:ERR]  _LoadVFLCxt(wCSIdx:1)(line 1779) fail!
    [WMR:ERR] VFL_Open failed
    AppleNANDLegacyFTL::start: AND init failed
    AppleUSBDeviceMux::handleConnectResult new session 0x90fcce70 established 62078<-lo0->49152 62078<-usb->512
    recv(9, 4) failed: connection closed
    unable to read message size: -1
    could not receive message
    recv(9, 4) failed: connection closed
    unable to read message size: -1
    could not receive message
    recv(12, 4) failed: connection closed
    unable to read message size: -1
    could not receive message
    recv(15, 4) failed: connection closed
    unable to read message size: -1
    could not receive message
    recv(9, 4) failed: connection closed
    unable to read message size: -1
    could not receive message
    recv(18, 4) failed: connection closed
    unable to read message size: -1
    could not receive message
    recv(9, 4) failed: connection closed
    unable to read message size: -1
    could not receive message
    recv(9, 4) failed: connection closed
    unable to read message size: -1
    could not receive message
    recv(9, 4) failed: connection closed
    unable to read message size: -1
    could not receive message
    recv(9, 4) failed: connection closed
    unable to read message size: -1
    could not receive message
    recv(9, 4) failed: connection closed
    unable to read message size: -1
    could not receive message
    void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x90fcce70
    AppleUSBDeviceMux::handleConnectResult new session 0x90fcce70 established 62078<-lo0->49153 62078<-usb->768
    void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x90fcce70
    AppleUSBDeviceMux::handleConnectResult new session 0x90fcce70 established 62078<-lo0->49154 62078<-usb->1024
    AppleUSBDeviceMux::handleConnectResult new session 0x91816210 established 62078<-lo0->49155 62078<-usb->1280
    void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x91816210
    AppleUSBDeviceMux::handleConnectResult new session 0x91816210 established 62078<-lo0->49156 62078<-usb->1536
    AppleUSBDeviceMux::handleConnectResult new session 0x91816268 established 62078<-lo0->49157 62078<-usb->1792
    AppleUSBDeviceMux::handleConnectResult new session 0x918160b0 established 62078<-lo0->49158 62078<-usb->2048
    void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x91816268
    void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x90fcce70
    void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x918160b0
    AppleUSBDeviceMux::handleConnectResult new session 0x90fcce70 established 62078<-lo0->49159 62078<-usb->2304
    AppleUSBDeviceMux::handleConnectResult new session 0x918160b0 established 62078<-lo0->49160 62078<-usb->2560
    void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x918160b0
    AppleUSBDeviceMux::handleConnectResult new session 0x918160b0 established 62078<-lo0->49161 62078<-usb->2816
    void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x918160b0
    AppleUSBDeviceMux::handleConnectResult new session 0x918160b0 established 62078<-lo0->49162 62078<-usb->3072
    void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x918160b0
    AppleUSBDeviceMux::handleConnectResult new session 0x918160b0 established 62078<-lo0->49163 62078<-usb->3328
    void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x918160b0
    AppleUSBDeviceMux::handleConnectResult new session 0x918160b0 established 62078<-lo0->49164 62078<-usb->3584
    void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x918160b0
    recv(9, 4) failed: connection closed
    unable to read message size: -1
    could not receive message
    recv(9, 4) failed: connection closed
    unable to read message size: -1
    could not receive message
    unrecognized key 'BootArgs' in value query
    recv(9, 4) failed: connection closed
    unable to read message size: -1
    could not receive message
    unrecognized key 'MarketingPartNumber' in value query
    recv(9, 4) failed: connection closed
    unable to read message size: -1
    could not receive message
    recv(9, 4) failed: connection closed
    unable to read message size: -1
    could not receive message
    client protocol version 13
    *** UUID B30995A9-9CBE-F743-9507-039BDD0D56EF ***
    Restore options:
              UUID                           => <CFString 0x1ed27a50 [0x32b100]>{contents = "B30995A9-9CBE-F743-9507-039BDD0D56EF"}
              MinimumSystemPartition         => <CFNumber 0x1ed279a0 [0x32b100]>{value = +1152, type = kCFNumberSInt64Type}
              SystemPartitionSize            => <CFNumber 0x1ed28300 [0x32b100]>{value = +1152, type = kCFNumberSInt64Type}
              SystemPartitionPadding         => <CFBasicHash 0x1ed27470 [0x32b100]>{type = mutable dict, count = 5,
    entries =>
              2 : <CFString 0x1ed277b0 [0x32b100]>{contents = "128"} = <CFNumber 0x1ed279d0 [0x32b100]>{value = +1280, type = kCFNumberSInt64Type}
              3 : <CFString 0x1ed27ce0 [0x32b100]>{contents = "16"} = <CFNumber 0x1ed27a00 [0x32b100]>{value = +160, type = kCFNumberSInt64Type}
              4 : <CFString 0x1ed1f1a0 [0x32b100]>{contents = "32"} = <CFNumber 0x1ed274d0 [0x32b100]>{value = +320, type = kCFNumberSInt64Type}
              5 : <CFString 0x1ed27100 [0x32b100]>{contents = "8"} = <CFNumber 0x1ed282f0 [0x32b100]>{value = +80, type = kCFNumberSInt64Type}
              8 : <CFString 0x1ed274e0 [0x32b100]>{contents = "64"} = <CFNumber 0x1ed27340 [0x32b100]>{value = +640, type = kCFNumberSInt64Type}
    entering partition_nand_device
    device supports boot-from-NAND
    AppleUSBDeviceMux::handleConnectResult new session 0x918160b0 established 62078<-lo0->49165 62078<-usb->3840
    void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x918160b0
    AppleUSBDeviceMux::handleConnectResult new session 0x918160b0 established 62078<-lo0->49166 62078<-usb->4096
    void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x918160b0
    AppleUSBDeviceMux::handleConnectResult new session 0x918160b0 established 62078<-lo0->49167 62078<-usb->4352
    void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x918160b0
    AppleUSBDeviceMux::handleConnectResult new session 0x918160b0 established 62078<-lo0->49168 62078<-usb->4608
    void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x918160b0
    AppleUSBDeviceMux::handleConnectResult new session 0x918160b0 established 62078<-lo0->49169 62078<-usb->4864
    void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x918160b0
    [IOFlashPartitionScheme:ERR] AppleNANDFTL initialization failed
    [nand_part_core:ERR@ 429] no fbbt service available
    [nand_part_core:BUG@3024] failed to create partition devices
    unable to check is-bfn-partitioned property
    nand device is already partitioned
    entering wait_for_storage_device
    Searching for NAND service
    Found NAND service: IOFlashStoragePartition
    NAND failed to initialize: No additional error message.
    ==== end of device restore output ====
    2014-02-24 14:13:32.384 [1192:f44]: AMRAuthInstallDeletePersonalizedBundle
    2014-02-24 14:13:32.892 [1192:f44]: <Restore Device 06F59780>: Restore failed (result = 40)
    2014-02-24 14:13:33.517 [1192:14d4]: iTunes: Restore error 40
    2014-02-24 14:15:03.369 [1192:120]: Looking up device with muxID:1
    2014-02-24 14:15:03.369 [1192:120]: Muxed device disconnected
    2014-02-24 14:15:03.369 [1192:120]: RestoreOS mode device disconnected
    2014-02-24 14:15:09.873 [1192:17a4]: WinAMRestore::OnInterfaceArrival: \\?\USB#VID_05AC&PID_1281#{ED82A167-D61A-4AF6-9AB6-11E52236C576}\IB0000#7caf03a 3
    2014-02-24 14:15:09.873 [1192:17a4]: WinAMRestore::AddAppleDeviceToDeviceList: \\?\USB#VID_05AC&PID_1281#{ED82A167-D61A-4AF6-9AB6-11E52236C576}\IB0000#7caf03a 3
    2014-02-24 14:15:09.916 [1192:17a4]: AppleDevice::EnumerateHubPorts: DoesDriverNameMatchDeviceID failed
    2014-02-24 14:15:09.955 [1192:17a4]: AppleDevice::EnumerateHubPorts: DoesDriverNameMatchDeviceID failed
    2014-02-24 14:15:09.993 [1192:17a4]: AppleDevice::EnumerateHubPorts: DoesDriverNameMatchDeviceID failed
    2014-02-24 14:15:10.011 [1192:17a4]: WinAMRestore::AddAppleDeviceToDeviceList, old disconnected device connects again
    2014-02-24 14:15:10.011 [1192:17a4]: AppleDevice::SetNotification: CONNECT, interface type: 1, id: \\?\USB#VID_05AC&PID_1281#{ED82A167-D61A-4AF6-9AB6-11E52236C576}\IB0000#7caf03a 3, inst: 0x63eb870
    2014-02-24 14:15:10.011 [1192:17a4]: WinAMRestore::ProcessDevNodesChanges: device: 0x063eb870, notify: 1, connected: 0
    2014-02-24 14:15:10.011 [1192:17a4]: WinAMRestore::ProcessDevNodesChanges: device: 0x10bf1a50, notify: 2, connected: 0
    2014-02-24 14:15:10.011 [1192:17a4]: AppleDevice::NotifyConnect: Device type: 2, Interfaces total: 2, arrived: 1
    2014-02-24 14:15:10.011 [1192:17a4]: AppleDevice::NotifyConnect: Interfaces total != arrived, no notification
    2014-02-24 14:15:10.123 [1192:17a4]: WinAMRestore::OnInterfaceArrival: \\?\USB#VID_05AC&PID_1281#{B8085869-FEB9-404B-8CB1-1E5C14FA8C54}\0000#7caf03a3
    2014-02-24 14:15:10.123 [1192:17a4]: WinAMRestore::AddAppleDeviceToDeviceList: \\?\USB#VID_05AC&PID_1281#{B8085869-FEB9-404B-8CB1-1E5C14FA8C54}\0000#7caf03a3
    2014-02-24 14:15:10.165 [1192:17a4]: AppleDevice::EnumerateHubPorts: DoesDriverNameMatchDeviceID failed
    2014-02-24 14:15:10.188 [1192:17a4]: AppleDevice::EnumerateHubPorts: DoesDriverNameMatchDeviceID failed
    2014-02-24 14:15:10.211 [1192:17a4]: AppleDevice::EnumerateHubPorts: DoesDriverNameMatchDeviceID failed
    2014-02-24 14:15:10.223 [1192:17a4]: WinAMRestore::AddAppleDeviceToDeviceList, device already connected, new interface
    2014-02-24 14:15:10.223 [1192:17a4]: AppleDevice::SetDeviceID: AMD_INTERFACE_DFU \\?\USB#VID_05AC&PID_1281#{B8085869-FEB9-404B-8CB1-1E5C14FA8C54}\0000#7caf03a3, inst: 0x63eb870
    2014-02-24 14:15:10.223 [1192:17a4]: AppleDevice::SetNotification: CONNECT, interface type: 1, id: \\?\USB#VID_05AC&PID_1281#{B8085869-FEB9-404B-8CB1-1E5C14FA8C54}\0000#7caf03a3, inst: 0x63eb870
    2014-02-24 14:15:10.223 [1192:17a4]: WinAMRestore::ProcessDevNodesChanges: device: 0x063eb870, notify: 1, connected: 1
    2014-02-24 14:15:10.223 [1192:17a4]: WinAMRestore::ProcessDevNodesChanges: device: 0x10bf1a50, notify: 2, connected: 0
    2014-02-24 14:15:10.223 [1192:17a4]: AppleDevice::NotifyConnect: Device type: 2, Interfaces total: 2, arrived: 2
    2014-02-24 14:15:10.223 [1192:17a4]: AppleDevice::NotifyConnect: IBOOT, IBOOT \\?\USB#VID_05AC&PID_1281#{ED82A167-D61A-4AF6-9AB6-11E52236C576}\IB0000#7caf03a 3, inst: 0x63eb870
    2014-02-24 14:15:10.223 [1192:17a4]:                             IBOOT, DFU \\?\USB#VID_05AC&PID_1281#{B8085869-FEB9-404B-8CB1-1E5C14FA8C54}\0000#7caf03a3, inst: 0x63eb870
    2014-02-24 14:15:10.230 [1192:1230]: Recovery mode device connected
    2014-02-24 14:15:10.231 [1192:1230]: Found new device.
    2014-02-24 14:15:10.241 [1192:14d4]: iTunes: SCEP 2

    Update Server
    Try:
    - Powering off and then back on your router.
    - iTunes for Windows: iTunes cannot contact the iPhone, iPad, or iPod software update server
    - Change the DNS to either Google's or Open DNS servers
    Public DNS — Google Developers
    OpenDNS IP Addresses
    - For one user uninstalling/reinstalling iTunes resolved the problem
    - Try on another computer/network
    - Wait if it is an Apple problem

Maybe you are looking for

  • Keyboard removal to install memory

    I have a Satellite M105-S3021, to which I want to add RAM. I purchases two 2GB modules and would like to install them myself.  I've searched the web site, trying to find instructions on how to reach the other memory slot (which I believe is under the

  • Is there a way to remove elements from an array 1 by 1?

    I have an two arrays, and they vary in size depending on a parameter set by the user (both arrays are the same size though, they both can vary in length). What I need to do, is remove elements one by one from the array, and use these as indices for a

  • 14 weeks to get a phone line installed - £10 compe...

    I moved house on 28/07 and after a huge amount of problems with Orange and after managing to cancel my account with them I ordered BT Broadband and Evening & Weekend Calls on 07/08/12. I get 3 emails confirming my order, thanking me for choosing pape

  • ResultSet.next() and resultset.islast() problem

    I have query which returns 10 records. I run the using preparedStatement. When i use the while(resultSet.next()), the loop runs untill 10 records and after that when it come to the while check it hangs. Sample code pstmt= conn.prepareStatement(sql,Re

  • Windows client - Linux oracle server SSO through Win2003 DC

    Hi, I'm trying to do SSO with the captioned setting, the outline can be simplified as below: windows cleint --> Win2003 DC --> Linux Oracle server Of course, the Linux server would issue kerberos ticket to the Windows client after which successfully