the exec process reading InputStream

I'm reading a compressed 7zip in Java. There is no InputStreamer for 7zip compression, so I read using Process.exec:

Process proc = shell.exec ("7z x very_big_file.7z - so");

Thread.currentThread () .sleep (1000);
BufferedReader br = new BufferedReader (new InputStreamReader (proc.getInputStream ()));
{while (BR. Ready())}
System.out.println (BR. ReadLine());
}

Question: if I drop the sleep command that precedes, the buffer is not ready, and I don't get all the channels of the executed process. How can I force the reader to check the weather EOF is reached and weather not the buffer is ready?

Get rid of the standby and the ready() test. Just read up what readLine() returns null.

Tags: Oracle

Similar Questions

  • Failure of the update of the form of the IOM process | Error: Could not execute database read

    Hello

    I encounter the following error when I try to create a new version for a form of OIM Design Console process:

    Description: Could not run the database to read. The database has encountered a problem with the specified SQL query. Solution: Check the database query. Contact your system administrator.

    It does not matter that I use xelsysadm or any system administrator account.

    Details of the environment:

    OIM 11g Release 2 (11.1.2.1.0)



    Errors in the logs: (despite following errors I can update IOM DB Tables with SQL through SQL Developer queries)


    "Class/method: DBPoolManager/getConnection/Exception a few problems: Exception occurred while getting connection: oracle.ucp.UniversalConnectionPoolException: cannot get data source connection: java.sql.SQLRecoverableException: IO error: the network adapter could not establish the connection"


    Class/method: DBPoolManager/getConnection/Exception encounter a few problems: error connecting to database recovery. Please check the following


    Class/method: tcDataBase/writeStatement encounter a few problems: ORA-01407: cannot update ("PRD01_OIM". » « « « SDK ». » SDK_SCHEMA') with the NULL value


    Class/method: tcTableDataObj/updateImplementation a few problems: {1}


    Class/method: tcDataBase/rollbackTransaction encounter a few problems: Rollback performed


    Class/method: tcDataObj/save error: wrong to save SQL operation


    Please let me know if you have any suggestions.


    Thank you.


    I found the solution!

    I was going through this blog: OIM 11 g: error after startup server IOM: retrieve the connection at the base

    In the last comment by Amit, he mentioned that the settings IOM - config.xml must be changed.

    So I discovered that IOM-config file. XML from my environment, under directDBConfigParams, url (jdbc thin driver) was wrong because of cloning.

    In addition, OIMFrontEndURL, RMI and SOAP URL were wrong.

    I corrected the and guess what... each utility works...

    However, you don't have to import/export the config of MDS file... you can change these details in the following MBEANs

    1 DirectDB

    2. the discovery

    3 SOAConfig

    > Reboot the server of the IOM.

    I knew this jdbc driver was not, but did not know where to set it up.

    I have listed the error in my last comment, so that if anyone has this problem, the text of this presentation would help.

    Thank you.

  • Adobe Acrobat Reader DC (15.010.20056) update automatically.  I'd rather have the possibility to download and install.  How to disconnect the automatic process?

    Adobe Acrobat Reader DC (15.010.20056) update automatically.  I'd rather have the possibility to download and install or not.  How to disconnect the automatic process?

    Hi steveg83673202,

    You cannot change the preferences of update for Adobe Acrobat Reader DC. KB doc. for reference Adobe Reader and Acrobat updater settings | DC, XI

    Kind regards

    Nicos

  • Try to install 9 Captivate. Mac has been extremely slow, so I had to stop and restart early in the installation process. When I try to open the installation program again, it reads "Setup Failed To Initialize. Please download Adobe Support Advisor to dete

    Try to install 9 Captivate. Mac has been extremely slow, so I had to stop and restart early in the installation process. When I try to open the installation program again, it reads "Setup Failed To Initialize. Please download Adobe Support Advisor to detect the problem. "But there is no longer the support Counsellor. How to solve this?

    Go to Adobe Captivate

  • Adobe Acrobat Reader DC stops the installation process on "Adobe Download Manager' - white screen

    Windows Vista. Intel Core 2 duo. Chrome. Tried to go through the installation process:

    Downloaded file > click Download > 'Do you want to run this file' window > Clicked 'Yes' > (same window come again) > Clicked 'Yes' > "a program needs your permission to continue" window > Clicked 'Continue' > 'Adobe Download Manager' window is displayed and is constantly empty. Here is a snipped of my screen picture:

    Adobe Forum.JPG

    I've done this process over and over again. Tried to look to the top of Adobe Reader specifically for Windows Vista, but it came to an Adobe website which looked like illegitimate. I don't know, it does not only look like the other Adobe Reader download page. When I go out the the empty "Adobe Download Manager" window, Internet Explorer (which I don't use) gets up and shows this:

    Adobe Forum 2.JPG

    Thank you.

    Use Setup http://get.adobe.com/reader/enterprise/ offline

    P.S. The CD player and player XI are not certified for Windows Vista. the latest version for Vista is drive X 10.1.14.

  • What process reads the spfile/init.ora file


    Hello

    When we start the Oracle DB using the 'START' command, what background process reads the spfile/init.ora file?

    Also at startup, process that reads the control file?

    In my humble OPINION, there isn't any background process, but the server process.

    Aman...

  • Error reading Inputstream

    Error reading Inputstream
            
    -Online Exception net.rim.device.api.io.ConnectionClosedException error: closed stream
    Here is my code modual

      try
            {
                String url="http://maps.googleapis.com/maps/api/geocode/xml?latlng=21.175128,72.867236&sensor=false";
                String rawData =connectionData.getData();
    
                httpConn = (HttpConnection) Connector.open(url,Connector.READ_WRITE);
                int status = httpConn.getResponseCode();
                if(status==HttpConnection.HTTP_OK)
                {
                    InputStream is=httpConn.openInputStream();
                    if(is != null)
                    {
                        byte[] data = IOUtilities.streamToBytes(is);
                        result = new String(data, "UTF-8");
                        System.out.println("Result from Server:- "+result);
                        is.close();
                        httpConn.close();
                        onDataEnd();
                    }
                }
                //Close the connection.
                if(httpConn!=null)
                    httpConn.close();
            }
            catch (Exception e)
            {
                System.out.println("Exception "+e.toString());
            }
    

    as a higher code, I get this error "byte data [] = IOUtilities.streamToBytes (is);
    also I try other way to read feeds, but same error on appeal of webservices while for the other same service work very well
            
    and an unexpected thing is that when I put breackpoint on ' byte data [] = IOUtilities.streamToBytes (is);
    his response to migrate perfactly and read

    and when I put the next breakpoint, this isn't the line reach ther and gives me an error
            
    Help, please...!

    I understand the reasons to make checking the connection you make, but the code that you will lead

    (a) significant problems when you repeat the test, that you do not close the connections

    (b) delay processing while you connect to RIM, so every connection you make will take twice as long.

    Before considering further at your code I encourage you to withdraw this method completely and look rather using the ConnectionFactory to get your connection.  He's going to do pretty much the same job as your code, without fees.

  • I'm on a macbook pro, and without knowing it, I turned to the vault of fire during a software update. The encryption process has begun. If I can't decipher, which will make my slow mac? or encryption is slow mac anyway?

    Hello

    I'm on macbook pro 13-inch (mid-2012), and without knowing it, I turned on the Arch of fire during a software update (El Capitan 10.11.5). The encryption process has started and if I don't want to read more, which will make my slow mac? or encryption is slow mac anyway?

    or at the end of the encryption process, my mac is slow?

    waiting for a quick response.

    Thank you

    Prosunkanti Sengupta

    I have a MacBook Air with active FileVault 2012. There is no significant difference in performance. Note, however, that there will be a performance impact until the original encryption is complete and that it doesn't have a way to stop it.

  • Dangerous change in the approval process for iBooks

    you remember long time for approval of new iBooks users author books that publish their books on the iBook Store since the beginning. Originally, it was WEEKS, sometimes even months to get through the approval process. Fortunately, which improved considerably over time and now it's down to a period of 24 hours. remove your book from the store.

    I have published more than 17 books so far since the beginning of the iBook Store, and certainly, I look forward to this improvement. However, I just found out the hard way that this improvement comes with a terrible price.

    The new procedure:

    Is the approval process faster (not only) not due to more staff to go through the comments. Instead, it is due to an approval procedure has changed as it has been explained to me by the customer support. Now, the examiner spends less time going through the books to get quickly to the store. I don't know the details, but I guess they check the side more art if works and not actually reading it Word by Word.

    With this first less carefully past obviously comes a new stage. The Department for approval now takes books later (perhaps if they have more time or something) and check for any errors and delivers a ticket while your book is already on the iBook Store. In fact, at that time, that is not on the iBook Store more and this is the great potential disaster you should be aware of. If you get a ticket issued, your book get ripped the store until you propose changes and he crossed successfully a new review process, which could take days. It's wrong, really wrong, and he just happened to two of my books.

    Out of the blue, I got a ticket of the iBooks team for my book 'Logic Pro X - how it works', which lies on the line store since 2013 has been updated (and approved) last September. On one page, I had misspelled the name of "iBook" Store instead of "iBooks Store" and on another page, I got a link to the page of my book by asking readers to write a comment Amazon if they like my book. Of course, it was also a no-no (a multi-billionaire company referring to a competitor of billions of dollars with a link).

    I made the changes immediately and has the new version uploaded in an hour. But the review process took over 2 days, after I contacted support and recovery from the case. And here's the reason:

    At the moment they have issued the ticket, my book was not available on the iBook Store more, nothing, not even a mention that it is "temporarily unavailable" like Amazon. The visitors couldn't find the book, all the links from my Web site, twitter, facebook and other sites related, everything was made immediately a dead link. Not only did I lose money, I had to deal with customer e-mails explaining why they could not find the announced book. Last week, it happened with another book when I was in town for a week and had no files with me. And even once, it took 3 days to review the correction that I added 's' to the iBook Store.

    It is mind-boggling that the Team did iBook ' t think that through

    Why not keep the booking online during the update

    Why not give priority to the presentation (check two typos took longer than the initial review of the book).

    I asked the support team to issue feedback on this subject, so they can correct this procedure. In the meantime, you better watch for potential new tickets, or someone had the same problem already?

    HI Edgar,

    It's really good to know. Thank you

    Difficult to have a work around for this.

    (Got a ticket) Right now, I'm waiting for approval,

    After correcting a few minor problems.

    I hope this will get fixed soon.

    I like your idea to keep the original "approved."

    live version, until the update is approved.

    Should be a simple and logical

    changes to the procedure.

    Kind regards... Thomas

  • When dynamically created variables are emptied in the sequential process template?

    I have a sequence TestStand 2014 in which I dynamically create and fill many FileGlobal variables in the installation section of my main sequence.  I have it using the TestStand API to read the data in an Excel file (the data consists mainly of thresholds, limits, etc.).  The methodology itself works flawlessy.

    However, there are differences in behavior when using entry points both execution of the sequential process model.  When you use the entry point of execution 'Single Pass', he has no problem in test a DUT after another.  However, when you use the entry point for execution "Test DUT", I encounter the following error after completing of DUT1 and DUT2 testing:

    An error occurred the call 'InsertSubProperty' in 'PropertyObject' of 'NI TestStand 2014 API.

    The name of the element "VariableName" is not valid because it is already in use.

    I interpret this error message means that the variable I am trying to dynamically create the DUT2 track is already present race of DUT1.  I have a few questions about this:

    1. at what point in the sequential process template are dynamically created variables flushed, such as run a further by using 'Single Pass' starts with a clean slate?

    2. is there a reminder that I can substitute such as variables to rinse after each HAD run, allowing me to dynamically create variables on each HAD, during execution using "Test UUT?

    3. better yet, is there a counter of TestStand I can query to determine if I already ran DUT1 when using "Test DUT", such as DUT2 uses the variables that were created dynamically on trail of DUT1?

    Or you can simply use the PropertyExists function as a precondition.

    PropertyExists ("Locals.Foo")

  • Best practices for the .ini file, reading

    Hello LabViewers

    I have a pretty big application that uses a lot of communication material of various devices. I created an executable file, because the software runs on multiple sites. Some settings are currently hardcoded, others I put in a file .ini, such as the focus of the camera. The thought process was that this kind of parameters may vary from one place to another and can be defined by a user in the .ini file.

    I would now like to extend the application of the possibility of using two different versions of the device hardware key (an atomic Force Microscope). I think it makes sense to do so using two versions of the .ini file. I intend to create two different .ini files and a trained user there could still adjust settings, such as the focus of the camera, if necessary. The other settings, it can not touch. I also EMI to force the user to select an .ini to start the executable file using a dialog box file, unlike now where the ini (only) file is automatically read in. If no .ini file is specified, then the application would stop. This use of the .ini file has a meaning?

    My real question now solves on how to manage playback in the sector of .ini file. My estimate is that between 20-30 settings will be stored in the .ini file, I see two possibilities, but I don't know what the best choice or if im missing a third

    (1) (current solution) I created a vi in reading where I write all the .ini values to the global variables of the project. All other read only VI the value of global variables (no other writing) ommit competitive situations

    (2) I have pass the path to the .ini file in the subVIs and read the values in the .ini file if necessary. I can open them read-only.

    What is the best practice? What is more scalable? Advantages/disadvantages?

    Thank you very much

    1. I recommend just using a configuration file.  You have just a key to say what type of device is actually used.  This will make things easier on the user, because they will not have to keep selecting the right file.

    2. I use the globals.  There is no need to constantly open, get values and close a file when it is the same everywhere.  And since it's just a moment read at first, globals are perfect for this.

  • What is the nature of the defragmentation process?

    I noticed that the defragmentation process notably improves the performance of the computer. I would like to know what is actually happening during this process and how often this should be done?

    Here is some information and reading extra to keep entertained you:

    The best place to read about the fragmentation of NTFS is the performance Guide Windows 2000 by Mark Friedman (433 page to be exact).  When you are finished, you are unlikely to have questions on whether a NTFS file system can become fragmented or not, no question on what to do about and no question about how to do so.

    Microsoft indicates in their discussions of TechNet that NTFS is designed to resist fragmentation, but it is not immune to it, and that there is an advantage in many defragment a NTFS volume.

    They say that although NTFS uses more advanced algorithms in the assignment of groups of files, it is not immune to fragmentation.  It is true however, that he has developed to a lesser degree than other systems of files due to its more sophisticated design, the fragmentation

    It is also possible and likely that the MFT (Master File Table) will become fragmented over time, but to a lesser extent. In addition to defragmenting files, the MFT must be défragmentée as well.

    Files and the MFT may become fragmented.  Any fragmentation will slow extraction and search for files and folders.  As a result, less fragmented you queue system, better it happen.

    Some alleged 'experts' will tell you that the fragmentation is not possible with NTFS, but that's not true.  NTFS is designed to resist fragmentation, but it is not immune to it.

    If the fragmentation was not possible to NTFS it seems unlikely that Microsoft (and others) spend so much effort to discuss how to detect, how to cope and how to prevent it.

    More than ever, you'll want to know:
    http://TechNet.Microsoft.com/en-us/library/cc767961.aspx

    http://books.google.com/books?id=MzU3ms3les4C&pg=PA433&lpg=PA433&dq=ntfs+immune+fragmentation&source=bl&ots=OcD-H31ORc&sig=nSEYf07iqNj21eDiSHkmT_H-NzI&hl=en&ei=3jurTKCUIIK0lQeK5rCnCA&sa=X&oi=book_result&ct=result&resnum=4&ved=0CCMQ6AEwAw#v=onepage&q=ntfs%20immune%20fragmentation&f=false

    Defragment the MFT, Master File Table:
    http://support.Microsoft.com/default.aspx?scid=kb;en-us;174619&SD=Tech

    Maintain Windows 2000 Peak Performance through defragmentation
    http://TechNet.Microsoft.com/en-us/library/bb742585.aspx

  • I have windows 7 key to business, how can upgrade to windows 10. I see that it is not included in the upgrade process

    I have windows 7 key to business, how can upgrade to windows 10. I see that it is not included in the upgrade process.

    In some forum I read, I can upgrade with a small charge for windows 7 ultimate, and after that I can move on to W10. Someone can tell me where and how do I upgrade to W7Ultimate?

    Thank you

    Windows 7 Enterprise is a volume license customer, it is not eligible for the free upgrade offer. If you have Windows 7 Enterprise through your employer, contact the network administrator or your Help Desk Support staff for more information on the upgrade to Windows 10 company.

    If you need Windows 10, you can purchase one license other wise, then perform a custom installation. You will need to reinstall the drivers and applications and also to save your personal files.

  • Cisco Aironet 1262N stuck during the startup process

    I'm banging my head against the wall, trying to figure out why my AIR-AP1262N-A-K9 will start all the way. He'll get all the way to initiate interfaces and stop. I can never get to control the CLI. This is my first time with a cisco ap but everything I read it very easy sewing.

    This unit from what I understand will work on its own with no controller. Therefore, it is called a "stand-alone" model Yet he seems to be looking for something to complete during the boot. Below the out put for starting. The last line is where it stops.

    If anyone can help me I would be very happy.

    WRDTR, CLKTR r: 0x8200083f 0x40000000
    r RQDC, RFDC: 0 x 80000033 0 x 00000212

    using the values from the eeprom

    WRDTR, CLKTR: 0X8200083F 0X40000000
    RQDC, RFDC: 0 X 80000033 0 X 00000212

    MCNG ddr static values of the eeprom series
    init done DDR

    IOS Bootloader - start System.
    Flash CHIP: Numonyx P33
    Check for more deleted blocks
    ................................................................................
    ................................................................................
    ................................................................................
    ......
    XMODEM file system is available.

    DDR used values of the system serial eeprom.
    WRDTR, CLKTR: 0X8200083F, 0X40000000
    RQDC, RFDC: 0 X 80000033, 0 X 00000212

    PCIE0: the connection is established.
    PCIE0: VC0 is active
    PCIE1: the connection is established.
    PCIE1: VC0 is active
    PCIE 64-bit devices
    PCIEx: initialization done
    flashfs [0]: 147 files, 7 folders
    flashfs [0]: 0 orphaned files, orphaned directories 0
    flashfs [0]: Total number of bytes: 31739904
    flashfs [0]: bytes used: 6435328
    flashfs [0]: available bytes: 25304576
    flashfs [0]: flashfs fsck took 9 seconds.
    The system eeprom read cookie series... Fact
    MAC Ethernet address of base: 7 c: ad: 74:93:36:ba
    Waiting for auto-negotiation complete PHY... TIME-OUT!
    Ethernet link is down.
    Error: Speed RGMII

    The system has encountered an error during initialization
    the Ethernet port.
    The system is ignoring the error and continue to start.
    If you stop the system startup process, what follows
    orders will be re - initialize Ethernet, TFTP and finishing
    loading the operating system software:

    ether_init
    tftp_init
    boot

    for 22 seconds
    process_config_recovery: set the IP address and the default config 10.0.0.1
    process_config_recovery: image recovery

    PA:
    WRDTR, CLKTR r: 0x8200083f 0x40000000
    r RQDC, RFDC: 0 x 80000033 0 x 00000212

    using the values from the eeprom

    WRDTR, CLKTR: 0X8200083F 0X40000000
    RQDC, RFDC: 0 X 80000033 0 X 00000212

    MCNG ddr static values of the eeprom series
    init done DDR

    Normal running Memtest...
    Past.
    IOS Bootloader - start System.
    Flash CHIP: Numonyx P33
    Check for more deleted blocks
    ................................................................................
    ................................................................................
    ................................................................................
    ......
    XMODEM file system is available.

    DDR used values of the system serial eeprom.
    WRDTR, CLKTR: 0X8200083F, 0X40000000
    RQDC, RFDC: 0 X 80000033, 0 X 00000212

    PCIE0: the connection is established.
    PCIE0: VC0 is active
    PCIE1: the connection is established.
    PCIE1: VC0 is active
    PCIE 64-bit devices
    PCIEx: initialization done
    flashfs [0]: 147 files, 7 folders
    flashfs [0]: 0 orphaned files, orphaned directories 0
    flashfs [0]: Total number of bytes: 31739904
    flashfs [0]: bytes used: 6435328
    flashfs [0]: available bytes: 25304576
    flashfs [0]: flashfs fsck took 9 seconds.
    The system eeprom read cookie series... Fact
    MAC Ethernet address of base: 7 c: ad: 74:93:36:ba
    Waiting for auto-negotiation complete PHY... TIME-OUT!
    Ethernet link is down.
    Error: Speed RGMII

    The system has encountered an error during initialization
    the Ethernet port.
    The system is ignoring the error and continue to start.
    If you stop the system startup process, what follows
    orders will be re - initialize Ethernet, TFTP and finishing
    loading the operating system software:

    ether_init
    tftp_init
    boot

    "Loading Flash:/ap3g1-k9w7-mx.124-25d.JA1/ap3g1-k9w7-mx.124-25d.JA1"...### ".
    ################################################################################
    ################################################################################
    ################################################################################
    ################################################################################
    ################################################################################
    ###############################################################################

    File "flash:/ap3g1-k9w7-mx.124-25d.JA1/ap3g1-k9w7-mx.124-25d.JA1" uncompressed one
    ND installed, point of entry: 0x4000
    execution of...
    ENET stopped

    Legend restricted rights

    Use, duplication, or disclosure by the Government is
    subject to such restrictions as set out in paragraph
    (c) Commercial - limited computer software
    The rights to FAR clause 52.227 - 19 and subparagraph s
    (c) (1) (ii) rights to technical and computer data
    Clause of DFARS 252.227 - 7013 section software.

    Cisco Systems, Inc.
    170 West Tasman Drive
    San Jose, California 95134-1706

    Software Cisco IOS, C1260 Software (AP3G1-K9W7-M), Version 12.4 (25 d) JA1, COMMUNICATED
    SOFTWARE (fc1)
    Technical support: http://www.cisco.com/techsupport
    Copyright (c) 1986-2011 by Cisco Systems, Inc.
    Updated Friday, August 11, 11 02:07 by prod_rel_team

    Proceed with the initialization of the system

    Proceeding to unmask interrupts
    Initialization of flashfs...
    Flash CHIP: Numonyx P33
    Check for more deleted blocks
    ................................................................................
    ................................................................................
    ................................................................................
    ......

    flashfs [1]: 147 files, 7 folders
    flashfs [1]: 0 orphaned files, orphaned directories 0
    flashfs [1]: Total number of bytes: 31481856
    flashfs [1]: bytes used: 6435328
    flashfs [1]: available bytes: 25046528
    flashfs [1]: flashfs fsck took 7 seconds.
    flashfs [1]: initialization complete.
    flashfs [2]: 0 files, directories 1
    flashfs [2]: 0 orphaned files, orphaned directories 0
    flashfs [2]: Total number of bytes: 11999232
    flashfs [2]: used bytes: 1024
    flashfs [2]: available bytes: 11998208
    flashfs [2]: fsck flashfs took 1 seconds.
    flashfs [2]: initialization complete... done Initializing flashfs.

    Radio0 presents 8364B 8000 B8020000 0 B8030000 10
    Present Radio1 8364B 8000 B0020000 0 B0030000 C
    Waiting for auto-negotiation complete PHY... TIME-OUT!
    Ethernet link is down.

    This product contains cryptographic features and is under the United States
    States and local laws governing the import, export, transfer and
    use. Delivery of Cisco cryptographic products does not imply
    third party approval to import, export, distribute or use encryption.
    Importers, exporters, distributors and users are responsible for
    compliance with U.S. laws and local countries. By using this product you
    agree to comply with the regulations and laws in force. If you are unable
    to satisfy the United States and local laws, return the product.

    A summary of U.S. laws governing Cisco cryptographic products to:
    http://www.Cisco.com/WWL/export/crypto/tool/stqrg.html

    If you need assistance please contact us by mail at
    [email protected] / * /.

    processor of Cisco AIR-AP1262N-A-K9 (PowerPC460exr) (revision B0) with 81910 K/4
    9152K bytes of memory.
    Card processor ID FTX1716E2DN
    PowerPC460exr CPU 666 Mhz, the 0x18A8 revision number
    Last reset of tension
    1 gigabit Ethernet interface
    2 802.11 radios

    32K bytes memory simulated by flash not volatile configuration.
    Basic Ethernet MAC address: 7 c: AD:74:93:36:BA
    Part number: 73-12175-06
    Kit numbered PCA: 800-32268-06
    Revision number of PCA: B0
    Serial number of PCB: FOC17106662
    Top Assembly part number: 800-33866-02
    Top of page the Assembly serial number: FTX1716E2DN
    Top of page revision number: A0
    Product/model number: AIR-AP1262N-A-K9

    Press RETURN to get started!

    * 00:00:09.481 Mar 1: % SOAP_FIPS-2-SELF_TEST_IOS_SUCCESS: crypto IOS FIPS t auto
    is spent
    * 00:00:09.490 Mar 1: * CRASH_LOG = YES

    * 00:00:09.490 Mar 1: PCIE 64-bit devices
    * 1 Mar 00:00:09.789: soap_extern_intr_dispatch: no handler for UIC2 intrno 12 l
    n level 4
    * 1 Mar 00:00:10.088: soap_extern_intr_dispatch: no handler for UIC2 intrno 12 l
    n level 4
    * 00:00:12.966 Mar 1: % SOAP_FIPS-2-SELF_TEST_RAD_SUCCESS: crypto RADIO FIPS auto
    test successful Dot11Radio interface 0
    * 00:00:15.649 Mar 1: % SOAP_FIPS-2-SELF_TEST_RAD_SUCCESS: crypto RADIO FIPS auto
    test successful 1Base Dot11Radio interface Ethernet MAC address: 7 c: AD:74:93:36:
    BA

    * 00:00:56.377 Mar 1: % LINK-3-UPDOWN: Interface GigabitEthernet0, changed state
    up to
    up to
    ernet0, changed state down
    * 00:11:00.003 Mar 1: % LINK-5-CHANGED: Interface Dot11Radio1, changed state of a
    dministratively down
    * 00:11:00.003 Mar 1: % LINK-5-CHANGED: Interface Dot11Radio0, changed state of a
    dministratively down
    * 00:11:00.003 Mar 1: % CDP_PD-4-POWER_OK: full power - AC_ADAPTOR inline power s
    ource
    * 00:11:00.012 Mar 1: % SYS-5-RESTART: System restarted.
    Software Cisco IOS, C1260 Software (AP3G1-K9W7-M), Version 12.4 (25 d) JA1, COMMUNICATED
    SOFTWARE (fc1)
    Technical support: http://www.cisco.com/techsupport
    Copyright (c) 1986-2011 by Cisco Systems, Inc.
    Updated Friday, August 11, 11 02:07 by prod_rel_team
    * 00:11:00.012 Mar 1: % SNMP-5-start COLD: SNMP agent on host ap undergoes a c
    old beginning
    * 00:11:00.994 Mar 1: % LINEPROTO-5-UPDOWN: Line protocol on Interface BVI1, chan
    State of GED until
    * 00:11:01.003 Mar 1: % LINEPROTO-5-UPDOWN: Line protocol on Interface Dot11Radio
    1, changed down state
    * 00:11:01.003 Mar 1: % LINEPROTO-5-UPDOWN: Line protocol on Interface Dot11Radio
    0, changed down state
    * 00:11:11.956 Mar 1: % LINK-3-UPDOWN: Interface BVI1, changed State to down
    * 00:11:12.957 Mar 1: % LINEPROTO-5-UPDOWN: Line protocol on Interface BVI1, chan
    State of GOL downstairs

    What are your settings of the nec console?

    You must be 9600, none, 8, 1 and flow controll set off to be able to interact with the CLI

    HTH,
    Steve

    ------------------------------------------------------------------------------------------------
    Please don't forget to rate helpful messages and mark the questions answers

  • An email received, how can I configure my email to receive a notification when the recipient has read the email?

    How can I configure my email to receive a notification when the recipient has read the email?

    Based on your e-mail program, a read receipt can be ignored by the recipient and some servers will block any reception

    Basically there is no process by which a receipt can be confirmed or that the recipient has read the mail - except by asking them directly

Maybe you are looking for

  • Files of WD My Cloud Airport time capsule

    I use 2T WD My Cloud as a hard disk to backup to my MacBook Pro 13 "2.5 GHz Core i5. How can I do all of my WD My Cloud backup files, transfer to the airport time Capsule. So did anyone get an answer to this question?

  • Slow down the FireWire 800 Port

    I'm rocking an iMac 2011 2.5 with 16 GB of RAM, running 10.11. Recently, I came to realize that my firewire drives are not as fast running they have on other Macs. I have two drives of Garland, a LaCie 2Big Triple and a G-Drive, both using Firewire 8

  • How to turn off the NumLock key?

    Yes, I googled this! I spent two hours Googling that! I followed the instructions on editing my registry and changing the settings of the BIOS. I came to the conclusion that these solutions don't change the start-up for Num Lock. But I want the Num L

  • Error is 0 x 80131604 missing when message burnig a bluray with Sony DVD architect 5.2

    Original title: error message is missing 80131604 0 x This is the message I get when burnig a bluray with Sony DVD architect 5.2, the process of creating my bluray stop when this message appears. all solutions? Thank you.

  • Driver HP Deskjet 3745 not downloadable via Windows Update in Windows 7.

    Dear Sir / Madam,. I use a HP Deskjet 3745 now for several years at home. Recently I got a new laptop from my employer with Windows 7. I would like to install the driver for my printeron this laptop, so I can also print at home. Unfortunately, the up