Registry-based discovery does not show non key property value

Hi,
Discovered Inventory shows instances of my new class correctly, but the non key property ServerType appears but has no value. I have confirmed each instance does have the registry value populated. What can I do?
I see the following Event 31876 on one of the clients:
Data item returned no information for parameter '$Data/Values/ServerType$'
 This usually indicates that the query is incorrect.
Detailed Background:
My custom application is made of 8 different computer roles.
HKLM\SOFTWARE\Vendor\Appname exists = true indicates an instance of my app.
HKLM\SOFTWARE\Vendor\Appname\ServerType indicates the actual server role.
I want an initial hosted class (VendorServer) based on Microsoft.Windows.Computer base class to contain all server roles.
Then I will create 8 hosted classes (VendorServerRoleA, VendorServerRoleB, etc) for each server role based on the initial hosted class (VendorServer).
My discovery for VendorServer class created instances, and I see ServerType as a property in Discovered Inventory, but it is blank for all instances.  Should I expect to see ServerType populated where I mapped it as follows:
Name =
$MPElement[Name="MPName.VendorServer"]/ServerType$
Value =
$Data/Values/ServerType$
Does $MPElement need to reference the discovery object instead of the class object (which it currently does)?
I started with a blank MP and then create the new VendorServer class based on Microsoft.Windows.ComputerRole and added the new Property, ServerType as a non key property.
The discovery targets Microsoft.Windows.Computers.  Is it ok to have the discover target one class and the VendorServer class have a different base class?
My build event was simply if HKLM\SOFTWARE\Vendor\Appname exists
I am hesitant to proceed to create my VendorServerRoleA class based on HKLM\SOFTWARE\Vendor\Appname\ServerType=AAA until what I have built so far works completely, unless it is not expected to do so.
A related question.  Once I have classes for each server role, can I target monitorA at multiple classes, or do I need to create a new monitor for each class?
This authoring learning curve is so steep as I am sure many of you already know.  MUCH thanks for help...

<ManagementPack ContentReadable="true" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <Manifest>
    <Identity>
      <ID>Thales.IFS.Subsystem.Discovery.Monitoring.ManagementPack</ID>
      <Version>1.1.1.1</Version>
    </Identity>
    <Name>Thales.IFS.Subsystem.Discovery.Monitoring.ManagementPack</Name>
    <References>
      <Reference Alias="SC">
        <ID>Microsoft.SystemCenter.Library</ID>
        <Version>6.0.6278.0</Version>
        <PublicKeyToken>31bf3856ad364e35</PublicKeyToken>
      </Reference>
      <Reference Alias="Windows">
        <ID>Microsoft.Windows.Library</ID>
        <Version>6.0.6278.0</Version>
        <PublicKeyToken>31bf3856ad364e35</PublicKeyToken>
      </Reference>
      <Reference Alias="Health">
        <ID>System.Health.Library</ID>
        <Version>6.0.6278.0</Version>
        <PublicKeyToken>31bf3856ad364e35</PublicKeyToken>
      </Reference>
      <Reference Alias="System">
        <ID>System.Library</ID>
        <Version>6.0.6278.0</Version>
        <PublicKeyToken>31bf3856ad364e35</PublicKeyToken>
      </Reference>
    </References>
  </Manifest>
  <TypeDefinitions>
    <EntityTypes>
      <ClassTypes>
        <ClassType ID="Thales.IFS.Subsystem.Discovery.Monitoring.ManagementPack.IFSSubsystemServer" Accessibility="Internal" Abstract="false" Base="Windows!Microsoft.Windows.ComputerRole" Hosted="true" Singleton="false">
          <Property ID="ServerType" Type="string" Key="false" CaseSensitive="false" Length="256" MinLength="0" />
        </ClassType>
        <ClassType ID="Thales.IFS.Subsystem.Discovery.Monitoring.ManagementPack.IFSSubsystemServerCDC" Accessibility="Internal" Abstract="false" Base="Thales.IFS.Subsystem.Discovery.Monitoring.ManagementPack.IFSSubsystemServer" Hosted="true"
