Forte 6.2 and Sun C++ 4.2 question

Is there a way to link a library built using Forte 6.2 to an application using Sun C++ 4.2. I know that all of you recommend I should recompile my codes to 6.2, but I have no way out.
My company's old application is built using 4.2 and we need this new library which uses STL. Although we have the codes for this library, we can't build it for 4.2 because 4.2 does have the STL library.
So I am thinking about building this library in 6.2 and then wrap it using extern "C" in my application then finally build and link it using 4.2.
Will this work? Any advice is appreciated :)

Is there a way to link a library built using Forte
6.2 to an application using Sun C++ 4.2. No, you can't do that.
You can go the other way, however. You can compile new code with C++ 5.3 (Forte 6 udpate 2) using the -compat=4 option, and link in the existing code that was compiled with 4.2.
>
My company's old application is built using 4.2 and
we need this new library which uses STL. To use the C++ standard library, you must compile in default standard mode (-compat=5). The code generated in standard mode is not compatible with code generated by C++ 4.2.
The C++ Migration Guide that comes C++ 5.3 explains the issues.
So I am thinking about building this library in 6.2
and then wrap it using extern "C" in my application
then finally build and link it using 4.2.
Will this work? Any advice is appreciated :)The C++ MIgration Guide explains how you can isolate standard-mode code and compatibility-mode code into separate libraries and link them together. The requirements on the code are severe, however, and the version of the Migration Guide that comes with C++ 5.3 did not adequately describe all the limitations. You can download the current version of the Migration Guide from
http://developers.sun.com/tools/cc/documentation/ss10_docs/index.html
The Migration Guide for Sun Studio 10 (C++ 5.7) mentions using libExbridge to allow exceptions to work, but that library is not available for C++ 5.3. If your program uses exceptions, it's possible that the program won't work.
The best solution would be to get the old source code and recompile it with the newer compiler.
The second-best solution would be to drop the old code, and write a replacement library.
Trying to mix the old and new code will take nearly as long, and will trap you in a descending spiral that will eventually require you to replace the old code anyway.

