MS's plug in and Sun's plug in

In my company we have two legacy enterprise applets. One of them runs over MS's plug-in (Java1) and the other over Sun's plug-in (Java2).
There exists some way to indicate the IE browser how plug-in have to choose for every applet? In production users have to use both at the same time.
Could help me <APPLET> and <OBJECT> in this case in redirection?

Thanks, pervel. Your help is useful for me.
In IE, you can set the option of forcing Sun's Java for <applet> tag. If you leave this option unchecked, then MS's JVM takes control when <applet> appears.
Thus, you can force Sun's JVM combined with <object> tag while leaving MS's JVM solving <applet> requests. This would close the problem.

Similar Messages

  • Replace Quotes, Connection Pooling, and Sun Web Server with MySQL, Oracle

    This is code I use to insert data into my MySQL and Oracle databases.
    I takes care of quotes and shows use of context, i.e. when you use Sun Web Server's
    ConnectionPooling. This code works. Feel free to reply if you have questions on how to set up connection pooling using Sun Web Server 6.1SP - it took quite a long time to learn and I couldn't find much information throughout the web, so I hope this helps...
    This is not a question and I am not looking for an answer, but please post comments or suggestions.
    dailysun
    This is in one class where I have a hashtable containing the
    column name / value pairs that I want to enter into my table.
    This class simply creates the SQL string from the values in the
    hashtable. It then passes that hashtable including the database
    name to a class which executes that sql statement (second code
    portion).
    /* Insert data into sf_parts. Create the column strings from
             * the provided hash table. Be sure to parse out hash elements which
             * are used for the createTemplate process
            StringBuffer values = new StringBuffer();
            StringBuffer fields = new StringBuffer();
            Enumeration keys = fieldHash.keys();
            while(keys.hasMoreElements()){
                Object currentKey = keys.nextElement();
                    String fieldValue = (String) fieldHash.get(currentKey);
                    if(values.length() >0){
                        values.append(",");
                    values.append("'"+fieldValue.replaceAll("'","''")+"'"); // Takes care of quotes and various other special characters!
                    if(fields.length() >0){
                        fields.append(",");
                    fields.append(currentKey);
            sql = "INSERT INTO myTable (" + fields.toString() + ") VALUES (" + values.toString() + ");";
            String insertResult = caq.getInsertDelete(sql,"myDatabaseName"); // your database name is defined in web.xml and sun-web.xml when you use Sun Web Server's Connection Pooling.
            returnValue += "<br><br><b>Rows inserted into table(myTable): </b>" + insertResult + "<br>\n";
            And, like I describe above, this method executes the sql statement.
         * Takes care of insert, update and delete requests.
         * Must have set both dbName as well as the sql String.
         * Will return number of rows affected as String.
         * @return String Number of rows affected
         * @exception SQLException
         * @exception Exception
        public String getInsertDelete() {
            checkData(); // this simply checks if the variables dbName and sql are not empty ;-)
            InitialContext initContext = null;
            int rv = 0;
            try{
                // Get connection from configured pool
                initContext = new InitialContext();
                source = (DataSource) initContext.lookup("java:comp/env/jdbc/" + dbName); // I have this set up in web.xml and sun-web.xml (I use Sun Web Server 6.1SP which does connection pooling for me)
                conn = source.getConnection();
                if(conn != null){
                    stmt = conn.createStatement();
                    rv = stmt.executeUpdate(sql);
            }catch (SQLException e){
                // do something
            }catch (Exception e){
                // do something
            }finally{
                try{
                    stmt.close();
                }catch(Exception e){
                    // do something
                try{
                    conn.close();
                }catch(Exception e){
                    // do something
                try{
                    initContext.close();
                }catch(Exception e){
                    // do something
            return rv+"";
        }  

    This is code I use to insert data into my MySQL and
    Oracle databases.
    I takes care of quotes and shows use of context, i.e.
    when you use Sun Web Server's
    ConnectionPooling. This code works. Feel free to
    reply if you have questions on how to set up
    connection pooling using Sun Web Server 6.1SP - it
    took quite a long time to learn and I couldn't find
    much information throughout the web, so I hope this
    helps...
    This is not a question and I am not looking for an
    answer, but please post comments or suggestions.Using prepared statements would mean that you wouldn't have to worry about quotes.
    You should be closing the result set.
    You are handling all fields as strings. That won't work with time fields and might not work for numeric fields.
    Presumably most of your variables are member variables. They should be local variables because that is the scope of the usage.
    You must do something with the exceptions.
    Hashtables although convienent mean that problems with usage can only be resolved at run time rather than compile time.

  • Java.io and sun.io

    What is difference between "java.io" and "sun.io",
    I can not find the "sun.io" in Java2 API and
    where can find it.

    The java.* packages are the only packages that are considered "part" of Java. Any extra classes that may be bundled with a release should be considered supplementary and transient - if you look at their documentation, you will likely find warnings that the details of these classes may not be consistent in future releases, nor may the classes even exist.
    The difference is that java.io is the stable one that you should be using... The implementation may be using sun.io behind the scenes, but if you use java.io, then if the implementation changes (As it appears to), you don't care.
    If you can't find it, there's a good chance you aren't supposed to.
    The exception to above is the javax.* package... these represent java extensions, and are also considered standard.
    -Troy
    PS- Yes, the changing sun.* class/package structure is extremely bad policy, not to be emulated... once an API is released, it is considered 'polite' to leave it backwards-compatible, or at least offer upgrade advice.

  • Real Application Cluster on Sun Solaris 8 and Sun Cluster 3

    Hello,
    we want to install Oracle 9i Enterprise Edition in combination with Oracle Real Application Cluster-Option on 2 Nodes. Every node (12-CPU-SMP-Machine) should running Sun Solaris 8 and Sun Cluster 3 Service.
    Does this configuration work with ORAC? I found nowhere informations about. Is there anything I have to pay special attention for during installation?
    Thank you for helping and best regards from Berlin/Germany
    Michael Wuttke

    Forms and report services work fine on solaris 8.
    My problem is on the client side.
    I have to use solaris 8 with netscape like forms clients
    and I wasn't able to make it work with java plugins.
    Any solution?
    Mauro

  • Smpatch and Sun Update Manager BROKEN - Solaris 10 Sparc

    Since the installation of patch 121118-12, smpatch and Sun Update Manager (SUM) 1.0.9 are completely broken for myself and many, many other Solaris 10 users. Numerous significant bugs are listed in the release notes for the client:
    http://www.sun.com/bigadmin/features/hub_articles/sc_update_rn.jsp
    smpatch analyze and download seems to work, but the system completely hangs on smpatch update, every time. During the hang, smpatch/SUM-related processes are duplicated. This is not mentioned in the release notes.
    Here is the results of "ps -ef | grep patch" when smpatch update hangs upon patch install:
    username 1365 1 0 18:39:38 ? 0:10 /usr/bin/java -jar /usr/lib/patch/swupna.jar
    root 2305 2275 0 18:48:05 ? 0:00 /usr/bin/java -Djava.library.path=/usr/lib/cc-ccr/lib com.sun.patchpro.cli.Patc
    root 2270 2261 0 18:45:34 ? 0:00 smpatch update -i 120222-18 -i 119115-28 -i 119090-24 -i 120099-08 -C patchpro.
    username 1061 1055 0 18:33:40 ? 2:34 /usr/bin/java -client -jar /usr/lib/patch/swupdate.jar
    root 1072 1061 0 18:33:57 ? 0:00 sh -c /usr/lib/patch/csm
    root 1073 1072 0 18:34:01 ? 0:00 /usr/lib/patch/csm
    root 2261 1073 0 18:45:33 ? 0:00 smpatch update -i 120222-18 -i 119115-28 -i 119090-24 -i 120099-08 -C patchpro.
    root 2275 2266 0 18:45:34 ? 1:20 /usr/bin/java -Djava.library.path=/usr/lib/cc-ccr/lib com.sun.patchpro.cli.Patc
    Note the duplicated smpatch and java processes. This is a networked, stand-alone system. Killing the secondary smpatch and java -Djava.lib... processes stops the hang, but always results in installation failure for at least one patch.
    Other than "killing hung processes and retry" as given in the release notes (bogus), what are good workarounds for the smpatch bug(s), which have severely impacted my system? When will Sun release a new SUM client? The current version is completely hosed.

    Thank you VERY much for your reply. I really appreciate your help.
    Yes, smpatch works fine without patch 121118-12 installed (121118-10 is now my current smpatch level).
    Here are the results of showrev -p:
    Patch: 118367-04 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 118371-07 Obsoletes: 119265-02 Requires: Incompatibles: Packages: SUNWcsu, SUNWcsl, SUNWtoo
    Patch: 118373-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 118872-04 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 118918-22 Obsoletes: 116781-02, 121473-01, 121476-01, 121478-01, 121282-02, 121284-02, 121292-01, 121786-01, 119012-03, 123444-01 Requires: Incompatibles: Packages: SUNWcsu, SUNWcsr, SUNWcsl, SUNWcnetr, SUNWckr, SUNWcar, SUNWcakr, SUNWhea, SUNWcslr, SUNWmdb, SUNWmdbr
    Patch: 119042-10 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu, SUNWcsr, SUNWcsd, SUNWtnamr, SUNWkrbr, SUNWtnetr, SUNWocfr, SUNWvolr, SUNWnfscr, SUNWgssc, SUNWpmr, SUNWnisr, SUNWzoner, SUNWmdr, SUNWbsr, SUNWatfsr, SUNWcnsr, SUNWpcr, SUNWpsr, SUNWnfssr, SUNWntpr, SUNWpiclr, SUNWftpr, SUNWrcapr, SUNWrcmdr, SUNWslpr, SUNWsndmr, SUNWsshdr
    Patch: 119573-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 119574-02 Obsoletes: 119267-01 Requires: Incompatibles: Packages: SUNWcsu
    Patch: 119578-30 Obsoletes: 119330-01, 119331-01, 119559-01, 119576-01, 120635-02, 122396-01 Requires: Incompatibles: Packages: SUNWcsu, SUNWcsl, SUNWckr, SUNWhea, SUNWfmd, SUNWarc
    Patch: 119824-02 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 120044-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 120050-04 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 120062-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu, SUNWloc
    Patch: 120128-02 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu, SUNWxcu6
    Patch: 120618-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 120737-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 120816-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu, SUNWesu, SUNWxcu4
    Patch: 120830-05 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu, SUNWtoo, SUNWxcu4, SUNWxcu6
    Patch: 120845-03 Obsoletes: 121905-01, 123354-03 Requires: Incompatibles: Packages: SUNWcsu, SUNWcsl, SUNWhea
    Patch: 120988-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 121002-03 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 121012-02 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 121132-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 121215-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 121288-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 121296-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 121406-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 121901-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 122032-02 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 122183-02 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 122412-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 122513-02 Obsoletes: 122328-01 Requires: Incompatibles: Packages: SUNWcsu
    Patch: 123015-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 123017-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 123194-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 123319-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 123322-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 123326-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu, SUNWxcu4
    Patch: 123328-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu, SUNWxcu4, SUNWxcu6
    Patch: 123520-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu, SUNWxcu4
    Patch: 124325-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 121453-02 Obsoletes: 120776-03, 121086-02, 119107-07 Requires: 119574-02, 119254-06 Incompatibles: Packages: SUNWcsu, SUNWcsr, SUNWccccrr, SUNWccccr, SUNWccfw, SUNWccsign, SUNWcctpx, SUNWccinv, SUNWcsmauth, SUNWppror, SUNWpprou, SUNWupdatemgrr, SUNWupdatemgru, SUNWswupcl, SUNWccccfg, SUNWccfwctrl, SUNWppro-plugin-sunos-base
    Patch: 118833-33 Obsoletes: 118822-30, 118348-01, 118868-01, 120996-02, 121298-01, 119712-04, 119852-03, 119943-01, 119984-03, 120052-03, 120196-02, 121000-05, 117170-01, 117461-08, 118370-04, 118375-07, 118852-07, 118874-02, 118911-01, 118913-02, 118927-02, 118996-04, 119216-02, 119218-02, 119374-13, 119444-03, 119557-09, 119568-02, 119569-02, 119572-01, 119596-03, 119681-08, 119687-02, 119689-08, 119715-10, 119828-05, 119939-01, 119941-03, 119992-02, 119994-01, 119996-01, 120009-01, 120030-03, 120034-01, 120054-02, 120083-01, 120251-02, 120254-03, 120258-02, 120300-01, 120362-02, 120627-01, 121237-01, 121266-01, 121268-01, 121276-03, 121280-01, 121301-02, 121777-01, 121784-01, 121788-02, 121790-01, 121792-01, 121794-02, 121796-01, 121798-01, 121800-01, 121802-01, 121804-01, 121806-01, 121808-01, 121810-01, 121812-01, 121814-01, 121816-01, 121818-01, 121820-01, 121822-01, 121824-01, 121826-01, 121832-01, 121834-01, 121836-01, 121838-01, 121840-01, 121842-01, 121844-01, 121846-01, 121848-01, 121850-01, 121852-01, 121854-01, 121894-01, 122079-01, 122081-01, 122176-01, 122235-01, 122237-02, 122241-01, 122242-01, 122243-01, 122294-01, 122296-01, 122298-01, 122302-01, 122304-01, 122306-01, 122314-01, 122316-01, 122318-01, 122320-01, 122322-01, 122324-01, 122334-01, 122336-01, 122338-01, 122339-01, 122342-01, 122344-01, 122346-01, 122348-01, 122350-01, 122644-01, 120661-04, 121694-01, 118346-05, 118812-03, 118857-01, 118920-02, 119562-01, 119571-01, 119587-01, 120467-05, 121782-01, 123950-02, 118915-01, 119560-02, 119561-03, 119333-01, 119582-04, 122333-01, 122364-01, 122366-01, 122368-01, 122370-01, 122372-01, 122374-01, 122378-01, 122380-01, 122382-01, 122384-01, 122386-01, 122392-01, 119850-22, 119982-05, 120036-07, 120253-03, 120664-01, 120844-01, 121236-02, 121693-03, 122027-08, 122215-01, 122253-01, 122388-01, 122406-01, 122523-03, 122539-06, 122650-02, 122750-01, 123302-01, 123320-01, 123352-05, 123524-01, 122394-01, 122519-01, 122652-04, 123336-01, 120198-05, 121302-01, 122195-03, 122648-02, 122856-03, 123066-01, 123304-02, 123442-02, 123522-01, 123914-02, 123952-01, 124282-01, 118548-01, 118550-04, 119719-01, 119205-03, 119207-02, 119564-01, 119215-02, 119334-02, 119566-01, 119831-01, 119682-02, 118859-01, 118992-03, 119858-02, 120197-01, 118850-03, 119589-03, 118551-03, 118835-04, 118846-02, 118923-04, 119075-14, 119577-01, 119683-02, 119832-02, 119945-02, 119951-01, 119949-02, 119983-01, 119990-01, 120017-02, 120302-01, 120304-05, 119947-02, 120066-01, 118553-04, 119591-03, 119979-01, 120537-05, 120013-02, 120471-02, 124206-02 Requires: 118918-13, 119254-14, 119578-15, 119578-24 Incompatibles: Packages: SUNWcsu, SUNWcsr, SUNWcsl, SUNWcnetr, SUNWckr, SUNWkvm, SUNWcar, SUNWcakr, SUNWcsd, SUNWesu, SUNWkrbr, SUNWkrbu, SUNWtoo, SUNWib, SUNWipoib, SUNWtavor, SUNWudapltu, SUNWudapltr, SUNWudfr, SUNWaudd, SUNWusb, SUNWusbs, SUNWuedg, SUNWugen, SUNWuksp, SUNWopenssl-libraries, SUNWwbsup, SUNWuprl, SUNWusbu, SUNWvolr, SUNWnfsckr, SUNWnfscr, SUNWnfscu, SUNWvolu, SUNWrcmdc, SUNWscpu, SUNWxcu4, SUNWxge, SUNWxcu6, SUNWsmapi, SUNWnisu, SUNWmdr, SUNWmdu, SUNWcpr, SUNWhea, SUNWpiclu, SUNWses, SUNWssad, SUNWcslr, SUNWnfssu, SUNWintgige, SUNWipfh, SUNWipfr, SUNWipfu, SUNWcpcu, SUNWmdb, SUNWmdbr, SUNW1394, SUNWbtool, SUNWarc, SUNWarcr, SUNWkey, SUNWatfsr, SUNWatfsu, SUNWaudh, SUNWbart, SUNWmddr, SUNWsacom, SUNWpcu, SUNWppm, SUNWpsu, SUNWdfbh, SUNWnfsskr, SUNWnfssr, SUNWdtrc, SUNWdtrp, SUNWopenssl-commands, SUNWscplp, SUNWpd, SUNWpdu, SUNWpl5v, SUNWftdur, SUNWqos, SUNWroute, SUNWrpcib, SUNWsbp2, SUNWscsa1394, SUNWsndmr, SUNWsndmu
    Patch: 119986-03 Obsoletes: Requires: 122176-01, 118833-12 Incompatibles: Packages: SUNWcsu
    Patch: 120986-08 Obsoletes: 121008-02, 121274-01, 121414-01, 123932-02 Requires: 118822-24, 118833-25, 119374-09 Incompatibles: Packages: SUNWcsu
    Patch: 122172-06 Obsoletes: Requires: 118833-12 Incompatibles: Packages: SUNWcsu, SUNWcsr
    Patch: 122174-03 Obsoletes: Requires: 118833-12 Incompatibles: Packages: SUNWcsu
    Patch: 122521-01 Obsoletes: 121856-01 Requires: 118833-04 Incompatibles: Packages: SUNWcsu
    Patch: 123334-04 Obsoletes: Requires: 118833-18 Incompatibles: Packages: SUNWcsu
    Patch: 122660-07 Obsoletes: 122658-04, 122662-05, 123418-02, 123420-02, 123422-03 Requires: 124204-01, 122640-02, 121133-02, 118833-33, 120900-04, 118731-01 Incompatibles: Packages: SUNWcsu, SUNWcsr, SUNWzoneu
    Patch: 124997-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 122032-03 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 118833-36 Obsoletes: 118822-30, 118348-01, 118868-01, 120996-02, 121298-01, 119712-04, 119852-03, 119943-01, 119984-03, 120052-03, 120196-02, 121000-05, 117170-01, 117461-08, 118370-04, 118375-07, 118852-07, 118874-02, 118911-01, 118913-02, 118927-02, 118996-04, 119216-02, 119218-02, 119374-13, 119444-03, 119557-09, 119568-02, 119569-02, 119572-01, 119596-03, 119681-08, 119687-02, 119689-08, 119715-10, 119828-05, 119939-01, 119941-03, 119992-02, 119994-01, 119996-01, 120009-01, 120030-03, 120034-01, 120054-02, 120083-01, 120251-02, 120254-03, 120258-02, 120300-01, 120362-02, 120627-01, 121237-01, 121266-01, 121268-01, 121276-03, 121280-01, 121301-02, 121777-01, 121784-01, 121788-02, 121790-01, 121792-01, 121794-02, 121796-01, 121798-01, 121800-01, 121802-01, 121804-01, 121806-01, 121808-01, 121810-01, 121812-01, 121814-01, 121816-01, 121818-01, 121820-01, 121822-01, 121824-01, 121826-01, 121832-01, 121834-01, 121836-01, 121838-01, 121840-01, 121842-01, 121844-01, 121846-01, 121848-01, 121850-01, 121852-01, 121854-01, 121894-01, 122079-01, 122081-01, 122176-01, 122235-01, 122237-02, 122241-01, 122242-01, 122243-01, 122294-01, 122296-01, 122298-01, 122302-01, 122304-01, 122306-01, 122314-01, 122316-01, 122318-01, 122320-01, 122322-01, 122324-01, 122334-01, 122336-01, 122338-01, 122339-01, 122342-01, 122344-01, 122346-01, 122348-01, 122350-01, 122644-01, 120661-04, 121694-01, 118346-05, 118812-03, 118857-01, 118920-02, 119562-01, 119571-01, 119587-01, 120467-05, 121782-01, 123950-02, 118915-01, 119560-02, 119561-03, 119333-01, 119582-04, 122333-01, 122364-01, 122366-01, 122368-01, 122370-01, 122372-01, 122374-01, 122378-01, 122380-01, 122382-01, 122384-01, 122386-01, 122392-01, 119850-22, 119982-05, 120036-07, 120253-03, 120664-01, 120844-01, 121236-02, 121693-03, 122027-08, 122215-01, 122253-01, 122388-01, 122406-01, 122523-03, 122539-06, 122650-02, 122750-01, 123302-01, 123320-01, 123352-05, 123524-01, 122394-01, 122519-01, 122652-04, 123336-01, 120198-05, 121302-01, 122195-03, 122648-02, 122856-03, 123066-01, 123304-02, 123442-02, 123522-01, 123914-02, 123952-01, 124282-01, 118548-01, 118550-04, 119719-01, 119205-03, 119207-02, 119564-01, 119215-02, 119334-02, 119566-01, 119831-01, 119682-02, 118859-01, 118992-03, 119858-02, 120197-01, 118850-03, 119589-03, 118551-03, 118835-04, 118846-02, 118923-04, 119075-14, 119577-01, 119683-02, 119832-02, 119945-02, 119951-01, 119949-02, 119983-01, 119990-01, 120017-02, 120302-01, 120304-05, 119947-02, 120066-01, 118553-04, 119591-03, 119979-01, 120537-05, 120013-02, 120471-02, 124206-02, 118870-02, 123348-04, 122410-01 Requires: 118918-13, 119254-14, 119042-09, 119578-30 Incompatibles: Packages: SUNWcsu, SUNWcsr, SUNWcsl, SUNWcnetr, SUNWckr, SUNWkvm, SUNWcar, SUNWcakr, SUNWcsd, SUNWesu, SUNWkrbr, SUNWkrbu, SUNWtoo, SUNWib, SUNWipoib, SUNWtavor, SUNWudapltu, SUNWudapltr, SUNWudfr, SUNWaudd, SUNWusb, SUNWusbs, SUNWuedg, SUNWugen, SUNWuksp, SUNWopenssl-libraries, SUNWwbsup, SUNWuprl, SUNWusbu, SUNWvolr, SUNWnfsckr, SUNWnfscr, SUNWnfscu, SUNWvolu, SUNWrcmdc, SUNWscpu, SUNWxcu4, SUNWxge, SUNWxcu6, SUNWsmapi, SUNWnisu, SUNWmdr, SUNWmdu, SUNWcpr, SUNWhea, SUNWpiclu, SUNWses, SUNWssad, SUNWcslr, SUNWnfssu, SUNWintgige, SUNWipfh, SUNWipfr, SUNWipfu, SUNWcpcu, SUNWmdb, SUNWmdbr, SUNW1394, SUNWbtool, SUNWarc, SUNWarcr, SUNWkey, SUNWatfsr, SUNWatfsu, SUNWaudh, SUNWbart, SUNWmddr, SUNWsacom, SUNWpcu, SUNWppm, SUNWpsu, SUNWdfbh, SUNWnfsskr, SUNWnfssr, SUNWdtrc, SUNWdtrp, SUNWopenssl-commands, SUNWscplp, SUNWpd, SUNWpdu, SUNWpl5v, SUNWftdur, SUNWqos, SUNWroute, SUNWrpcib, SUNWsbp2, SUNWscsa1394, SUNWsndmr, SUNWsndmu
    Patch: 124922-02 Obsoletes: Requires: 118833-36 Incompatibles: Packages: SUNWcsu, SUNWcslr
    Patch: 118918-24 Obsoletes: 116781-02, 119012-03, 121282-02, 121284-02, 121292-01, 121473-01, 121476-01, 121478-01, 121786-01, 123444-01 Requires: Incompatibles: Packages: SUNWcsu, SUNWcsr, SUNWcsl, SUNWcnetr, SUNWckr, SUNWcar, SUNWcakr, SUNWhea, SUNWcslr, SUNWmdb, SUNWmdbr
    Patch: 124244-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu, SUNWxcu4
    Patch: 122032-04 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 118371-08 Obsoletes: 119265-02 Requires: Incompatibles: Packages: SUNWcsu, SUNWcsl, SUNWtoo
    Patch: 118371-09 Obsoletes: 119265-02 Requires: Incompatibles: Packages: SUNWcsu, SUNWcsl, SUNWtoo
    Patch: 120845-04 Obsoletes: 121905-01, 123354-03 Requires: 118833-25 Incompatibles: Packages: SUNWcsu, SUNWcsl, SUNWhea
    Patch: 124918-02 Obsoletes: Requires: 118833-36 Incompatibles: Packages: SUNWcsu
    Patch: 124250-03 Obsoletes: Requires: 118833-36 Incompatibles: Packages: SUNWcsu, SUNWckr, SUNWhea
    Patch: 125100-04 Obsoletes: 119998-02, 122513-02, 123441-05, 123916-05, 124916-03, 125018-02, 125028-02 Requires: 118833-36, 119042-09, 121901-01 Incompatibles: Packages: SUNWcsu, SUNWcsr, SUNWcsl, SUNWckr, SUNWkvm, SUNWcar, SUNWcakr, SUNWcsd, SUNWcpr, SUNWhea, SUNWssad, SUNWcpcu, SUNWmdb, SUNWmdbr
    Patch: 122660-08 Obsoletes: 122658-04, 122662-05, 123418-02, 123420-02, 123422-03 Requires: 118731-01, 118833-33, 120900-04, 121133-02, 122640-02, 124204-01 Incompatibles: Packages: SUNWcsu, SUNWcsr, SUNWzoneu
    Patch: 124922-03 Obsoletes: Requires: 118833-36 Incompatibles: Packages: SUNWcsu, SUNWcsl, SUNWckr, SUNWtoo, SUNWhea, SUNWcslr, SUNWbtool, SUNWarcr
    Patch: 125100-05 Obsoletes: 119998-02, 122513-02, 123441-05, 123916-05, 124916-03, 125018-02, 125028-02 Requires: 118833-36, 119042-09, 119578-30, 121901-01 Incompatibles: Packages: SUNWcsu, SUNWcsr, SUNWcsl, SUNWckr, SUNWkvm, SUNWcar, SUNWcakr, SUNWcsd, SUNWcpr, SUNWhea, SUNWssad, SUNWcpcu, SUNWmdb, SUNWmdbr
    Patch: 118371-10 Obsoletes: 119265-02 Requires: Incompatibles: Packages: SUNWcsu, SUNWcsl, SUNWtoo
    Patch: 120845-05 Obsoletes: 121905-01, 123354-03 Requires: 118833-25 Incompatibles: Packages: SUNWcsu, SUNWcsl, SUNWhea
    Patch: 121901-02 Obsoletes: Requires: 119042-09 Incompatibles: Packages: SUNWcsu
    Patch: 125100-06 Obsoletes: 119998-02, 122328-01, 122513-02, 123441-05, 123916-05, 124916-03, 125018-02, 125028-02 Requires: 118833-36, 119042-09, 119578-30, 120629-06, 121901-01, 124327-04 Incompatibles: Packages: SUNWcsu, SUNWcsr, SUNWcsl, SUNWckr, SUNWkvm, SUNWcar, SUNWcakr, SUNWcsd, SUNWcpr, SUNWhea, SUNWssad, SUNWcpcu, SUNWmdb, SUNWmdbr
    Patch: 123334-05 Obsoletes: Requires: 118833-18 Incompatibles: Packages: SUNWcsu
    Patch: 120050-06 Obsoletes: 124208-01 Requires: 118833-25 Incompatibles: Packages: SUNWcsu, SUNWhea
    Patch: 125100-07 Obsoletes: 119998-02, 122328-01, 122513-02, 123441-05, 123916-05, 124916-03, 125018-02, 125028-02 Requires: 118833-36, 119042-09, 119578-30, 120629-06, 121901-01, 124327-04 Incompatibles: Packages: SUNWcsu, SUNWcsr, SUNWcsl, SUNWckr, SUNWkvm, SUNWcar, SUNWcakr, SUNWcsd, SUNWcpr, SUNWhea, SUNWssad, SUNWcpcu, SUNWmdb, SUNWmdbr
    Patch: 122660-09 Obsoletes: 122658-04, 122662-05, 123418-02, 123420-02, 123422-03 Requires: 118731-01, 118833-33, 120900-04, 121133-02, 122640-02, 124204-01 Incompatibles: Packages: SUNWcsu, SUNWcsr, SUNWzoneu
    Patch: 125100-08 Obsoletes: 119336-01, 119586-02, 119998-02, 122328-01, 122513-02, 123441-05, 123916-05, 124916-03, 125018-02, 125028-02, 125792-01 Requires: 118833-36, 119042-09, 119578-30, 120629-06, 121901-01, 124327-04 Incompatibles: Packages: SUNWcsu, SUNWcsr, SUNWcsl, SUNWckr, SUNWkvm, SUNWcar, SUNWcakr, SUNWcsd, SUNWib, SUNWtavor, SUNWudapltu, SUNWudapltr, SUNWcpr, SUNWhea, SUNWssad, SUNWcpcu, SUNWmdb, SUNWmdbr, SUNWdtrp
    Patch: 121288-03 Obsoletes: 123017-01 Requires: 118833-36 Incompatibles: Packages: SUNWcsu, SUNWhea, SUNWcslr, SUNWarcr
    Patch: 119593-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsr
    Patch: 119685-09 Obsoletes: Requires: Incompatibles: Packages: SUNWcsr, SUNWmdb
    Patch: 120900-04 Obsoletes: 121266-01 Requires: Incompatibles: Packages: SUNWcsr, SUNWzoneu, SUNWdtrc
    Patch: 120990-02 Obsoletes: Requires: Incompatibles: Packages: SUNWcsr
    Patch: 121004-03 Obsoletes: Requires: Incompatibles: Packages: SUNWcsr
    Patch: 121133-02 Obsoletes: 121333-03 Requires: 120900-04 Incompatibles: Packages: SUNWcsr, SUNWzoneu
    Patch: 121561-04 Obsoletes: Requires: 119042-02 Incompatibles: Packages: SUNWcsr
    Patch: 122637-01 Obsoletes: Requires: 120900-04 Incompatibles: Packages: SUNWcsr
    Patch: 123910-01 Obsoletes: 123954-01 Requires: Incompatibles: Packages: SUNWcsr
    Patch: 123911-01 Obsoletes: 123356-02 Requires: Incompatibles: Packages: SUNWcsr, SUNWcsl, SUNWhea, SUNWcslr
    Patch: 123916-03 Obsoletes: 123441-05 Requires: Incompatibles: Packages: SUNWcsr, SUNWcar, SUNWcakr, SUNWcsd
    Patch: 121474-01 Obsoletes: Requires: 118822-29 Incompatibles: Packages: SUNWcsr
    Patch: 122640-05 Obsoletes: Requires: 118833-12 Incompatibles: Packages: SUNWcsr, SUNWzfskr, SUNWzfsr, SUNWzfsu
    Patch: 123912-02 Obsoletes: 123424-02 Requires: 118833-25 Incompatibles: Packages: SUNWcsr, SUNWesu
    Patch: 122646-01 Obsoletes: Requires: 122662-01, 121133-01 Incompatibles: Packages: SUNWcsr, SUNWzoneu
    Patch: 119077-10 Obsoletes: Requires: Incompatibles: Packages: SUNWcsr, SUNWcnetr, SUNWckr, SUNWcsd, SUNWib
    Patch: 119079-13 Obsoletes: Requires: Incompatibles: Packages: SUNWcsr, SUNWcsd, SUNWtnamr, SUNWkrbr, SUNWtnetr, SUNWtavor, SUNWusb, SUNWuedg, SUNWugen, SUNWocfr, SUNWvolr, SUNWnfscr, SUNWgssc, SUNWpmr, SUNWnisr, SUNWzoner, SUNWmdr, SUNWbsr, SUNWus, SUNWintgige, SUNWllcr, SUNWatfsr, SUNWsacom, SUNWcnsr, SUNWpcr, SUNWpsr, SUNWnfssr, SUNWntpr, SUNWpiclr, SUNWftpr, SUNWrcapr, SUNWrcmdr, SUNWslpr, SUNWsndmr, SUNWsndmu, SUNWsshdr
    Patch: 121061-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsr
    Patch: 121778-12 Obsoletes: Requires: Incompatibles: Packages: SUNWcsr, SUNWcnetr, SUNWckr, SUNWcsd, SUNWib, SUNWaudd, SUNWusb, SUNWugen, SUNWvolr, SUNWvolu, SUNWzoneu, SUNWses, SUNWssad, SUNWintgige, SUNWfmd, SUNWpd
    Patch: 121780-11 Obsoletes: Requires: Incompatibles: Packages: SUNWcsr, SUNWcnetr, SUNWckr, SUNWcsd, SUNWib, SUNWusb, SUNWvolr, SUNWssad, SUNWsndmr
    Patch: 123258-11 Obsoletes: Requires: Incompatibles: Packages: SUNWcsr, SUNWcnetr, SUNWckr, SUNWcsd, SUNWib, SUNWusb, SUNWssad, SUNWintgige, SUNWsacom, SUNWsndmr
    Patch: 123259-12 Obsoletes: Requires: Incompatibles: Packages: SUNWcsr, SUNWcnetr, SUNWckr, SUNWcar, SUNWcsd, SUNWtnamr, SUNWkrbr, SUNWtnetr, SUNWib, SUNWtavor, SUNWaudd, SUNWusb, SUNWuedg, SUNWugen, SUNWuksp, SUNWuprl, SUNWocfr, SUNWvolr, SUNWnfscr, SUNWvolu, SUNWgssc, SUNWpmr, SUNWxge, SUNWnisr, SUNWzoner, SUNWmdr, SUNWpoolr, SUNWzoneu, SUNWses, SUNWssad, SUNWbsr, SUNWus, SUNWintgige, SUNWfmd, SUNWllcr, SUNWatfsr, SUNWauda, SUNWsacom, SUNWcnsr, SUNWpcr, SUNWpsr, SUNWnfssr, SUNWntpr, SUNWpd, SUNWpiclr, SUNWftpr, SUNWrcapr, SUNWrcmdr, SUNWslpr, SUNWsndmr, SUNWsndmu, SUNWsshdr
    Patch: 123910-03 Obsoletes: 123954-01 Requires: 119042-09, 121901-01 Incompatibles: Packages: SUNWcsr
    Patch: 120473-03 Obsoletes: 123356-02, 123911-01 Requires: 118833-36 Incompatibles: Packages: SUNWcsr, SUNWcsl, SUNWhea, SUNWcslr
    Patch: 120473-05 Obsoletes: 117463-05, 118890-03, 119985-02, 121278-01, 121294-01, 122535-01, 123330-01, 123350-01, 123356-02, 123911-01, 124204-04 Requires: 118833-36, 122640-05, 123839-01 Incompatibles: Packages: SUNWcsr, SUNWcsl, SUNWkvm, SUNWtecla, SUNWpl5u, SUNWperl584core, SUNWperl584usr, SUNWopenssl-libraries, SUNWvolu, SUNWaudit, SUNWscpu, SUNWzfskr, SUNWzfsr, SUNWsmapi, SUNWzfsu, SUNWhea, SUNWcslr, SUNWdmgtu, SUNWfmd, SUNWarc, SUNWarcr, SUNWdtrc, SUNWsndmu, SUNWsra
    Patch: 120473-06 Obsoletes: 117463-05, 118890-03, 119985-02, 121278-01, 121294-01, 122535-01, 123330-01, 123350-01, 123356-02, 123911-01, 124204-04 Requires: 118833-36, 122640-05, 123839-01 Incompatibles: Packages: SUNWcsr, SUNWcsl, SUNWkvm, SUNWtecla, SUNWpl5u, SUNWperl584core, SUNWperl584usr, SUNWopenssl-libraries, SUNWvolu, SUNWaudit, SUNWscpu, SUNWzfskr, SUNWzfsr, SUNWsmapi, SUNWzfsu, SUNWhea, SUNWcslr, SUNWdmgtu, SUNWfmd, SUNWarc, SUNWarcr, SUNWdtrc, SUNWsndmu, SUNWsra
    Patch: 120629-06 Obsoletes: Requires: Incompatibles: Packages: SUNWcsr, SUNWpoolr, SUNWpool
    Patch: 124327-04 Obsoletes: Requires: Incompatibles: Packages: SUNWcsr
    Patch: 120629-08 Obsoletes: Requires: 118833-36 Incompatibles: Packages: SUNWcsr, SUNWpoolr, SUNWpool
    Patch: 120473-08 Obsoletes: 117463-05, 118890-03, 119985-02, 121278-01, 121294-01, 122535-01, 123330-01, 123350-01, 123356-02, 123911-01, 124204-04 Requires: 118833-36, 122640-05, 123839-01 Incompatibles: Packages: SUNWcsr, SUNWcsl, SUNWkvm, SUNWtecla, SUNWpl5u, SUNWperl584core, SUNWperl584usr, SUNWopenssl-libraries, SUNWvolu, SUNWaudit, SUNWscpu, SUNWzfskr, SUNWzfsr, SUNWsmapi, SUNWzfsu, SUNWhea, SUNWcslr, SUNWdmgtu, SUNWfmd, SUNWarc, SUNWarcr, SUNWdtrc, SUNWsndmu, SUNWsra
    Patch: 120473-09 Obsoletes: 117463-05, 118890-03, 119985-02, 120469-07, 121278-01, 121294-01, 122535-01, 123330-01, 123350-01, 123356-02, 123911-01, 124204-04 Requires: 118833-36, 122640-05, 123839-01 Incompatibles: Packages: SUNWcsr, SUNWcsl, SUNWkvm, SUNWtecla, SUNWpl5u, SUNWperl584core, SUNWperl584usr, SUNWkrbu, SUNWopenssl-libraries, SUNWvolu, SUNWaudit, SUNWscpu, SUNWzfskr, SUNWzfsr, SUNWsmapi, SUNWzfsu, SUNWhea, SUNWcslr, SUNWdmgtu, SUNWfmd, SUNWarc, SUNWarcr, SUNWdtrc, SUNWsndmu, SUNWsra
    Patch: 117463-03 Obsoletes: Requires: Incompatibles: Packages: SUNWcsl
    Patch: 118564-03 Obsoletes: Requires: Incompatibles: Packages: SUNWcsl, SUNWcslr
    Patch: 120889-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsl, SUNWapct
    Patch: 120984-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsl
    Patch: 121130-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsl
    Patch: 121921-02 Obsoletes: Requires: Incompatibles: Packages: SUNWcsl, SUNWcslr
    Patch: 122408-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsl
    Patch: 123330-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsl
    Patch: 123362-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsl
    Patch: 123915-01 Obsoletes: 123712-01 Requires: Incompatibles: Packages: SUNWcsl, SUNWkvm
    Patch: 118870-02 Obsoletes: 123348-04 Requires: 118833-25 Incompatibles: Packages: SUNWcsl, SUNWnisu
    Patch: 122754-01 Obsoletes: Requires: 118833-09 Incompatibles: Packages: SUNWcsl, SUNWpl5u, SUNWperl584core, SUNWhea
    Patch: 117463-05 Obsoletes: 123330-01 Requires: 118833-36 Incompatibles: Packages: SUNWcsl, SUNWcslr, SUNWarc
    Patch: 125465-01 Obsoletes: Requires: 118918-24 Incompatibles: Packages: SUNWcsl
    Patch: 125465-02 Obsoletes: Requires: 118918-24 Incompatibles: Packages: SUNWcsl, SUNWckr, SUNWcakr
    Patch: 118842-01 Obsoletes: Requires: Incompatibles: Packages: SUNWckr
    Patch: 120048-03 Obsoletes: Requires: Incompatibles: Packages: SUNWckr, SUNWhea, SUNWfss
    Patch: 120311-02 Obsoletes: Requires: Incompatibles: Packages: SUNWckr, SUNWusb
    Patch: 123249-02 Obsoletes: Requires: Incompatibles: Packages: SUNWckr
    Patch: 123271-01 Obsoletes: Requires: Incompatibles: Packages: SUNWckr, SUNWhea
    Patch: 121337-01 Obsoletes: Requires: 118822-23 Incompatibles: Packages: SUNWckr
    Patch: 119998-02 Obsoletes: Requires: 118833-36 Incompatibles: Packages: SUNWckr, SUNWhea, SUNWmdb, SUNWmdbr
    Patch: 123836-01 Obsoletes: Requires: 118833-36 Incompatibles: Packages: SUNWckr
    Patch: 125020-01 Obsoletes: Requires: 118833-36 Incompatibles: Packages: SUNWckr
    Patch: 125116-01 Obsoletes: Requires: 118833-36 Incompatibles: Packages: SUNWckr
    Patch: 124258-05 Obsoletes: Requires: 118833-36 Incompatibles: Packages: SUNWckr, SUNWnfsckr
    Patch: 119070-04 Obsoletes: Requires: Incompatibles: Packages: SUNWkvm, SUNWhea
    Patch: 121557-01 Obsoletes: Requires: Incompatibles: Packages: SUNWkvm, SUNWpiclu
    Patch: 121558-01 Obsoletes: Requires: Incompatibles: Packages: SUNWkvm
    Patch: 121559-01 Obsoletes: Requires: Incompatibles: Packages: SUNWkvm
    Patch: 122515-01 Obsoletes: 122390-01 Requires: Incompatibles: Packages: SUNWkvm
    Patch: 119981-09 Obsoletes: Requires: 118822-23 Incompatibles: Packages: SUNWkvm, SUNWcar, SUNWcakr, SUNWhea, SUNWpiclu
    Patch: 125042-02 Obsoletes: 119981-09, 124990-01 Requires: 118822-23, 118833-36 Incompatibles: Packages: SUNWkvm, SUNWcar, SUNWcakr, SUNWhea, SUNWpiclu
    Patch: 121556-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcar, SUNWcakr
    Patch: 122255-03 Obsoletes: Requires: Incompatibles: Packages: SUNWcar
    Patch: 122517-03 Obsoletes: 122356-01 Requires: 118833-04 Incompatibles: Packages: SUNWcar, SUNWcakr, SUNWhea
    Patch: 118557-07 Obsoletes: Requires: Incompatibles: Packages: SUNWcakr
    Patch: 118814-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcakr
    Patch: 119570-01 Obsoletes: 119217-02 Requires: Incompatibles: Packages: SUNWcakr
    Patch: 120056-02 Obsoletes: Requires: Incompatibles: Packages: SUNWcakr
    Patch: 120195-02 Obsoletes: Requires: Incompatibles: Packages: SUNWcakr
    Patch: 120815-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcakr
    Patch: 123301-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcakr
    Patch: 122525-03 Obsoletes: 122358-01 Requires: 118833-04 Incompatibles: Packages: SUNWcakr, SUNWhea
    Patch: 118557-08 Obsoletes: Requires: Incompatibles: Packages: SUNWcakr
    Patch: 125424-01 Obsoletes: Requires: 118833-36 Incompatibles: Packages: SUNWcakr
    Patch: 125319-01 Obsoletes: Requires: 118833-36 Incompatibles: Packages: SUNWcakr
    Patch: 124999-01 Obsoletes: Requires: 118833-36 Incompatibles: Packages: SUNWcakr
    Patch: 121229-02 Obsoletes: Requires: 118833-36 Incompatibles: Packages: SUNWcakr, SUNWopenssl-libraries, SUNWopenssl-include
    Patch: 125319-02 Obsoletes: Requires: 118833-36 Incompatibles: Packages: SUNWcakr
    Patch: 118929-05 Obsoletes: Requires: 118822-15 Incompatibles: Packages: SUNWcsd
    Patch: 119985-02 Obsoletes: Requires: Incompatibles: Packages: SUNWpl5u, SUNWperl584core, SUNWperl584usr
    Patch: 123332-01 Obsoletes: Requires: Incompatibles: Packages: SUNWtftp
    Patch: 119213-10 Obsoletes: Requires: Incompatibles: Packages: SUNWpr, SUNWtls, SUNWprd, SUNWtlsd, SUNWtlsu, SUNWjss
    Patch: 119213-11 Obsoletes: Requires: Incompatibles: Packages: SUNWpr, SUNWtls, SUNWprd, SUNWtlsd, SUNWtlsu, SUNWjss
    Patch: 119213-12 Obsoletes: Requires: Incompatibles: Packages: SUNWpr, SUNWtls, SUNWprd, SUNWtlsd, SUNWtlsu, SUNWjss
    Patch: 124393-02 Obsoletes: 123507-05 Requires: 119042-09, 121901-01, 122539-04 Incompatibles: Packages: SUNWdtdmr, SUNWdtbas, SUNWtltkm, SUNWdtdte, SUNWdtdmn, SUNWdtdst, SUNWdtma, SUNWdtlog
    Patch: 124141-01 Obsoletes: Requires: Incompatibles: Packages: SUNWdtdmr, SUNWdtlog
    Patch: 124393-03 Obsoletes: 123507-05 Requires: 119042-09, 121901-01, 122539-04 Incompatibles: Packages: SUNWdtdmr, SUNWdtbas, SUNWtltkm, SUNWdtdte, SUNWdtdmn, SUNWdtdst, SUNWdtma, SUNWdtlog
    Patch: 124393-04 Obsoletes: 123507-05 Requires: 119042-09, 121901-01, 122539-04 Incompatibles: Packages: SUNWdtdmr, SUNWdtbas, SUNWtltkm, SUNWdtdte, SUNWdtdmn, SUNWdtdst, SUNWdtma, SUNWdtlog
    Patch: 119955-03 Obsoletes: Requires: Incompatibles: Packages: SUNWtltk
    Patch: 122064-01 Obsoletes: Requires: Incompatibles: Packages: SUNWtltk
    Patch: 122239-01 Obsoletes: Requires: Incompatibles: Packages: SUNWperl584usr
    Patch: 118815-04 Obsoletes: 122034-01 Requires: Incompatibles: Packages: SUNWesu, SUNWxcu4
    Patch: 118824-01 Obsoletes: Requires: Incompatibles: Packages: SUNWesu, SUNWxcu4
    Patch: 118959-03 Obsoletes: Requires: Incompatibles: Packages: SUNWesu
    Patch: 118815-05 Obsoletes: 122034-01 Requires: Incompatibles: Packages: SUNWesu, SUNWxcu4
    Patch: 119963-07 Obsoletes: Requires: Incompatibles: Packages: SUNWlibC
    Patch: 119963-08 Obsoletes: Requires: Incompatibles: Packages: SUNWlibC
    Patch: 120753-02 Obsoletes: Requires: Incompatibles: Packages: SUNWlibmsr, SUNWlibm
    Patch: 120753-03 Obsoletes: Requires: Incompatibles: Packages: SUNWlibmsr, SUNWlibm
    Patch: 120753-05 Obsoletes: Requires: Incompatibles: Packages: SUNWlibmsr, SUNWlibm
    Patch: 120272-12 Obsoletes: Requires: 119042-09, 121901-01, 122539-05 Incompatibles: Packages: SUNWbzip, SUNWsmagt, SUNWsmcmd, SUNWsmmgr
    Patch: 119059-20 Obsoletes: 121868-04 Requires: Incompatibles: Packages: SUNWxwfnt, SUNWxwplt, SUNWxwopt, SUNWxwacx, SUNWxwman, SUNWxwinc, SUNWxwfs, SUNWxwsrv, SUNWxwxst
    Patch: 119059-21 Obsoletes: 121868-04 Requires: Incompatibles: Packages: SUNWxwfnt, SUNWxwplt, SUNWxwopt, SUNWxwacx, SUNWxwman, SUNWxwinc, SUNWxwfs, SUNWxwsrv, SUNWxwxst
    Patch: 119059-25 Obsoletes: 121868-04 Requires: Incompatibles: Packages: SUNWxwfnt, SUNWxwplt, SUNWxwopt, SUNWxwacx, SUNWxwman, SUNWxwinc, SUNWxwfs, SUNWxwpmn, SUNWxwsrv, SUNWxwxst
    Patch: 123611-02 Obsoletes: Requires: Incompatibles: Packages: SUNWxwrtl, SUNWxwplt, SUNWxwinc
    Patch: 125725-02 Obsoletes: Requires: Incompatibles: Packages: SUNWxwrtl, SUNWxwplt, SUNWxwinc, SUNWxwpmn
    Patch: 119063-01 Obsoletes: Requires: Incompatibles: Packages: SUNWxwplt
    Patch: 119280-08 Obsoletes: Requires: Incompatibles: Packages: SUNWmfrun, SUNWdtbas
    Patch: 119280-10 Obsoletes: Requires: 123611-01, 124206-02 Incompatibles: Packages: SUNWmfrun, SUNWdtbas
    Patch: 119280-11 Obsoletes: Requires: 123611-01, 124206-02 Incompatibles: Packages: SUNWmfrun, SUNWdtbas
    Patch: 121870-01 Obsoletes: Requires: Incompatibles: Packages: SUNWxwopt
    Patch

  • USB Video Class Driver on Solaris 10 and Sun Ray

    Hello,
    Is it posible to use the USB Video Class Driver (usbvc) on Solaris 10 and Sun Ray?
    How can I do that?
    Thank you very much.

    It's not possible. The Video Class requires isochronous operation on USB and Sun Ray does not support isochronous mode.
    Even if Sun Ray did support isochronous mode, the libusb library (which is what third-party applications use to interact with USB devices attached to Sun Ray) does not support isochronous transfers. The hard part is the Sun Ray itself. When that gets resolved it probably won't be very hard to add isoc support into libusb.

  • Storade 2.4 and Sun MC 3.5

    Greetings,
    We have recently deployed Sun MC 3.5 at our organisation, and wish to integrate notifications from Storade 2.4.
    I have read the Storade documentation, turned on Sun MC as a provider, specified the Sun MC server, reporting frequency and SNMP notifications on our Stordade central server.
    On both the Storade and Sun MC servers, I have installed the SUNWesraa package, but can not manage to get Storade to send any notfications via Sun MC.
    We have dropped the notification for Storade to information, but email notifications continue to arrive while Sun MC notifications do not.
    Any ideas? Thanks.
    Andrew

    Ensure you have the latest Storade and SunMC patches.
    Did you put SUNWesras and SUNWesraa packages on or just the one?
    I had major problems some time ago and found an easy solution to not getting events.
    Remove /opt/SUNWstade/DATA/last_sunmc_topo and manually run rasagent -d 3 -r and towards the end you should see Provider information that mentions SunMC. When I say manually run, you must stop rasagent processes that are run from cron.
    I bet this will fix the problem.
    Cheers
    Stephen

  • Calendar Server 6.0 2004Q2 and Sun One Synchronization 1.1

    Hello,
    we have a problem with Calendar Server 6.0 2004Q2 and Sun One Synchronization running with a Palm. The connection from the sync tool to calendar server works, but we cannot select one calendar of the user. With Calendar Server 6 2003Q4 ist worked well. Is there something changed in wcap in the new version? Does anybody know how to solve that problem?
    Yours,
    Angela

    Hello,
    I confirm that I have the same problem with that version (CS 6.0 2004Q2). I cannot select any calendar and It looks like only the default calendar is synchronized. It used to work with the previous version, though.
    We have an application that uses WCAP commands. It works perfectly with both versions.
    Regards,
    Fabrice

  • Prob w/ Tungsten T3 and Sun One

    I have a Tungsten T3 Palm Pilot that is connecting to a Windows XP Professional laptop. This machine has 1GB of RAM, 40GB HDD, and 2.3GHZ. The problem that I am having is that when I try to synchronize contents from the iPlanet calendar server to the Palm Desktop ( Palm Desktop 4.14 ), I get the following error message shown here:
    Sun ONE Synchronization
    Errors and Warnings
    Serial #: 1
    Application: Date Book
    Type: Error
    Data:
    Start Date =
    Start Time =
    End Date = 12/31/1970
    End Time =
    Description = \
    Alarm = 0
    Alarm Date =
    Alarm Time =
    Private = 0
    Note =
    Error Message(s):
    Field out of range: Start Date
    It gives me the option to proceed but when I click on proceed nothing gets transferred over, even though the message box says "Synchronization completed successfully". I have re-installed the Palm Desktop software, the Sun One Software and even went as far as starting from scratch and deleting all Palm and Sun One entries from the registry and re-installing from there with no luck. There is no date that I am aware of, boasting the year 1970 ( as stated in the log ), so I dont know why the application DateBook is screaming about this. Any help with this would be greatly appreciated it, it seems that I have tried everything. I even went to the Sun One and Palm Support Sites but still I didnt have any luck of finding the solution to this. btw I installed the latest Sun One patches but still no luck and also updated the Palm Desktop application.

    Hi Sergio,
    Have you tried enabling full debugging on the Sun synchronisation tool? This may provide you with additional debugging information to help resolve your issue.
    To turn on full debugging, run:
    Start -> Programs -> Sun One Synchronization -> Sun One Synchronization Debug Log
    Set the logging level to 5 and try the synchronization again.
    The debug log is placed in:
    C:\program files\common files\XCPCSync\Log\rsSync.log
    Cheers,
    Shane.

  • Need to exclude Sat and Sun from Leave Apply

    Hi,
    Need to exclude Sat and Sun from Leave Apply, the requirement is when user apply for leave and when he enter days like 1 to 10 the system should exclude sat and sun in this duration and Calculate Duration Button should show the remaining days in Total Field. In which formula or PL/SQL script should open to amend this. Currently system is only excluding Sunday.
    Regards,

    Hi,
    Need to exclude Sat and Sun from Leave Apply, the requirement is when user apply for leave and when he enter days like 1 to 10 the system should exclude sat and sun in this duration and Calculate Duration Button should show the remaining days in Total Field. In which formula or PL/SQL script should open to amend this. Currently system is only excluding Sunday.
    Regards,

  • Dependency between Sun Cluster 2.2 and Sun hardware ?

    I am evaluating Sun Cluster 2.2 for the usage as clustering software within our project.
    Can anybody say me, if there is a dependency between Sun Cluster 2.2 and Sun hardware ?
    Can I use Sun Cluster 2.2 with other hardware platforms running Sun Solaris 7 and Veritas Volume Manager ?

    I have had this discussion with fellow cluster admins, and we think a port of cluster 2.2 could be done to Intel running Solaris. And here is the BUT, BUT SUN does not support anything except a SPARC based cluster. So currently there is definately a depedancy bewteen the 2.2 software and the hardware.
    Hope this helps
    Heath

  • Weblogic Producer and Sun Portal as Consumer

    Hi,
    I am trying to have Weblogic 8.1SP4 as a producer and Sun Portal 2005Q1 as consumer.
    I have deployed my JSR 168 compliant portlet application on Weblogic. When i try 2 register a WSRP consumer in Sun Portal using the WSDL URL generated by Weblogic it throws a
    java.io.FileNotFoundException: http://hostip:port/TestPortalProject/wlp_wsrp_v1_bindings.wsdl.
    Any suggestions on why such an exception is thrown?
    Regards,
    Mukta

    This is a known issue. The work-around is to deploy copy the imported
    files from wsrp-common.jar's schema/src dir to the root of your webapp.
    Subbu
    Mukta Shetye wrote:
    Hi,
    I am trying to have Weblogic 8.1SP4 as a producer and Sun Portal 2005Q1 as consumer.
    I have deployed my JSR 168 compliant portlet application on Weblogic. When i try 2 register a WSRP consumer in Sun Portal using the WSDL URL generated by Weblogic it throws a
    java.io.FileNotFoundException: http://hostip:port/TestPortalProject/wlp_wsrp_v1_bindings.wsdl.
    Any suggestions on why such an exception is thrown?
    Regards,
    Mukta

  • The Differences of JWS and Sun One?

    I am quite confused on the difference between JWS and SUN one? Is JWS part of Sun One?
    And, I am also confused on J2EE and JWS? Can JWS utilize the backend of J2EE, that say, ejb?
    Your help will be much appreciated.

    I am quite confused on the difference between JWS
    and SUN one? Is JWS part of Sun One?Sun ONE (Open Network) is a name for the web centric infrastructure Sun wants to arrive at:
    http://www.sun.com/software/sunone/faq.html#1
    Don't think of this as a already 100% worked out
    plan. Parts are there, parts are planned, parts are
    open.
    Java Web Start is a technology for beaming
    Java applications (full apps, applets, ..) to
    client machines over the Web.
    A very useful thing.
    Yes, Sun mentions it together with Sun ONE:
    http://www.sun.com/software/sunone/portfolio/plat.html
    And, I am also confused on J2EE and JWS? Can JWS
    utilize the backend of J2EE, that say, ejb?As far as I understand J2EE and its Enterprise Java Beans, they are intended to run on server machines.
    Web Start is intended for beaming Java apps to
    client machines in the first place, allowing a very
    easy installation/update which just needs a mouse click from a web page by the user to get done (once Web Start has been installed on the client).
    While it might be possible to use Web Start in
    some favourable way in the context of server
    administration, I doubt that those admins
    will use it right now. If, it most likely turn up
    in the shape of special jnlp clients, that use
    part of the Web Start technologies, not in
    shape of the present end-user client.
    Regards,
    Marc

  • Storagetek 6140 - chunk size? - veritas and sun cluster tuning?

    hi, we've just got a 6140 and i did some raw write and read tests -> very nice box!
    current config: 16 fc-disks (300gbyte / 2gbit/sec): 1x hotspare, 15x raid5 (512kibyte chunk)
    3 logical volumes: vol1: 1.7tbyte, vol2: 1.7tbyte, vol3 rest (about 450gbyte)
    on 2x t2000 coolthread server (32gibyte mem each)
    it seems the max write perf (from my tests) is:
    512kibyte chunk / 1mibyte blocksize / 32 threads
    -> 230mibyte/sec (write) transfer rate
    my tests:
    * chunk size: 16ki / 512ki
    * threads: 1/2/4/8/16/32
    * blocksize (kibyte): .5/1/2/4/8/16/32/64/128/256/512/1024/2048/4096/8192/16384
    did anyone out there some other tests with other chunk size?
    how about tuning veritas fs and sun cluster???
    veritas fs: i've read so far about write_pref_io, write_nstream...
    i guess, setting them to: write_pref_io=1048576, write_nstream=32 would be the best in this scenario, right?

    I've responded to your question in the following thread you started:
    https://communities.oracle.com/portal/server.pt?open=514&objID=224&mode=2&threadid=570778&aggregatorResults=T578058T570778T568581T574494T565745T572292T569622T568974T568554T564860&sourceCommunityId=465&sourcePortletId=268&doPagination=true&pagedAggregatorPageNo=1&returnUrl=https%3A%2F%2Fcommunities.oracle.com%2Fportal%2Fserver.pt%3Fopen%3Dspace%26name%3DCommunityPage%26id%3D8%26cached%3Dtrue%26in_hi_userid%3D132629%26control%3DSetCommunity%26PageID%3D0%26CommunityID%3D465%26&Portlet=All%20Community%20Discussions&PrevPage=Communities-CommunityHome
    Regards
    Nicolas

  • Confused between Netbeans and Sun Studio Enterprise

    Hi all,
    Acually I am very confused between Netbeans and Sun Studio Enterprise/Creator.
    Why sun did not concentrate on one IDE as Microsoft is doing with Visual Studio?
    Now, I do not know what to learn....Netbeans or Sun Studio !!!
    What make me more confused is that both are supported oficially by Sun. And both are free for SDN members!!!!!
    So, what is the difference???!!!
    regards

    I tried it back when it was called Forte, and it seamed pretty
    identical to netbeans. the only difference was that Forte could
    only be used for personal use without a license.

  • IDS 5.0 and Sun-Cluster

    I want to make IDS 5.0 highly available using SunCluster. I have few questions about it.
    1. Can I install IDS on local disk and make it highly availbale. Sun-Cluster doc says it should be on shared disk.
    2. I have an already installed IDS I want to make it highly available using Sun-Cluster, what steps I should follow to achive this.

    I suppose that the answer is that it is not a simple task and it depends on the kind of cluster you want to deploy.
    I suggest that you carefully read the documentation of Sun Cluster and specifically the Directory Server specific parts.
    The way to do it is different with Sun Cluster 2 and Sun Cluster 3.0....
    Or you can request help from Sun Professional Services...
    Regards,
    Ludovic.

Maybe you are looking for

  • Kernel Panic Nvidia Quadro Pro 4000 CC14 MAC PRO 10.9.4 mavericks

    I get kernels panics constantly when using CC14 lightroom and photoshop.. And this is causing  me to loose thousands of dollars. I have searched for months have lost thousands of dollars in work, have trued to contact support only to be sent to commu

  • Two HDTV on a single set top box

    I want to have two televisions in my master bedroom suite so I can see the same program on both televisions. How do I wire the televisions to the STB?

  • Open PO transfer to SUS system (MM-SUS Scenario)

    Hi Guys, We are implementing MM-SUS scenario (Go Live on 1st October 2009). Currently the client has 750 open POu2019s since January 2009 and they want to transfer all the POu2019s to the SUS system during the cut over period. We will change the PO a

  • Why won't  my Mac OSX 10.9.1 read the latest version of adobe flash player?

    HELP! I am trying to take skills assessment test for future employment but my Mac wont read the latest version of adobe flash player. Is there a bug in the newest version?

  • WRT610N usb disk upgrade *#

    I have a version 2 WRT610N dual band wireless/GB router. It has worked great.  I use it as one of two backup drives for all of my home computers.  The other drive is an IOMEGA 2TB network drive.   BTW, it was just this week that I figured out how to