Singleton="false" />
      </ClassTypes>
    </EntityTypes>
  </TypeDefinitions>
  <Monitoring>
    <Discoveries>
      <Discovery ID="Thales.IFS.Subsystem.Discovery.Monitoring.ManagementPack.DiscoverIFSSubsystemServer" Enabled="true" Target="Windows!Microsoft.Windows.Computer" ConfirmDelivery="false" Remotable="true" Priority="Normal">
        <Category>Discovery</Category>
        <DiscoveryTypes>
          <DiscoveryClass TypeID="Thales.IFS.Subsystem.Discovery.Monitoring.ManagementPack.IFSSubsystemServer" />
        </DiscoveryTypes>
        <DataSource ID="DS" TypeID="Windows!Microsoft.Windows.FilteredRegistryDiscoveryProvider">
          <ComputerName>$Target/Property[Type="Windows!Microsoft.Windows.Computer"]/NetworkName$</ComputerName>
          <RegistryAttributeDefinitions>
            <RegistryAttributeDefinition>
              <AttributeName>KeyExists</AttributeName>
              <Path>SOFTWARE\Thales\IFSBOSystem</Path>
              <PathType>0</PathType>
              <AttributeType>0</AttributeType>
            </RegistryAttributeDefinition>
          </RegistryAttributeDefinitions>
          <Frequency>300</Frequency>
          <ClassId>$MPElement[Name="Thales.IFS.Subsystem.Discovery.Monitoring.ManagementPack.IFSSubsystemServer"]$</ClassId>
          <InstanceSettings>
            <Settings>
              <Setting>
                <Name>$MPElement[Name="Windows!Microsoft.Windows.Computer"]/PrincipalName$</Name>
                <Value>$Target/Property[Type="Windows!Microsoft.Windows.Computer"]/PrincipalName$</Value>
              </Setting>
              <Setting>
                <Name>$MPElement[Name="Thales.IFS.Subsystem.Discovery.Monitoring.ManagementPack.IFSSubsystemServer"]/ServerType$</Name>
                <Value>$Data/Values/ServerType$</Value>
              </Setting>
              <Setting>
                <Name>$MPElement[Name="System!System.Entity"]/DisplayName$</Name>
                <Value>$Target/Property[Type="Windows!Microsoft.Windows.Computer"]/PrincipalName$</Value>
              </Setting>
            </Settings>
          </InstanceSettings>
          <Expression>
            <SimpleExpression>
              <ValueExpression>
                <XPathQuery Type="String">Values/KeyExists</XPathQuery>
              </ValueExpression>
              <Operator>Equal</Operator>
              <ValueExpression>
                <Value Type="String">true</Value>
              </ValueExpression>
            </SimpleExpression>
          </Expression>
        </DataSource>
      </Discovery>
      <Discovery ID="Thales.IFS.Subsystem.Discovery.Monitoring.ManagementPack.DiscoverIFSSubsystemServerCDC" Enabled="true" Target="Thales.IFS.Subsystem.Discovery.Monitoring.ManagementPack.IFSSubsystemServer" ConfirmDelivery="false" Remotable="true"
