Having a problem getting smpatch update to work

I keep on getting this error message :
# smpatch update -i 119108-06
Unexpected Failure: com.sun.patchpro.util.FailedStateException: StateMachine.start(): com/sun/cc/platform/clientsignature/CNSSignException
I cannot find any docs on this problem...any ideas ?

Make sure you setup smpatch to go to sunsolve and use your sunsolve userID and pass correctly as with solaris 10 not all patches all accessable to the world with out a support account.

Similar Messages

  • I am having horrible problems getting some examples to work

    I am trying to get a couple examples to work from out of Java Examples in a Nutshell, but they are programmed oddly and will not work. I am using a windows 2000 platform with JDK 1.3.1 installed and working properly.
    I have so far typed in these 2 examples:
    import javax.swing.*;
    import java.awt.*;
    public class Containers extends JPanel
    { public Containers()
    { this.setBackground(Color.white);
    this.setFont(new Font("Dialog", Font.BOLD,24));
    JPanel p1 = new JPanel();
    p1.setBackground(new Color(200, 200, 200)); // Panel1 is darker
    this.add(p1); //p1 is contained by this component
    p1.add(new JButton("#1")); //Button 1 is contained in p1
    JPanel p2 = new JPanel();
    p2.setBackground(new Color(150,150,150)); // p2 is darker than p1
    p1.add(p2); // p2 is contained in p1
    p2.add(new JButton("#2")); // button 2 is contained in p2
    JPanel p3 = new JPanel();
    p3.setBackground(new Color(100,100,100));
    p2.add(p3); // p3 is contained in p2
    p3.add(new JButton("#3")); // button 3 is contained in p3
    JPanel p4 = new JPanel();
    p4.setBackground(new Color(150,150,150));
    p1.add(p4);
    p4.add(new JButton("#4")); //button 4 is contained in p4
    p4.add(new JButton("#5")); //Button 5 is also contained in p4
    this.add(new JButton("#6")); // button 6 is contained in this component
    And this program
    //ShowComponent.java
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.beans.*;
    import java.lang.reflect.*;
    import java.util.Vector;
    public class ShowComponent extends JPanel
    public static void main(String[] args)
    {  // process the command line to get the compenents to display
    Vector components = getComponentsFromArgs(args);
    // Create a frame (Window) to display the components to display
    JFrame frame = new JFrame("ShowComponent");
    // Handle window close requests by exiting the VM
    frame.addWindowListener(new WindowAdapter() { //anonymous inner class
    public void WindowClosing(WindowEvent e) { System.exit(0); }
    // set up a menu system that allows the user to select the Look And Feel
    // of the component from a list of installed PLAF's
    JMenuBar menubar = new JMenuBar(); // create a menu bar
    frame.setJMenuBar(menubar); // tell the frame to display the menubar
    JMenu plafmenu = createPlafMenu(frame); // create a menu
    menubar.add(plafmenu); // Add the menu to the menubar
    // Create a JTabbedPane to display each of the components
    JTabbedPane pane = new JTabbedPane();
    // Now add each component as a tab of the tabbed pane
    // use the unqualified component classname as the tab text
    for(int i = 0; i < components.size(); i++)
    { Component c = (Component)components.elementAt(i);
    String classname = c.getClass().getName();
    String tabname = classname.substring(classname.lastIndexOf('.')+1);
    pane.addTab(tabname,c);
    // Add the tabbedpane to the frame. Note: the call to getContentPane()
    // This is required for JFrame, but not for most swing components
    frame.getContentPane().add(pane);
    // Set the frame size and pop it up
    frame.pack(); //Make the frame as big as its children need
    frame.setVisible(true); // Make the frame visible on the screen
    // The main() method exits now but the Java VM keeps running because
    // all AWT programs automatically start an event-handling thread.
    //** this static method queries the system to find out what **
    //** Pluggable LookAndFeel (PLAF) implementations are available **
    //** then it creates a JMenu component that lists each of the **
    //** implementations by name and allows the user to select one **
    //** of them using JRadioButtonMenuItem components. When the **
    //** user selects one, the selected menu item traverses the **
    //** component hierarchy and tells all components to use the new**
    //** PLAF. **
    public static JMenu createPlafMenu(final JFrame frame)
    { //Creates the menu
    JMenu plafmenu = new JMenu("Look and Feel");
    // Create an object used for radio button mutual exclusion
    ButtonGroup radiogroup = new ButtonGroup();
    //Look up the available look and feels
    UIManager.LookAndFeelInfo[] plafs = UIManager.getInstalledLookAndFeels();
    //Loop through the plafs, add a menu item for each one
    for(int i = 0; i < plafs.length; i++)
    { String plafName = plafs[i].getName();
    final String plafClassName = plafs.getClassName();
    // Create the menu items
    JMenuItem item = plafmenu.add(new JRadioButtonMenuItem(plafName));
    // tell the menu item what to do when it is selected
    item.addActionListener(new ActionListener()
    { public void actionPerformed(ActionEvent e)
    { try
    { // Set the new Look And Feel
    UIManager.setLookAndFeel(plafClassName);
    // tell each component to change its look and feel
    SwingUtilities.updateComponentTreeUI(frame);
    //tell the frame to resize itsself to its childrens
    // new desired services
    frame.pack();
    catch(Exception ex) {System.err.println(ex);
    // Only allow one menu item to be selected at once
    radiogroup.add(item);
    return plafmenu;
    //** this method loops through the command line arguements looking for **
    //** class names of components to create and property settings for those**
    //** components in the form name=value. this method demonstrates **
    //** reflection and JavaBeans introspection as they can be aplied to **
    //** dynamically created GUI's **
    public static Vector getComponentsFromArgs(String[] args)
    { Vector components = new Vector();  // List of Components to return
    Component component = null; // the current component
    PropertyDescriptor[] properties = null; // Properties of the component
    Object[] methodArgs = new Object[1]; // we'll use this below
    nextarg: // this is a labeled loop
    for (int i = 0; i < args.length; i++)
    { // loop through all the arguments
    // if the argument does not contain an equal sign, then
    // it is a component class name. Otherwise it is a
    // property setting
    int equalsPos = args[i].indexOf('=');
    if (equalsPos == -1)
    { // Its the name of a component
    try { //Load the named component class
    Class componentClass = Class.forName(args[i]);
    //Instantiate it to create the component instance
    component = ((Component)componentClass.newInstance());
    //Use Java beans to introspect the component
    //And get the list of properties it supports
    BeanInfo componentBeanInfo = Introspector.getBeanInfo(componentClass);
    properties = componentBeanInfo.getPropertyDescriptors();
    catch (Exception e)
    { // If an step failed, print an error and exit
    System.out.println("Can't load, instantiate, " +
    "or introspect: " +args[i]);
    System.exit(1);
    //If we succeeded, store the component in the vector
    components.addElement(component);
    else { // the arg is a name=value property specification
    String name = args[i].substring(0, equalsPos); //property name
    String value = args[i].substring(equalsPos+1); //property value
    // If we do not hava component to set this proerty on, skip!
    if (component == null) continue nextarg;
    // Now look through the properties descriptors for this
    // Component to find one with the same name
    for(int p = 0; p < properties.length; p++)
    { if (properties[p].getName().equals(name))
    { // okay, we found a property of the right name
    // now to get its type, and the setter method
    Class type = properties[p].getPropertyType();
    Method setter = properties[p].getWriteMethod();
    //check if property is read- only !
    if (setter == null)
    { System.err.println("Property " + name+ "is read-only");
    continue nextarg; // continue with the next arguement
    // try to convert the property value to the right type
    // we support a small set of common property types here
    // Store the converted value in an object[] so it can
    //be easily passed when we invoke the property setter
    try { if (type == String.class)
    { // no conversion needed
    methodArgs[0] = value;
    else if (type == int.class)
    { // String to int
    methodArgs[0] = Integer.valueOf(value);
    else if (type == boolean.class)
    { //to boolean
    methodArgs[0] = Boolean.valueOf(value);
    else if (type == Color.class)
    { // to Color
    methodArgs[0] = Color.decode(value);
    else if (type == Font.class)
    { // String to Font
    methodArgs[0] = Font.decode(value);
    else { // if we cannotconvert, ignore the proprty
    System.err.println("Property " + name+ " is of unsupported type "
    + type.getName());
    continue nextarg;
    catch (Exception e)
    { System.err.println("Can't set Property: " + name);
    // NOw go to next command-line arg
    continue nextarg;
    // If we get here we didn't find the named property
    System.err.println("Warning: No such property: " + name);
    return components;
    //** A component subclass that demonstrates nested containers and components.
    //** It creates the hierarchy shown below, and uses different colors to
    //** distinguish the different nesting levels of the containers
    //** containers---panel1----button1
    //** | |---panel2----button2
    //** | | |----panel3----button3
    //** | |------panel40---button4
    //** | |---button5
    //** |---button6
    They both compile fine but when I go to run them together I get an error. the command given in the book to run them both together is:
    java ShowComponent\Containers
    But it does not work. I also tried to append Containers to the bottom of ShowComponent and I got an error that said public class Containers extends JPanel needs to have its own file called Containers.java . . I do not understand that as the file was named correctly for ShowComponent.java. I need to knw either what the true command is for running the programs together or what to name container.java that will make it run inside of ShowContainer.java
    this is very frustrating as I need to know these answers for work and no one here in the IT department knows how to program in Java but me

    Hi,
    I tried the example and got some weird error messages as follows:
    ********* error messages*********
    ShowComponent.java:90: cannot resolve symbol
    symbol : method getName ()
    location: class javax.swing.UIManager.LookAndFeelInfo[]
    { String plafName = plafs.getName();
    ^
    ShowComponent.java:91: cannot resolve symbol
    symbol : method getClassName ()
    location: class javax.swing.UIManager.LookAndFeelInfo[]
    final String plafClassName = plafs.getClassName();
    ^
    ShowComponent.java:139: cannot resolve symbol
    symbol : method indexOf (char)
    location: class java.lang.String[]
    int equalsPos = args.indexOf('=');
    ^
    ShowComponent.java:143: cannot resolve symbol
    symbol : method forName (java.lang.String[])
    location: class java.lang.Class
    Class componentClass = Class.forName(args);
    ^
    ShowComponent.java:161: cannot resolve symbol
    symbol : method substring (int,int)
    location: class java.lang.String[]
    String name = args.substring(0, equalsPos); //property name
    ^
    ShowComponent.java:162: cannot resolve symbol
    symbol : method substring (int)
    location: class java.lang.String[]
    String value = args.substring(equalsPos+1); //property value
    ^
    6 errors.
    *****end of error messages*****
    I use jdk1.3 and Win2000. Can anybody tell me how to delete above error messages?
    Thanks a lot.
    Li

  • Having a real problem getting my vi to work - great difficulty running sequence as desired

    Hi
    I am have a real problem getting my vi to work as required.
    I would like the my vi (EXAMPLE.vi in the vi library attached) to run continuously.  It should update the graphs on the front pannel and also save data to file when requested using the  save data to file button. (I have written a sub vi. to deal with this data handling and file saving which run in two while loops with the vi as can be seen on inspection of the block diagram)
    Now, what I would like is for the updating to pause whenever I change any of the settings on the front panel (which are controls in the first half of the sequence of the vi) so the hardware is reset.  As it is at the moment I have to stop the vi to change the front panel settings and then restart it in order for the first part of the sequence to run and re-set the values on the hardware.
    I guess I need to use some kind of event driven programming an event stucture or something like that. This is quite advanced and I don't know how to implement it. 
    Can anybody offer any Ideas. 
    Many many thanks
    Ashley
    Attachments:
    test library.llb ‏470 KB

    Hi,
    If you are new to event structures then you may find the following tutorial useful:
    Event-Driven Programming in LabVIEW
    http://zone.ni.com/devzone/conceptd.nsf/webmain/E5F8474BDA20C97786256B5A0066968B?opendocument
    A powerful New Tool for UI Programming--User Interface Event Programming
    http://zone.ni.com/devzone/conceptd.nsf/webmain/2a8ab43b28bbde1086256b830059875c
    Advanced Event Handling with LabVIEW 7 Express
    http://zone.ni.com/devzone/conceptd.nsf/webmain/aa79ff38336eb38886256d2b004aca49#1
    I hope this helps
    All the best
    Kurt

  • Hello, i am having problems getting face time to work, I keep getting an error message saying the server could not process the registration, I am using the username and password I always have and it has always worked in the past, any ideas?

    Hello, i am having problems getting face time to work, I keep getting an error message saying the server could not process the registration, I am using the username and password I always have and it has always worked in the past, any ideas?

    We aren't Apple, just users like you volunteering to help other users with problems. Threatening to go to Samsung doesn't mean anything to us. What troubleshooting have you tried so far?

  • I am having a problem installing the updated version 10.3.1.55 on my laptop.

    I am having a problem installing the updated version of Itunes 10.3.1.55 on my laptop which uses Windows XP operating system. I have download the software from Apple's website and have successfully installed it. However, when I launch Itunes I get an error message "Itunes was not installed correctly" "error 7 (windows error 999)". I have uninstalled the software, deleted all associated files, and reinstalled the software, but I am still having the same problem. I did not have any issues with the older version of Itunes. Does any one have a work around for this problem, or how can I download the old version I was using?

    Hi all,
    Sylonious, did you manage to sort this problem out? I have been experiencing similar problems. I think my problem was because I had many different versions of JDKs. I have done a complete re-install. I would be really grateful to you (and anyone else) for help with this problem.
    I have re-installed JSDK1.4.2_03, set the "path" variable to "C:\JSDK1.4.2_03".
    When I compile using "javac" I get an error saying "javac" is not recognised.
    When I compile using "C:\j2sdk1.4.2_03\bin\javac Freq.java" no error is thrown.
    Every time I try to run a java file, I always get the NoClassDefFound error. When run with the -verbose option, files are loaded from C:\Program Files\Java\j2re1.4.2_03\bin - is this correct?
    I have removed all previous references to java in the registry editor.
    Please help !
    Regards,
    Vipul

  • Getting Software Update to work?

    Hi guys,
    We're looking into trying to get Software Update to work on our Xserve.
    The network team have put the IP address into their Inty client to allow us direct access to the net.
    Problem is that when I start up the service and click update list nothing happens even tho it's downloaded some updates perviously (So confused.com)
    Looking back through the logs to see what the **** has gone wrong I found this under each log:
    *Software Update Service Log
    Mon May 11 15:01:07 xserve.X.X.X swupd_syncd[62831] <Info>: Started
    Mon May 11 15:01:08 xserve.X.X.X swupd_syncd[62831] <Error>: Unable to retrieve catalog index from the upstream server
    *Software Update Error Log
    [Wed May 13 14:32:05 2009] [notice] Apache/1.3.41 (Darwin) configured -- resuming normal operations
    [Wed May 13 14:32:05 2009] [notice] Accept mutex: flock (Default: flock)
    In the Xserve the options I have selected are the following services:
    * AFP
    * Netboot
    * NFS
    * Open Directory
    * SMB
    * Software Update
    Can someone please offer some advice on what I need to do to get this service working. As it would be handy to get the Mac's to communicate with the xserve rather than going to the net or sending the updates to the Mac's and not logging on each one at a time

    Post to the appropriate Server Products forum where those mavens congregate.

  • Anyone Get Live Update to Work on Win XP 64 Bit?

    The following happened when I installed MIS Live Update from both the MB's cd and the latest version of Live Update (v 3) downloaded from the MSI website.
    Installed Liveupdate.  Installation went fine.
    Said to restart comp.  Restarted comp.
    Windows booted.  Got error message "The service was not started".
    Computer restarted with no input from me.
    Windows booted and got same error message.
    Comp restarted again.
    This infinite restart loop continued.
    Pressed F8.  Went to Safe Mode. Uninstalled LIveupdate from Add/Remove Programs in CP.
    Restarted.
    Comp back to normal but no Live Update (as expected).
    Anyone else see this and/ or get Live Update to work with XP 64 bit edition?

    Yes you are right.  The system drive will always be Drive C, but I am not sure if D will be my storage drive or the other sytem drive.  I could always try and find out but just havn't.
    In the past, I had lots of virtual drives (partitions), and HDD's (as many as 10 total IDE devices).  But when the larger drives became more affordable, I prefer running with just 2, the system and storage for the sake of simplicity.  Since I do beta testing, I have having to reformat and reinstall a lot, so this system has worked great for me.

  • I'm having a problem getting on/listening most stations?

    I'm having a problem getting on/listening most stations?

    I really wish I had started counting, you must be post #100 or something.  I suggest you browse this forum.  This issue has been going on for at least 3 days now.  It happens to some part of the time, some for all the time, not at all to others.
    It's not clear what the issue is, or where it lies.  If it's something to do with Apple's servers they are not likely to discuss it.  There was an issue like this a few months ago with the weather widgets and people kept on posting with no news until one day it suddenly started working, again with no news.  If you wish to, you can report to Apple.
    http://www.apple.com/feedback/itunesapp.html
    There are other applications that let you listed to online radio if you are desperate.  Check www.pure-mac.com

  • Problem getting windows updates for windows 7

    hi,
    I am using windows 7 beta version. I have problem getting windows updates for my windows 7. When i click on check updates error code 80072F8f occurs. The same goes to any windows application like Live Mail, Live Messanger and i can't even activate my windows 7. But i can use IE8 and other external applications like Yahoo Messanger and my Avast antivirus can even update itself. Just that windows application can't connect to internet for updates. Help me please.
    Thank You.
    Regards,
    Thilek

    On January 13, Microsoft ends support for the Windows 7 Service Pack (SP) 1. No need to panic. That does not mean your computer with Windows 7 is going to automatically break or stop working. Though the
    Extended Support for Microsoft product with free security update is not ending until Jan 14, 2020 comes.
    If you want to know more of this, then go through http://techyuga.com/microsoft-ends-support-for-windows-7/

  • Can not get Software Update to work in Mountain Lion, switches to App Store

    Can not get Software Update to work in Mountain Lion, switches to App Store

    Software Update is now in the Mac App Store...
    See Here  >  Re: Software update on Mountain Lion

  • I am having a problem getting my office jet pro 8500 to go online to print. How do i set it to go on

    I am having a problem getting my office jet pro 8500 to go online to print. How do i set it to go online. I have run all of hp's diagnostics and everything passes. it prints the test pages but will not print any other jobs for me.

    This might help - https://discussions.apple.com/docs/DOC-3792

  • Having a problem getting the Viber 4 digit SMS access code.

    Having a problem getting the 4 digit SMS access code. Even when I click on the get code tab, It says an error has occurred during the Viber activation process.

    Is Viber an app? have you tried contacting the developer?

  • I updated to the 7.1.2 and now my wifi is messed up and my service is screwed up and I wasn't having any problems until I updated! I need help!!

    I updated to the 7.1.2 and now my wifi is messed up and my service is screwed up and I wasn't having any problems until I updated! I need help!!

    Hopefully you won't have to make a trip to the Apple Store.
    Reset the device:
    Press and hold the Sleep/Wake button and the Home button together for at least ten seconds, until the Apple logo appears.
    If that doesn't help, tap Settings > General > Reset > Reset All Settings
    If that does not help, restore the software >  iTunes: Restoring iOS software

  • Having problems getting Comcast internet to work with my power Mac running 10.5.8  Help needed

    Just got Comcast Cable and everything works: phone, WiFi, and TV, BUT ethernet won;t work with my power mac tower running 10.5.8 . Hooked modem to laptop running Microsoft and no problem, but it won't work with my Mac.  Any solutions out there?

    Hi, see if this changes anything...
    Make a New Location, Using network locations in Mac OS X ...
    http://support.apple.com/kb/HT2712
    10.5, 10.6, 10.7 & 10.8…
    System Preferences>Network, top of window>Locations>Edit Locations, little plus icon, give it a name.
    10.5.x/10.6.x/10.7.x/10.8.x instructions...
    System Preferences>Network, click on the little gear at the bottom next to the + & - icons, (unlock lock first if locked), choose Set Service Order.
    The interface that connects to the Internet should be dragged to the top of the list.
    If using Wifi/Airport...
    Instead of joining your Network from the list, click the WiFi icon at the top, and click join other network. Fill in everything as needed.
    For 10.5/10.6/10.7/10.8, System Preferences>Network, unlock the lock if need be, highlight the Interface you use to connect to Internet, click on the advanced button, click on the DNS tab, click on the little plus icon, then add these numbers...
    208.67.222.222
    208.67.220.220
    (There may be better or faster DNS numbers in your area, but these should be a good test).
    Click OK.

  • I'm having problems getting my updates from the App Store. Nothing is showing up.

    I can't get my updates from the App Store . The screen is completely blank . Anyone have a solution ?

    The update server is down; try this temporary workaround
    App Store>Purchased>Select "All"
    Note: Look out for apps that have the word "Update"
    http://i1224.photobucket.com/albums/ee374/Diavonex/9c256282736869f322d4b3071bbb2 a82_zps51a6f546.jpg

Maybe you are looking for

  • SD SALES ORDER STOCK VALUATION IN RETURNS

    Hi, gurus: We are creating SD returns with reference to the previous outbound invoice. This previous document had separated sales order stock. For this returns items, we are using a requirement class very similar to the outbound sales order item, whi

  • Sound after render

    I've tried rendering several times, with video shot from my iPhone, along with a few animated clips and imported music besides the music which is only a minute long, there is only the sound from the video(which is needed). The problem comes after ren

  • Why all os a sudden does Adobe Reader crash I have been using for a long while everytime I try to install it again it makes firfox crash I don't know what the p

    This problem has just started about a week ago or so it worked fine before this Firefox works fine without Adobe I just don't know why this has happened I need Adobe I don't like to change to Google Chrome because I would have to install all my progr

  • Strange backwards skipping in iTunes.

    Hey everyone. I've been having this bizarre problem with my iTunes. Ever since I had this desktop, iTunes has always been a little off. When I go to play a song, the song is completely skipped over and then iTunes proceeds to go backwards through my

  • Authenticating EJB 3 Session Bean Web services

    I have some session beans that I want to expose directly as web services in Glassfish. My question is how do I protect them to only be used by authorized people? Do I simply use standard role based JEE authentication like normal session beans? Is the