Similar Messages

  • 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.

  • 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.

  • Re: (forte-users) SAXParser and InputSource

    Michael Beaulieu wrote on Mon November 8:
    Hello,
    I was wondering if anyone has any experience using the XMLParser
    Library!? in Forte. I have no problem parsing a file using the
    forte parser but when I try to parse a message/TextData object I get
    the error " element not found " ( which is not due to my xml file )
    The class InputSource has a method that takes SeekStream in its
    setCharacterStream method:
    str : MemoryStream = new();
    str.open(SP_AM_READ_WRITE);
    str.WriteText(myMessage);
    theSource : InputSource = new();
    theSource.setCharacterStream(str);
    myParser.parse(theSource);Add this line after you're done writing to the MemoryStream:
    str.Seek(position=0);
    When the SAX parser is reading, it's reading from the current position
    forward; after writing to the stream the current position is at the
    end, so you have to rewind it to the beginning before giving it to the
    SAX parser.
    Cliff Draper
    Forte Engineering
    Forte Software, a subsidiary of Sun

    Why not this:
    while myText.moveToString(' ') do
    myText.ReplaceRange('-', myText.Offset, myText.Offset+1);
    end while;
    or if you prefer verbosity:
    while myText.moveToString(source=' ') do
    myText.ReplaceRange(source='-', startOffset=myText.Offset,
    endOffset=myText.Offset+1);
    end while;
    -----Original Message-----
    From: FatchJeBAM.com [mailto:FatchJeBAM.com]
    Sent: Wednesday, January 12, 2000 2:51 PM
    To: Troy.Burnsvacationclub.com; kamranaminyahoo.com
    Subject: RE: (forte-users) search and replace within a TextData
    How about this?? May have to play with start/end on ReplaceRange as I
    didn't really test this
    Anybody got a better way??
    -- replace space with underscore
    For x in 1 to myTextdata.LengthToEnd() do
    If myTextData.IsSpace() then
    MyTextdata.ReplaceRange('_'. Startoffset=myTextdata.offset,
    endoffset=myTextdata.offset+1);
    End if;
    MyTextdata.MoveNext;
    End for;
    Jerry Fatcheric
    -----Original Message-----
    From: Burns, Troy [mailto:Troy.Burnsvacationclub.com]
    Sent: Wednesday, January 12, 2000 9:40 AM
    To: kamranaminyahoo.com
    Subject: (forte-users) search and replace within a
    TextData
    Hello all,
    I need to search within a textdata object, replacing all
    occurrances of a
    space
    with another character. Can you give a quick code example
    of how I would do
    this?
    Thanks in advance,
    Troy
    Troy Burns
    Marriott Vacation Club Intl.
    E-mail: troy.burnsvacationclub.com
    Phone: (941) 688-7700 ext. 4408
    For the archives, go to: http://lists.sageit.com/forte-users
    and use
    the login: forte and the password: archive. To unsubscribe,
    send in a new
    email the word: 'Unsubscribe' to:
    forte-users-requestlists.sageit.com
    For the archives, go to: http://lists.sageit.com/forte-users and use
    the login: forte and the password: archive. To unsubscribe, send in a new
    email the word: 'Unsubscribe' to: forte-users-requestlists.sageit.com

  • 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.

  • RE: (forte-users) search and replace within aTextData

    Welll, you're both right. The MoveToChar makes it unnecessary (if a little
    sloppy) to MoveNext as long as you've changed the character. thus,
    outStr: TextData = new;
    outStr.SetValue(inStr);
    while (outStr.MoveToChar(' ')) do
    outStr.ReplaceRange('_', outStr.Offset, outStr.Offset+1);
    end while;
    return outStr;
    works fine to change blanks to underscores.
    Regards,
    David
    -----Original Message-----
    From: Campbell, Dave [mailto:DCampbellpurolator.com]
    Sent: Friday, 14 January 2000 0:58
    To: 'Matthew Middleton'
    Cc: kamranaminyahoo.com
    Subject: RE: (forte-users) search and replace within a TextData
    If you do not use the MoveNext method to skip beyond the "found" character,
    a subsequent invocation of MoveToChar will find the same character, located
    at exactly the same offset.
    If there is no match, MoveToChar returns FALSE and the current offset does
    not change.
    ----- Original Message -----
    From: Matthew Middleton <mathew.middletonlawpoint.com.au>
    To:kamranaminyahoo.com
    Unless I'm missing something here...you needn't go through every
    character...use MoveToChar()...as per Help...
    while (TextdataObj.MoveToChar (' ')) do
    end while;
    Regards,
    Dave Campbell
    Consultant,
    Caro Systems Inc.
    Mailto:Dave.CampbellCaroSys.com
    For the archives, go to: http://lists.sageit.com/forte-users and use
    the login: forte and the password: archive. To unsubscribe, send in a new
    email the word: 'Unsubscribe' to: forte-users-requestlists.sageit.com

    Why not this:
    while myText.moveToString(' ') do
    myText.ReplaceRange('-', myText.Offset, myText.Offset+1);
    end while;
    or if you prefer verbosity:
    while myText.moveToString(source=' ') do
    myText.ReplaceRange(source='-', startOffset=myText.Offset,
    endOffset=myText.Offset+1);
    end while;
    -----Original Message-----
    From: FatchJeBAM.com [mailto:FatchJeBAM.com]
    Sent: Wednesday, January 12, 2000 2:51 PM
    To: Troy.Burnsvacationclub.com; kamranaminyahoo.com
    Subject: RE: (forte-users) search and replace within a TextData
    How about this?? May have to play with start/end on ReplaceRange as I
    didn't really test this
    Anybody got a better way??
    -- replace space with underscore
    For x in 1 to myTextdata.LengthToEnd() do
    If myTextData.IsSpace() then
    MyTextdata.ReplaceRange('_'. Startoffset=myTextdata.offset,
    endoffset=myTextdata.offset+1);
    End if;
    MyTextdata.MoveNext;
    End for;
    Jerry Fatcheric
    -----Original Message-----
    From: Burns, Troy [mailto:Troy.Burnsvacationclub.com]
    Sent: Wednesday, January 12, 2000 9:40 AM
    To: kamranaminyahoo.com
    Subject: (forte-users) search and replace within a
    TextData
    Hello all,
    I need to search within a textdata object, replacing all
    occurrances of a
    space
    with another character. Can you give a quick code example
    of how I would do
    this?
    Thanks in advance,
    Troy
    Troy Burns
    Marriott Vacation Club Intl.
    E-mail: troy.burnsvacationclub.com
    Phone: (941) 688-7700 ext. 4408
    For the archives, go to: http://lists.sageit.com/forte-users
    and use
    the login: forte and the password: archive. To unsubscribe,
    send in a new
    email the word: 'Unsubscribe' to:
    forte-users-requestlists.sageit.com
    For the archives, go to: http://lists.sageit.com/forte-users and use
    the login: forte and the password: archive. To unsubscribe, send in a new
    email the word: 'Unsubscribe' to: forte-users-requestlists.sageit.com

  • Re: (forte-users) DateTimeData and time zones, I need amagictrick !

    You might try externalizing as textdata whenever its passed between partitions.
    kelsey.petrychynsasktel.sk.ca on 04/26/2000 03:45:28 PM
    To: "Guylain Rochon" <GRochonInfluatec.ca>
    cc: kamranaminyahoo.com (bcc: Charlie Shell/Bsg/MetLife/US)
    Subject: Re: (forte-users) DateTimeData and time zones, I need a magic trick !
    I haven't done a lot of work with time zones, but I have some ideas that just
    may work. If it is important for this object to pass in and out of time-zones
    untouched by the destination try passing it by reference. The idea is that the
    actual object will remain in one time zone. You may need to "anchor it down"
    somehow where it resides (Make it private, READ_ONLY or ??).
    Another thing to try is: If it is passed via a method set the mechanism as
    "input". I believe this will stop the destination from changing it. (i.e. It
    will receive it as input only).
    Just some ideas. Good luck.
    Kelsey PetrychynSaskTel Technical Analyst
    ITM - Technology Solutions - Distributed Computing
    Tel (306) 777 - 4906, Fax (306) 359 - 0857
    Internet:kelsey.petrychynSasktel.sk.ca
    Quality is not job 1. It is the only job!
    Guylain Rochon <GRochonInfluatec.ca> on 04/26/2000 01:15:47 PM
    To: "\[FORTE\] Maling list" <kamranaminyahoo.com>
    cc: (bcc: Kelsey Petrychyn/SaskTel/CA)
    Subject: (forte-users) DateTimeData and time zones, I need a magic trick !
    Help, I'm drowning and Fort

    I haven't done a lot of work with time zones, but I have some ideas that just
    may work. If it is important for this object to pass in and out of time-zones
    untouched by the destination try passing it by reference. The idea is that the
    actual object will remain in one time zone. You may need to "anchor it down"
    somehow where it resides (Make it private, READ_ONLY or ??).
    Another thing to try is: If it is passed via a method set the mechanism as
    "input". I believe this will stop the destination from changing it. (i.e. It
    will receive it as input only).
    Just some ideas. Good luck.
    Kelsey PetrychynSaskTel Technical Analyst
    ITM - Technology Solutions - Distributed Computing
    Tel (306) 777 - 4906, Fax (306) 359 - 0857
    Internet:kelsey.petrychynSasktel.sk.ca
    Quality is not job 1. It is the only job!
    Guylain Rochon <GRochonInfluatec.ca> on 04/26/2000 01:15:47 PM
    To: "\[FORTE\] Maling list" <kamranaminyahoo.com>
    cc: (bcc: Kelsey Petrychyn/SaskTel/CA)
    Subject: (forte-users) DateTimeData and time zones, I need a magic trick !
    Help, I'm drowning and Fort

  • RE: (forte-users) XML and XSL in Forte

     

    We too (at Viking Freight) would also be very interested to see if anybody
    has produced such a useful series of classes...
    Frank Lees, Developer
    -----Original Message-----
    From: Amin, Kamran [mailto:kamran.aminframeworkinc.com]
    Sent: Wednesday, January 19, 2000 12:11 PM
    To: 'Forte User'
    Subject: (forte-users) XML and XSL in Forte
    Has anybody integrated an XSL parser with Forte. I know Forte provides us
    with an XML parser but that does not help with parsing XSL. There a lot of
    parsers written in JAVA but that will not integrate well with Forte. We
    need something that will be easy to integrate with Forte. This parser will
    take our XML and XSL to give us a result set. If anybody can comment on the
    subject or share some information I would appreciate it.
    thanks in advance.
    ka
    For the archives, go to: http://lists.sageit.com/forte-users and use
    the login: forte and the password: archive. To unsubscribe, send in a new
    email the word: 'Unsubscribe' to: forte-users-requestlists.sageit.com

  • 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,

Maybe you are looking for

  • Easy Keys and Fn+F8 (WLAN on/off) don't work

    Hello guys, I have bought a new Toshiba Satellite A100-490 last week. I have tested all hot keys and function keys with the pre-installed Windows XP MCE. Everything worked. But I needed a new customized installation of Windows XP Professional and Win

  • Reply from the notifiaction mail (from outlook) to sap Inbox

    HI I have a requirement where in I am sending a notification mail to user saying Document verification is OPEN(pending) in your name.1s he finshes that task he will reply to the same mail saying ClLOSED. Now can we get this mail reply to SAP Inbox of

  • System symbol for total number of pages in SAP Script

    Hello All, I need to display the total number of pages in a SAP Script. Say there are 4 pages and I want to display "Page 1 of 4" at the footer of first page. Is there any system symbol to get the total number of pages in SAP Script? Many thanks in a

  • Problem with cproject workflow

    hi all, i have created one workflow which will be treaged when i will release any task from the browser. when i will release this task my project should be released. (this is only for testing ) my workflow is working fine but it is releasing after 3-

  • Sending all e-mails out of the draft-folder

    Is it possible so send all e-mails in the draftfolders at once? I know is possible with an AVB but do I have to use it also for outlook 2010. thank u