Priority="Normal">
        <Category>Discovery</Category>
        <DiscoveryTypes>
          <DiscoveryClass TypeID="Thales.IFS.Subsystem.Discovery.Monitoring.ManagementPack.IFSSubsystemServerCDC" />
        </DiscoveryTypes>
        <DataSource ID="DS" TypeID="Windows!Microsoft.Windows.FilteredRegistryDiscoveryProvider">
          <ComputerName>$Target/Host/Property[Type="Windows!Microsoft.Windows.Computer"]/NetworkName$</ComputerName>
          <RegistryAttributeDefinitions>
            <RegistryAttributeDefinition>
              <AttributeName>ServerTypeCDCTrue</AttributeName>
              <Path>SOFTWARE\Thales\IFSBOSystem\ServerType</Path>
              <PathType>1</PathType>
              <AttributeType>1</AttributeType>
            </RegistryAttributeDefinition>
          </RegistryAttributeDefinitions>
          <Frequency>300</Frequency>
          <ClassId>$MPElement[Name="Thales.IFS.Subsystem.Discovery.Monitoring.ManagementPack.IFSSubsystemServerCDC"]$</ClassId>
          <InstanceSettings>
            <Settings>
              <Setting>
                <Name>$MPElement[Name="Windows!Microsoft.Windows.Computer"]/PrincipalName$</Name>
                <Value>$Target/Host/Property[Type="Windows!Microsoft.Windows.Computer"]/PrincipalName$</Value>
              </Setting>
              <Setting>
                <Name>$MPElement[Name="Thales.IFS.Subsystem.Discovery.Monitoring.ManagementPack.IFSSubsystemServer"]/ServerType$</Name>
                <Value>$Data/Values/ServerType$</Value>
              </Setting>
              <Setting>
                <Name>$MPElement[Name="System!System.Entity"]/DisplayName$</Name>
                <Value>$Target/Host/Property[Type="Windows!Microsoft.Windows.Computer"]/PrincipalName$</Value>
              </Setting>
            </Settings>
          </InstanceSettings>
          <Expression>
            <SimpleExpression>
              <ValueExpression>
                <XPathQuery Type="String">Values/ServerTypeCDCTrue</XPathQuery>
              </ValueExpression>
              <Operator>Equal</Operator>
              <ValueExpression>
                <Value Type="String">CDC</Value>
              </ValueExpression>
            </SimpleExpression>
          </Expression>
        </DataSource>
      </Discovery>
    </Discoveries>
  </Monitoring>
  <LanguagePacks>
    <LanguagePack ID="ENU" IsDefault="true">
      <DisplayStrings>
        <DisplayString ElementID="Thales.IFS.Subsystem.Discovery.Monitoring.ManagementPack">
          <Name>Thales IFS Subsystem Discovery Monitoring Management Pack</Name>
          <Description>The purpose of this management pack is to monitor the health of various components of the Thales IFS subsystem servers including server types CDC CRD DC MWS PMS and SUP.</Description>
        </DisplayString>
        <DisplayString ElementID="Thales.IFS.Subsystem.Discovery.Monitoring.ManagementPack.DiscoverIFSSubsystemServer">
          <Name>Discover IFS Subsystem Server</Name>
        </DisplayString>
        <DisplayString ElementID="Thales.IFS.Subsystem.Discovery.Monitoring.ManagementPack.DiscoverIFSSubsystemServerCDC">
          <Name>IFS Subsystem CDC Server</Name>
        </DisplayString>
        <DisplayString ElementID="Thales.IFS.Subsystem.Discovery.Monitoring.ManagementPack.IFSSubsystemServer">
          <Name>IFS Subsystem Server</Name>
          <Description>CDC CRD DC MWS PMS SUP</Description>
        </DisplayString>
        <DisplayString ElementID="Thales.IFS.Subsystem.Discovery.Monitoring.ManagementPack.IFSSubsystemServer" SubElementID="ServerType">
          <Name>ServerType</Name>
          <Description>CDC CRD DC MWS PMS or SUP</Description>
        </DisplayString>
        <DisplayString ElementID="Thales.IFS.Subsystem.Discovery.Monitoring.ManagementPack.IFSSubsystemServerCDC">
          <Name>IFS Subsystem CDC Server</Name>
        </DisplayString>
      </DisplayStrings>
    </LanguagePack>
  </LanguagePacks>
</ManagementPack>

