Attribute getters/setters not found in class object view

Hello

I use JDeveloper 10.1.3.4 and you have questions about the customization of the display of the advice in the view object.

In my application that should be used by the students and administrative staff, I generated entity object both display objects for a table of the database. Some of the attributes need customized display format. For example, the numbers of social security in the datatable is 123456789. For student users must be displayed in the form xxx-xx-6789. For staff users, it should be displayed in the format 123-45-6789.

So I create two objects from view of the same entity object, one for students and one for its employees, each having its own display format. To put customization code in attributes getter methods, however, I found that in view of object class files get accessor methods do not exist. The entity object class file has the getters; However if the customization is done there I won't have two different formats.

Suits for buyers are available in the object class file so that I can customize?

Thank you very much for help!


Newman

Newman,

Attribute getters would be placed on the class view LINE object.

John

Tags: Java

Similar Questions

  • View CD can't mistake of player Director, was not found in the object #getPropRef, Script error. Continue?, yes no

    OT: Error player Director, not found in the object #getPropRef, Script error. Continue?, Yes No. nursing student cannot run his CD CD practice to work on other laptops. but not on it!

    Nursing Student cannot carry out its practice CD which comes with Prentice Hall Nursing book: "medical and nursing care 2nd edition, comments & justifications surgical."  CD works on PC and a laptop running Windows XP, Vista and Windows 7 and on an iMac; but not on it!  She has a Toshiba laptop with Windows Vista Home Premium and it just doesn't work!  My wife has lent her one of its laptops with Windows Vista, but the CD works fine.  What is the problem? I called Prentice Hall and got no help from them!  They said it was a computer problem.  This student is an exchange student and she would really any help.  I tried to clean the system and even tried the Optimizer5.2 perfect for the correction of errors in Script, but it didn't work.  Help please!  My only recourse is to backup all files and wipe the disk clean and start again to do a reinstall of all applications.  Any other ideas?  She had the phone since 2005 and the hard drive has only about 30% free space left on 147 GB.

    Hello cobblestone47,

    1. What is the version of the steering drive you use on your computer?

    2. the other users who are able to play the CD using the Director or shockwave player player is

    Player de Macromedia Director is also known as the Shockwave Player. I suggest that you uninstall the Director player and install the latest version of Shockwave player, and check if you have the same problem.

    You can follow the link below to download and install the latest version of Shockwave player:

    http://get.Adobe.com/Shockwave/

    Thank you
    Irfan H, Engineer Support Microsoft Answers. Visit ourMicrosoft answers feedback Forum and let us know what you think.

  • Image of the attribute: file is not found in the list of the packaged files:

    When Build in Webworks already, I still have the following 2 lines in the config.xml file, but it said ' image of the attribute: file is not found in the list of the packaged files.


     

    My full config.xml:


    "xmlns ="http://www.w3.org/ns/widgets "
    xmlns:CDV ="http://cordova.apache.org/ns/1.0" > "
      CarlogPro
      Service and gas logs
      http://Cordova.IO "> XpertLulu"
     
     
     
     
      subdomains of http://xpertlulu.com"="true"/ >
     
     

    Need help!

    Nevermind, I've upgraded v2.0.0.54 to v2.0.0.71 Webworks and it worked.

  • oracle.apps.fnd.framework.OAException: oracle.jbo.NoDefException: Houston-25058: lastpaiddt definition of the attribute type is not found in LoanUpdateVO1

    Hello

    I created a based EO VO in which a column is recovering value per query:

    VO request is:

    SELECT principalEO.LOAN_ID,

    principalEO.LOAN_NUM,

    principalEO.DESCRIPTION,

    principalEO.FROM_DT,

    principalEO.TO_DT,

    principalEO.COMP_ID,

    principalEO.COMPANY_NAME,

    principalEO.PROJECT_ID,

    principalEO.PROJECT_CODE,

    principalEO.PROJECT_NAME,

    principalEO.LOAN_AMT,

    principalEO.LOAN_SANCTIONED_AMT,

    principalEO.LOAN_DISBURS_AMT,

    principalEO.LOAN_PROCESSING_CHARGES,

    principalEO.INTERST_RATE,

    principalEO.INTEREST_AMT,

    principalEO.PRINCIPLE_REPAYMENT,

    principalEO.TDS_RATES,

    principalEO.SYNDICATION_FEES,

    principalEO.SYNDICATION_PAID_TO,

    principalEO.VENDOR_ID,

    principalEO.VENDOR_NAME,

    principalEO.VENDOR_SITE,

    principalEO.INSTITUTION_TYPE,

    principalEO.LOAN_TERM,

    principalEO.LOAN_TYPE,

    principalEO.SECURITY_DET,

    principalEO.REMARKS,

    principalEO.INVOICE_FLAG,

    principalEO.EMI_DATE,

    principalEO.DISBURS_DATE,

    principalEO.ATTRIBUTE4,

    principalEO.ATTRIBUTE5,

    principalEO.CREATED_BY,

    principalEO.CREATION_DATE,

    principalEO.LAST_UPDATE_DATE,

    principalEO.LAST_UPDATED_BY,

    principalEO.LAST_UPDATE_LOGIN,

    principalEO.EMI_AMT,

    principalEO.EMI_AFTER_MONTH,

    (select from_dt in the omx_sec_loan_repay where loan_num = principalEO.Loan_num and paid_amt is null and rownum = 1) AS LAST_PAYMENT_DT

    OF OMX_SEC_LOAN_PRINCIPAL principalEO

    now I have to apply validation, from date should not be before Last_payment_dt

    Controller code I've written is:

    If (pageContext.getParameter ("updateloan")! = null)

    {

    String LoanNum = (String) pageContext.getParameter ("LoanNum");

    OAViewObject vo = (OAViewObject) am.findViewObject ("LoanUpdateVO1");

    Line OARow = (OARow) vo.getCurrentRow ();

    Date FromDt = (Date) row.getAttribute ("FromDt");

    System.out.println ("date is:" + FromDt);

    Date lastpaiddt = (Date) row.getAttribute ("lastpaiddt");

    System.out.println ("date is:" + lastpaiddt);

    }

    When I turn the page, error:

    oracle.apps.fnd.framework.OAException: oracle.jbo.NoDefException: Houston-25058: lastpaiddt definition of the attribute type is not found in LoanUpdateVO1

    at oracle.apps.fnd.framework.webui.OAPageErrorHandler.prepareException (unknown Source)

    at oracle.apps.fnd.framework.webui.OAPageErrorHandler.processErrors (unknown Source)

    at oracle.apps.fnd.framework.webui.OAPageBean.processFormRequest (unknown Source)

    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage (unknown Source)

    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage (unknown Source)

    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage (unknown Source)

    at _OA._jspService(_OA.java:71)

    When I give another deposited instead of lastpaiddt, it works fine...

    Hello

    Looks like the attribute is missing, can you check if the attribute named "lastpaiddt" exists under LoanUpdateVO1?

    Right-click on LoanUpdateVO1 - > properties - > list of attributes - > and check if the missing attribute exists

    Kind regards

    Had

  • Houston-25058: type attribute Definition is not found in

    JDeveloper - Studio Edition Version 12.1.3.0.0

    Migration project 11.1.1.5 ADF - > 11.1.1.7-> 12 c.

    No problems during the migration and everything works fine (apart from a problem of Javascript).

    Now in the 12 c environment, I created a new application (library) and I am facing the slot issue during execution;

    Houston-25058: xxx attribute type Definition is not found in xxxx

    1. I have 3 of VO and all 3 have the same evaluation office, tables and joins etc.

    2. for VO 2 of his works fine, but 1 of the VO throws exceptions.

    3 cross checked EO to VO to PageDef, throughout all the way all the attributes and references exist.

    4 BC4J Tester works fine, no exception for the VO above with NAV and Associations etc.

    Anyone falls on this?

    (CE mark as answer since I resolved the issue and I managed to progress)

    Subramanian

    Thanks for the elaborate response.

    I want to answer all of your questions, but I managed to deal with that, ok. nothing smart or technical, what I did is recreated a new (exactly the same thing until the last attribute of layout) create VO, LIKE, VL and declarative added page, exactly how I did before, that's his work... to be honest I never thought that it will work.

    Now, this behavior triggered a few other questions: -.

    1. I created 2 sets of features exactly the same way and it works and is not another?

    2 can we do something with the new JDeveloper 12 c?

    3. If this type of behavior will happen at the average / towards the end of the development, I can't recreate / restart never time, due to the complexity of the feature?

    Any thoughts?

    See you soon,.

    Saran.

  • Property not found in the object?

    My Document class is an object called Allegheny, which extends MovieClip.

    Within the Allegheny, I set values variable _d static string and _g.

    Allegheny, I call several times in another object called MuniAllegheny.

    In MuniAllegheny, I need to call to use the _d value and the value of _g.

    I can do that if I write:

    muniallegheny_g = Allegheny._g;

    But if I spend Allegheny as a parameter to MuniAllegheny and I try to write:

    muniallegheny_g = thisMuni._g;

    You made them static... If you need to access through the class itself, not an instance of it. Make static, or access it through Allegheny.

  • Not found HttpTransportBasicAuth class;

    I downloaded the ksoap2-j2me-extras - 2.1.2.jar.

    But this jar does not contain the HttpTransportBasicAuth class,

    where I can download jar for the HttpTransportBasicAuth class.

    It's Urgent please help.

    Thank you.

    Nitin

    I resolved myself.

    Just a small error that I do is when I added jar then restart the JDE and when it opens again.

    It works for me.

    Thank you guys.

  • Odd error: "not found in the object handler: #newObject ' (to a sprite object)

    Hello


    I am facing a strange error in the jargon. I'm using Director 11.5 on Windows 7.


    First I rebuild me a tutorial for netConnection to the Director. It worked well.

    Then I added a few extra features and then - a strange error where nothing much has changed, and that worked fine before. Lingo now knows the Manager 'newObject' to the pSprite of sprite! Why?

    Bild

    The code regarding this type of error is a behavior to the button connect. The code is the following:

    global pNetConn
    global gUserList
    property pSprite
    
    on beginSprite (me)    
      pSprite = sprite(me.spriteNum)
      pSprite.cursor = 280  
    end beginSprite
    
    
    
    
    on mouseDown (me)  
      sIch = me.stripSpaces( sprite(3).text ) 
      put "eigener Name ist: "& sIch
      if ((sIch = "") or (sIch = void)) then    
        alert "Bitte geben Sie Ihren eigenen Namen an."     
      else       
        gNameSelbst = sIch    
        if voidP(pNetConn) then
          me.setConnection()
        end if
        me.getUserList()    
        go frame(23)      
      end if  
    end mouseDown
    
    
    
    
    
    on setConnection me  
      pNetConn = pSprite.newObject("NetConnection")  
      pSprite.setCallback(pNetConn,"onStatus",#statusUpdate,me)
      pSprite.setCallback(pNetConn,"clientListChannel",#userListUpdate,me)
        tURL = "rtmp://xxxxxxxx"
      pNetConn.connect(tURL)  
    end setConnection
    
    
    on statusUpdate aArg1, aArg2  
      if (aArg2.code = "NetConnection.Connect.Success") then    
        -- Hier erfolgt später die Sendung des eigenen Videostreams an den Server
      end if  
    end statusUpdate
    
    
    
    
    
    on userListUpdate aArg1, aArg2  
      luserList = aArg2  
      if   (luserList <> void) then    
        put "-----USER-LIST UPDATE------"
        gUserList = []    
        repeat with counter = 0 to luserList.length -2      
          sname = luserList[counter].label
          gUserList.add(sname)  
        end repeat    
      end if  
    end userListUpdate
    
    
    
    on stripSpaces (me, aString)  
      -- clear all spaces from the string
      repeat while offset(SPACE,aString)
        tCharIndex = offset(SPACE,aString)
        delete aString.char[tCharIndex]
      end repeat  
      -- return the string
      return aString  
    end
    


    The code of the tutorial that works is as follows:

    Here the NetConnection instance is built in the exitFrame on - but I already tried this in my new code above without success. Moreover, I intentionally xxx - ed URL ;-) Of course, in the original, there is a correct server address.

    global gNames
    property pCamera
    property pInStream
    property pMicrophone
    property pNetConn
    property pOutStream
    property pSprite
    
    on exitFrame (me)
      if voidP(pNetConn) then
        me.initiateConnection()
      end if  
    end exitFrame
    
    on initiateConnection (me)
      pSprite = sprite(me.spriteNum)
      pNetConn = pSprite.newObject("NetConnection")
      pSprite.setCallback(pNetConn,"onStatus",#myOnStatus,me)
      tURL = "rtmp://xxxxxx"
      pNetConn.connect(tURL)
    end initiateConnection
    
    on initiateStreams (me)
      tCamObj = pSprite.newObject("Camera")
      pCamera = tCamObj.get()
      tMicObj = pSprite.newObject("Microphone")
      pMicrophone = tMicObj.get()
      pOutStream = pSprite.newObject("NetStream",pNetConn)
      pOutStream.attachAudio(pMicrophone)
      pOutStream.attachVideo(pCamera)
      pOutStream.publish(gNames.publishName,"live")
      pInStream = pSprite.newObject("NetStream",pNetConn)
      pInStream.play(gNames.subscribeName)
      pVideoClip = pSprite.getVariable("VideoClip",FALSE)
      pVideoClip.attachVideo(pInStream)  
    end initiateStreams
    
    on endSprite 
      if not( voidP(pOutStream) ) then
        pOutStream.close()
      end if
      if not( voidP(pInStream) ) then
        pInStream.close()
      end if  
      if not( voidP(pNetConn) ) then
        pNetConn.close()
      end if  
    end endSprite
    
    on myOnStatus me, aArg1, aArg2  
      put aArg2.code  
      if (aArg2.code = "NetConnection.Connect.Success") then    
        me.initiateStreams()    
      end if  
    end myOnStatus
    

    Nobody was always the same error? Can someone tell me where the savings? Or is this some sort of bug? I really don't know what could be wrong. I'd appreciate any help!


    Thank you

    Jana

    If you use code such as:

    pSprite.newObject ("whatever")

    then the sprite that it is attached to , you must be Flash - thing will cause an error

  • Definition type attribute not found in CompNameLOV COMPETENCE_CLUSTER

    Hello

    I get the error message like "COMPETENCE_CLUSTER of definition of the attribute type is not found in the CompNameLOV '...

    When I extend the VO LOV and added three transient attributes in this... The entire process well... even the table JDR_PATHS showing the vo seeded has expanded, but changes do not think...

    Please suggest...

    Kind regards

    Praveen

    Hello..

    His view and view Instance value attribute would not put.

  • Definition of OPS of type attribute not found in the original Version, but it's there!

    Hi all,

    I'm new with ofa and I m having a problem when I try to deploy in the dev environment. (this works well in jdevelopment but not in the dev server)

    Error page

    Details of the exception.
    oracle.apps.fnd.framework.OAException: oracle.jbo.NoDefException: Houston-25058: ResponsabilidadId definition of the attribute type is not found in the QuiebresComercialesVO1 to oracle.apps.fnd.framework.webui.OAPageErrorHandler.prepareException(OAPageErrorHandler.java:1247) to oracle.apps.fnd.framework.webui.OAPageBean.renderDocument(OAPageBean.java:3247) to oracle.apps.fnd.framework.webui.OAPageBean.renderDocument(OAPageBean.java:3042) to _OA._jspService(_OA.java:228)

    I checked the VO.xml and the attribute is set as you can see in the next image 2013-07-19_0902 - mayistra library

    I would be grateful if someone can give an idea of what it can be. Is there anything else I can check?

    It's the clumsy version I'm working 2013-07-19_0905 - mayistra library

    Thank you all.

    Hi JulianE.

    Seems good. But strange. Please bounce the average level of once and set the permissions of this file to 7777

    Thank you

    Sandeep

  • taskdef class not found during the generation of code from wsdl using Ant

    I'm getting a class not found error during the generation of the java code from the wsdl file.

    *******************
    CU dmwls (338) $ ant generate wsdl
    BuildFile: build.xml

    ++ BUILD FAILED ++
    ++ file:/ffdt01/resmgt/kul/build.xml:14: taskdef class weblogic.wsee.tools.anttasks.WsdlcTask can not be found ++

    Total time: 1 second
    CU dmwls (339) $ cat - n build.xml
    < default project 'all' = > 1
    2 < name = "bea.home property" value="/opt/bea/wls/8.1sp4" / > "
    "3 < name ="jdk.home property"value =" ${bea.home} / jdk142_05 "/ >
    "4 < name ="weblogic.home property"value =" ${bea.home} / weblogic81 "/ >
    5
    6 < path id = "weblogic.classpath" >
    "7 < fileset dir="${weblogic.home}/server/lib ">
    8 < include name = "*.jar" / >
    9 < / fileset >
    10 < / path >
    11
    12 < taskdef name = "wsdlc.
    13 classname = "weblogic.wsee.tools.anttasks.WsdlcTask"
    14 classpathref = "weblogic.classpath" / > "
    15
    16 < name target = "generate-to-wsdl" >
    17 < wsdlc
    18 srcWsdl="/ffdt01/resmgt/kul/ksr.wsdl.
    19 destJwsDir = ' / ffdt01/resmgt/kul.
    20 destImplDir = ' / ffdt01/resmgt/kul.
    21 classpathref = "${weblogic.classpath}" "
    22 classpath = "${weblogic.classpath}" "
    23 packageName = "examples.webservices.wsdlc" / > "
    24 < / target >
    25 < / project >
    *******************

    I checked this class in the use of weblogic.jar file unzip command but there is no class "WsdlcTask".

    Unzip weblogic.jar-l | grep WsdlcTask - does not result

    I am looking WsdlcTask class in all the jars under BEA_HOME directory using below command but not found in class WsdlcTask.

    CD $BEA_HOME
    To find. -*.jar name-exec unzip {}-l------. grep WsdlcTask - also returned no results


    Some required classes does not appear in my weblogic.jar/jar file or there is something wrong with my build.xml file?

    Help, please.

    Kuldeep

    Hi Kuldeep,

    WSDLC you use in WLS8.1 ehich is not correct... "weblogic.wsee.tools.anttasks.WsdlcTask" the above taskDef is present WLS9.x leave.

    Please use the next task for WLS8.1 (http://download-llnw.oracle.com/docs/cd/E11035_01/wls100/webserv_ref/anttasks.html#wp1075710)

    <>
    WSDL = "WSDLs/MyService.wsdl"
    destDir = "myService/implementation.
    packageName="example.ws2j.service"/ >

    Thank you
    Jay Sensharma
    http://jaysensharma.WordPress.com/webservices/ (WebLogic wonders are here)

    Published by: Jay SenSharma on February 16, 2010 13:30

  • Property named 'name' is not found on the subject: VcVirtualMachine

    Hello

    I'm struggeling with a strange problem.

    I try to get all the VMS in vcenter (s) through sdk like this:

    var sdkConnections = VcPlugin.allSdkConnections;
    for (var i = 0; i < sdkConnections.length; i ++) {}
    var sdkConnection = sdkConnections [i];
    machines virtual var = sdkConnection.getAllVirtualMachines ();
    If (vms.length > 0) {}
    for (var j = 0; j < vms.length; j ++) {}
    var vm = vms [j];

    After that, I try to get the id and the name like this (e.g.) to write in the log example:

    System.log ("--> > > DEBUG - IE '" + vm.id + "'");

    System.log ("--> > > DEBUG-name '" + vm.name + "'");

    but DO NOT several id EXISTS in the vcenter BDD but coming back since the sdk?
    Te is a virtual machine with the id "id-47", which is not in the vpx_vm table
    but another with the id 'id-647' is in this table.
    When I try to get the name (vm.name) of the two I find myself in an exception with the message "property named 'name' is not found on the object: VcVirtualMachine.
    I tried to avoid this and to verify the existence of the property, but without success.
    How well to check the existence of the 'vm.name' without ending up in an error?
    (another question would be: why is the receiving of vm via the sdk which do not exist in vcenter?)
    Thank you!!!
    Chris

    Use try/catch...

    This will allow your code to continue treatment and simply log the errors rather than throw an exception.

    try{
    // your code here....
    }catch(err){
         System.log("Error: "+err);
    }
    
  • Dreamweaver CC 2015 file not found error in mode live view

    Hello, I use windows 7 Enterprise. Recently, I received an error file not found in mode live view when you try to open a file on my local disk.

    Everything works in design mode.

    I see the file on the local drive, so it's obviously there.

    It is the first time that this has happened. Please notify. Thank you.

    Yep, you want to be careful about spaces, special characters and capital letters in the names of files and folders regarding the web.

    Everything must be tiny alpha-numeric, using hyphens or underscores instead of spaces.

  • Class not found in the list of the specified assembly.

    Hi all

    I create a .dll ColdFusion object, but I get the following error message.

    "Class GenerateSQLReport not found in the list of the specified assembly. The assembly containing the class must be provided to the assembly attribute. »

    The process that I follow:

    -Updated the ColdFusion 9.0.1

    -Uninstall .NET integration Service

    -Install the .NET version 9.0.1 integration Service

    -Run the code.

    My Code is: ' < cfobject type = "dotnet" name = "MDBDTable" class = "GenerateSQLReport" (assembly="#expandPath('./GenerateSQLReportDLL.dll') #" > ".

    I got the following StackStrace:

    __________________________________________________________________________________________ ______________________________________________________________________________

    coldfusion.runtime.dotnet.Assembly$ DotNetClassNotFoundException: class GenerateSQLReport not found in the list of the specified assembly.

    at coldfusion.runtime.dotnet.Assembly.generateProxy(Assembly.java:272)

    at coldfusion.runtime.dotnet.Assembly.loadClass(Assembly.java:248)

    at coldfusion.runtime.dotnet.Assembly.loadClass(Assembly.java:223)

    at coldfusion.runtime.dotnet.DotNetProxyFactory.getProxy(DotNetProxyFactory.java:78)

    at coldfusion.runtime.ProxyFactory.getProxy(ProxyFactory.java:65)

    at coldfusion.runtime.CFPage.createObjectProxy(CFPage.java:4949)

    at coldfusion.tagext.lang.ObjectTag.doStartTag(ObjectTag.java:427)

    at coldfusion.runtime.CfJspPage._emptyTcfTag(CfJspPage.java:2722)

    to cfDotNetDll2ecfm375138657.runPage(D:\Projects_Upendra\CodeForTesting\DotNetDll.cfm:2)

    at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:231)

    at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:416)

    at coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65)

    at coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:363)

    at coldfusion.filter.MonitoringFilter.invoke(MonitoringFilter.java:40)

    at coldfusion.filter.PathFilter.invoke(PathFilter.java:87)

    at coldfusion.filter.LicenseFilter.invoke(LicenseFilter.java:27)

    at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:70)

    at coldfusion.filter.BrowserDebugFilter.invoke(BrowserDebugFilter.java:74)

    at coldfusion.filter.ClientScopePersistenceFilter.invoke (ClientScopePersistenceFilter.java:2 8)

    at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)

    at coldfusion.filter.NoCacheFilter.invoke(NoCacheFilter.java:46)

    at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)

    at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)

    at coldfusion.filter.CachingFilter.invoke(CachingFilter.java:53)

    to coldfusion. CfmServlet.service (CfmServlet.java:200)

    at coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:89)

    at jrun.servlet.FilterChain.doFilter(FilterChain.java:86)

    at coldfusion.monitor.event.MonitoringServletFilter.doFilter (MonitoringServletFilter.java:42)

    at coldfusion.bootstrap.BootstrapFilter.doFilter(BootstrapFilter.java:46)

    at jrun.servlet.FilterChain.doFilter(FilterChain.java:94)

    at jrun.servlet.FilterChain.service(FilterChain.java:101)

    at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:106)

    at jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)

    at jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:286)

    at jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:543)

    at jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:203)

    to jrunx.scheduler.ThreadPool$ DownstreamMetrics.invokeRunnable (ThreadPool.java:320)

    to jrunx.scheduler.ThreadPool$ ThreadThrottle.invokeRunnable (ThreadPool.java:428)

    to jrunx.scheduler.ThreadPool$ UpstreamMetrics.invokeRunnable (ThreadPool.java:266)

    at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)

    __________________________________________________________________________________________ ___________________________

    Help, please.

    I'm not very sure of .NET. If I'm missing something please suggest.

    The CF code must include the full path to the class, including any namespace. When you create a c# project in Visual studio, it usually uses the name of the project as"namespace by default". So if your project is named "MyProject" the full path would be:

    Post edited by: == cfSearching == -.

  • Root/CIMV2, MSFT_NetInvalidDriverDependency, 0 x 80041002 - object (WBEM_E_NOT_FOUND) is not found.

    I tried to rebuild WMI, but always with 30 errors

    30469 16:21:35 (0) * WMIDiag v2.1 began Monday, July 9, 2012 at 4:15.
    30470 16:21:35 (0) *.
    30471 16:21:35 (0) * copyright (c) Microsoft Corporation. All rights reserved - July 2007.
    30472 16:21:35 (0) *.
    30473 16:21:35 (0) * this script is not supported under a Microsoft standard support program or service.
    30474 16:21:35 (0) * the script is provided AS IS, without warranty of any kind. Microsoft disclaims any
    30475 16:21:35 (0) * implied warranties, including, without limitation, implied guarantees of marketability
    30476 16:21:35 (0) * or adequacy has a particular use. The entire risk arising out of use or performance
    30477 16:21:35 (0) * scripts and documentation remains with you. In any case, Microsoft, its authors,.
    30478 16:21:35 (0) * or anyone involved in the creation, production or delivery of the script is responsible for
    30479 16:21:35 (0) * damage whatsoever (including, without limitation, damages for loss of business profits,
    30480 16:21:35 (0) * business interruption, loss of business information or any other pecuniary loss) arising out of
    30481 16:21:35 (0) * the use or inability to use the script or documentation, even if Microsoft has been advised
    30482 16:21:35 (0) * of the possibility of such damages.
    30483 16:21:35 (0) *.
    30484 16:21:35 (0) *.
    30485 16:21:35 (0) ** ----------------------------------------------------------------------------------------------------------------------------------
    30486 16:21:35 (0) ** ----------------------------------------------------- WMI REPORT: BEGIN ----------------------------------------------------------
    30487 16:21:35 (0) ** ----------------------------------------------------------------------------------------------------------------------------------
    30488 16:21:35 (0) *.
    30489 16:21:35 (0) ** ----------------------------------------------------------------------------------------------------------------------------------
    30490 16:21:35 (0) * Windows Server 2008 R2 - Service pack 1 - user 64-bit (7601) - "MGATE\ECIADMIN" on the computer "BES".
    30491 16:21:35 (0) ** ----------------------------------------------------------------------------------------------------------------------------------
    30492 16:21:35 (0) ** INFO: Environment: .................................................................................................. 1 ARTICLE (S)!
    30493 16:21:35 (0) * INFO:-online 4 shutdown (s) incorrect possible detected on:
    30494 16:21:35 (0) *-stop on January 19, 2012 23:30:23 (GMT-0).
    30495 16:21:35 (0) *-stop on January 19, 2012 23:50:41 (GMT-0).
    30496 16:21:35 (0) *-stop on February 9, 2012 15:37:35 (GMT-0).
    30497 16:21:35 (0) *-stop on July 7, 2012 00:58:51 (GMT-0).
    30498 16:21:35 (0) *.
    30499 16:21:35 (0) ** System drive: ....................................................................................................... C: (Disk Partition #0 #1).
    30500 16:21:35 (0) ** Drive type: ......................................................................................................... SCSI (virtual disk VMware SCSI Disk Device).
    30501 16:21:35 (0) * there is no missing file of WMI system:... Ok.
    30502 16:21:35 (0) * there is no missing WMI repository files:... Ok.
    30503 16:21:35 (0) * WMI repository state:... MORE LOGIC.
    30504 16:21:35 (0) * AFTER you run WMIDiag:
    30505 16:21:35 (0) * repository WMI has a size of:... 19 MB.
    30506 16:21:35 (0) *-free space on the "C:" drive:... 22250 MB.
    30507 16:21:35 (0) *-INDEX. BTR, 4349952 bytes, 09/07/2012 16:16:50
    30508 16:21:35 (0) *-MAPPING1. CARD, 51804 bytes, 07/09/2012-16:16:50
    30509 16:21:35 (0) *-MAPPING2. CARD, 51804 bytes, 07/09/2012-14:23:20
    30510 16:21:35 (0) *-OBJECTS. DATA, 15515648 bytes, 09/07/2012 16:16:50
    30511 16:21:35 (0) ** ----------------------------------------------------------------------------------------------------------------------------------
    30512 16:21:35 (2)! WARNING: Windows Firewall: .......................................................................................... PEOPLE WITH DISABILITIES.
    30513 16:21:35 (0) ** ----------------------------------------------------------------------------------------------------------------------------------
    30514 16:21:35 (0) ** DCOM Status: ........................................................................................................ Ok.
    30515 16:21:35 (0) * Registry WMI configuration:... Ok.
    30516 16:21:35 (0) * INFO: WMI service has dependents:... 1 SERVICE (S)!
    30517 16:21:35 (0) *-(ICS) (SHAREDACCESS, StartMode = 'Disabled') Internet connection sharing
    30518 16:21:35 (0) *-online if the WMI service is stopped, or the services listed should be stopped as well.
    30519 16:21:35 (0) * note: If the service is marked with a (*), this means that the service application / use WMI, but
    30520 16:21:35 (0) * there is no hard dependency on WMI. However, if the WMI service is stopped.
    30521 16:21:35 (0) * this can prevent the application of service / to work as expected.
    30522 16:21:35 (0) *.
    30523 16:21:35 (0) ** RPCSS service: ...................................................................................................... OK (already begun).
    30524 16:21:35 (0) ** WINMGMT service: .................................................................................................... OK (already begun).
    30525 16:21:35 (0) ** ----------------------------------------------------------------------------------------------------------------------------------
    30526 16:21:35 (0) * for the WMI service DCOM configuration:... Ok.
    30527 16:21:35 (0) * components WMI DCOM registrations:... Ok.
    30528 16:21:35 (0) * records WMI ProgID:... Ok.
    30529 16:21:35 (2)! WARNING: WMI provider DCOM missing registrations for the following providers:... 3 WARNING (S)!
    30530 16:21:35 (0) *-ROOT/SNMP/LOCALHOST, MS_SNMP_REFERENT_EVENT_PROVIDER ({9D5BED16-0765-11D1-AB2C-00C04FD9159E})
    30531 16:21:35 (0) * the provider DLL: "
    30532 16:21:35 (0) *-ROOT/SNMP/LOCALHOST, MS_SNMP_CLASS_PROVIDER ({70426720-F78F-11CF-9151-00AA00A4086C})
    30533 16:21:35 (0) * the provider DLL: "
    30534 16:21:35 (0) *-ROOT/SNMP/LOCALHOST, MS_SNMP_ENCAPSULATED_EVENT_PROVIDER ({19C813AC-FEE7-11D0-AB22-00C04FD9159E})
    30535 16:21:35 (0) * the provider DLL: "
    30536 16:21:35 (0) * => this is a problem because there are still some WMI classes referencing this list of suppliers
    30537 16:21:35 (0) * while the DCOM registration is incorrect or missing. This may be due to:
    30538 16:21:35 (0) *-an uninstall of the software.
    30539 16:21:35 (0) *-a deletion of some data to registry keys.
    30540 16:21:35 (0) *-a corruption of the registry.
    30541 16:21:35 (0) * =>, you can correct the DCOM configuration by:
    30542 16:21:35 (0) *-running "REGSVR32. EXE ' command.
    30543 16:21:35 (0) * note: you can create a list of classes in relation to the WMI provider and the MOF with WMIDiag file.
    30544 16:21:35 (0) * (this list can be built on a WMI Windows similar and functional installation)
    30545 16:21:35 (0) * the following command line must be used:
    30546 16:21:35 (0) * i.e. "WMIDiag CorrelateClassAndProvider.
    30547 16:21:35 (2)! WARNING: The re-registration with REGSVR32. EXE DLL all the of 'C:\WINDOWS\SYSTEM32\WBEM\ '.
    30548 16:21:35 (0) * can not solve the problem as the DLL supporting the WMI classes
    30549 16:21:35 (0) * can be located in a different folder.
    30550 16:21:35 (0) * you must consult the class name to determine the software providing the associated DLL.

    30551 16:21:35 (0) *-online if the software has been uninstalled intentionally, so this information must be
    30552 16:21:35 (0) * deleted of the WMI repository. You can use the "WMIC. EXE' command to remove
    30553 16:21:35 (0) * registration of provider data.
    30554 16:21:35 (0) * i.e. ' WMIC. EXE /NAMESPACE:\\ROOT\SNMP\LOCALHOST path __Win32Provider Where Name = 'MS_SNMP_ENCAPSULATED_EVENT_PROVIDER' DELETE'
    30555 16:21:35 (0) *-online if namespace was ENTIRELY dedicated to the intentionally, uninstalled software
    30556 16:21:35 (0) * the namespace and ALL of its content can be ENTIRELY deleted.
    30557 16:21:35 (0) * i.e. ' WMIC. EXE /NAMESPACE:\\ROOT\SNMP path __NAMESPACE Where Name = 'LOCALHOST' DELETE'
    30558 16:21:35 (0) * - re - install the software.
    30559 16:21:35 (0) *.
    30560 16:21:35 (0) * registrations CIM WMI provider:... Ok.
    30561 16:21:35 (0) * provider WMI CLSID:... Ok.
    30562 16:21:35 (0) * availability EXE/DLL WMI providers:... Ok.
    30563 16:21:35 (0) ** ----------------------------------------------------------------------------------------------------------------------------------
    30564 16:21:35 (0) * INFO: User Account Control (UAC):... PEOPLE WITH DISABILITIES.
    30565 16:21:35 (0) * INFO: filtering Local account:... PERMIT.
    30566 16:21:35 (0) *-online tasks WMI to access WMI information on this computer and that requires remote administration
    30567 16:21:35 (0) * privileges SHOULD use part of the DOMAIN of the Local computer administrators group account
    30568 16:21:35 (0) * to ensure that the privileges are granted. If a Local user account is used for outdoor
    30569 16:21:35 (0) * access, it will be reduced to a simple user (filtered token), even if it is part of the Local Administrators group.
    30570 16:21:35 (0) *.
    30571 16:21:35 (0) * global DCOM security status:... Ok.
    30572 16:21:35 (0) * overall WMI decision:... Ok.
    30573 16:21:35 (0) ** - Started at 'Root' --------------------------------------------------------------------------------------------------------------
    30574 16:21:35 (0) * INFO: SUBSCRIPTION permanent WMI (S):... 1.
    30575 16:21:35 (0) *-ROOT/SUBSCRIPTION, consumption of NTEventLogEventConsumer.Name event log = "SCM".
    30576 16:21:35 (0) * ' select * from MSFT_SCMEventLogEvent'
    30577 16:21:35 (0) *.
    30578 16:21:35 (0) * WMI TIMER method:... NONE.
    30579 16:21:35 (0) * INFO: WMI or requiring a CONFIDENTIALITY of the PACKAGE:... 2 NAMESPACE (S)!
    30580 16:21:35 (0) *-ROOT/CIMV2/SECURITY/MICROSOFTTPM.
    30581 16:21:35 (0) *-ROOT/CIMV2/TERMINALSERVICES.
    30582 16:21:35 (0) * => when connecting remotely, the or listed have the WMI client
    30583 16:21:35 (0) * use an encrypted connection by specifying the level of CONFIDENTIALITY of the PACKET authentication.
    30584 16:21:35 (0) * (RPC_C_AUTHN_LEVEL_PKT_PRIVACY or PktPrivacy flags)
    30585 16:21:35 (0) * i.e. ' WMIC. EXE/node: "NYBES' /AUTHLEVEL:Pktprivacy /NAMESPACE:\\ROOT\CIMV2\TERMINALSERVICES Class __SystemSecurity'
    30586 16:21:35 (0) *.
    30587 16:21:35 (0) * THE WMI MONIKER CONNECTIONS:... Ok.
    30588 16:21:35 (0) ** WMI CONNECTIONS: .................................................................................................... Ok.
    30589 16:21:35 (1). ERROR: WMI GET operation reported errors:... ERROR 32 (S)!
    30590 16:21:35 (0) * - Root/CIMV2, MSFT_NetInvalidDriverDependency, 0 x 80041002 - object (WBEM_E_NOT_FOUND) is not found.
    30591 16:21:35 (0) * MOF registration: "
    30592 16:21:35 (0) * - Root/CIMV2, Win32_OsBaselineProvider, 0 x 80041002 - object (WBEM_E_NOT_FOUND) is not found.
    30593 16:21:35 (0) * MOF registration: "
    30594 16:21:35 (0) * - Root/CIMV2, Win32_OsBaseline, 0 x 80041002 - object (WBEM_E_NOT_FOUND) is not found.
    30595 16:21:35 (0) * MOF registration: "
    30596 16:21:35 (0) * - Root/CIMV2, Win32_DriverVXD, 0 x 80041002 - object (WBEM_E_NOT_FOUND) is not found.
    30597 16:21:35 (0) * MOF registration: "
    30598 16:21:35 (0) * - Root/CIMV2, Win32_PerfFormattedData_BITS_BITSNetUtilization, 0 x 80041002 - object (WBEM_E_NOT_FOUND) is not found.
    30599 16:21:35 (0) * MOF registration: "
    30600 16:21:35 (0) * - Root/CIMV2, Win32_PerfRawData_BITS_BITSNetUtilization, 0 x 80041002 - object (WBEM_E_NOT_FOUND) is not found.
    30601 16:21:35 (0) * MOF registration: "
    30602 16:21:35 (0) * - Root/CIMV2, Win32_PerfFormattedData_Counters_GenericIKEandAuthIP, 0 x 80041002 - object (WBEM_E_NOT_FOUND) is not found.
    30603 16:21:35 (0) * MOF registration: "
    30604 16:21:35 (0) * - Root/CIMV2, Win32_PerfRawData_Counters_GenericIKEandAuthIP, 0 x 80041002 - object (WBEM_E_NOT_FOUND) is not found.
    30605 16:21:35 (0) * MOF registration: "
    30606 16:21:35 (0) * - Root/CIMV2, Win32_PerfFormattedData_Counters_IPsecAuthIPv4, 0 x 80041002 - object (WBEM_E_NOT_FOUND) is not found.
    30607 16:21:35 (0) * MOF registration: "
    30608 16:21:35 (0) * - Root/CIMV2, Win32_PerfRawData_Counters_IPsecAuthIPv4, 0 x 80041002 - object (WBEM_E_NOT_FOUND) is not found.
    30609 16:21:35 (0) * MOF registration: "
    30610 16:21:35 (0) * - Root/CIMV2, Win32_PerfFormattedData_Counters_IPsecAuthIPv6, 0 x 80041002 - object (WBEM_E_NOT_FOUND) is not found.
    30611 16:21:35 (0) * MOF registration: "
    30612 16:21:35 (0) * - Root/CIMV2, Win32_PerfRawData_Counters_IPsecAuthIPv6, 0 x 80041002 - object (WBEM_E_NOT_FOUND) is not found.
    30613 16:21:35 (0) * MOF registration: "
    30614 16:21:35 (0) * - Root/CIMV2, Win32_PerfFormattedData_Counters_IPsecIKEv4, 0 x 80041002 - object (WBEM_E_NOT_FOUND) is not found.
    30615 16:21:35 (0) * MOF registration: "
    30616 16:21:35 (0) * - Root/CIMV2, Win32_PerfRawData_Counters_IPsecIKEv4, 0 x 80041002 - object (WBEM_E_NOT_FOUND) is not found.
    30617 16:21:35 (0) * MOF registration: "
    30618 16:21:35 (0) * - Root/CIMV2, Win32_PerfFormattedData_Counters_IPsecIKEv6, 0 x 80041002 - object (WBEM_E_NOT_FOUND) is not found.
    30619 16:21:35 (0) * MOF registration: "
    30620 16:21:35 (0) * - Root/CIMV2, Win32_PerfRawData_Counters_IPsecIKEv6, 0 x 80041002 - object (WBEM_E_NOT_FOUND) is not found.
    30621 16:21:35 (0) * MOF registration: "
    30622 16:21:35 (0) * - Root/CIMV2, Win32_PerfFormattedData_TermService_TerminalServices, 0 x 80041002 - object (WBEM_E_NOT_FOUND) is not found.
    30623 16:21:35 (0) * MOF registration: "
    30624 16:21:35 (0) * - Root/CIMV2, Win32_PerfRawData_TermService_TerminalServices, 0 x 80041002 - object (WBEM_E_NOT_FOUND) is not found.
    30625 16:21:35 (0) * MOF registration: "
    30626 16:21:35 (0) * - root/WMI, ReserveDisjoinThread, 0 x 80041002 - object (WBEM_E_NOT_FOUND) is not found.
    30627 16:21:35 (0) * MOF registration: "
    30628 16:21:35 (0) * - root/WMI, ReserveLateCount, 0 x 80041002 - object (WBEM_E_NOT_FOUND) is not found.
    30629 16:21:35 (0) * MOF registration: "
    30630 16:21:35 (0) * - root/WMI, ReserveJoinThread, 0 x 80041002 - object (WBEM_E_NOT_FOUND) is not found.
    30631 16:21:35 (0) * MOF registration: "
    30632 16:21:35 (0) * - root/WMI, ReserveDelete, 0 x 80041002 - object (WBEM_E_NOT_FOUND) is not found.
    30633 16:21:35 (0) * MOF registration: "
    30634 16:21:35 (0) * - root/WMI, ReserveBandwidth, 0 x 80041002 - object (WBEM_E_NOT_FOUND) is not found.
    30635 16:21:35 (0) * MOF registration: "
    30636 16:21:35 (0) * - root/WMI, ReserveCreate, 0 x 80041002 - object (WBEM_E_NOT_FOUND) is not found.
    30637 16:21:35 (0) * MOF registration: "
    30638 16:21:35 (0) * - root/WMI, SystemConfig_PhyDisk, 0 x 80041002 - object (WBEM_E_NOT_FOUND) is not found.
    30639 16:21:35 (0) * MOF registration: "
    30640 16:21:35 (0) * - root/WMI, SystemConfig_Video, 0 x 80041002 - object (WBEM_E_NOT_FOUND) is not found.
    30641 16:21:35 (0) * MOF registration: "
    30642 16:21:35 (0) * - root/WMI, SystemConfig_IDEChannel, 0 x 80041002 - object (WBEM_E_NOT_FOUND) is not found.
    30643 16:21:35 (0) * MOF registration: "
    30644 16:21:35 (0) * - root/WMI, SystemConfig_NIC, 0 x 80041002 - object (WBEM_E_NOT_FOUND) is not found.
    30645 16:21:35 (0) * MOF registration: "
    30646 16:21:35 (0) * - root/WMI, SystemConfig_Network, 0 x 80041002 - object (WBEM_E_NOT_FOUND) is not found.
    30647 16:21:35 (0) * MOF registration: "
    30648 16:21:35 (0) * - root/WMI, SystemConfig_CPU, 0 x 80041002 - object (WBEM_E_NOT_FOUND) is not found.
    30649 16:21:35 (0) * MOF registration: "
    30650 16:21:35 (0) * - root/WMI, SystemConfig_LogDisk, 0 x 80041002 - object (WBEM_E_NOT_FOUND) is not found.
    30651 16:21:35 (0) * MOF registration: "
    30652 16:21:35 (0) * - root/WMI, SystemConfig_Power, 0 x 80041002 - object (WBEM_E_NOT_FOUND) is not found.
    30653 16:21:35 (0) * MOF registration: "
    30654 16:21:35 (0) *-online performance when WMI class is missing (for example "Win32_PerfRawData_TermService_TerminalServices"), it is usually due to
    30655 16:21:35 (0) * a lack of refresh of the buffer of the WMI provider class exposing WMI performance counters.
    30656 16:21:35 (0) * you can update the WMI provider class buffer with the following command:
    30657 16:21:35 (0) *.
    30658 16:21:35 (0) * i.e. "WINMGMT. EXE /SYNCPERF'
    30659 16:21:35 (0) *.
    30660 16:21:35 (0) * representations WMI MOF:... Ok.
    30661 16:21:35 (0) * WMI QUALIFIER access operations:... Ok.
    30662 16:21:35 (0) * WMI ENUMERATION operations:... Ok.
    30663 16:21:35 (2)! WARNING: Operation WMI EXECQUERY reported errors:... 1 WARNING (S)!
    30664 16:21:35 (0) *-Root/CIMV2, ' Select * from Win32_USBController' did not return any instance while the instance at LEAST 1.
    30665 16:21:35 (0) *.
    30666 16:21:35 (2)! WARNING: GET the VALUE WMI operation reported errors:... 5 WARNING (S)!
    30667 16:21:35 (0) *-root, example: __EventConsumerProviderCacheControl = @, property: ClearAfter = "00000000000030.000000:000" (expected default = "00000000000500.000000:000").
    30668 16:21:35 (0) *-root, example: __EventProviderCacheControl = @, property: ClearAfter = "00000000000030.000000:000" (expected default = "00000000000500.000000:000").
    30669 16:21:35 (0) *-root, example: __EventSinkCacheControl = @, property: ClearAfter = "00000000000015.000000:000" (expected default = "00000000000230.000000:000").
    30670 16:21:35 (0) *-root, example: __ObjectProviderCacheControl = @, property: ClearAfter = "00000000000030.000000:000" (expected default = "00000000000500.000000:000").
    30671 16:21:35 (0) *-root, example: __PropertyProviderCacheControl = @, property: ClearAfter = "00000000000030.000000:000" (expected default = "00000000000500.000000:000").
    30672 16:21:35 (0) *.
    30673 16:21:35 (0) * WRITE WMI operations:... NOT TESTED.
    30674, 16:21:35 (0) * WMI PUT operations:... NOT TESTED.
    30675 16:21:35 (0) * WMI DELETE operations:... NOT TESTED.
    30676 16:21:35 (0) * the static instances of WMI retrieved:... 1934.
    30677 16:21:35 (0) * WMI dynamic instances retrieved:... 0.
    30678 16:21:35 (0) * WMI instance request cancellations (to limit the performance impact):... 1.
    30679 16:21:35 (0) ** ----------------------------------------------------------------------------------------------------------------------------------
    30680 16:21:35 (0) * number of events in the event log BEFORE run WMIDiag since the last 20 day (s):
    30681 16:21:35 (0) **   DCOM: ............................................................................................................. 0.
    30682 16:21:35 (0) **   WINMGMT: .......................................................................................................... 0.
    30683 16:21:35 (0) **   WMIADAPTER: ....................................................................................................... 0.
    30684 16:21:35 (0) *.
    30685 16:21:35 (0) * number of events AFTER you run WMIDiag additional event log:
    30686 16:21:35 (0) **   DCOM: ............................................................................................................. 0.
    30687 16:21:35 (0) **   WINMGMT: .......................................................................................................... 0.
    30688 16:21:35 (0) **   WMIADAPTER: ....................................................................................................... 0.
    30689 16:21:35 (0) *.
    30690 16:21:35 (0) * 32 error (s) 0 x 80041002 - (WBEM_E_NOT_FOUND) object not found
    30691 16:21:35 (0) *-online this error is usually a WMI error. This WMI error is due to:
    30692 16:21:35 (0) *-a missing definition of WMI class or object.
    30693 16:21:35 (0) * (see any failure of a GET operation, ENUMERATION, EXECQUERY and GET the VALUE).
    30694 16:21:35 (0) * you can correct the missing class definitions by:
    30695 16:21:35 (0) *-the MOF file (s) recompile manually with the command "MOFCOMP .
    30696 16:21:35 (0) * note: you can create a list of classes in relation to the WMI provider and the MOF with WMIDiag file.
    30697 16:21:35 (0) * (this list can be built on a WMI Windows similar and functional installation)
    30698 16:21:35 (0) * the following command line must be used:
    30699 16:21:35 (0) * i.e. "WMIDiag CorrelateClassAndProvider.
    30700 16:21:35 (0) * note: when a WMI class performance class is missing, you can manually resynchronize the performance counters
    30701 16:21:35 (0) * with WMI by starting the ADAP process.
    30702 16:21:35 (0) *-a corruption of WMI repository.
    30703 16:21:35 (0) * in such a case, you must re-run the WMIDiag with the parameter "WriteInRepository.
    30704 16:21:35 (0) * to validate the WMI repository operations.
    30705 16:21:35 (0) * note: make sure THAT you are an administrator with FULL access to ALL WMI of the computer before namespaces
    30706 16:21:35 (0) * the WriteInRepository command. To write temporary data of the root namespace, use:
    30707 16:21:35 (0) * i.e. 'WMIDiag WriteInRepository = Root'
    30708 16:21:35 (0) *-if the WriteInRepository command fails, while an administrator with all access to all namespaces
    30709 16:21:35 (0) * the WMI repository needs to be rebuilt.
    30710 16:21:35 (0) * note: rebuilding the WMI repository is required to locate all MOF files that are needed to rebuild the repository.
    30711 16:21:35 (0) * otherwise, some applications may fail after the reconstruction.
    30712 16:21:35 (0) * this can be achieved with the following command:
    30713 16:21:35 (0) * i.e. "WMIDiag ShowMOFErrors.
    30714 16:21:35 (0) * note: the reconstruction of the repository should be a solution of LAST RESORT and ONLY after execution
    30715 16:21:35 (0) * all patches previously mentioned.

    30716 16:21:35 (2)! WARNING: Static information stored by external applications in the repository will be LOST! (e.g., the SMS inventory)
    30717 16:21:35 (0) *.
    30718 16:21:35 (0) ** ----------------------------------------------------------------------------------------------------------------------------------
    30719 16:21:35 (0) * unexpected, registry keys values incorrect or absent:... 1 KEY (S)!
    30720 16:21:35 (0) * INFO: unexpected registry key value:
    30721 16:21:35 (0) *-current: HKLM\SOFTWARE\Microsoft\WBEM\CIMOM\Logging (REG_SZ)-> 0
    30722 16:21:35 (0) *-expected: HKLM\SOFTWARE\Microsoft\WBEM\CIMOM\Logging (REG_SZ)-> 1
    30723 16:21:35 (0) * from the command line, the configuration of the registry can be corrected with the following command:
    30724 16:21:35 (0) * i.e. ' Reg. Add EXE /v "HKLM\SOFTWARE\Microsoft\WBEM\CIMOM", "Registration" t "REG_SZ" d '1' f'
    30725 16:21:35 (0) *.
    30726 16:21:35 (0) ** ----------------------------------------------------------------------------------------------------------------------------------
    30727 16:21:35 (0) ** ----------------------------------------------------------------------------------------------------------------------------------
    30728 16:21:35 (0) ** ----------------------------------------------------------------------------------------------------------------------------------
    30729 16:21:35 (0) ** ----------------------------------------------------------------------------------------------------------------------------------
    30730 16:21:35 (0) *.
    30731 16:21:35 (0) ** ----------------------------------------------------------------------------------------------------------------------------------
    30732 16:21:35 (0) ** ------------------------------------------------------ WMI REPORT: END -----------------------------------------------------------
    30733 16:21:35 (0) ** ----------------------------------------------------------------------------------------------------------------------------------
    30734 16:21:35 (0) *.
    30735 16:21:35 (0) * ERROR: detected WMIDiag to problems that could prevent WMI works properly!  Check ' C:\USERS\ECIADMIN\APPDATA\LOCAL\TEMP\WMIDIAG-V2.1_2K8R2. SRV. SP1.64_NYBES_2012.07.09_16.15.16.log' for more details.
    30736 16:21:35 (0) *.
    30737 16:21:35 (0) * WMIDiag v2.1 ended Monday, July 9, 2012 at 16:21 (s: 1 W:79 E:38).

    Hi Jimmy Wang ,

     

     

    I wish you post your question in the TechNet Forums because it caters to an audience of professionals .

    To do this, you must refer to the below mentioned link.

    http://social.technet.Microsoft.com/forums/en-us/categories/

     

    Hope this helps!

     

Maybe you are looking for