PdhEnumObjects returns corrupted list

In my PC I have a graphics card of type NVIDIA Quadro NVS 295. When I have installed the latest driver from Windows Update or from NVIDIA website, then NVIDIA driver also installed "NVIDIA WMI 2.16.0". This tools breaks the Windows API PdhEnumObjects.
NVIDIA WMI registers performance counters.
The Windows API PdhEnumObjects returns a list of performance counter objects. The list is a TCHAR buffer with all the object names. The end of the list is recognized by an empty string.
When NVIDIA WMI 2.16.0 is installed PdhEnumObjects returns a list of counter objects, but in the middle of the list there is an empty string, so all programs detect that as the end of the list.
This bug not only breaks PdhEnumObjects but also PdhBrowseCounters. PdhBrowseCounters is for example used by the Windows Performance Monitor.
This is a bug in the NVIDIA tool, but I think Windows should also handle that better and disallow registration of performance counter objects with an empty name - or exclude them from PdhEnumObjects.
Is any one reading that from Microsoft and could please file that as a bug!?
Regards, Werner Henze

This is a community forum. Emails are entirely out of the hands of the people who participate, we can't even see your email. You should return to the forum to see replies when you post in the LiveCycle Assembler forum which is here http://forums.adobe.com/community/livecycle/livecycle_modules_and_development_tools/assemb ler