Similar Messages

  • INPUT textfield does not show non-English letters with transparent mode

    INPUT textfield does not show non-English letters when i
    type, if transparent mode turn on
    this is bug of Flash Player 9?
    will this bug had be fixed?

    I just tested Firefox and Chrome on linux, i doesn't work either, but i get different weird chars: éèça
    However, on both mac and linux, if i copy the chars and paste them in the input field, it passes.

  • Gnome 3.16 seahorse does not show gpg keys anymore

    After upgrading to gnome 3.16 seahorse does not list any gpg keyys anymore.
    Not only does it not list the specific keys, the complete gpg section is gone
    Anyone else having this problem?

    bulletmark wrote:
    pezz wrote:It's not unlocking my ssh keys either.
    Pezz, I had this problem a couple of days ago (after the update to 3.16) and I found that my SSH_AUTH_SOCK variable was pointing to /tmp/ssh-xxxxxxx/agent.NNN. It should have been pointing to /run/user/1000/keyring/ssh. I then rebooted and have not seen the problem again, i.e. I have rebooted a few times since and SSH_AUTH_SOCK has always been correct. Maybe there is a bug/race condition which does this? Echo $SSH_AUTH_SOCK to check.
    I'm experiencing this exact issue, except the problem persists even after several reboots.
    Here are some additional (possibly relevant) entries from journalctl:
    Apr 14 16:31:23 arche /usr/lib/gdm/gdm-x-session[804]: /etc/gdm/Xsession: Setup done, will execute: /usr/bin/ssh-agent -- gnome-session
    Apr 14 16:31:24 arche gnome-keyring-daemon[801]: couldn't register in session: The name org.gnome.SessionManager was not provided by any .service files
    Apr 14 16:31:24 arche gnome-session[811]: SSH_AUTH_SOCK=/run/user/10011/keyring/ssh
    Apr 14 16:31:24 arche gnome-session[811]: SSH_AUTH_SOCK=/run/user/10011/keyring/ssh
    Apr 14 16:31:24 arche gnome-session[811]: SSH_AUTH_SOCK=/run/user/10011/keyring/ssh
    Apr 14 16:31:24 arche gnome-session[811]: GPG_AGENT_INFO=/run/user/10011/keyring/gpg:0:1
    Apr 14 16:31:24 arche gnome-session[811]: SSH_AUTH_SOCK=/run/user/10011/keyring/ssh
    Apr 14 16:31:24 arche gnome-session[811]: GPG_AGENT_INFO=/run/user/10011/keyring/gpg:0:1
    Echoing SSH_AUTH_SOCK always shows it equal to "/tmp/ssh-xxxxxxx/agent.NNN".
    Has anyone got any idea of what might be going on?

  • DP96 does not show the billing request value in simulation or update mode

    Hi SD experts,
    Another RRB related question.
    Unlike DP91 (individual BR) which you can run in simulate and see the amount to be billed, qty to be billed and net value before creating the billing request, this does not appear to be possible with DP96 (collective BR), even though the net result (after runing in update mode) is the same.
    Have queried this with SAP who have said this is not supported.
    Are there any BADIs or exits available which would allow these values to be shown in the ALV display when run in test mode?  The retrieval would have to access saved data (from VPKHEAD) or dynamic data according to the option selected in the selection screen.
    Thanks in advance for any advice or suggestions on how to do this.
    Regards,
    Guy HInton

    Hi Guy
    what you need to do is this. run DP96 and choose "save extract" in the options on the selection screen. In the detail lst you then get a message "Extract saved" for each processed contract item.
    This will save the amounts to be billed in the cluster of tables VPKHEAD, VPKSDITEM, VPKDI and links to the dynamic item AD01DLI as well as contracts VBAK, VBAP and projects PRPS.
    These tables happen to be used in DP91 to store extracts as well. You will get a popup for all those contracts asking you "Do you want to use saved data?" now.
    What that ultimately does is that DP96 creates all the data holding cost & associated revenue.
    All you need to do then is create a bespoke report or SAP Query (or whatever you want to use), join the named tables and present it to your user. This way I created a Revenue forecast report which shows all revenue for time worked/cost incurred which we should be invoicing in the current financial period, but haven't created the billing requests or invoices yet.
    As said I just used SQ03/SQ02/SQ01 to create a simple infoset and query and it works a treat . Example of th join seen below. Note that you may have to alter joined table according to your needs potentially.
    Bjorn

  • Default Managed Property Refinable String does not Show up results: No values found

    Hi All,
    I've got issues getting a Custom Site column values to show up on a Refinement Panel. Please find the steps I've performed till now:
    Custom List with 2 Site Columns (Designation & Client)
    Have inserted 10 items
    Did a Full Crawl
    Modified OOB Managed property RefinableString00 to Map the OWS_Designation
    Went to the Search page which has the refinement Panel and Search Results WP, on the edit properties Choose refiners tab have selected the RefinableString00 but it is not showing any values even If get that item searched.
    Query text of the Search results webpart has been restricted to a list. (path:"http://Servername/Lists/Listname"  (contentclass:"STS_ListItem") {searchboxquery})
    Also tried reindexing the list and doing a full crawl again.
    This is what I get while trying to add the refiner
    No values found
    We don't have any refiners to show you 
    No issues in loading the data for the Designation column in the Search results webpart using the display template.
    Please help me to sort out this issue.

    Hi,
    I followed the article below to add site column as refiner to my Search center:
    http://blogs.technet.com/b/tothesharepoint/archive/2013/11/11/how-to-add-refiners-to-your-search-results-page-for-sharepoint-2013.aspx
    It worked in my envrionment, I have a ListB with three columns including Title, a lookup column and Designation. And I added three items, there is one as: b1, a1, de1. So the search returns result as below:
    When I edited Refinement web part and add RefinableString00 to it, it returned no value.
    However, when I search for item such as b1, the refiner works.
    If it doesn't work in your situation, I'd recommend you start full crawl after reindexing list. Also, ignore step6 in your post at first to see if refiner works.
    Regards,
    Rebecca Tu
    TechNet Community Support

  • JClient: after INSERT and COMMIT does not show the primary textfield value

    1. In my JClient master-detail form: When I insert a new record, enter data, and commit the changes... the master-panel's primarykey textfield is BLANK, when it should show the new auto-incremented number from the MySQL database. I have to close and open the form again to refresh that field again.
    2. In order to properly save new records in the detail-panel, I have to insert and save the above master-panel first. Is this the way JCLient handle master-detail forms?
    Thanks.

    Hi. Thanks for sharing your advice.
    Re my problem,
    if we have to refresh data by requery,i suggest you should use the way below:
    private JUNavigationBar navBar = new JUNavigationBar(true,false,true,false,true);
    navBar.setModel(JUNavigationBar.createPanelBinding(panelBinding, navBar));
    // after insert ,call this method
    navBar.doAction(navBar.BUTTON_EXECUTE);Tried this out but my textfield still won't get refreshed. Here is the code I came up with:
        private JUNavigationBar navBar = new JUNavigationBar() {
                public void doAction(int button) {
                    if (button == JUNavigationBar.BUTTON_INSERT) {
                        super.doAction(button);
                        navBar.doAction(navBar.BUTTON_EXECUTE);
                        return;
                    super.doAction(button);
            };Re your problem,
    I am developing application with JDev + MySQL,encounted another problem,
    how can i get the primary key supported by auto_increment column after insert?
    i constructed a vo whose sql statement is
    select last_insert_id() as last_id to get the value of auto_increment column.
    i found it can't get the right value unless commit the transaction.
    Would u please tell me your way?Based on what I experienced, we dont have to do the SELECT statement above. MySQL does auto-increment the primarykey but the JClient form just cant show it immediately, unless we close and re-open the form.
    What did I do to refresh the primarykey during insert? Please note that I got this solution accidentally coz I'm still a newbie in Java.
    A user want to add a record:
    1. He presses the Insert button.
    2. He enters data into a component (ex. textfield)
    3. The component's action-performed event is fired, and the following code is run:
            DCJboDataControl dc = (DCJboDataControl)panelBinding.getDataControl();
            ApplicationModule am = dc.getApplicationModule();
            Transaction tr = am.getTransaction();
            dc.commitTransaction();
            ViewObject vo = am.findViewObject("TblaccountsView1");
            vo.executeQuery();
            vo.last();It simply commits the transaction, goes to last (new) transaction, and lets the user continue his data encoding.
    Hope it helps and I hope theres an even better way to do this.

  • Metric shows real time value but does not show historical data

    I am using OEM 12c.I am facing an issue and I don't know where to look for problem.
    I had created one customized metric for percentage flash recovery area through metric extension.I deployed to it target databases.
    When I check it through Database --> All Metrics it shows me real time value for metric,Collection schedule,upload interval and last upload time.IT is all fine.
    When I check metric value history,
    For all the columns like Last Known Value,
    Collection Time stamp,
    Average Value,
    High Value,
    Low Value
    it shows no data.It even does not show anything in Metric Value History graph.
    Even the metric test in Metric Extension works fine.
    All the client agents are uploading the the data to OEM successfully.
    Any help,guide is appreciated.

    bit late but there are two options on metric creation "Alerting Only" or "Alerting and Historical Trending" - I assume you need the latter to show history so was this option used?

  • I've a new account on iMac.  When composing an email the contact list does not show up on the bar.  WWhen I start keying in a name, it comes up with the address.  How do I engage the  contact list from the email?

    I've a new account on iMac.  When composing an email the contact list does not show up on the bar, which would allow me to select the persons I want to include on the distribution of the email.  When I start keying in a name in the email, it comes up with the person's address, which shows it is synced.  How do I engage the contact list from the email like I do on my old account (where a contact list icon shows up, along with the "attach" and other icons) ?

    With the New Message window open, go to the View menu and select "Customize Toolbar...".
    In the screen that opens, drag the item labelled "Address" into the Toolbar area of the New Message window, then click the "Done" button.
    That item should be then added to the Toolbar for the New Message window.
    Note that the main Mail window and the New Message window (as well as the separate message window if you open a message that way) use different toolbars - the settings/inclusions for one do not carry over to another.

  • HT4972 My IPad 2, IPhone 3GS ans iPod  no longer work with apple TV, I have 2 apple TV in my house and for he last 3 weeks the iPod was the only one we could use for appleTV now none of them works, the apple TV icon does not show up any more. Re-startedev

    My IPad 2, IPhone 3GS ans iPod  no longer work with apple TV, I have 2 apple TV in my house and for he last 3 weeks the iPod was the only one we could use for appleTV now none of them works, the apple TV icon does not show up any more. Re-started everything.

    Ok thank you so much, for your timely response.
    RESPONSES:
    1)   When I set up my iMac, I did not transfer any data directly from my windows PC.  I simply used the same iTunes login and account.  I have access to all of the files via the "Purchased" section of the iTunes store.  If I click "Download Previous Purchases"  text, I can download ALL of the purchases I have ever made.
    2)   I have the Apple TV 2, so good news, question answered.  I thought maybe it was the Apple TV 1, but it is the Black model, so bam.  Good response for you.  Well the whole damned reply is an awesome response, just pointing out that one piece of awesome.  I stated that it was an Apple TV 2, and yet you were still good enough to figure I could be mistaken, and provide me with knowleedge just incase.
    QUESTIONS:
    3)   So can my iMac not stream the data directly from itunes, without download?  Apple TV can, but perhaps that is something among many things that maker it unique, and awesome.
    SERIOUSLY.... THANK YOU... 
    I work in the computer support section for the Military.  The only problem is we use Windows , lol.  Well that and i've been gone for nearly 6 months on recover.  I go back next month though I hope.  But working in that field gives me the abilty to judge responses that run inside the same vein.  Your response was so awesome that I half thought I might have written it myself. 

  • I set up a location based reminder in notification last week to test it out.  Worked great, but now I cannot get rid of it.  It does not show up in any list on the notifications pages, but can be found in search.  How can I get rid of this notification?

    Last week I set up a location based reminder in notifications to test it out.  Worked great.  However, I can't get rid of it.  It does not show up on any of the pages, either reminders or completed.  I can search and find it, shows it should be in reminders page, but it is not there for me to remove.  Any ideas?

    Sometimes a problem with Firefox may be a result of malware installed on your computer, that you may not be aware of.
    You can try these free programs to scan for malware, which work with your existing antivirus software:
    * [http://www.microsoft.com/security/scanner/default.aspx Microsoft Safety Scanner]
    * [http://www.malwarebytes.org/products/malwarebytes_free/ MalwareBytes' Anti-Malware]
    * [http://support.kaspersky.com/faq/?qid=208283363 TDSSKiller - AntiRootkit Utility]
    * [http://www.surfright.nl/en/hitmanpro/ Hitman Pro]
    * [http://www.eset.com/us/online-scanner/ ESET Online Scanner]
    [http://windows.microsoft.com/MSE Microsoft Security Essentials] is a good permanent antivirus for Windows 7/Vista/XP if you don't already have one.
    Further information can be found in the [[Troubleshoot Firefox issues caused by malware]] article.
    Did this fix your problems? Please report back to us!

  • I cannot unlock my phone. When I hit the number the key is highlighted but the "dot" does not show in the passcode box. Have shut it off and restarted nothing. Held on/off and "square" key to reset but still nothing. Any ideas on how to resolve this issue

    I cannot unlock my phone. When I hit the number the key is highlighted but the "dot" does not show in the passcode box. Have shut it off and restarted nothing. Held on/off and "square" key to reset but still nothing. Any ideas on how to resolve this issue

    Connect to iTunes and try to reset it from there.

  • How do I get the none button to pop up so u don't have to have a credit card for apps? I owe nothing for apps from Apple, NOTHING!? And it still does not show the option "none". If it helps the card I have is a debit.

    How do I get the none button to pop up so u don't have to have a credit card for apps? I owe nothing for apps from Apple, NOTHING!? And it still does not show the option "none". If it helps the card I have is a debit.

    I'm happy you figured it out and just try to keep in mind that not everyone you talk to at support will give the same advice or have the same knowledge. Just like those who contribute to these forums. Sometimes Google is your best friend.
    I agree that Apple could probably make it easier, but as of yet prefer security over freedom. (sound famaliar?)
    Anyway, if you choose to do so, you can leave feedback here:
    Apple.com Feedback
    Apple Support Feedback
    Developer Feedback
    Product Feedback
    QuickTime Feedback
    Search Feedback

  • Service Registry : Services does not show under Service definitions..

    Hi All,
    I am new to PI ..
    My PI system is 7.11 ..DB DB2
    Query is that when i start PI tools and click on service registry under service definitions it does not show any services..
    Do i have to publish services so that it can be accessed from the mentioned location..or is there any other configuration that i need to execute..
    Regards
    Sohal....

    Hi Sohal,
    You may want to refer to:
    #1267817 - Configure Services Registry proxy (ServicesRegistrySi)
    Also, check the following links that may aid you with that:
    http://help.sap.com/saphelp_nwpi71/helpdata/en/46/94dd02c7b915ebe10000000a114a6b/frameset.htm
    and
    http://help.sap.com/saphelp_nwpi71/helpdata/EN/44/cc8fd368c873dfe10000000a11466f/frameset.htm
    Regards,
    Caio Cagnani

  • Firefox does not show Flash based Soundcloudplayer after embedding

    Hi There,
    I have some problems with embedding from flash based content because firefox does not show the embedded content.
    Last week and the time before everything went fine but now the Flash based player of Soundcloud doesn't work anymore.
    I've tried to embed my soundcloudplayers via div tag on my nobleprofile, full code:
    <pre><nowiki><div>
    <object width="390" height="220" type="application/ x-shockwave-flash" data="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fsoundcloud.com%2Fmanuel-turobin%2Fsets%2Fmanuel-turobin-fancy-a-swift-one-before-the-show&amp;show_comments=true&amp;auto_play=false&amp;show_playcount=true&amp;show_artwork=true&amp;color=c0ff00">
    <param name="movie" value="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fsoundcloud.com%2Fmanuel-turobin%2Fsets%2Fmanuel-turobin-fancy-a-swift-one-before-the-show&amp;show_comments=true&amp;auto_play=false&amp;show_playcount=true&amp;show_artwork=true&amp;color=c0ff00" />
    <param name="wmode" value="transparent" />
    <param name="allowFullScreen" value="true" />
    <param name="allowscriptaccess" value="always" />
    </object>
    </div>
    </nowiki></pre>
    If I use the "data" URL I can see the player but I dont know why there are problems for a week with that embedding?!
    Thanks for any help!

    I notice a space in type="application/ x-shockwave-flash" in not working flash objects.
    Firefox also needs the movie name specified via a data attribute in the object tag instead of via the param tag. With those changes applied you should see the Flash animations (works for me).
    <pre><nowiki><object data="http://www.residentadvisor.net/flash/dj-widget/dj.swf"
    type="application/x-shockwave-flash" width="390" height="454"></nowiki></pre>

  • When I try to include a white and black photo in a iMovie the result is a black totaly black picture which does not show in the movie. Why? Can it be fixed?

    When I try to include a white and black photo in a iMovie the result is a black totaly black picture which does not show in the movie. Why? Can it be fixed?

    The ! turns up when iPhoto loses the connection between the thumbnail in the iPhoto Window and the file it represents.
    Other than that, what version of iPhoto do you have? Assuming 09 or later try
    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Rebuild iPhoto Library Database from automatic backup.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one. .
    Regards
    TD
    P.S. Please don't type in block capitals. They are harder to read and on the forum it looks like you're having a tantrum

Maybe you are looking for