Diagnostic test returns with this error: 1000-0146.

Original title: 1000-0146

ran diagnostic test and error code from 1000-0146 everything works ok

Why do you think that will help a clean boot?

It is a pre-boot diagnostic assessment Dell computer error code you can read here:

http://support.Dell.com/support/topics/global.aspx/support/KCS/document?c=us&docid=266787&doclang=en&l=en&s=Gen&cs=

I think it means that the hard drive may be failing.  How will a start clean and check correct this?

It seems that these companies will show anything to get a link to an article here somehow - even if it makes no sense.

If forums MS Answers would invite some information about the system, when a new question is asked, maybe... just maybe we would not have these answers.

Tags: Windows

Similar Questions

  • NAS NFS Mount/Unmount Test failed with this error - "failed to Test script 300 s to/opt/vmware/VTAF/Certification/Workbench/VTAFShim line 279, line < STDIN > 309 cleaning" it's a matter of workbench?

    Excerpts from run.log

    *****************

    2014-09-10 13:21:51 UTC...

    2014-09-10 13:21:51 UTC [VMSTAF] [0] INFO: VM: [PID 13775] command (perl /iozone - duration.pl d 3600 f - 128 m - r 1024 k t /tmp/iozone.dat 1 > /iozone.2.log 2 > & 1) on 192.168.1.25 is completed.

    2014 09/11 01:36:16 UTC Test script failed to 300 s to/opt/vmware/VTAF/Certification/Workbench/VTAFShim 279, < STDIN > line 309 cleaning.

    2014 09/11 01:36:16 UTC interrupted Test

    One thing noticed here is that there is no logs generated during about 12 hours between the completion of test on one of the GOS and Test Script failed.

    All of the recommendations will help...

    Do not wait more than 2 hours if you think that the test case is stuck. Clean and restart the test.

  • Need help with this error

    so I did some coding in flash develop for a flash app im building and during the test, I get this error message when running and I don't know what it is and how to fix it heres I get the error message:

    ArgumentError: Error #2173: cannot read the object in the stream.  The flex.messaging.io.ArrayCollection of the class does not implement flash.utils.IExternalizable but has an alias to an externalizable class.

    And here's the code I did

    package  
    {
              import flash.display.MovieClip;
              import flash.display.Sprite;
              import flash.events.MouseEvent;
              import flash.net.NetConnection;
              import flash.net.registerClassAlias;
              import flash.net.Responder;
              import flash.text.TextField;
              //import com.demonsters.debugger.MonsterDebugger;
              //import mx.Collections.ArrayCollection;
              //registerClassAlias("flex.messaging.io.ArrayCollection", ArrayCollection);
      
              /**
               * ...
               * @author DAR
               */
              public class Main extends MovieClip
              {
                        private var conn:NetConnection;
      
                        public var name1:TextField
                        public var name2:TextField;
                        public var name3:TextField; 
                        public var name4:TextField;
      
                        public var rating1:TextField;
                        public var rating2:TextField;
                        public var rating3:TextField;
                        public var rating4:TextField;
      
                        public var comments1:TextField;
                        public var comments2:TextField;
                        public var comments3:TextField;
                        public var comments4:TextField;
      
                        public var inputName:TextField;
                        public var inputComment:TextField;
                        public var inputRating:TextField;
                        public var submitReviewBtn:Sprite;
      
                        public function Main() 
                        {
                                  //MonsterDebugger.initialize(this);
                                  trace ("document class running");
                                  setupConnection();
                                  setupInputArea();
                                  getReviews();
      
                        }
      
                        private function setupInputArea()
                        {
                                  submitReviewBtn.addEventListener(MouseEvent.CLICK, addNewReview);
                        }
      
                        private function addNewReview(e:MouseEvent):void 
                        {
                                  //Add review to database
                                  var resAddReview:Responder = new Responder(onAddReviewSuccess, onAddReviewFail);
                                  conn.call("yomo_films.addReview", resAddReview,  inputName, inputRating, inputComment);
                                  gotoAndPlay(5);
                        }
      
                        private function addUserReview():void
                        {
                                  var resAddReview:Responder = new Responder(onAddReviewSuccess, onAddReviewFail);
                                  conn.call("yomo_films.addReview", resAddReview, "Amanda", 5 , "Really good movie");
                        }
      
                        private function onAddReviewFail(o:Object):void 
                        {
      
                        }
      
                        private function onAddReviewSuccess(o:Object):void 
                        {
                                  //Refresh all Reviews
                                  getReviews();
                        }
      
                        private function getReviews():void
                        {
                                  //Create a responder object
                                  var res:Responder = new Responder(onResult, onFail);
                                  //Run a call to our service
                                  conn.call("yomo_films.getReviews", res);
                        }
      
                        private function onResult(o:Object):void
                        {
                                  trace("Success");
                                  //MonsterDebugger.trace("onResult", o);
                                  //Populate our reviews table
                                  for (var i:int = 0; i < 5; i++)
                                  {
                                            //get our current name / rating / comments object
                                            var item:Object = [i];
                                            var nameTxt:TextField = getChildByName("name" + (i + 1)) as TextField;
                                            var ratingTxt:TextField = getChildByName("ratings" + (i + 1)) as TextField;
                                            var commentTxt:TextField = getChildByName("comments" + (i + 1)) as TextField;
                                            //test if we have a name
                                            if (item.name)
                                            {
                                                      nameTxt.text = item.name;
                                                      ratingTxt.text = item.ratings;
                                                      commentTxt.text = item.comments;
                                            }
                                  }
                        }
      
                        private function onFail(o:Object):void
                        {
                                  trace("Failed");
                                  //MonsterDebugger.trace("onFail", o);
                        }
      
                        private function setupConnection():void
                        {
                                  trace("Setting up gateway connection");
                                  //Create a new net connection
                                  conn = new NetConnection();
                                  //Connect to the net connection
                                  conn.connect("http://localhost/amfphp/gateway.php");
                        }
      
              }
    
    
    }
    

    the error, I guessed it was something to do with flex, but I do not use flex so I don't know what to do. I was looking for them to know how to fix this error for more than a week now and still no luck. I need a fast and quick help and intelligence on this help please!

    Finally it sorted! It had something to do with the collection in the mx.collections ArrayCollection will not be related to ACE where the error. Heres so what I've done:

    Import mx.collections.ArrayCollection;

    import flash.net.registerClassAlias;

    registerClassAlias ("flex.messaging.io.ArrayCollection", collection ArrayCollection);

    I imported the ArrayCollection class collection and the registerClassAlias in the AS class I used and then registered the alias, then voila! the error is gone!

  • I keep having a problem with this error message. Firefox is already running but is not responding. To open a new window, you must first close the existing Firefox process, or restart your system. I've tried everything.

    I keep having a problem with this error message. Firefox is already running but is not responding. To open a new window, you must first close the existing Firefox process, or restart your system. I tried everything the internet suggested but it continues to wreak havoc... Help, please... John.I cannot give other details that it has become very annoying

    See "hang out":

  • why I cant player to access itv now when I could always? He returns with "an error occurred during the processing of your request."

    why I cant player to access itv now when I could always? He returns with "an error occurred during the processing of your request."

    Hi James,

    Let us know a few details about the issue.

    1. which operating system you have installed on the computer?

    2. what web browser do you use to open itv player?

    3. are you able to play other videos online on other sites?

    If you use Internet Explorer, then you follow these methods.

    Method 1:

    You can run the fix for video problems in Internet Explorer.

    Playing video files crashes or blocking Internet Explorer - Windows

    http://support.Microsoft.com/mats/video_freezes_or_crashes/

    Method 2:

    You can also follow the steps in the following article and check.

    The video problems when you use Internet Explorer

    http://support.Microsoft.com/kb/2532294

    Note: The Reset Internet Explorer Settings feature might reset security settings or privacy settings that you have added to the list of Trusted Sites. Reset the Internet Explorer settings can also reset parental control settings and Add-ons. We recommend that you note these sites before using Internet Explorer settings reset feature and re - activate the Add-ons.

    Feel free to get back to us for other queries.

  • Help me!!! With this error 0xc000000e on my laptop! I don't have any Installation disc!

    Help me!!! With this error 0xc000000e on my laptop! I don't have any Installation disc!

    Please answer me at the same time! I have no wifi! In my day only private!

    Since you get a boot error I would suggest trying the following troubleshooting steps from the link below:

    http://support.HP.com/us-en/document/c01443371

  • help me with this error code 80070005 Code...

    help me with this error code 80070005 Code...
    my windows is not updated for a few days...
    Please help me...

    You don't have to know which operating system you use, this discussion is for Windows XP, etc. of Vista and Windows 7.

    Error message when you use Microsoft Update or Windows Update Web sites to install updates on Windows 2000, Windows XP and Windows Server 2003: 0 x 80070005
    http://support.Microsoft.com/kb/968003/

    If you are using Vista, then the denied access is handled differently-

    Error code 0 x 80070005 is also described as ACCESS DENIED (you may not to install updates.

    Please check that you are logged into an account with administrative privileges.

    Please follow these instructions if you encounter this error code during checking or install updates via Windows Udpate.  What follows applies only to Windows Vista.

    1. Download AccessChk (Sysinternals).  This tool allows you to assess the level of access of some users or groups of resources, including files, directories, registry keys, global objects and Windows services.  Here is the link to download the tool: http://technet.microsoft.com/en-us/sysinternals/bb664922.aspx

    2. save the zip on your desktop and extract the file:
    -Right-click on the file and select extract all...
    -Click Next when prompted for the Destination.

    Therefore, you should see a folder called AccessChk on your desktop.

    3. open the folder AccessChk

    4 press and hold the shift key and right-click in the window.  Select "open here command prompt.

    5. a command prompt window should open a similar message:
    C:\Users\\Desktop\accesschk >

    6. type the following command and press ENTER:
    "" AccessChk.exe "nt service TrustedInstaller" s - n k ' hklm\software\Microsoft\Windows\CurrentVersion\Component Based Servicing "> accesskchk.txt
    Tip: You should be able to copy and paste the command into the command prompt.

    7. close the command prompt window.  Open the Accesschk folder on your desktop (if it has been closed).

    8. double-click on Accesschk.txt (text file), it should open Notepad.

    If this is insufficient,

    1 if please download the subinacl.msi from the following link and save the patch to installation on the desktop:
     
    http://www.Microsoft.com/downloads/details.aspx?FamilyId=e8ba3e56-d8fe-4A91-93Cf-ed6985e3927b&displaylang=en#AffinityDownloads
    SubInACL (SubInACL.exe)
     
    2. go to your desktop and double-click on the downloaded file.
    3. Please select the C:\Windows\System32 folder as the Destination folder during installation. Later, we will use this tool to reset the permissions on the current computer settings.
    4. click on the button 'Start' in the 'Search' bar type: "Notepad" (without the quotes) and press ENTER.
    5. copy the following commands, and then paste them into the opened Notepad window:
     
    off @echo
     
    Subinacl /subkeyreg HKEY_LOCAL_MACHINE/Grant = administrators = f
    Subinacl /subkeyreg HKEY_CURRENT_USER/Grant = administrators = f
    Subinacl /subkeyreg HKEY_CLASSES_ROOT/Grant = administrators = f
    Subinacl % lecteur_systeme % /subdirectories / Grant = administrators = f
    Subinacl /subkeyreg HKEY_LOCAL_MACHINE/Grant = system = f
    Subinacl /subkeyreg HKEY_CURRENT_USER/Grant = system = f
    Subinacl /subkeyreg HKEY_CLASSES_ROOT/Grant = system = f
    Subinacl % lecteur_systeme % /subdirectories / Grant = system = f
     
    @Echo =========================
    Completed @Echo.
    @Echo =========================
    @pause
     
    6. After you paste the above commands, please close the Notepad window. Choose "Save" when you are prompted to save the file. Type "reset.bat" as the file name and choose "Desktop" in the Panel on the left as the save location.

    7. refer to the desktop and right click the reset.bat file, then choose "Run as Administrator".

    8. you will see a window of type BACK treatment.
     
    NOTE: It may take several minutes, please be patient. When it is finished, you will be prompted with the message: "finished, press any key to continue."

    Note: On some driver update installation procedure, we also received this error code, please redirect this kind of case to the Team System Vista, because it can be considered for structure of third-party programs.

    Look for updates after that.

    Hope this information is useful.

    This problem may be caused by third-party security programs such as firewalls and antivirus software. You can disable or remove to check the issue.

    From: Microsoft Answers Support Engineer

    TaurArian [MVP] 2005-2010 - Update Services

  • Each time after clicking the icon of user account on windows xp to change a password is crashes with this error message: Microsoft (R) HTML Application host has encountered a problem and needs to close.

    Each time after clicking the icon of user account on windows xp to change a password is crashes with this error message: Microsoft (R) HTML Application host has encountered a problem and needs to close.

    There is a Microsoft Knowledge base article which sets up a few steps to perform in the computer in order to solve the problem you are experiencing, read the article that you find on the link I am mentioning below and see if it helps the measures mentioned:

    http://support.Microsoft.com/kb/919751

  • [Error number: 0x8024400A] Need help with this error... I reinstalled XP SP1 and I can't get an auto update that's simple to install, just get this error every time

    [Error number: 0x8024400A] Need help with this error... I reinstalled XP SP1 and I can't get an automatic update that's simple to install, just get this error at each time HHHHEEEELLLPPPPP! Thank you

    I had the same problem.  But finally found a solution.  If your listing is similar to mine, then keep.  XP Media Center Edition 2005 (sp2).  AMD Athlon 64 x 2 Dual-Core, HP a1630n desktop computer.

    Go to the HP website, search for sp37394-XP sp3 Upgrade utility Microsoft for systems equipped with AMD processors.

    I had the same 0 x 80240036, 0x8024400a error, but realize my problem was really get manually downloaded sp3 and installed without continue loop crashing and not error messages.

  • WindowsUpdate_80246007 - cannot install Service Pack 2 for Vista. Can someone help me with this error message? What di I do to solve it?

    WindowsUpdate_80246007 - cannot install Service Pack 2 for Vista. Can someone help me with this error message? What di I do to solve it?

    WindowsUpdate_80246007 - cannot install Service Pack 2 for Vista. Can someone help me with this error message? What di I do to solve it?

    2 forums: you can go:

    1 Windows Vista IT Pro forum, section of Windows Vista service packs:
    Section of Windows Vista service packs:

    http://social.technet.Microsoft.com/forums/en/itprovistasp/threads

    2. Windows Update section:
    http://social.answers.Microsoft.com/forums/en-us/vistawu/threads

    For the benefits of others looking for answers, please mark as answer suggestion if it solves your problem.

  • Suddenly cannot open the Pdf online. Adobe crashes with this error message: Microsoft Visual C++ Runtime Library program C:\Program Files SQL Server 2008\Adobe\Reader10.0\Reader\AeroRd32.exe

    Suddenly cannot open the Pdf online. Adobe crashes with this error message: Microsoft Visual C++ Runtime Library program C:\Program Files SQL Server 2008\Adobe\Reader10.0\Reader\AcroRd32.exe

    Uninstall your Adobe Reader software and then install the latest version fromhttp://www.adobe.com/ and see what it does for you.

    writing in the new message: * e-mail address is removed from the privacy... *

    Suddenly cannot open the Pdf online. Adobe crashes with this error message: Microsoft Visual C++ Runtime Library program C:\Program Files SQL Server 2008\Adobe\Reader10.0\Reader\AcroRd32.exe

  • The page you are looking for is not available. You may need to contact your administrator with this error: 404 Page not found.

    I am at a loss.  I've set up a root certification authority to sign all servers in my workspace of Horizon, SAML is in the Green and after a lot of reading when troubleshooting also synchronized on all my ESXi hosts and guests.

    Basically, what I did is the following:

    Set up the connection to the Server VMware View Horizon 5.2 - created different pools and can connect via the customer different platform. (a few times to eliminate any possible configuration errors along the way)

    Configuration of VMware View Horizon Workspace 1.0 (a few times now) with self-signed and CA signed certs.  My workspace appears fine, the synchronization of files, apps work, and view pools appear.  When I try to launch your desktop from inside the Horizon workspace I get this error:

    The page you are looking for is not available. You may need to contact your administrator with this error: 404 Page not found.

    Now I think that I followed it down to something to do with SAML connection - which, to my understanding, archery chips between workspace and view.  On the login server, I see it in the Windows event log:

    BROKER_USER_AUTHFAILED_SAML_ACCESS_REQUIRED

    SAML access required but not tempted by customer

    Attributes:

    Source = com. VMware.VDI.Broker.filters.SamlAuthFilter

    Time = MON may 20 16:06:41 MDT 2013

    Gravity = AUDIT_FAIL

    Node = ViewConnection.access360.ca

    Module = broker

    Recognized = true

    Something is not crossing to allow me to access my office view since the workspace of Horizon.  If I remove the requirement of SAML on the login server see, when I try to connect to a desktop computer from the view connection server I get a promotion for and can I get my IDs & field and have full access with reviews, as well as blast HTML - just cannot get there with Horizon Workspace.  There must be something that I am missing with SAML...

    As I said, I'm at a loss here on what does not work between the Horizon workspace and the connection of SAML for display to connect to the server.  There is no server security, server transfer, and firewalls is all off, so I don't think it's a network problem.  Simple as possible.  The Windows Journal event displays the login displays server error is: access required but not attempted by client SAML.  I have all my servers synchronized after a few seconds - so I don't think that documented the TIME Horizon workspace synchronization time sensitivity is responsible here.  I am Pack overnight, but will do exactly the same thing with a client of tomorrow - hopefully without the same result!

    Any ideas?

    A

    So I re-deployed the VAPP (again!) very attentive as I went.  As usual, the initial database installation failed because I entered my domain FULL of the gateway name, so it does not match.  After useful messages already there for this (Workspace install fails with error creating the user admin) I used the wizardssl.hzn of connfigurator - going to recreate a rootca to the environment based on my FULL domain instead of the bridge - going and then let it grow all for the other vApps.  I then connected to each and pulled down my private rootca and ran c_rehash, etc. (another useful message!- adding MS signed Certs to Horizon Workspace & laquo;) Carlos & #039; Corner) I actually use my background to UNIX and openssl to be my own private CA and sign all of my certificates.  I created the SAN cert and added to the SSL configuration on the Configurator - going and connector - going.  Oddly enough, both of these server do not appear to be accepting SAN cert that includes their ENTIRE domain, but that's for another day... My Horizon Workspace FQDN does show as being approved by installed RootCA private (which does not have other DNS names for the service - going, the Configurator - goes, the data - will and the connector - will, but as I have already said--a battle for another day) so it's a good thing.  I joined my workspace to my domain name - well!  Activated would be pools seen in the Configurator - goes - sync - good.  CRT for the my display login server has accepted and implemented the SAML trust.  Still good.  Sync in my opinion users group who already had a couple of linked clone pools allowed to do.  Good.  Connected to the FQDN of my workspace and clicked on computers - seen my 3 pools.  Clicked on one and after a few seconds, launched in a new window of the explosion.  Success!  I disconnected and connected on a different machine, and something that I saw before, but doesn't have a lot of attention to was the connector - will put 'use windows authentication', I couldn't understand why every time I sailed on my Horizon workspace a no vmware window opens asking access my FQDN:443 with a user and pass.  It is this setting - duh.  I'm not sure yet that gives me, so it's off for now.

    Thanks for all the input: it's good to know that there are others with some of the same questions.  It's still v1.0, it is related to some of these pitfalls.  It is capricious with derived from same time less than 10 seconds seems to have a negative impact.  Had to ensure my ESXi servers were strong (never worried a lot in the past with MS AD being quite tolerant with small derivatives) I tired my vApps affecting a NTP, but they seemed like being left to the default of synchronization to the ESXi host.  See how than pans.  CERT is somewhat capricious depending on your deployment.  Of course the connector - will and the Configurator - must be signed by a CA that they are internal, but always be nice to then have signed internal...

    Now, I'm on ThinApps for desktops as well as the web interface integration.

    I bumped my head against the wall with my first configuration of Citrix XA and XD (before having VDI in a box!) and it was the best way to learn.

    I don't know that I grave along that I finished my PoC, but I'm very happy with today's results.  I still plan on the comparison of my logs successful with the logs I have pulled my former deployment TIME and see what it was that it was broken.  I think it was that wanted me a PTR record to my domain FULL DNS MS. name  I think I just had the direct search for the original bridge - will and FULL, but only a setback for the gateway domain - name.  Would explain why I was never able to connect to the gateway to access your desktop.  Oops.

    A

  • will be crazy with this error - ORA-12514

    Hi all.
    I have a big problem with this error.

    Facts:
    -oracle 10.2.0.1
    -64-bit RHEL version 5.

    In my PC, I have in my tnsnames.ora:

    PLELPP =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP) (HOST = 192.168.140.60)(PORT = 1521))
    )
    (CONNECT_DATA =
    (SERVICE_NAME = PLELPP. KOURA. THE GOVERNMENT OF BANGLADESH. EP)
    )
    )

    When I run tnsping
    C:\Documents and Settings\chijar\Escritorio > tnsping plelpp
    AMT Ping Utility for 32-bit Windows: Version 10.2.0.1.0 - Production on 18-DEC-2008 17:05:36
    Copyright (c) 1997, 2005, Oracle. All rights reserved.
    Archivos of parssmetros band:
    f:\oracle\product\10.2.0\client_1\network\admin\sqlnet.ora

    Useful TNSNAMES used para resolver el alias
    Try to contact (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)(HOST = 192.16)
    8.140.60)(PORT = 1521))) (CONNECT_DATA = (SERVICE_NAME = PLELPP. KOURA. THE GOVERNMENT OF BANGLADESH. PE)))
    Correctamente s (20 msec)

    In SERVER, the values are:
    My listener.ora
    listener.ora # Network Configuration file: /u01/app/oracle/product/10.2.0/db_1/network/admin/listener.ora
    # Generated by Oracle configuration tools.

    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = u01/app/oracle/product/10.2.0/db_1)
    (= Extproc PROGRAM)
    )
    )

    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP) (HOST = 192.168.140.60)(PORT = 1521))
    (ADDRESS = (PROTOCOL = CIP)(KEY = EXTPROC0))
    )
    )

    my tnsnames.ora - this is the server:
    tnsnames.ora # Network Configuration file: /u01/app/oracle/product/10.2.0/db_1/network/admin/tnsnames.ora
    # Generated by Oracle configuration tools.

    PLELPP =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP) (HOST = 192.168.140.60)(PORT = 1521))
    )
    (CONNECT_DATA =
    (SERVICE_NAME = plelpp.mintra.gob.pe)
    )
    )

    EXTPROC_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = CIP)(KEY = EXTPROC0))
    )
    (CONNECT_DATA =
    (SID = PLSExtProc)
    (PRESENTATION = RO)
    )
    )

    * lsnrctl listener status *.

    [oracle@urano ~] $ lsnrctl status

    LSNRCTL for Linux: Version 10.2.0.1.0 - Production on December 18, 2008 17:09:34

    Copyright (c) 1991, 2005, Oracle. All rights reserved.

    Connection to (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST=192.168.140.60) (PORT = 1521)))
    STATUS of the LISTENER
    ------------------------
    Alias LISTENER
    Version TNSLSNR for Linux: Version 10.2.0.1.0 - Production
    Start date December 18, 2008 16:51:54
    Uptime 0 days 0 h 17 min 40 sec
    Draw level off
    Security ON: OS Local Authentication
    SNMP OFF
    Parameter Listener of the /u01/app/oracle/product/10.2.0/db_1/network/admin/listener.ora file
    The listener log file /U01/app/Oracle/product/10.2.0/Db_1/network/log/listener.log
    Summary of endpoints listening...
    (DESCRIPTION = (ADDRESS = (PROTOCOL = tcp)(HOST=192.168.140.60) (PORT = 1521)))
    (DESCRIPTION = (ADDRESS = (PROTOCOL = ipc) (KEY = EXTPROC0)))
    Summary of services...
    Service 'PLSExtProc' has 1 instance (s).
    Instance of 'PLSExtProc', status UNKNOWN, has 1 operation for this service...
    The command completed successfully
    [oracle@urano ~]

    lsnrctl service
    [oracle@urano ~] $ lsnrctl service

    LSNRCTL for Linux: Version 10.2.0.1.0 - Production on December 18, 2008 17:10:19

    Copyright (c) 1991, 2005, Oracle. All rights reserved.

    Connection to (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST=192.168.140.60) (PORT = 1521)))
    Summary of services...
    Service 'PLSExtProc' has 1 instance (s).
    Instance of 'PLSExtProc', status UNKNOWN, has 1 operation for this service...
    Managers:
    "DEDICATED" set up: 0 denied: 0
    LOCAL SERVER
    The command completed successfully
    [oracle@urano ~] $

    when I want to connect through netservices *.

    ORA-12514: TNS:listener is not currently of service requested in connect.


    Can you help me???

    Thank you very much.
    Caesar

    From my previous post:

    If this does not show us:

    SQL > show the service_name parameter
    SQL > show the db_name parameter
    SQL > show the db_domain parameter >

    Enrique

    PS. SID_NAME is case-sensitive so change it to lowercase:

    (SID_DESC =
         (GLOBAL_DBNAME = PLELPP.MINTRA.GOB.PE)
         (ORACLE_HOME = /u01/app/oracle/product/10.2.0/db_1)
         (SID_NAME = plelpp)
      )
    

    Published by: Enrique Orbegozo on December 22, 2008 12:37

  • Is short boot fail reason (error 1000-0146) Office of glitter and high cpu?

    Dell inspiron 6000. Windows xp professional sp 3. Three weeks ago, my computer started loud beep on startup and sparkle of the desktop icons. The touchpad has stopped working for a while, but most of the time which is fixed. I installed malwarebytes' eliminating about four Trojan horses and tried to update all the drivers. I did a restore of the system about 3 times. When I ran a test drive, there was a failed test short boot 1000-0146 error. When my app icons start to Flash my cpu jumps to 100%. Pressing any key usually stopped for a bit. Is this a compatibility issue with my software or the failure of short boot is the cause. Help!

    Hi Nutmeg30,

    • Did you the latest changes on the computer?
    • You have security software installed on the computer?

    Learn more about the test of startup failures see link below on the Dell site and check if it helps.

    Pre Boot System Assessment (PSA) Diagnostics and Error Codes for Dell computers

    http://support.Dell.com/support/topics/global.aspx/support/KCS/document?docid=DSN_300428&isLegacy=true

    It is possible that some third-party programs installed on the computer is causing the flickering and high CPU utilization issue.

    I suggest that you configure the computer in a clean boot state and check if it helps.

    To help resolve the error and other messages, you can start Windows XP by using a minimal set of drivers and startup programs. This type of boot is known as a "clean boot". A clean boot helps eliminate software conflicts.

    See section to learn more about how to clean boot.

    How to configure Windows XP to start in a "clean boot" State

    http://support.Microsoft.com/kb/310353

    Reset the computer to start as usual

    When you are finished troubleshooting, follow these steps to reset the computer to start as usual:

    1. Click Start , and then click run.
    2. Type msconfig , and then click OK.
      The System Configuration utility dialog box appears.
    3. Click the general tab, click Normal Startup - load all device drivers and services , and then click OK.
    4. When you are prompted, click restart to restart the computer.
  • They help me with this error March Eclipse + Tomcat 8 + JSF + PrimeFaces OmniFaces?

    Hello friends of the forum!

    I am a JSF tutorial, and when generating a coming sell order page, I get the following error in Tomcat:

    There are 28, 2015 start 13:48:19 org.apache.tomcat.util.digester.SetPropertiesRule

    WARNING: [SetPropertiesRule] {Server/Service/engine/host/context} set the property 'source' 'org.eclipse.jst.jee.server:PrimeFacesVenta6' option did not find a corresponding property.

    There are 28, 2015 connect 13:48:19 org.apache.catalina.startup.VersionLoggerListener

    INFO: Server Version: Apache Tomcat/8.0.24

    There are 28, 2015 connect 13:48:19 org.apache.catalina.startup.VersionLoggerListener

    INFO: Server built: July 1, 2015 20:19:55 UTC

    There are 28, 2015 connect 13:48:19 org.apache.catalina.startup.VersionLoggerListener

    INFO: Number of server: 8.0.24.0

    There are 28, 2015 connect 13:48:19 org.apache.catalina.startup.VersionLoggerListener

    INFO: Name of operating system: Windows Server 2008 R2

    There are 28, 2015 connect 13:48:19 org.apache.catalina.startup.VersionLoggerListener

    INFO: OS Version: 6.1

    There are 28, 2015 connect 13:48:19 org.apache.catalina.startup.VersionLoggerListener

    INFO: Architecture: x 86

    There are 28, 2015 connect 13:48:19 org.apache.catalina.startup.VersionLoggerListener

    INFO: Home of Java: C:\Java-JRE-32

    There are 28, 2015 connect 13:48:19 org.apache.catalina.startup.VersionLoggerListener

    INFO: JVM Version: 1.7.0_72 - b14

    There are 28, 2015 connect 13:48:19 org.apache.catalina.startup.VersionLoggerListener

    INFO: JVM vendor: Oracle Corporation

    There are 28, 2015 connect 13:48:19 org.apache.catalina.startup.VersionLoggerListener

    INFO: CATALINA_BASE: E:\Proyectos\OpenXava\openxava-5.3\workspace\.metadata\.plugins\org.eclipse.wst.server.core\tmp2

    There are 28, 2015 connect 13:48:19 org.apache.catalina.startup.VersionLoggerListener

    INFO: CATALINA_HOME: C:\Tomcat

    There are 28, 2015 connect 13:48:19 org.apache.catalina.startup.VersionLoggerListener

    INFO: command line argument:-Dcatalina.base=E:\Proyectos\OpenXava\openxava-5.3\workspace\.metadata\.plugins\org.eclipse.wst.server.core\tmp2

    There are 28, 2015 connect 13:48:19 org.apache.catalina.startup.VersionLoggerListener

    INFO: command line argument:-Dcatalina.home = C:\Tomcat

    There are 28, 2015 connect 13:48:19 org.apache.catalina.startup.VersionLoggerListener

    INFO: command line argument:-Dwtp.deploy=E:\Proyectos\OpenXava\openxava-5.3\workspace\.metadata\.plugins\org.eclipse.wst.server.core\tmp2\wtpwebapps

    There are 28, 2015 connect 13:48:19 org.apache.catalina.startup.VersionLoggerListener

    INFO: :-Djava.endorsed.dirs=C:\Tomcat\endorsed command line argument

    There are 28, 2015 connect 13:48:19 org.apache.catalina.startup.VersionLoggerListener

    INFO: command line argument:-Dfile.encoding = Cp1252

    There are 28, 2015 13:48:19 org.apache.catalina.core.AprLifecycleListener lifecycleEvent

    NEWS: APR based Apache Tomcat Native library that allows optimal performance in production environments was not found on the java.library.path: C:\Java-JRE-32\bin. C:\Windows\Sun\Java\bin; C:\Windows\System32; C:\Windows; C:/Java-JRE-32/bin/client; C:/Java / JRE / 32/location; C:/Java-JRE-32/lib/i386; C:\Program Files (x 86) \Common Files\Crystal Decisions\2.0\bin\NOTES\; C:\Program Files (x 86) \Common Files\Crystal Decisions\2.0\bin\NOTES\DATA\; C:\Program Files\ibm\gsk8\lib64; C:\Program Files\ibm\gsk8\bin; C:\Informix-SDK-410\bin; C:\Windows\System32; C:\Windows; C:\Windows\System32\Wbem; C:\Windows\system32\WindowsPowerShell\v1.0\; C:\informix\bin; C:\jrex64\bin; C:\jdkx64\bin; C:\Program Files (x86)\MySQL\Connector.J 5.1\;) C:\Program Files (x 86) \ibm\gsk7\bin; C:\Program Files (x 86) \ibm\gsk7\lib; C:\Gradle\bin; C:\JDBC-Informix\lib; C:\Users\gechenique\Downloads\xBaseJ\bin; C:\Program Files (x 86) \Common Files\Bosch\VideoSDK; C:\Eclipse-Luna;.

    There are 28, 2015 init org.apache.coyote.AbstractProtocol 13:48:19

    INFO: Initializing ProtocolHandler ['http-nio-8080"]

    There are 28, 2015 13:48:19 org.apache.tomcat.util.net.NioSelectorPool getSharedSelector

    INFO: Using a switch shared for read/write to servlet

    There are 28, 2015 init org.apache.coyote.AbstractProtocol 13:48:19

    INFO: Initializing ProtocolHandler ["ajp-nio-8009"]

    There are 28, 2015 13:48:19 org.apache.tomcat.util.net.NioSelectorPool getSharedSelector

    INFO: Using a switch shared for read/write to servlet

    There are 28, 2015 13:48:19 org.apache.catalina.startup.Catalina load

    INFO: Initializing processed in ms 780

    There are 28, 2015 13:48:19 org.apache.catalina.core.StandardService startInternal

    INFO: Starting service Catalina

    There are 28, 2015 13:48:19 org.apache.catalina.core.StandardEngine startInternal

    INFO: Starting the Servlet engine: Apache Tomcat/8.0.24

    There are 28, 2015 13:48:20 org.apache.catalina.util.SessionIdGeneratorBase createSecureRandom

    INFO: Creating instance of SecureRandom for the generation of using [SHA1PRNG] session ID a [121] milliseconds.

    There are 28, 2015 13:48:22 org.apache.jasper.servlet.TldScanner scanJars

    INFO: At least one POT has been analyzed for TLDS still did not contain any TLDs. activate record debugging for this logger for a list complete pots that were analysed but found no TLD in their. Skip the useless jars when scanning can improve boot time and JSP compilation time.

    There are 28, 2015 13:48:22 org.omnifaces.ApplicationInitializer logOmniFacesVersion

    INFO: Using version 2.1 OmniFaces

    There are 28, 2015 13:48:22 com.sun.faces.config.ConfigureListener contextInitialized

    INFO: initializing Mojarra 2.2.9 (-SHOT 20141218-0939 https://svn.java.net/svn/mojarra~svn/tags/2.2.9@14083) to the context ' / PrimeFacesVenta6'

    There are 28, 2015 createInstance com.sun.faces.spi.InjectionProviderFactory 13:48:23

    INFO: JSF1048: PreDestroy/PostConstruct annotation present.  Servlet methods marked with these annotations have tell processed annotations.

    There are 28, 2015 13:48:23 com.sun.faces.config.ConfigureListener contextInitialized

    SEVERE: Critical error during deployment:

    java.lang.ExceptionInInitializerError

    to org.omnifaces.application.OmniApplication. < init > (OmniApplication.java:69)

    at org.omnifaces.application.OmniApplicationFactory.createOmniApplication(OmniApplicationFactory.java:89)

    at org.omnifaces.application.OmniApplicationFactory.getApplication(OmniApplicationFactory.java:54)

    at com.sun.faces.application.InjectionApplicationFactory.getApplication (unknown Source)

    at com.sun.faces.config.InitFacesContext.getApplication (unknown Source)

    to com.sun.faces.lifecycle.ClientWindowFactoryImpl. < init >(Unknown Source)

    at sun.reflect.NativeConstructorAccessorImpl.newInstance0 (Native Method)

    at sun.reflect.NativeConstructorAccessorImpl.newInstance (unknown Source)

    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance (unknown Source)

    the impossible (unknown Source)

    to java.lang.Class.newInstance (unknown Source)

    at javax.faces.FactoryFinderInstance.getImplGivenPreviousImpl (unknown Source)

    at javax.faces.FactoryFinderInstance.getImplementationInstance (unknown Source)

    at javax.faces.FactoryFinderInstance.getFactory (unknown Source)

    at javax.faces.FactoryFinder.getFactory (unknown Source)

    at com.sun.faces.config.processor.FactoryConfigProcessor.verifyFactoriesExist (unknown Source)

    at com.sun.faces.config.processor.FactoryConfigProcessor.process (unknown Source)

    at com.sun.faces.config.ConfigManager.initialize (unknown Source)

    at com.sun.faces.config.ConfigureListener.contextInitialized (unknown Source)

    at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:4729)

    at org.apache.catalina.core.StandardContext.startInternal(StandardContext.java:5167)

    at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:150)

    to org.apache.catalina.core.ContainerBase$ StartChild.call (ContainerBase.java:1408)

    to org.apache.catalina.core.ContainerBase$ StartChild.call (ContainerBase.java:1398)

    at java.util.concurrent.FutureTask.run (unknown Source)

    at java.util.concurrent.ThreadPoolExecutor.runWorker (unknown Source)

    to java.util.concurrent.ThreadPoolExecutor$ Worker.run (unknown Source)

    at java.lang.Thread.run (unknown Source)

    Caused by: java.lang.IllegalStateException: CDI API is not available in this environment.

    to org.omnifaces.config.BeanManager. < init > (BeanManager.java:88)

    to org.omnifaces.config.BeanManager. < clinit > (BeanManager.java:49)

    ... 28 more

    Caused by: java.lang.ClassNotFoundException: javax.enterprise.inject.spi.BeanManager

    at org.apache.catalina.loader.WebappClassLoaderBase.loadClass(WebappClassLoaderBase.java:1313)

    at org.apache.catalina.loader.WebappClassLoaderBase.loadClass(WebappClassLoaderBase.java:1164)

    at java.lang.Class.forName0 (Native Method)

    at java.lang.Class.forName (unknown Source)

    to org.omnifaces.config.BeanManager. < init > (BeanManager.java:82)

    ... more than 29

    There are 28, 2015 13:48:23 org.apache.catalina.core.StandardContext listenerStart

    GRAVE: Context Exception initialization instance of listener class com.sun.faces.config.ConfigureListener event sending

    java.lang.RuntimeException: java.lang.ExceptionInInitializerError

    at com.sun.faces.config.ConfigureListener.contextInitialized (unknown Source)

    at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:4729)

    at org.apache.catalina.core.StandardContext.startInternal(StandardContext.java:5167)

    at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:150)

    to org.apache.catalina.core.ContainerBase$ StartChild.call (ContainerBase.java:1408)

    to org.apache.catalina.core.ContainerBase$ StartChild.call (ContainerBase.java:1398)

    at java.util.concurrent.FutureTask.run (unknown Source)

    at java.util.concurrent.ThreadPoolExecutor.runWorker (unknown Source)

    to java.util.concurrent.ThreadPoolExecutor$ Worker.run (unknown Source)

    at java.lang.Thread.run (unknown Source)

    Caused by: java.lang.ExceptionInInitializerError

    to org.omnifaces.application.OmniApplication. < init > (OmniApplication.java:69)

    at org.omnifaces.application.OmniApplicationFactory.createOmniApplication(OmniApplicationFactory.java:89)

    at org.omnifaces.application.OmniApplicationFactory.getApplication(OmniApplicationFactory.java:54)

    at com.sun.faces.application.InjectionApplicationFactory.getApplication (unknown Source)

    at com.sun.faces.config.InitFacesContext.getApplication (unknown Source)

    to com.sun.faces.lifecycle.ClientWindowFactoryImpl. < init >(Unknown Source)

    at sun.reflect.NativeConstructorAccessorImpl.newInstance0 (Native Method)

    at sun.reflect.NativeConstructorAccessorImpl.newInstance (unknown Source)

    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance (unknown Source)

    the impossible (unknown Source)

    to java.lang.Class.newInstance (unknown Source)

    at javax.faces.FactoryFinderInstance.getImplGivenPreviousImpl (unknown Source)

    at javax.faces.FactoryFinderInstance.getImplementationInstance (unknown Source)

    at javax.faces.FactoryFinderInstance.getFactory (unknown Source)

    at javax.faces.FactoryFinder.getFactory (unknown Source)

    at com.sun.faces.config.processor.FactoryConfigProcessor.verifyFactoriesExist (unknown Source)

    at com.sun.faces.config.processor.FactoryConfigProcessor.process (unknown Source)

    at com.sun.faces.config.ConfigManager.initialize (unknown Source)

    ... more than 10

    Caused by: java.lang.IllegalStateException: CDI API is not available in this environment.

    to org.omnifaces.config.BeanManager. < init > (BeanManager.java:88)

    to org.omnifaces.config.BeanManager. < clinit > (BeanManager.java:49)

    ... 28 more

    Caused by: java.lang.ClassNotFoundException: javax.enterprise.inject.spi.BeanManager

    at org.apache.catalina.loader.WebappClassLoaderBase.loadClass(WebappClassLoaderBase.java:1313)

    at org.apache.catalina.loader.WebappClassLoaderBase.loadClass(WebappClassLoaderBase.java:1164)

    at java.lang.Class.forName0 (Native Method)

    at java.lang.Class.forName (unknown Source)

    to org.omnifaces.config.BeanManager. < init > (BeanManager.java:82)

    ... more than 29

    There are 28, 2015 13:48:23 org.apache.catalina.core.StandardContext listenerStart

    GRAVE: Context Exception initialization instance of listener class org.omnifaces.ApplicationListener event sending

    java.lang.NoClassDefFoundError: has not been initialized class org.omnifaces.config.BeanManager

    at org.omnifaces.ApplicationListener.checkCDIAvailable(ApplicationListener.java:63)

    at org.omnifaces.ApplicationListener.contextInitialized(ApplicationListener.java:55)

    at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:4729)

    at org.apache.catalina.core.StandardContext.startInternal(StandardContext.java:5167)

    at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:150)

    to org.apache.catalina.core.ContainerBase$ StartChild.call (ContainerBase.java:1408)

    to org.apache.catalina.core.ContainerBase$ StartChild.call (ContainerBase.java:1398)

    at java.util.concurrent.FutureTask.run (unknown Source)

    at java.util.concurrent.ThreadPoolExecutor.runWorker (unknown Source)

    to java.util.concurrent.ThreadPoolExecutor$ Worker.run (unknown Source)

    at java.lang.Thread.run (unknown Source)

    There are 28, 2015 13:48:23 com.sun.faces.config.ConfigureListener contextInitialized

    INFO: initializing Mojarra 2.2.9 (-SHOT 20141218-0939 https://svn.java.net/svn/mojarra~svn/tags/2.2.9@14083) to the context ' / PrimeFacesVenta6'

    There are 28, 2015 createInstance com.sun.faces.spi.InjectionProviderFactory 13:48:23

    INFO: JSF1048: PreDestroy/PostConstruct annotation present.  Servlet methods marked with these annotations have tell processed annotations.

    There are 28, 2015 13:48:23 com.sun.faces.config.ConfigureListener contextInitialized

    SEVERE: Critical error during deployment:

    java.lang.NoClassDefFoundError: has not been initialized class org.omnifaces.config.BeanManager

    to org.omnifaces.application.OmniApplication. < init > (OmniApplication.java:69)

    at org.omnifaces.application.OmniApplicationFactory.createOmniApplication(OmniApplicationFactory.java:89)

    at org.omnifaces.application.OmniApplicationFactory.getApplication(OmniApplicationFactory.java:54)

    at com.sun.faces.application.InjectionApplicationFactory.getApplication (unknown Source)

    at com.sun.faces.config.InitFacesContext.getApplication (unknown Source)

    to com.sun.faces.lifecycle.ClientWindowFactoryImpl. < init >(Unknown Source)

    at sun.reflect.NativeConstructorAccessorImpl.newInstance0 (Native Method)

    at sun.reflect.NativeConstructorAccessorImpl.newInstance (unknown Source)

    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance (unknown Source)

    the impossible (unknown Source)

    to java.lang.Class.newInstance (unknown Source)

    at javax.faces.FactoryFinderInstance.getImplGivenPreviousImpl (unknown Source)

    at javax.faces.FactoryFinderInstance.getImplementationInstance (unknown Source)

    at javax.faces.FactoryFinderInstance.getFactory (unknown Source)

    at javax.faces.FactoryFinder.getFactory (unknown Source)

    at com.sun.faces.config.processor.FactoryConfigProcessor.verifyFactoriesExist (unknown Source)

    at com.sun.faces.config.processor.FactoryConfigProcessor.process (unknown Source)

    at com.sun.faces.config.ConfigManager.initialize (unknown Source)

    at com.sun.faces.config.ConfigureListener.contextInitialized (unknown Source)

    at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:4727)

    at org.apache.catalina.core.StandardContext.startInternal(StandardContext.java:5167)

    at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:150)

    to org.apache.catalina.core.ContainerBase$ StartChild.call (ContainerBase.java:1408)

    to org.apache.catalina.core.ContainerBase$ StartChild.call (ContainerBase.java:1398)

    at java.util.concurrent.FutureTask.run (unknown Source)

    at java.util.concurrent.ThreadPoolExecutor.runWorker (unknown Source)

    to java.util.concurrent.ThreadPoolExecutor$ Worker.run (unknown Source)

    at java.lang.Thread.run (unknown Source)

    There are 28, 2015 13:48:23 org.apache.catalina.core.StandardContext listenerStart

    GRAVE: Context Exception initialization instance of listener class com.sun.faces.config.ConfigureListener event sending

    java.lang.RuntimeException: java.lang.NoClassDefFoundError: has not been initialized class org.omnifaces.config.BeanManager

    at com.sun.faces.config.ConfigureListener.contextInitialized (unknown Source)

    at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:4727)

    at org.apache.catalina.core.StandardContext.startInternal(StandardContext.java:5167)

    at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:150)

    to org.apache.catalina.core.ContainerBase$ StartChild.call (ContainerBase.java:1408)

    to org.apache.catalina.core.ContainerBase$ StartChild.call (ContainerBase.java:1398)

    at java.util.concurrent.FutureTask.run (unknown Source)

    at java.util.concurrent.ThreadPoolExecutor.runWorker (unknown Source)

    to java.util.concurrent.ThreadPoolExecutor$ Worker.run (unknown Source)

    at java.lang.Thread.run (unknown Source)

    Caused by: java.lang.NoClassDefFoundError: has not been initialized class org.omnifaces.config.BeanManager

    to org.omnifaces.application.OmniApplication. < init > (OmniApplication.java:69)

    at org.omnifaces.application.OmniApplicationFactory.createOmniApplication(OmniApplicationFactory.java:89)

    at org.omnifaces.application.OmniApplicationFactory.getApplication(OmniApplicationFactory.java:54)

    at com.sun.faces.application.InjectionApplicationFactory.getApplication (unknown Source)

    at com.sun.faces.config.InitFacesContext.getApplication (unknown Source)

    to com.sun.faces.lifecycle.ClientWindowFactoryImpl. < init >(Unknown Source)

    at sun.reflect.NativeConstructorAccessorImpl.newInstance0 (Native Method)

    at sun.reflect.NativeConstructorAccessorImpl.newInstance (unknown Source)

    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance (unknown Source)

    the impossible (unknown Source)

    to java.lang.Class.newInstance (unknown Source)

    at javax.faces.FactoryFinderInstance.getImplGivenPreviousImpl (unknown Source)

    at javax.faces.FactoryFinderInstance.getImplementationInstance (unknown Source)

    at javax.faces.FactoryFinderInstance.getFactory (unknown Source)

    at javax.faces.FactoryFinder.getFactory (unknown Source)

    at com.sun.faces.config.processor.FactoryConfigProcessor.verifyFactoriesExist (unknown Source)

    at com.sun.faces.config.processor.FactoryConfigProcessor.process (unknown Source)

    at com.sun.faces.config.ConfigManager.initialize (unknown Source)

    ... more than 10

    There are 28, 2015 13:48:23 org.apache.catalina.core.StandardContext startInternal

    GRAVE: One or more listeners could start. You will find all the details in the appropriate container log file

    There are 28, 2015 13:48:23 org.apache.catalina.core.StandardContext startInternal

    SEVERE: Context [/ PrimeFacesVenta6] startup failed due to previous errors

    There are 28, 2015 13:48:23 org.apache.catalina.core.StandardContext listenerStop

    GRAVE: Sending Exception context destroyed instance of listener class com.sun.faces.config.ConfigureListener event

    java.lang.NoClassDefFoundError: has not been initialized class org.omnifaces.config.BeanManager

    to org.omnifaces.application.OmniApplication. < init > (OmniApplication.java:69)

    at org.omnifaces.application.OmniApplicationFactory.createOmniApplication(OmniApplicationFactory.java:89)

    at org.omnifaces.application.OmniApplicationFactory.getApplication(OmniApplicationFactory.java:54)

    at com.sun.faces.application.InjectionApplicationFactory.getApplication (unknown Source)

    at com.sun.faces.config.InitFacesContext.getApplication (unknown Source)

    at com.sun.faces.config.ConfigureListener.contextDestroyed (unknown Source)

    at org.apache.catalina.core.StandardContext.listenerStop(StandardContext.java:4774)

    at org.apache.catalina.core.StandardContext.stopInternal(StandardContext.java:5390)

    at org.apache.catalina.util.LifecycleBase.stop(LifecycleBase.java:232)

    at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:160)

    to org.apache.catalina.core.ContainerBase$ StartChild.call (ContainerBase.java:1408)

    to org.apache.catalina.core.ContainerBase$ StartChild.call (ContainerBase.java:1398)

    at java.util.concurrent.FutureTask.run (unknown Source)

    at java.util.concurrent.ThreadPoolExecutor.runWorker (unknown Source)

    to java.util.concurrent.ThreadPoolExecutor$ Worker.run (unknown Source)

    at java.lang.Thread.run (unknown Source)

    There are 28, 2015 getFactory javax.faces.FactoryFinderInstance 13:48:23

    SEVERUS: Application has not been properly initialized at startup, could not find factory: javax.faces.application.ApplicationFactory. Try to find relief.

    There are 28, 2015 13:48:23 com.sun.faces.config.ConfigureListener contextDestroyed

    SEVERE: Unexpected Exception When you try to tear down the length of the Mojarra

    java.lang.IllegalStateException: could not find relief for javax.faces.application.ApplicationFactory of the factory.

    at javax.faces.FactoryFinderInstance.getFactory (unknown Source)

    at javax.faces.FactoryFinder.getFactory (unknown Source)

    at com.sun.faces.config.InitFacesContext.getApplication (unknown Source)

    at com.sun.faces.config.ConfigureListener.contextDestroyed (unknown Source)

    at org.apache.catalina.core.StandardContext.listenerStop(StandardContext.java:4776)

    at org.apache.catalina.core.StandardContext.stopInternal(StandardContext.java:5390)

    at org.apache.catalina.util.LifecycleBase.stop(LifecycleBase.java:232)

    at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:160)

    to org.apache.catalina.core.ContainerBase$ StartChild.call (ContainerBase.java:1408)

    to org.apache.catalina.core.ContainerBase$ StartChild.call (ContainerBase.java:1398)

    at java.util.concurrent.FutureTask.run (unknown Source)

    at java.util.concurrent.ThreadPoolExecutor.runWorker (unknown Source)

    to java.util.concurrent.ThreadPoolExecutor$ Worker.run (unknown Source)

    at java.lang.Thread.run (unknown Source)

    There are 28, 2015 start 13:48:23 org.apache.coyote.AbstractProtocol

    INFO: From ProtocolHandler ['http-nio-8080"]

    There are 28, 2015 start 13:48:23 org.apache.coyote.AbstractProtocol

    INFO: From ProtocolHandler ["ajp-nio-8009"]

    There are 28, 2015 start 13:48:23 org.apache.catalina.startup.Catalina

    INFO: 4262 SP server startup

    These errors were installed after Omnifaces to send an object to a bean.

    The page code that generates the error is:

    <! DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional / / IN".

              " http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.DTD "> "

    " < html xmlns =" http://www.w3.org/1999/xhtml "

    ' xmlns:ui = ' http://xmlns.JCP.org/JSF/Facelets "" "

    ' xmlns:f = ' http://xmlns.JCP.org/JSF/core "" "

    ' xmlns:h = ' http://xmlns.JCP.org/JSF/HTML "" "

    ' xmlns:p = ' http://PrimeFaces.org/UI ">

    < h:head >

    by default, < title > < ui:insert name = "title" > title < / ui:insert > < / title >

    < / h:head >

    < h:body >

    "< ui:composition template="./WEB-INF/templates/plantilla.xhtml ">

    < ui: set name = "content" >

    < f: event type = listener = "#{personaBean.listar ('F')"preRenderView"}" / > "

    < f: event type = listener = "#{productoBean.listar ('F')"preRenderView"}" / > "

    < h:form >

    < p:outputLabel value = "Persona" >

    < / p:outputLabel >

    < p:selectOneMenu value = "#{ventaBean.venta.persona}" converter = "omnifaces. SelectItemsConverter">

    < f: selectItem noSelectionOption = 'true' itemLabel = "select' Valeurelement = ' #{null}" / >

    "< f: selectItems value =" #{personaBean.lstPersonas} "var = 'by' itemLabel =" #{per.nombre} "Valeurelement =" #{by} "/ >

    < / p:selectOneMenu >

    < p:outputLabel value = "Producto" >

    < / p:outputLabel >

    < p:selectOneMenu value = "#{ventaBean.producto}" converter = "omnifaces. SelectItemsConverter">

    < f: selectItem noSelectionOption = 'true' itemLabel = "select' Valeurelement = ' #{null}" / >

    "< f: selectItems value =" #{productoBean.lstProductos} "var = itemLabel =" #{pro.nombre 'pro'} ' Valeurelement = ' #{pro} "/ >

    < / p:selectOneMenu >

    < p:outputLabel value = "Price" >

    < / p:outputLabel >

    < p:inputText value = "#{ventaBean.cantidad}" / > "

    < p:commandButton value = "Add" actionListener = "#{ventaBean.agregar ()}" updated = "detail" / > ""

    < p:dataTable id = value = "#{ventaBean.lista"detail"} ' var 'det' = >"

    < p:column headerText = "Product number" >

    #{det.producto.nombre}

    < / p:column >

    < p:column headerText = "Price" >

    #{det.producto.precio}

    < / p:column >

    < p:column headerText = "Amount" >

    #{det.cantidad}

    < / p:column >

    < / p:dataTable >

    < p:commandButton value = "Clerk Venta" / >

    < / h:form >

    < / ui: define >

    < / ui:composition >

    < / h:body >

    < / html >

    El Código del bean es el siguiente:

    package com.mitocode.bean;

    import java.util.ArrayList;

    import java.util.List;

    Import javax.faces.bean.ManagedBean;

    Import javax.faces.view.ViewScoped;

    import com.mitocode.model.DetalleVenta;

    import com.mitocode.model.Producto;

    import com.mitocode.model.Venta;

    @ManagedBean

    @ViewScoped

    public class VentaBean {}

    venta of Venta private = new Venta();

    private product product = new Producto();

    private int amount;

    private list < DetalleVenta > lista = new ArrayList < DetalleVenta > ();

    public list < DetalleVenta > getLista() {}

    return the list;

    }

    {} public void setLista (list list < DetalleVenta >)

    This.Lista = list;

    }

    public int getCantidad() {}

    to return the amount;

    }

    {} public void setCantidad (int amount)

    This.Cantidad = amount;

    }

    public getProducto() {} Producto

    return of product;

    }

    {} public void setProducto (product product)

    This.producto = product;

    }

    public getVenta() {} Venta

    return her venta;

    }

    {} public void setVenta (Venta venta)

    This.Venta = venta;

    }

    public void agregar() {}

    Det DetalleVenta = new DetalleVenta();

    det.setCantidad (amount);

    det.setProducto (product);

    This.Lista.Add (Det);

    }

    }

    I googled as could be, but is no solution to my problem.

    Maven already added to the CDI module, as recommended by StackOverflow, which makes the page is rendered, but when any button is active, is displayed a 404 error page.

    Maven is also added to the module "welder".

    What strikes me is that in the tutorial of the CDI and modules 'welder' are not added.

    My work environment is the following:

    Eclipse of March (4.5)

    Mojarra 2.2.9

    5.2 PrimeFaces

    OmniFaces 2.1

    Tomcat 8

    I hope you can help me with this.

    Thank you much in advance.

    Message editado por: gechenique

    Hello

    As the error seems to occur in OmniFaces I recommend the rattling.

    Thank you!

Maybe you are looking for