ACS RDBMS adding NDG with Shared Secret

I have an ACS 4.2 on a SE 1113 and I am using RDBMS to add Network Device Groups. I am able to create the group, but I would like to set the Shared Secret for the group. I am using the action code 250 to add the group but I can not see a way to set the Secret. I can modify the Secret after creating the group using the GUI but it would be better to do it all with RDBMS. Are there any other action codes that can be used on NDGs?
Thank you.

Per NDG shared secrets came after NDG addition via dbsync. It looks like this has not been retro-fitted to dbsync.
This is quite typical as dbsync is the poor unloved child of ACS.

Similar Messages

  • Has anyone experience with Shared Secrets and Time Machine?

    I'm using Shared Secrets password manager. I'm trying to get it from my time machine backups on my new (secondhand though) mac.
    But... it shows up as an empty version. I'm dreading having lost all my passwords...
    Has anyone good advice please?

    According to the information on this page the required Aircard 580 card is NOT compatible with any version of the Mac OS. Which is really odd since the banner across the top of the page proclaims "wireless, mobile web access for your mac". Perhaps they intend for you to buy a compatible phone and use Bluetooth connectivity to allow the phone to act as a modem for your Mac.
    The built-in wireless of your Mac does not allow you to connect directly to cellular networks like BlueMobility.
    After some more digging... I found this page which supposedly lists the Mac compatible options.

  • Add AAA Client Errors,Shared Secret value must not be blank.

    hello,
    When i add the AAA client to the ACS 4.2 90 eveluation software installed on win2003 std OS with SPk 1 gives the below error when entered the shared secret value then submitting it.
    "Shared Secret value must not be blank"
    what could br the cause?
    Thks
    swami

    This could be related to the browser it sounds like the ACS might not be receiving the Shared Secret from your input.
    The ACS 4.2 does not allow a AAA to be added without a shared secret key.
    CSCsr68278 ACS 4.2 does not allow a blank TACACS+ key
    Make sure that the ACS IP Address is added into your Trusted Sites (IE). You could also try updating to the latest version of Java.

  • My host name changes every few days, since Xmas adding a macbook its changed 6 times. Do I need to stop this? Does it cause problems with sharing between the iMac and macbook?

    my host name changes every few days, since Xmas adding a macbook its changed 6 times. Do I need to stop this? Does it cause problems with sharing between the iMac and macbook?

    There are several possible causes for this problem.
    1. Two (or more) computers on the local network have the same Bonjour name, such as "X's-MacBook-Pro.local".
    2. You have two simultaneous connections to the same local network: probably Ethernet and Wi-Fi. If applicable, disconnect the Ethernet cable or turn off Wi-Fi.
    3. A Mac wakes from sleep due to network traffic. This is due to a bug in OS X that may only affect some models.
    4. A device that gets its network address from the router wakes from sleep, and the address it was using before has been assigned to another device.
    5. A third-party wireless router has incompatible settings or firmware. In that case, refer to the manufacturer or ISP for support. Restarting the router may help, temporarily.
    6. See also this support article.
    Rename the computer in the Sharing preference pane.

  • Set the value of a shared secret in a custom auth class

    Hello All,
    We are trying to use a custom authentication class to gain
    additional parameter to pass along in a SAML assertion to a third party
    vendor. We have successfully added the new custom auth class, but we
    are unable to determine how to assign the value of this new parameter to
    anything that is accessible in the creation of the SAML profile.
    The first idea was to use a shared secret. Although we have been able
    to create the shared secret, it does not have any value assigned.
    Here's the code used based on the code used by the PwLookupLogin class
    in the ba-idp-auth.jar file:
    private void setUserTAG(String paramString) {
    SSSecret localSSSecret = new SSSecret();
    localSSSecret.setName(new SSName("tag_van"));
    SSSecretEntry localSSSecretEntry = new SSSecretEntry("tag_van",
    paramString);
    localSSSecret.addSecretEntry(localSSSecretEntry);
    addCredential(WSCQSSToken.SS_SecretName, localSSSecretEntry);
    The second idea was to make use of the "CustomizableStringOne" found in
    a posting in this forum on how to extend a X.509 auth class:
    http://forums.novell.com/novell-deve....html#poststop
    The code we have tried follows:
    private void setUserSSN(String paramString) {
    // Makes use of the "Customizable String One [Custom Profile]"
    try
    // Customizable attribute 1 is the one we use to contain
    customer data to send,
    // but this can change to another if necessary
    WSCMOPToken token =
    (WSCMOPToken)WSCToken.getToken(WSCMOPToken.OP_CS_C ustomizableString1.getTokenUniqueId());
    // Build object for new data
    WSFModelEntry modelEntry = token.getModelEntry();
    IDSISCommonAttributeElement data =
    modelEntry.getSchemaClassInstance();
    if (data instanceof IDSISLeafAttributeElement) {
    ((IDSISLeafAttributeElement)data).setText(paramStr ing);
    WSCMDataToken dataToken = new WSCMDataToken(token, data);
    dataToken.setAllowOverride(true);
    catch (Exception ex) {}
    Again, the same problem. No value is found when the idpsend CGI tries
    to generate the assertion.
    We are really struggling to understand how this should work. The basic
    problem is this: How can we set a variable within a Java class that can
    be accessed by the idpsend CGI to be used as an attribute within the
    SAML assertion?
    Any ideas would be greatly appreciated. Thanks.
    keongregory
    keongregory's Profile: http://forums.novell.com/member.php?userid=40599
    View this thread: http://forums.novell.com/showthread.php?t=415440

    keongregory wrote:
    >
    > Hello All,
    > We are trying to use a custom authentication class to gain
    > additional parameter to pass along in a SAML assertion to a third
    > party vendor. We have successfully added the new custom auth class,
    > but we are unable to determine how to assign the value of this new
    > parameter to anything that is accessible in the creation of the SAML
    > profile.
    >
    > The first idea was to use a shared secret. Although we have been
    > able to create the shared secret, it does not have any value
    > assigned. Here's the code used based on the code used by the
    > PwLookupLogin class in the ba-idp-auth.jar file:
    >
    > private void setUserTAG(String paramString) {
    > SSSecret localSSSecret = new SSSecret();
    > localSSSecret.setName(new SSName("tag_van"));
    > SSSecretEntry localSSSecretEntry = new SSSecretEntry("tag_van",
    > paramString);
    > localSSSecret.addSecretEntry(localSSSecretEntry);
    > addCredential(WSCQSSToken.SS_SecretName, localSSSecretEntry);
    > }
    >
    >
    > The second idea was to make use of the "CustomizableStringOne" found
    > in a posting in this forum on how to extend a X.509 auth class:
    > http://forums.novell.com/novell-deve...ess-manager/37
    > 6654-using-x509-subject-identity-injection-post1826642.html#poststop
    >
    >
    > The code we have tried follows:
    >
    >
    > private void setUserSSN(String paramString) {
    > // Makes use of the "Customizable String One [Custom Profile]"
    > try
    > {
    > // Customizable attribute 1 is the one we use to contain
    > customer data to send,
    > // but this can change to another if necessary
    > WSCMOPToken token =
    > (WSCMOPToken)WSCToken.getToken(WSCMOPToken.OP_CS_C ustomizableString1.g
    > etTokenUniqueId());
    >
    > // Build object for new data
    > WSFModelEntry modelEntry = token.getModelEntry();
    > IDSISCommonAttributeElement data =
    > modelEntry.getSchemaClassInstance();
    > if (data instanceof IDSISLeafAttributeElement) {
    > ((IDSISLeafAttributeElement)data).setText(paramStr ing);
    > }
    >
    > WSCMDataToken dataToken = new WSCMDataToken(token, data);
    > dataToken.setAllowOverride(true);
    > }
    > catch (Exception ex) {}
    > }
    >
    >
    > Again, the same problem. No value is found when the idpsend CGI
    > tries to generate the assertion.
    >
    > We are really struggling to understand how this should work. The
    > basic problem is this: How can we set a variable within a Java class
    > that can be accessed by the idpsend CGI to be used as an attribute
    > within the SAML assertion?
    >
    > Any ideas would be greatly appreciated. Thanks.
    We are using this successfully (the code looks stragely familiar ).
    Don't try to store it in the secret store. you can actually store it in
    the customizable string attributes.
    Try to use this:
    protected int doAuthenticate()
    String attribute1 = m_Request.getParameter("attribute1");
    //Custom Attribute 1
    try
    // Customizable attribute 1 is the one we use to contain customer
    data to send,
    // but this can change to another if necessary
    WSCMOPToken token =
    (WSCMOPToken)WSCToken.getToken(WSCMOPToken.OP_CS_C ustomizableString1.get
    TokenUniqueId());
    // Build object for new data
    WSFModelEntry modelEntry = token.getModelEntry();
    IDSISCommonAttributeElement data =
    modelEntry.getSchemaClassInstance();
    if (data instanceof IDSISLeafAttributeElement)
    ((IDSISLeafAttributeElement)data).setText(attribut e1);
    WSCMDataToken dataToken = new WSCMDataToken(token, data);
    dataToken.setAllowOverride(true);
    catch (Exception ex) {}
    String url =
    m_SessionData.appendIDToUrl(NIDPContext.getNIDPCon text().getBaseUrl() +
    getProperty("Protocol") + "/idpsend?PID=" + getProperty("ITS"));
    m_Request.setAttribute("url",url);
    // Going to top ensures we are not displaying in any frames
    ((NIDPServletContext)NIDPContext.getNIDPContext()) .goJSP(m_Request,m_Res
    ponse,"top");
    return HANDLED_REQUEST;
    The above code is a non-identifying method (it doesn't return a
    'authenticated'). YOu would chain it with another method that
    identifies the user before this is being processed.
    To check if a user is authenticated or not you could use:
    if (!m_Session.isAuthenticated())
    return NOT_AUTHENTICATED;
    Once the method is processed it should have created a
    LibertyUserProfile object within the eDir that comes with the admin
    console.
    You can find these in
    ou=libertyUserProfile0,ou=<clusterobject>,ou=clust er,ou=nids,ou=accessMa
    nagerContainer,o=novell
    Hopefully this helps.
    Cheers,
    Edward

  • Using an external drive with shared files (iPhoto, iTunes), attached to a Time Capsule, can the contents of the external drive be backed-up to the internal Time Capsule drive? Perhaps a RAID1 mirror to a partition?

    Using an external drive with shared files (iPhoto, iTunes), attached to a Time Capsule, can the contents of the external drive be backed-up to the internal Time Capsule drive? Perhaps a RAID1 mirror to a partitioned Time Capsule? I understand that the Time Machine (software) cannot backup a networked drive (the external) and that Time Capsule (the router/wireless hard drive) does not have its own backup software... so it won't backup the connected drive. What I would like is an alternate solution for having an automated backup of a networked drive. A 2TB Time Capsule has more than enough space for Time Machine backups of my family of Macbooks, so I had hoped to mirror a 500GB external drive (with shared media files) to a portion of the Time Capsule internal hard drive. I assume this would require a partition of the Time Capsule drive. If not, would the sparse file from the various computers being backed up need to be copied to the external drive as part of the RAID1 setup? This seems like overkill for the Time Machine backup, but it would cover the media files.  

    The complexity with this idea is the software has to run from a Mac computer on your network.. so you need a Mac turned on, probably most of the day.
    It isn't possible to partition the TC although you can create a image area.
    The software would have to copy the material, that means all files to be copied, go from USB drive, back to the Mac, then back to the TC, and written to the drive. In other words you have just added Network congestion, although a proper incremental backup type software will not actually use a lot of capacity.
    Finally it will be slow.. network drives are slower than internal drives. Well USB connected drive is much slower than the same drive connected directly to the computer.. and if the drive is connected directly to a computer it can be shared with the network.
    http://www.anandtech.com/show/4577/airport-extreme-5th-gen-and-time-capsule-4th- gen-review-faster-wifi-/4
    Read carefully the speed of the USB drive plugged into the TC.

  • How can i bypass IPs shared secret or certificate when connecting to an older microsoft vpn network

    I have a macbook pro running Lion.  When I attempt to connect via VPN I am asked for either a shared secret or a certificate, but the Microsoft server does not use or recognize either.  How can I bypass this requirement so I can access files I desperately need for work?

    I am most certainly Not wrong, I just spent an hour sitting with the system administrator and he was befuddled!  The network does not require machine authentication.  Lion seems to think all networks do.
    My connection is set up for PPP (no PPTP option exists, but certainly is NOT under L2TP)
    The machine authentication is required by Lion no matter how we set it up. 
    Any other ideas?

  • How to  use Shared secret key(diffie hellman) for encryption n decryption

    In my client server program i wanted to encrypt a random key using shared secret key for encryption and decryption with DES. but i'm unable to encrypt it as init() is not takin the shared secret key for encryption. somebody please help. my mail id - [email protected]

    You need to post some code because it works for everyone else.

  • Error Register with Shared Services

    Hi,
    I have a problem while Registering Shared Services in the Configuration Utility. It displays the following error
    (Jun 23, 2009, 08:56:30 AM), com.hyperion.cis.config.wizard.RunAllTasksWizardAction, ERROR, Error:
    java.lang.Exception: Adding following Apps to Project failed : '3891bc871220d6701ea8000.HPS;'.
         at com.hyperion.cis.config.CmsRegistrationUtil.registerApplication(CmsRegistrationUtil.java:222)
         at com.hyperion.cis.config.wizard.RunAllTasksWizardAction.executeHubRegistrationTask(RunAllTasksWizardAction.java:360)
         at com.hyperion.cis.config.wizard.RunAllTasksWizardAction.execute(RunAllTasksWizardAction.java:165)
         at com.installshield.wizard.RunnableWizardBeanContext.run(Unknown Source)
    (Jun 23, 2009, 08:56:33 AM), com.hyperion.cis.config.wizard.CustomSummaryPanel, DEBUG, CustomSummaryPanel in queryExit
    I can help me anybody?.
    Thanks

    Hi,
    I have a similar issues, where all the products fail to register with shared services. The error log is as below:
    ( Jun 24, 2009 1:27:21 AM ): ---- Hyperion Foundation Configuration......
    ( Jun 24, 2009 1:27:23 AM ): Configure Database :: pass
    ( Jun 24, 2009 1:27:23 AM ): Common Settings :: pass
    ( Jun 24, 2009 1:32:35 AM ): Deploy to Application Server :: pass
    ( Jun 24, 2009 1:33:18 AM ): ---- Provider Services Configuration......
    ( Jun 24, 2009 1:33:53 AM ): Register with Shared Services :: fail
    ( Jun 24, 2009 1:34:10 AM ): Deploy to Application Server :: pass
    ( Jun 24, 2009 1:34:22 AM ): ---- Studio Configuration......
    ( Jun 24, 2009 1:34:23 AM ): Register with Shared Services :: fail
    ( Jun 24, 2009 1:34:27 AM ): Configure Database :: pass
    ( Jun 24, 2009 1:34:39 AM ): ---- Essbase Administration Services Configuration......
    ( Jun 24, 2009 1:34:42 AM ): Configure Database :: pass
    ( Jun 24, 2009 1:34:43 AM ): Register with Shared Services :: fail
    ( Jun 24, 2009 1:36:28 AM ): Deploy to Application Server :: pass
    ( Jun 24, 2009 1:36:41 AM ): ---- Essbase Configuration......
    ( Jun 24, 2009 1:36:43 AM ): Register with Shared Services :: fail
    ( Jun 24, 2009 1:36:47 AM ): Essbase Custom Configuration :: pass
    ( Jun 24, 2009 1:36:59 AM ): ---- Financial Data Quality Management Configuration......
    ( Jun 24, 2009 1:37:00 AM ): Register with Shared Services :: fail
    ( Jun 24, 2009 1:37:03 AM ): Configure FDM Server :: pass
    ( Jun 24, 2009 1:37:15 AM ): ---- Planning Configuration......
    ( Jun 24, 2009 1:37:16 AM ): Register with Shared Services :: fail
    ( Jun 24, 2009 1:39:38 AM ): Deploy to Application Server :: pass
    ( Jun 24, 2009 1:39:52 AM ): ---- Smart Search Configuration......
    ( Jun 24, 2009 1:40:19 AM ): Deploy to Application Server :: pass
    ( Jun 24, 2009 1:40:31 AM ): ---- Workspace Configuration......
    ( Jun 24, 2009 1:40:33 AM ): Register with Shared Services :: fail
    ( Jun 24, 2009 1:41:16 AM ): Configure Database :: pass
    ( Jun 24, 2009 1:44:57 AM ): Deploy to Application Server :: pass
    ( Jun 24, 2009 1:45:14 AM ): ---- Reporting and Analysis Configuration......
    ( Jun 24, 2009 1:46:33 AM ): Configure Financial Reporting Server :: pass
    ( Jun 24, 2009 1:50:02 AM ): Deploy to Application Server :: pass
    ( Jun 24, 2009 1:50:16 AM ): Services Configuration :: pass
    ( Jun 24, 2009 1:50:35 AM ): ---- Financial Management Configuration......
    ( Jun 24, 2009 1:50:36 AM ): Register with Shared Services :: fail
    ( Jun 24, 2009 1:50:47 AM ): Configure DCOM :: pass
    ( Jun 24, 2009 1:50:47 AM ): Configure Application Server :: fail
    ( Jun 24, 2009 1:50:48 AM ): Configure Application Cluster :: pass
    ( Jun 24, 2009 1:50:55 AM ): Register Application Servers / Cluster ::
    Any help would be greatly appreciated.

  • S9 BI +  register with Shared services Problems

    Hi,
    I am tring to register BI+ using COnfiguration Utility, but when I register with Shared Services, the registration does not work and the follow message has written in the log:
    (Jun 9, 2008 2:36:05 PM), Install.product.install, com.hyperion.cis.config.CmsRegistrationUtil, dbg, Authenticate Admin user to CSS.
    (Jun 9, 2008 2:36:05 PM), Install.product.install, com.hyperion.cis.config.CmsRegistrationUtil, dbg, Creating CMS Client SDK
    (Jun 9, 2008 2:36:05 PM), Install.product.install, com.hyperion.cis.config.CmsRegistrationUtil, dbg, Registering the product, HAVA-9.3.0
    (Jun 9, 2008 2:36:06 PM), Install.product.install, com.hyperion.cis.config.CmsRegistrationUtil, dbg, Successfully registered the product, HAVA-9.3.0
    (Jun 9, 2008 2:36:06 PM), Install.product.install, com.hyperion.cis.config.CmsRegistrationUtil, dbg, Registering the application, 0000011a5e928300-0001-05f1-64000441
    (Jun 9, 2008 2:36:14 PM), Install.product.install, com.hyperion.cis.config.wizard.RunAllTasksWizardAction, err, java.lang.Exception: Adding following Apps to Project failed : '0000011a5e928300-0001-05f1-64000441.HAVA;'.
    STACK_TRACE: 6
    java.lang.Exception: Adding following Apps to Project failed : '0000011a5e928300-0001-05f1-64000441.HAVA;'.
         at com.hyperion.cis.config.CmsRegistrationUtil.registerApplication(CmsRegistrationUtil.java:199)
         at com.hyperion.cis.config.wizard.RunAllTasksWizardAction.executeHubRegistrationTask(RunAllTasksWizardAction.java:302)
         at com.hyperion.cis.config.wizard.RunAllTasksWizardAction.execute(RunAllTasksWizardAction.java:119)
         at com.installshield.wizard.RunnableWizardBeanContext.run(RunnableWizardBeanContext.java:21)
    (Jun 9, 2008 2:36:14 PM), Install.product.install, com.hyperion.cis.config.wizard.ProductCustomInputPanel, msg1, Task hfmUpgradeTask not selected, skipping panel hfmUpgradePanel
    (Jun 9, 2008 2:36:14 PM), Install.product.install, com.hyperion.cis.config.wizard.ProductCustomInputPanel, msg1, Task hfmConfigureTask not selected, skipping panel hfmLaunchConfig
    (Jun 9, 2008 2:36:14 PM), Install.product.install, com.hyperion.cis.config.wizard.ProductCustomInputPanel, msg1, Task hfmBPMATask not selected, skipping panel hfmBPMAInstance1
    (Jun 9, 2008 2:36:14 PM), Install.product.install, com.hyperion.cis.config.wizard.ProductCustomInputPanel, msg1, Task hfmBPMATask not selected, skipping panel hfmBPMAInstance2
    (Jun 9, 2008 2:36:14 PM), Install.product.install, com.hyperion.cis.config.wizard.ProductCustomInputPanel, msg1, Task hfmBPMATask not selected, skipping panel hfmBPMARunPanel
    (Jun 9, 2008 2:36:14 PM), Install.product.install, com.hyperion.cis.config.wizard.ProductCustomInputPanel, dbg, managerClassName: com.hyperion.avalanche.config.UpgradeSummaryPanelManager
    (Jun 9, 2008 2:36:24 PM), Install.product.install, com.hyperion.cis.config.wizard.CustomSummaryPanel, dbg, CustomSummaryPanel in queryExit
    (Jun 9, 2008 2:36:25 PM), Install.product.install, com.hyperion.cis.config.wizard.ProductTaskSelectionPanel, dbg, queryEnter method is entered
    (Jun 9, 2008 2:36:25 PM), Install.product.install, com.hyperion.cis.config.wizard.ProductTaskSelectionPanel, dbg, Checking OS type/version/architecture against system requirements...
    (Jun 9, 2008 2:36:25 PM), Install.product.install, com.hyperion.cis.config.wizard.ProductTaskSelectionPanel, dbg, os.name:Windows 2003
    (Jun 9, 2008 2:36:25 PM), Install.product.install, com.hyperion.cis.config.wizard.ProductTaskSelectionPanel, dbg, os.version:5.2
    (Jun 9, 2008 2:36:25 PM), Install.product.install, com.hyperion.cis.config.wizard.ProductTaskSelectionPanel, dbg, os.arch:x86
    (Jun 9, 2008 2:36:25 PM), Install.product.install, com.hyperion.cis.config.wizard.ProductTaskSelectionPanel, dbg, major os version #:5; minor os version #: 2
    Can anybody help me ?
    Thanks

    Hi did you get a resolution to this ? I'm experiencing the same issue.
    Thanks.
    Hi,
    I am tring to register BI+ using COnfiguration
    Utility, but when I register with Shared Services,
    the registration does not work and the follow message
    has written in the log:
    (Jun 9, 2008 2:36:05 PM), Install.product.install,
    com.hyperion.cis.config.CmsRegistrationUtil, dbg,
    Authenticate Admin user to CSS.
    (Jun 9, 2008 2:36:05 PM), Install.product.install,
    com.hyperion.cis.config.CmsRegistrationUtil, dbg,
    Creating CMS Client SDK
    (Jun 9, 2008 2:36:05 PM), Install.product.install,
    com.hyperion.cis.config.CmsRegistrationUtil, dbg,
    Registering the product, HAVA-9.3.0
    (Jun 9, 2008 2:36:06 PM), Install.product.install,
    com.hyperion.cis.config.CmsRegistrationUtil, dbg,
    Successfully registered the product, HAVA-9.3.0
    (Jun 9, 2008 2:36:06 PM), Install.product.install,
    com.hyperion.cis.config.CmsRegistrationUtil, dbg,
    Registering the application,
    0000011a5e928300-0001-05f1-64000441
    (Jun 9, 2008 2:36:14 PM), Install.product.install,
    com.hyperion.cis.config.wizard.RunAllTasksWizardAction
    , err, java.lang.Exception: Adding following Apps to
    Project failed :
    '0000011a5e928300-0001-05f1-64000441.HAVA;'.
    STACK_TRACE: 6
    java.lang.Exception: Adding following Apps to Project
    failed :
    '0000011a5e928300-0001-05f1-64000441.HAVA;'.
    at
    t
    com.hyperion.cis.config.CmsRegistrationUtil.registerAp
    plication(CmsRegistrationUtil.java:199)
    at
    t
    com.hyperion.cis.config.wizard.RunAllTasksWizardAction
    .executeHubRegistrationTask(RunAllTasksWizardAction.ja
    va:302)
    at
    t
    com.hyperion.cis.config.wizard.RunAllTasksWizardAction
    .execute(RunAllTasksWizardAction.java:119)
    at
    t
    com.installshield.wizard.RunnableWizardBeanContext.run
    (RunnableWizardBeanContext.java:21)
    (Jun 9, 2008 2:36:14 PM), Install.product.install,
    com.hyperion.cis.config.wizard.ProductCustomInputPanel
    , msg1, Task hfmUpgradeTask not selected, skipping
    panel hfmUpgradePanel
    (Jun 9, 2008 2:36:14 PM), Install.product.install,
    com.hyperion.cis.config.wizard.ProductCustomInputPanel
    , msg1, Task hfmConfigureTask not selected, skipping
    panel hfmLaunchConfig
    (Jun 9, 2008 2:36:14 PM), Install.product.install,
    com.hyperion.cis.config.wizard.ProductCustomInputPanel
    , msg1, Task hfmBPMATask not selected, skipping panel
    hfmBPMAInstance1
    (Jun 9, 2008 2:36:14 PM), Install.product.install,
    com.hyperion.cis.config.wizard.ProductCustomInputPanel
    , msg1, Task hfmBPMATask not selected, skipping panel
    hfmBPMAInstance2
    (Jun 9, 2008 2:36:14 PM), Install.product.install,
    com.hyperion.cis.config.wizard.ProductCustomInputPanel
    , msg1, Task hfmBPMATask not selected, skipping panel
    hfmBPMARunPanel
    (Jun 9, 2008 2:36:14 PM), Install.product.install,
    com.hyperion.cis.config.wizard.ProductCustomInputPanel
    , dbg, managerClassName:
    com.hyperion.avalanche.config.UpgradeSummaryPanelManag
    er
    (Jun 9, 2008 2:36:24 PM), Install.product.install,
    com.hyperion.cis.config.wizard.CustomSummaryPanel,
    dbg, CustomSummaryPanel in queryExit
    (Jun 9, 2008 2:36:25 PM), Install.product.install,
    com.hyperion.cis.config.wizard.ProductTaskSelectionPan
    el, dbg, queryEnter method is entered
    (Jun 9, 2008 2:36:25 PM), Install.product.install,
    com.hyperion.cis.config.wizard.ProductTaskSelectionPan
    el, dbg, Checking OS type/version/architecture
    against system requirements...
    (Jun 9, 2008 2:36:25 PM), Install.product.install,
    com.hyperion.cis.config.wizard.ProductTaskSelectionPan
    el, dbg, os.name:Windows 2003
    (Jun 9, 2008 2:36:25 PM), Install.product.install,
    com.hyperion.cis.config.wizard.ProductTaskSelectionPan
    el, dbg, os.version:5.2
    (Jun 9, 2008 2:36:25 PM), Install.product.install,
    com.hyperion.cis.config.wizard.ProductTaskSelectionPan
    el, dbg, os.arch:x86
    (Jun 9, 2008 2:36:25 PM), Install.product.install,
    com.hyperion.cis.config.wizard.ProductTaskSelectionPan
    el, dbg, major os version #:5; minor os version #: 2
    Can anybody help me ?
    Thanks

  • TPC 2012 - Problems with shared variable

    Hi,
    I tried to program simmilar thing to this one http://zone.ni.com/devzone/cda/tut/p/id/5548 on TPC 2012. But it doesn't work.I can see that both programs on my laptop and TPC are working(I've added an additional counter with display), but I cannot see any effect on TPC when I change the value of shared variable on my laptop. I use LabView 8.6 with Touch Panel Module. My question is what are the exact steps to run such application on TPC2012? Are they the same as for TPC 2006?
    I've noticed following issues:
    1.I cannot deploy the program from Project Manager(there is an information that maybe TPC Service is not started. - I've found such information about TPC Service http://digital.ni.com/public.nsf/allkb/DE177828D27A14A48625734E00768B66 but in fact I cannot find Start » All Programs»National Instruments » NI TPC Service » NI TPC Service Manager 1.0 Does it mean, that the TPC Service is not installed and the programm with shared varibles won't be working or can I start it somehow in another way? Do I need to have TPC service installed on TPC2012?
    Until now, I've built the project and sent it through FTP to TPC(the folder was /TEMP) and then started it.
    2.Ping works OK
    Thank you in advance for any hints how to solve this problem.
    Martin

    Well no problem, but I'm frustrated with this issue... I've tested many things and nothing. Just to help someone else as I in the future, these are my sources:
    http://forums.ni.com/t5/LabVIEW/TPC-2012-Problems-with-shared-variable/m-p/1009631/highlight/false#M...
    http://digital.ni.com/public.nsf/allkb/28536DE7E2D9E98B8625770B00738920?OpenDocument
    http://zone.ni.com/reference/en-XX/help/372507B-01/lvtpcgsm/tpc_install_sharvar/
    http://zone.ni.com/reference/en-XX/help/372507C-01/lvtpcgsm/tpc_install_sharvar/
    http://digital.ni.com/public.nsf/allkb/23532363F4905EC28625727A00730B80?OpenDocument
    http://forums.ni.com/t5/FieldPoint-Family/TPC-2006-Not-Listed-in-Targets-and-Devices/td-p/566325
    http://forums.ni.com/t5/LabVIEW/MAX-can-t-detect-TPC-2106T/td-p/831524
    http://zone.ni.com/devzone/cda/tut/p/id/5868
    http://digital.ni.com/public.nsf/websearch/28B748B9697B79E18625725A00009066?OpenDocument
    http://digital.ni.com/public.nsf/websearch/D1726990DCEB82E4862570F20069C57D?OpenDocument
    http://digital.ni.com/public.nsf/allkb/3B469103BBDD4CE48625726000665B36
    I hope find some hint..
    Fabian León
    Certified LabVIEW Associate Developer

  • Anyone using pyxis service?  They ask for our shared secret

    The pyxis reporting system offers enhance analysis of iTunes U reports but because they ask for our shared secret and debug address, I have to ask around to see what others think of this.  Is anyone using it?  What is your experience with it?  Are there privacy issues involved that we should be concerned about?

    Not much in the way of information in an entire MONTH!

  • Installed VRN L2TP - but cannot connect due to machine Authentication - shared secret - ?

    Hi, I have an imac (os - x Version 10.9).  I installed VRN L2TP in order to view some TV.  However, cannot connect as am being asked to Machine Authenticate - shared secret.   ?  
    Clueless John

    Do you mean VPN? (That's a method for connecting to another network securely, and does indeed require a shared secret to connect using the L2TP method.)
    VPN is a way that you can view online TV from other countries that normally block global access. I believe it's an issue that the Apple Discussions terms of service would consider infringement, so your best option would be to talk directly with the software or service provider who's supplying your VPN.
    Matt

  • VPN settings for Apple TV - Shared Secret?

    We are setting up and on network tab on the mac > connect up > the L2TP / VPN server did not respond - verify settings (auto), asks for a shared secret...anyone know what to do....thanks, Louise

    does this have anything to do with AppleTV ?

  • Unable to enter shared secret

    Simple problem but no idea how to fix it. When I'm setting up L2TP it won't let me save a shared secret. I'm using 10.4 server and it lets me put a password in and save but when I check to see if it has started it says that it is enabled but not running. The log reads as follows:
    2007-11-20 18:29:23 GMT Loading plugin /System/Library/Extensions/L2TP.ppp
    2007-11-20 18:29:23 GMT Listening for connections...
    2007-11-20 18:29:23 GMT L2TP plugin: cannot configure secure transport (no shared secret found).
    2007-11-20 18:29:23 GMT Unable to initialize vpn plugin
    #End-Date: 2007-11-20 18:29:23 GMT
    Any help would be appreciated as I'm having troubles with pptp as well, if your feeling generous have a look at that one as well.
    Thanks

    Did you ever find resolution to this? I am having the same exact issue on 2 different machines.

Maybe you are looking for

  • Windows 7 Extremely Slow in Bootcamp. Help!?

    Hi all So i recently installed a 64 bit windows 7 partition on to my late 2011 13" macbook pro. The problems. WELL! i reinstalled the OS multiple times as each time, booting and opening applciations was SUPER sluggish and took minutes to open anythin

  • Need Help with scrollbars

    hu.. i have this JFrane that has a table which has scrollbars... i have included in my code setResizable(false) so the user will not be able to maximize the page.. i have a function AdScroll()[that adds scrollbars] that will be called every time i ad

  • How to check the OSS note in SAP Client system ?

    Hi all I just have a small question ... how do we check whether an OSS note is applied in the SAP client System or not ? Please let me know.. Thanks Mallikarjun

  • Ichat connection problem

    I live in Holland, after the 10.4.4 update I can no longer I chat with USA when I start the chat the dial spins then says that I "failed to respond" when I try to chat with my other home computer it works. when the usa trys to contact me it tells the

  • Some keys are not working in My HP laptop keyboard.

    I have hp pavilion g4  1201tx laptop. Suddenly its few keys stop working. Please help.