Similar Messages

  • Pl/sql web service returning a list of results

    I am able to publish a pl/sql package as a web service that returns a single result. However, when I try to return a list of results, I get an error in jdeveloper when I select the package and invoke publish as web service.
    I use a simple pl/sql package:
    create type longcredit_obj as object (
    credit varchar2(200),
    parlrepid number(6),
    mbrid number(6),
    rdgid number(6))
    create type longcredit_list as table of longcredit_obj
    create or replace package longcredit_pck as
    function get_longcredit (initials in varchar2) return longcredit_list;
    end longcredit_pck;
    create or replace package body longcredit_pck as
    function get_longcredit (
    initials in varchar2) return longcredit_list
    as
    i integer;
    list longcredit_list;
    cursor c_credit is
    select a.credit, a.parlrepid, a.mbrid, a.rdgid
    from member_credits_test_vw a
    where upper(init) = upper(initials);
    begin
    list := longcredit_list();
    for rec in c_credit
    loop
    i:= list.last;
    list(i) := longcredit_obj(null, null, null, null);
    list(i).credit := rec.credit;
    list(i).parlrepid := rec.parlrepid;
    list(i).mbrid := rec.mbrid;
    list(i).rdgid := rec.rdgid;
    end loop;
    return list;
    end get_longcredit;
    end longcredit_pck;
    Is this a feature that is available?
    Any suggestions are appreciated.
    Thank you in advance.
    Carmen.
    I am running jdeveloper 10.1.3.2.0 and database v. 10.1.0.4.0.

    Hi Steffen,
    I did manage to get it to work by doing the following:
    drop type longcredit_list
    drop type longcredit_obj
    create type longcredit_obj as object
    (credit varchar2(200),
    parlrepid number(6),
    mbrid number(6),
    rdgid number(6))
    create type longcredit_list as table of longcredit_obj
    create or replace package longcredit_pck as
    function get_longcredit(initials in varchar2) return longcredit_list;
    end longcredit_pck;
    create or replace package body longcredit_pck as
    function get_longcredit(initials in varchar2) return longcredit_list
    as
    v_longcredit_obj longcredit_obj:=longcredit_obj(null,null,null,null);
    v_longcredit_list longcredit_list:=longcredit_list();
    i number:=1;
    cursor getlist is
    select distinct a.credit, a.parlrepid, a.mbrid, a.rdgid
    from member_credits_test_vw a
    where upper(init) = upper(initials)
    order by a.parlrepid;
    begin
    for rec in getlist loop
    v_longcredit_obj.credit := rec.credit;
    v_longcredit_obj.parlrepid := rec.parlrepid;
    v_longcredit_obj.mbrid := rec.mbrid;
    v_longcredit_obj.rdgid := rec.rdgid;
    v_longcredit_list.extend;
    v_longcredit_list(i):=v_longcredit_obj;
    i:=i+1;
    end loop;
    return v_longcredit_list;
    end get_longcredit;
    end longcredit_pck;
    Also, before deploying, in jdeveloper, in the deploy file, I select the property filters under web-inf\classes and check all the classes that are unchecked (see thread id 505217).
    Also, the database I'm using now is v. 10.2.0.3.0.
    Thanks for your suggestion!
    Carmen.

  • Return multiple lists at once...

    Hi all,
    I was wondering if there was a good way to return two lists of strings at once. To my knowledge, theres no such thing as a list array. Is there a better way than adding two list objects to another list and returning the new list (which contains two lists of strings)? Thanks for any info.
    - Leon

    Another way, could be to pass one (or both) of the lists as method arguments.
    e.g....
    List list1 = new ArrayList();
    List list2 = new ArrayList();
    myMethod(list1, list2);
    public void myMethod(List list1, List list2) {
      if (list1 == null || list2 == null) return;
      list1.add(...);
      list1.add(...);
      list2.add(...);
    }You'll have to decide which way is suitable and if you do indeed need to
    return two Lists from your method.

  • How to return a list of class from a package

    Hi,
    I'm trying to create a RPG game with 50 characters. There will be a superclass, and each character is a subclass that extends from the superclass. Each will have unique abilities that will be functions. These classes will be thrown into a package.
    I would like to know the code for returning the list of classes in that package. That way, I can present them as a list for the player to choose just a handful of characters to start out with.
    Thanks in advance         

    Hi u can use the this class
    flash.utils.describeType;
    Regards
    Sumit Agrawal

  • Applescript button returned of list

    Hi
    Here is my script:
    set firstList to {"Sincronizza proprietà avanzate", "Escludi proprietà avanzate"}
    set listchoice1 to choose from list firstList with prompt "Le proprietà avanzate di una cartella sono l'icona della cartella, la posizione degli elementii al suo interno e l'icona delle cartelle al suo interno." with title "Fai una selezione" without multiple selections allowed
    At the end of the list there are two buttons, "Ok" and "Cancel", if I select "Ok" it goes ahed, if I select "Cancel" it still goes ahed.
    Instead I want that if the button "Cancel" is selected, regardless of the choice made, the application must close.
    How can I do that?

    Returend result from choose from list
    Result
    If the user clicks the OK button, returns a list of the chosen number and/or text items; if empty selection is allowed and nothing is selected, returns an empty list ({}). If the user clicks the Cancel button, returns false
    So check to see if the result returned is false and if it is exit.
    Something like (there are other ways to do this)
    if listchoice1 is false then
         tell me to quit
    end

  • I ordered the new Iphone 6 and it will ship on 10/31, on 10/15 I completed the paperwork to return my iphone 4 8GB, but it appears when my paperwork was emailed to me and I didn't notice until today.  It has my return phone listed as an iphone4 16GB...is

    I ordered the new Iphone 6 and it will ship on 10/31, on 10/15 I completed the paperwork to return my iphone 4 8GB, but it appears when my paperwork was emailed to me and I didn't notice until today.  It has my return phone listed as an iphone4 16GB...is this going to be an issue?  I was quoted a trade in value of $200 and need to apply this to my iphone 6, if the trade in is not going to be $200 I need to cancel.  I did call the verizon store today and the woman told me it should be no problem, but I keep hearing horror stories about this trade in program and I need to be sure.

    susan522,
    Congratulations on the purchase of your new iPhone 6. Ordering a new device can be very exciting and we understand wanting to be able to get your hand on it as soon as possible. With the trade in program the device that is being returned should indeed match what was selected at the time the trade in was processed. What we can have you do is reach out to our trade in team to see if this will cause any problems with the amount you receive once you turn in the iPhone 4. You can reach them here http://vz.to/1pJQcUb by clicking in the "How do I contact you" section. It will allow you to send an email to the team that handles the trade in requests personally.
    CandiceH_VZW
    Follow us on Twitter at @VZWSupport

  • How to call a procdure that will return me list of values(JSF,ADF BC)

    hi all,
    any one can help me how to call a procedure that will return me list of value with using adf and jsf

    I did this with a LoginModule that returned a list of user roles. Below is the Java call
    stmt = conn.prepareCall(authquery);
            stmt.registerOutParameter(1, OracleTypes.CURSOR);
            stmt.setString(2,username);
            stmt.setString(3,new String(password));
            // realm is null if not set
            stmt.setString(4,_application_realm);
            stmt.execute();
            rolesResultSet = (ResultSet)stmt.getObject(1); 
            stmt.close();authquery is the name of a procedure that returned a ref Cursor
    CREATE OR REPLACE PACKAGE "DBPROCLM" IS
      TYPE principal_ref IS REF CURSOR;
      function get_user_authentication(p_username in varchar2, p_password in varchar2, p_realm varchar2) return principal_ref;
    END;
    CREATE OR REPLACE PACKAGE BODY "DBPROCLM" IS
      FUNCTION get_user_authentication (p_username in varchar2, p_password in varchar2, p_realm varchar2)
      RETURN principal_ref
      AS
        var_username varchar2(100);
        var_userid number(10);
        var_password varchar2(100);
        role_cursor principal_ref;
        FAILED_AUTHENTICATION exception;
      BEGIN
        select userid, username, password into var_userid, var_username, var_password from sec_users where username = p_username;
        if (var_password = p_password) then
          begin
            if (p_realm is null) then
              open role_cursor for
                select rolename from user_roles_view where userid = var_userid;
            else
              open role_cursor for
                select rolename from user_roles_view where userid = var_userid and realm=p_realm;
            end if; -- p_realm check
          end;
          -- if password doesn't match, raise Excpetion for LM to
          -- abort the authentication process
        else raise FAILED_AUTHENTICATION;
        end if;
        RETURN role_cursor;
      END get_user_authentication;
    END;You only ned to expose the call to teh procedure in a method (e.g. on ADF BC Application Module) and create a method binding for it.
    Frank

  • How to return a list of generic type

    I can create a method that takes a Class as parameter and return the same type:
    public <T> T getSomthing(Class<T> c) throws Exception {
            return c.newInstance();
    }My question is, can I modify this method to return a List of the same type as input class c? If so, how?

    Hi,
    import java.util.ArrayList;
    import java.util.List;
    public class ReturnList {
        @SuppressWarnings("unchecked")
        public <T> List<T> getList() {
         return new ArrayList();
    }Piet

  • Playin a song in Music cannot return to List of Songs....Why Not

    Playin a song in Music cannot return to List of Songs....Why Not

    Hi again Bob,
    I believe I've found the feature you were speaking about now. Information on the "In the Store" feature of iTunes can be found here:
    Apple - iTunes - Inside iTunes - Using In the Store from within your iTunes Library.
    http://www.apple.com/itunes/inside-itunes/2013/01/using-in-the-store-from-within -your-itunes-library.html
    Thanks for using the Apple Support Communities. Have a good one!
    -Braden

  • How to search for the email with attachments in iphone which should return the list of mails with attachments?

    Hi am new to iphone programming,in the app i want the emails which are having the attachments to show when we search for particular email sent by others in a list which should return the content of the attachment.can any one help me to solve this thanks in advance.

    If you received character strings' variable value such as '56,34',
    then you can get it as follows.
    where regexp_instr( '56,34' , '(^|,)('||t.catid||')(,|$)') >= 1
    Ex)
    with
    test_param as
    (select '56' param from dual union all
    select '34' from dual union all
    select '56,34' from dual union all
    select '5,344' from dual
    ,test_data as
    (select 5 catid from dual union all
    select 3 from dual union all
    select 56 from dual union all
    select 34 from dual union all
    select 566 from dual union all
    select 344 from dual
    /* End of Data */
    select p.param, t.catid
    from test_data t, test_param p
    where regexp_instr( p.param, '(^|,)('||t.catid||')(,|$)') >= 1
    PARAM      CATID
    56            56
    34            34
    56,34         56
    56,34         34
    5,344          5
    5,344        344

  • ServletFileUpload.parseRequest return empty list in Struts 1.3?

    I used ServletFileUpload.parseRequest(request) to get my list of items, with Struts 1.3, JBoss 4.2.2GA(migrated from JBoss 4.0.5GA) I am using JDK 1.5, on myEclipse 6.6 ( migrated from myEclipse 5.5.1GA).
    My file upload application used to work and ServletFileUpload.parseRequest(request) used to return non empty results as a List<FileItem>. I am not sure ( that's the frustrating part) what has changed, but now I am getting a empty list!
    I have switched to previous version of JBoss 4.0.5.GA, and myEclipse 5.5.GA and still it didn't work. I know what I need to have for this to work, i.e. :
    JSTL tag in JSP:
    <html:form enctype="multipart/form-data"....>
    <html:file styleId="uploadFile" property="uploadFile" size="40" />
    My FormBean has uploadFile as FormFile and getter and setter for it.
    I wrote a Utility class to include this apache commons fileupload API and my action class calls the Util class.
    The Util class looks like this:
    DiskFileItemFactory factory = new DiskFileItemFactory();
    ServletFileUpload upload = new ServletFileUpload(factory);
    List<FileItem> items = (List<FileItem>) upload.parseRequest(request);
    Like I said, items used to return non-empty results and I was uploading file just fine. I am using Struts 1.3, Spring 2.0, which hasn't changed. And even though my myEclipse and JBoss version changed, I did revert back to the previous version just to test them and still am getting empty list.
    I am pulling my hair out on this, I'd really appreciate any input and if you need more info, I'd be happy to replenish them!
    Thanks in advance!

    The current release BEA Workshop 3.2 (build 569), does not bundle Struts 1.3.5 and is also not aware of Struts 1.3 release.
    However, this should not stop you from manually importing the Struts 1.3 libraries or samples into Workshop.
    Preferences | Workshop Studio Facet Libraries | Struts Libraries, is used by the New Web app and Project Facet wizard to import the libraries on creation. Instead you can manually copy/overwrite Struts 1.3 libraries in your existing Struts project.We will keep you posted on the 1.3 support release.

  • Function to return a list of sub-class elements

    Hi all
    I'm trying to write a function using templates which takes a list and returns a sub list of a given type.something like shown below:
    static <E, T> List<E> get_specific_elements(Collection<T> elements) { //assumes E extends T
              List<E> specific_elements= new ArrayList<E>();
              for (T element : elements)
    line 4:               if (element instanceof E)
                        specific_elements.add((E)element);
              return specific_elements;
         }but it gives me at line 4
    Cannot perform instanceof check against type parameter E. Use instead its erasure Object
          since generic type information will be erased at runtimeso is there a way to fix it or any other alternative to make it work.
    thanks
    Sree
    Edited by: sreecs on Nov 5, 2008 10:03 PM
    Edited by: sreecs on Nov 5, 2008 10:04 PM

    In your code, there is no way for the runtime to know what E is. The solution is to tell it.
    static <E extends T, T> List<E> get_specific_elements(Class<E> subtype, Collection<T> elements) {
        List<E> specificElements= new ArrayList<E>();
        for (T element : elements) {
            if (subtype.isInstance(element)) {
                specificElements.add(subtype.cast(element));
        return specificElements;
    }Bruce

  • Return to List Processing From Business Object Method CTREQUEST.Display

    I have a simple program which displays selected TRKORR (Transport/Correction) numbers in a list on the screen. I want to be able to double click on the number and inspect the contents of these items. 
    The program is not pretty - its for my use only.
    Anyway, the code below is tucked at the end of my program, and it works fine - double clicking will display the request. .
    FORM SHOWCTS  USING  P_REQ.
      DATA : ThisReq      TYPE SWC_OBJECT.
      DATA : ReqObjectKey Like SWOTOBJID-OBJKEY .
      SWC_CONTAINER        REQCONTAINER.
      SWC_CREATE_CONTAINER REQCONTAINER.
      move p_req to ReqObjectKey .
      SWC_CREATE_OBJECT ThisReq 'CTREQUEST' ReqObjectKey .
      SWC_CALL_METHOD   ThisReq 'Display'   ReqContainer .
    ENDFORM.
    AT LINE-SELECTION .
      data l_req type TRKORR .
      move sy-lisel+29(20) to l_req . CONDENSE l_req NO-GAPS .
      perform showcts using l_req .
    The problem is, when I exit from the CT Request, the program EXITs  . The desired behavior would be to return to my list processing.
    How can I return to my list upon exiting the Request display?
    Thanks...
    ...Mike

    Hi,
    Try command LEAVE TO SCREEN 0 instead of EXIT.
    Thanks.
    Ravi

  • MDX Distinct() not returning unique list of tuples

    Environment
    Server version 9.2.0.2
    BSO database
    essmsh client
    Behavior
    Using Distinct on a Static List of Product members
    Distinct( { [ABC], [DEF], [ABC], [GHI] } )
    results in
    { [ABC], [DEF], [GHI] }
    as I expected.
    In a hierarchy where ABC and DEF are also shared members in alternate hierarchies
    [Product].levels(0).Members
    results in
    { [ABC], [DEF], [ABC*], [DEF*], [GHI] }
    where the (*) members are the shared instances.
    Applying the Distinct function
    Distinct( [Product].levels(0).Members )
    results in
    { [ABC], [DEF], [ABC*], [DEF*], [GHI] }
    which is NOT what I expected.
    Q1) Any insight as to why Distinct is behaving in this fashion?
    Q2) How can I get a unique list of members from a function that returns a set of non-unique tuples?
    Thanks in advance.
    George

    Hi,
    Are you telling that filterdup is case sensitive ? if that is your problem why not try downase / upcase while
    storing to the list and then try filterdup.
    Thanks,
    Balu

  • Edit in PS returns "corrupted" image to LR

    I am importing a RAW file in LR, cropping the image, making some minor adjustments and then Editing in PS to clone out an extraneous arm left over from the crop. My technique in PS is to copy the background layer and do all the cloning on the background copy. Other than the simple clone, there are no other changes in PS. I save the file in PS and return to LR.
    Back in LR, the edited image is significantly brighter than the original image.
    I hand carried the file to my friend's house and duplicated the above steps on his computer (we are both running Windows. I'm using Vista 64b and he's using Windows 7 64b). On his system, when we returned to LR the image looked identical with the lone exception being the cloned out arm. I returned to my house and repeated the experiment, expecting the same results. To my dismay, when I returned to LR the image was once again brighter. The only variance between our techniques is that he used a blank layer to clone out the arm, whereas I copied the background layer to perform the cloning.
    Both my friend and I are using LR 3.6.
    I've been wrestling with this problem for several weeks; it seems to occur randomly, that is sometimes the return to LR is normal, but occasionally I get the corrupted bright image.
    Any thoughts or suggestions would be greatly appreciated.
    Thanks in advance.
    Steve

    Although I got 82 Views on my problem description, disiappointedly, I got no Replies. I just repeated my exercise with a virgin RAW file.
    Copied the unaltered CR2 file to my desktop.
    Imported the file using ADD (no DNG conversion).
    Made some minor LR adjustments.
    Edited in PS.
    Copied the Background Layer and Cloned out a person's arm
    Saved the file in PS and returned to LR.
    Upon returning to LR my image was significantly lighter.
    I am using ProPhoto in both LR and PS.
    Steve

Maybe you are looking for

  • Interfacing with Gentran system

    Hi All,             We have a set up where in SAP interacts with the GENTRAN system both in case of EDI 850 as well as EDI 810. We are using EDI 810 (outbound) for sending the normal (f2) invoices to customer . We also have data maps created which GE

  • How do I remove apps from app store "not on this iPhone" list on iPhone 4 using ios 6

    I want to remove many of the apps listed in the app store of my iPhone 4 under "apps no longer on this iPhone." I have ios 6.0.1. I don't ever want to use these apps again. They are gone from the iPhone and my iTunes, but are still listed on the iPho

  • CANT PREVIEW FLASH MOVIE???

    i created a simple flash movie...but when i tried to plug it into my web page it would not allow me to preview it in the browser....PLEASE NOTE: i already set my browser to "ROSETTA" but still no luck..what is the problem... also i when i saved the f

  • Cannot Update to Reader XI 11.0.05 in Win8.1

    I have tried repeatedly to do the automatic update to Reader XI 11.0.05 in Win 8.1 and it fails each time with a RunScript error.  I have tried the suggested Uninstall and Reinstall 11.0.04 but still get the RunScript error on the update.  If you wou

  • Displaying Currency using SQL function

    I need to display amount with decimal point and 2 zeros when there are none . For eg $18 should be displayed as 18.00 .... Which sql function should be used to do this. Also is there any way to display Amount with commas . For eg 1800000 should be di