Unable to downloads classes12.jar

Hi All,
I have been trying to download the classes12.jar and ojdbc.jar from the OTN website but, the website seems to have some probs. I am not able to download and it forwards to the error page.
Link: http://www.oracle.com/technology/software/tech/java/sqlj_jdbc/htdocs/jdbc101020.html
I am using
Oracle 10g(10.1.0.2.0) verison.
Java jdk1.6
Can someone jus lemme know from where do i download these 2 jar files.
Thanks,
P

Ohh !
Thanks a lot for your reply !
Do u know from what other link I can download.
I am getting the following error in my java program:
*java.sql.SQLException: ORA-00600: internal error code, arguments: [ttcgcshnd-1], [0], [], [], [], [], [], []*
From some forums I read that this I might have to download the classes12.jar and ojdbc.jar for Oracle 10g.
If someone has any clue, please do lemme know !
Thanks,
P
Edited by: Drink Up on Sep 19, 2008 12:19 PM

Similar Messages

  • Unable to download LOBSample.jar

    Unable to download following file. Need it urgently
    http://otn.oracle.com/sample_code/tech/java/sqlj_jdbc/files/advanced/LOBSample/L
    OBSample.jar

    Unable to download following file. Need it urgently
    http://otn.oracle.com/sample_code/tech/java/sqlj_jdbc/files/advanced/LOBSample/L
    OBSample.jar

  • Classes12.jar or ojdbc14.jar?

    Which oracle driver do I need? I am trying to connect to DB from my java program and I get "ClassNotFoundException: oracle.jdbc.driver.OracleDriver". I am able to ping/connect/execute sql from eclipse but when I run my java program, I get this exception. I have added ojdbc14.jar file to my classpath and from command prompt If I run "Java oracle.jdbc.driver.OracleDriver", I got the following:
    Exception in thread "main" java.lang.NoClassDefFoundError: oracle/jdbc/driver/Or
    acleDriver
    Caused by: java.lang.ClassNotFoundException: oracle.jdbc.driver.OracleDriver
    at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:252)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320)
    Could not find the main class: oracle.jdbc.driver.OracleDriver. Program will ex
    it.
    My java version is "java version 1.6.0_14". Should I download classes12.jar and replace the ojdbc14.jar in classpath? Any suggestions?

    right click ur project and select properties. In Java Build Path add the ojdbc14.jar in the librariies tab.
    http://www.oracle.com/technology/tech/java/sqlj_jdbc/htdocs/jdbc_faq.html
    Edited by: user7361177 on Aug 1, 2009 10:19 PM

  • Classes12.jar with connection.class file

    Hi All,
    I want to download classes12.jar file which contains connection.class which is used for datasoruce.Can you please get me the download URL for the same.Please help me out as i got classes12.jar file but it doesnt contain the connection.class,if it doesnt have the connection.class it gives me a JMS:112 error which says invalid connection.
    Do please help me out in getting the classes12.jar file link for download.
    Thnaks in advance.
    Regards,
    Kalyan

    What is the Oracle database version? What is the JDK version? Various versions of classes12.jar are available.
    Please download classes12.jar from
    http://www.oracle.com/technology/software/tech/java/sqlj_jdbc/index.html

  • How to download Adobe jars.

    Hi All,
             i want to download these jars
    1. adobe-generatepdf-client.jar
      2. adobe-livecycle-client.jar
      3. adobe-usermanager-client.jar
    4. adobe-utilities.jar
    but i am unable to find these in google how can i download.
    thanks
    Raghu

    Aren't they part of livecycle? There's a trial version available here:
    http://www.adobe.com/devnet/livecycle/?view=downloads

  • Stored Proc output being truncated with latest ojdbc14 and classes12.jar

    Hello,
    I downloaded the latest ojdbc14.jar from Oracle website and used it with my Java program. I noticed a peculiar behavior. If my stored proc is returning a VARCHAR with large number of characters, the output is being truncated. This worked fine with the older ojdbc14.jar (and the older classes12.jar). It does not work properly with the new ojdbc14 and classes12.jar. Is there something that I am missing here?
    My Oracle Server version is - Oracle Database 10g Enterprise Edition Release 10.2.0.1.0.
    Below is the sample stored proc and the Java file to execute the same.
    Am I missing something here?
    CREATE OR REPLACE PROCEDURE TestOracleDriver (returnVal OUT VARCHAR2) IS
    BEGIN
    returnVal := '';
    FOR tmpVar in 1..2000
    Loop
              returnVal := returnVal || to_char(tmpVar) || ',';          
    END LOOP;
    END;
    import java.sql.*;
    import java.util.*;
    import java.util.Hashtable;
    import oracle.jdbc.driver.OracleTypes;
    public class OracleDriverTest
         public static void main(String argv[]) throws Exception
              Connection c = null;
              try
                   Driver dr = new oracle.jdbc.OracleDriver();
                   Properties props = new Properties();
                   props.put("user", "scott");
                   props.put("password", "tiger");
                   c = dr.connect("jdbc:oracle:thin:@SERVER_NAME:PORT:SID", props);
                   System.out.println("GOT A PLAIN CON" );
                   System.out.println("The driver is " + c.getMetaData().getDriverVersion() );
                   System.out.println("The DBMS is " + c.getMetaData().getDatabaseProductVersion() );
                   execute(c);
              catch (Exception e)
              e.printStackTrace();
              finally { try {c.close();} catch (Exception ign){} }
         private static String execute(Connection connection )
                   String procName = "TestOracleDriver";
                   CallableStatement cstmt=null;
                   ResultSet rs = null;
                   String returnedData = null;
                   try
                        cstmt = connection.prepareCall("{call " + procName+" (?)}");
                        cstmt.registerOutParameter(1,OracleTypes.VARCHAR);
                        cstmt.execute();
                        returnedData = cstmt.getString(1);
                        System.out.println("ProcTest ::execute --> Returned data is \n"+ returnedData);
                        return returnedData;
              catch (Exception e) {
                   System.out.println("ProcTest ::execute -->Error while executing "+procName);
                   e.printStackTrace();
                   return null;
              finally
                   try
                        connection.close();
                   catch (Exception e1)
                        System.out.println("ProcTest ::execute -->Error while closing connection ");
                             e1.printStackTrace();
                   }//end of catch
         }//end of finally
    }//End of execute method
    Regards,
    Hari
    Message was edited by:
    user553601
    Message was edited by:
    user553601

    Hari,
    If you think it is a bug, you can report it to Oracle Support via the MetaLink Web site.
    Good Luck,
    Avi.

  • OBIEE 11.1.1.7.0 unable to extract filegroup1.jar. The file is corrupt

    Hi ,
    OBIEE 11.1.1.7.0 Zip file unable to extract filegroup1.jar. The file is corrupt
    CRC failed in bishiphome\Disk1\stage\Components\oracle.bi.biadfcomps\11.1.1.7.0\1\DataFiles\filegroup1.jar. The file is corrupt
    Tried different zipping software's like Win zip,win RAR,7Zip,windows Extractor but no luck...
    and i have downloaded the software through the oracle site and e-delivery sites.. still facing same issue..
    Please help me on this,
    Thx,

    Just in case try from here
    http://www.oracle.com/technetwork/middleware/bi-enterprise-edition/downloads/bus-intelligence-11g-165436.html
    If helps mark as correct :)

  • How to download the .jar files for ESB?

    Hi,
    I'm connecting to a remote sandbox environment of CE 7.2. I'm running into the problem that some links point to URLs without a fully qualified host name. For example, in ESR (url .../rep) the link that points to the Enterprise Service Builder is http://server:port/rep/start/repository.jnlp instead of http://server.company.com:port/rep/start/repository.jnlp
    As a result, clicking the link results in Page not found.
    As a workaround, I can type the URL manually in the address field of my browser.
    That way, I can launch Web Start. However, it does not solve my problem, because soon after, the download fails because some of the .jar files have the short URL.
    I get the error message "Unable to load resource: http://host:port/rep/repository/com.sap.xpi.ibrep.client.jar
    Now how can I download the .jar files so that I can start the ESB? Typing the URL into the browser doesn't seem to work, and I don't know what else I should download to launch ESB.
    Is there a post-installation way to specify the URL for the components?
    Edited by: Arto Pihlaja on Dec 4, 2010 11:37 PM

    Found it.
    I had to change the value of the parameter com.sap.aii.connect.repository.name under CE - Administration - Properties Administration.

  • Orcale 11 g and classes12.jar problem

    Hello,
    I recently installed oracle 11g R2 on a windows 2003 server, I migrated a 10g (10.2.0.4) database into 11g successfully. However when I tried to install the corresponding application, I get the following message:
    "Could not find oracle jdbc library ( classes12.jar or nls_charset12.jar) in C:\oracle11\product\11.2.0\dbhome_1\jdbc\lib. Check whether the Oracle component is correctly installed".
    Could someone please advise how tis matter can be solved?? Is there a possibility the application is not supported in oracle 11g??

    You should check with your vendor to see if thier application is supported under Oracle 11g.
    While waiting for the vendor to respond you can copy the classes12.jar and nls_charset12.jar from another Oracle 10g installation to C:\oracle11\product\11.2.0\dbhome_1\jdbc\lib. If you do not have 10g install you can download the 10g JDBC drivers at the link below.
    http://www.oracle.com/technology/software/tech/java/sqlj_jdbc/htdocs/jdbc_10201.html

  • Oracle's classes12.jar

    I would like to know , whether or not the classes12.jar file is downloadable one?
    If yes, from where I can download? I tried oracle's web site, I did not get the correct url.
    appreciate for your help.
    -Karen

    Hi,
    Here is the portal for JDBC driver download
    http://www.oracle.com/technology/software/tech/java/sqlj_jdbc/index.html
    You will find classes12.jar as well as other jars in every release.
    Kuassi - blog http://db360.blogspot.com/
    ------ book http://www.amazon.com/gp/product/1555583296/

  • Help ,about classes12.jar

    hello, i have a question about our system.
    describe : the database version:9.0
    when the develop director includes the file of classes12.jar, i can't insert file into database to transform blob type. if i delete classes12.jar file in the WEB/WEB-INF/lib, it can't insert chinese languge into database.
    my classes12.jar file is 9.0.2 version, is my classes12.jar file is too old ,? if it's true ,please give a link of the file to download ;if it's not ,please give me a method to deal with . thank you .

    Also, Oracle claims that you can use newer drivers, such as the 10g drivers, with older databases. See the Interoperability Matrix:
    http://www.oracle.com/technology/software/tech/java/sqlj_jdbc/index.html

  • 9.0.1 classes12.jar

    The Readme page for the 9.0.1 drivers mentions classes12.jar, but the file doesn't appear to be available for download.
    Anybody know if/when/how the jar versions might be available?
    Thanks
    null

    The main thing I'm looking for is the jar formatted archive, not the zip. I know that the classes are identical, and I know I can create a jar file from the zip. But since the readme mentions that the jar is available I'm wondering how to actually get it. Here's a copy of the link from the download page:
    http://download.oracle.com/otn/utilities_drivers/jdbc/901/classes12.zip
    BTW, I tried changing "zip" to "jar". No luck.
    Thanks for trying to be helpful.

  • Classes12.jar and nls_charset12.jar Version

    I am running a java application that talks to 9.2.0.1 Oracle database. I am using classes12.jar,ocrs12.jar and nls_charset12.jar and neither of the jars have a manifest file with a verson number. The classes in the classes12.jar and ocrs12.jar were compiled on 5/17/2001 and the classes in nls_charset12.jar were compiled on 7/13/2000. I need to know what version these jars are, is there any way for you to tell me based on the compilation dates. I tried looking on Oracle download sites for the 9.2.0.1 jdbc jars and they all had classes that were compiled on different dates.
    thank you very much

    You can find out the version of the JDBC driver you're using by creating a DatabaseMetaData object and querying it. The snippet below should work:
        DatabaseMetaData meta = conn.getMetaData();
        // gets driver info:
        System.out.println("\n=============\nDatabase Product Name is ... " +
                           meta.getDatabaseProductName());
        System.out.println("\nDatabase Product Version is " +
                           meta.getDatabaseProductVersion());
        System.out.println("\n=============\nJDBC Driver Name is ........ " +
                           meta.getDriverName());
        System.out.println("\nJDBC Driver Version is ..... " +
                           meta.getDriverVersion());
        System.out.println("\nJDBC Driver Major Version is " +
                           meta.getDriverMajorVersion());
        System.out.println("\nJDBC Driver Minor Version is " +
                           meta.getDriverMinorVersion());
        System.out.println("\n=============");I know of no way, however, to get this information based on the compilation dates of the files.
    Justin
    Distributed Database Consulting, Inc.
    www.ddbcinc.com/askDDBC

  • Error: Unable to download document : "xml/motd.xml"

    Hi,
    I got the following error messages when downloading patches on my sunUC clients:
    # smpatch download -i 118833-36
    Error: Unable to download document : "xml/motd.xml"
    Cannot connect to retrieve xml/motd.xml: Bad Request
    Unable to display any message of the day notices from Sun Microsystems. Refer to the log file for additional information.
    118833-36 has been validated.
    I looked at all the log files in /var/sadm/spool and couldn't find anything related to the error messages.
    The patch 118833-36 was downloaded and installed fine.

    Moderador,
    Based on your request, I run 4 test scenarios that might provide some useful information.
    Content of /var/sadm/spool/patchsvr
    root@b3osdsun01:/root# ls -laR /var/sadm/spool/patchsvr
    /var/sadm/spool/patchsvr:
    total 36
    drwxr-xr-x 6 root sys 512 Sep 9 05:36 .
    drwxr-xr-x 8 root sys 7168 Feb 24 12:39 ..
    drwxr-xr-x 2 root root 3072 Feb 24 09:52 Database
    drwxr-xr-x 2 root sys 1024 Feb 24 06:11 Misc
    drwxr-xr-x 2 root sys 3072 Feb 24 00:03 Patches
    drwxr-xr-x 2 root root 2560 Feb 24 09:52 entitlement
    /var/sadm/spool/patchsvr/Database:
    total 1208
    drwxr-xr-x 2 root root 3072 Feb 24 09:52 .
    drwxr-xr-x 6 root sys 512 Sep 9 05:36 ..
    -rw-r--r-- 1 root root 291567 Oct 14 07:18 https%3A%2F%2Fgetupdates.sun.com%2Fsolaris%2F%2FDatabase%2Fcurrent.zip
    -rw-r--r-- 1 root root 0 Oct 1 12:29 https%3A%2F%2Fgetupdates.sun.com%2Fsolaris%2F%2FDatabase%2Fcurrent.zip32460
    -rw-r--r-- 1 root root 0 Oct 1 12:30 https%3A%2F%2Fgetupdates.sun.com%2Fsolaris%2F%2FDatabase%2Fcurrent.zip32462
    -rw-r--r-- 1 root root 0 Oct 1 12:39 https%3A%2F%2Fgetupdates.sun.com%2Fsolaris%2F%2FDatabase%2Fcurrent.zip32464
    -rw-r--r-- 1 root root 0 Oct 1 12:48 https%3A%2F%2Fgetupdates.sun.com%2Fsolaris%2F%2FDatabase%2Fcurrent.zip32466
    -rw-r--r-- 1 root root 0 Oct 1 13:01 https%3A%2F%2Fgetupdates.sun.com%2Fsolaris%2F%2FDatabase%2Fcurrent.zip32468
    -rw-r--r-- 1 root root 0 Oct 1 13:08 https%3A%2F%2Fgetupdates.sun.com%2Fsolaris%2F%2FDatabase%2Fcurrent.zip32470
    -rw-r--r-- 1 root root 298728 Feb 23 17:11 https%3A%2F%2Fgetupdates1.sun.com%2F%2FDatabase%2FDatabase%2Fcurrent.zip
    -rw-r--r-- 1 root root 0 Feb 23 20:57 https%3A%2F%2Fgetupdates1.sun.com%2F%2FDatabase%2FDatabase%2Fcurrent.zip261
    -rw-r--r-- 1 root root 0 Feb 23 21:00 https%3A%2F%2Fgetupdates1.sun.com%2F%2FDatabase%2FDatabase%2Fcurrent.zip264
    -rw-r--r-- 1 root root 0 Feb 23 21:09 https%3A%2F%2Fgetupdates1.sun.com%2F%2FDatabase%2FDatabase%2Fcurrent.zip267
    -rw-r--r-- 1 root root 0 Feb 23 21:11 https%3A%2F%2Fgetupdates1.sun.com%2F%2FDatabase%2FDatabase%2Fcurrent.zip269
    -rw-r--r-- 1 root root 0 Feb 23 21:18 https%3A%2F%2Fgetupdates1.sun.com%2F%2FDatabase%2FDatabase%2Fcurrent.zip272
    -rw-r--r-- 1 root root 0 Feb 23 21:19 https%3A%2F%2Fgetupdates1.sun.com%2F%2FDatabase%2FDatabase%2Fcurrent.zip274
    -rw-r--r-- 1 root root 0 Feb 23 21:21 https%3A%2F%2Fgetupdates1.sun.com%2F%2FDatabase%2FDatabase%2Fcurrent.zip276
    -rw-r--r-- 1 root root 0 Feb 23 21:24 https%3A%2F%2Fgetupdates1.sun.com%2F%2FDatabase%2FDatabase%2Fcurrent.zip279
    -rw-r--r-- 1 root root 0 Feb 23 21:29 https%3A%2F%2Fgetupdates1.sun.com%2F%2FDatabase%2FDatabase%2Fcurrent.zip281
    -rw-r--r-- 1 root root 0 Feb 23 21:46 https%3A%2F%2Fgetupdates1.sun.com%2F%2FDatabase%2FDatabase%2Fcurrent.zip284
    -rw-r--r-- 1 root root 0 Feb 23 22:11 https%3A%2F%2Fgetupdates1.sun.com%2F%2FDatabase%2FDatabase%2Fcurrent.zip286
    -rw-r--r-- 1 root root 0 Feb 23 22:31 https%3A%2F%2Fgetupdates1.sun.com%2F%2FDatabase%2FDatabase%2Fcurrent.zip289
    -rw-r--r-- 1 root root 0 Feb 23 23:05 https%3A%2F%2Fgetupdates1.sun.com%2F%2FDatabase%2FDatabase%2Fcurrent.zip292
    -rw-r--r-- 1 root root 0 Feb 24 00:01 https%3A%2F%2Fgetupdates1.sun.com%2F%2FDatabase%2FDatabase%2Fcurrent.zip295
    -rw-r--r-- 1 root root 0 Feb 24 00:01 https%3A%2F%2Fgetupdates1.sun.com%2F%2FDatabase%2FDatabase%2Fcurrent.zip296
    -rw-r--r-- 1 root root 0 Feb 24 00:01 https%3A%2F%2Fgetupdates1.sun.com%2F%2FDatabase%2FDatabase%2Fcurrent.zip297
    -rw-r--r-- 1 root root 0 Feb 24 05:44 https%3A%2F%2Fgetupdates1.sun.com%2F%2FDatabase%2FDatabase%2Fcurrent.zip301
    -rw-r--r-- 1 root root 0 Feb 24 05:48 https%3A%2F%2Fgetupdates1.sun.com%2F%2FDatabase%2FDatabase%2Fcurrent.zip304
    -rw-r--r-- 1 root root 0 Feb 24 06:11 https%3A%2F%2Fgetupdates1.sun.com%2F%2FDatabase%2FDatabase%2Fcurrent.zip307
    -rw-r--r-- 1 root root 0 Feb 24 08:12 https%3A%2F%2Fgetupdates1.sun.com%2F%2FDatabase%2FDatabase%2Fcurrent.zip309
    -rw-r--r-- 1 root root 0 Feb 24 09:43 https%3A%2F%2Fgetupdates1.sun.com%2F%2FDatabase%2FDatabase%2Fcurrent.zip311
    -rw-r--r-- 1 root root 0 Feb 24 09:52 https%3A%2F%2Fgetupdates1.sun.com%2F%2FDatabase%2FDatabase%2Fcurrent.zip313
    /var/sadm/spool/patchsvr/Misc:
    total 14228
    drwxr-xr-x 2 root sys 1024 Feb 24 06:11 .
    drwxr-xr-x 6 root sys 512 Sep 9 05:36 ..
    -rw-r--r-- 1 root root 3611154 Oct 14 07:18 https%3A%2F%2Fgetupdates.sun.com%2Fsolaris%2F%2Fdetectors.jar
    -rw-r--r-- 1 root root 3646470 Feb 23 17:12 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fdetectors.jar
    -rw-r--r-- 1 root root 0 Feb 23 20:57 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fdetectors.jar262
    -rw-r--r-- 1 root root 0 Feb 23 21:09 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fdetectors.jar266
    -rw-r--r-- 1 root root 0 Feb 23 21:18 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fdetectors.jar271
    -rw-r--r-- 1 root root 0 Feb 23 21:21 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fdetectors.jar277
    -rw-r--r-- 1 root root 0 Feb 23 21:46 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fdetectors.jar283
    -rw-r--r-- 1 root root 0 Feb 23 22:11 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fdetectors.jar287
    -rw-r--r-- 1 root root 0 Feb 23 23:05 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fdetectors.jar291
    -rw-r--r-- 1 root root 0 Feb 24 00:01 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fdetectors.jar294
    -rw-r--r-- 1 root root 0 Feb 24 05:44 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fdetectors.jar302
    -rw-r--r-- 1 root root 0 Feb 24 06:11 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fdetectors.jar306
    /var/sadm/spool/patchsvr/Patches:
    total 1292618
    drwxr-xr-x 2 root sys 3072 Feb 24 00:03 .
    drwxr-xr-x 6 root sys 512 Sep 9 05:36 ..
    -rw-r--r-- 1 root root 46475761 Oct 1 10:50 113886-38.jar
    -rw-r--r-- 1 root root 43498410 Feb 23 21:01 113886-42.jar
    -rw-r--r-- 1 root root 42888423 Oct 1 10:52 113887-38.jar
    -rw-r--r-- 1 root root 40807581 Feb 23 21:02 113887-42.jar
    -rw-r--r-- 1 root root 151954 Oct 1 10:53 118557-06.jar
    -rw-r--r-- 1 root root 69163583 Feb 23 21:03 118666-11.jar
    -rw-r--r-- 1 root root 10514183 Feb 23 21:03 118667-11.jar
    -rw-r--r-- 1 root root 188662 Oct 1 10:48 118683-01.jar
    -rw-r--r-- 1 root root 236302 Oct 1 10:56 118706-01.jar
    -rw-r--r-- 1 root root 196150 Oct 1 10:56 118707-04.jar
    -rw-r--r-- 1 root root 419527 Oct 1 10:56 118708-13.jar
    -rw-r--r-- 1 root root 105696 Oct 1 10:56 118711-02.jar
    -rw-r--r-- 1 root root 295738 Oct 1 10:56 118712-10.jar
    -rw-r--r-- 1 root root 302061 Feb 23 21:02 118712-13.jar
    -rw-r--r-- 1 root root 496152 Oct 1 10:56 118777-06.jar
    -rw-r--r-- 1 root root 95092 Oct 1 10:53 118812-03.jar
    -rw-r--r-- 1 root root 166160 Feb 24 00:02 118815-05.jar
    -rw-r--r-- 1 root root 80428 Oct 1 10:56 118830-01.jar
    -rw-r--r-- 1 root root 34095003 Oct 8 09:41 118833-24.jar
    -rw-r--r-- 1 root root 54413206 Feb 24 00:03 118833-36.jar
    -rw-r--r-- 1 root root 1808265 Oct 1 10:53 118918-19.jar
    -rw-r--r-- 1 root root 1822253 Feb 24 00:02 118918-24.jar
    -rw-r--r-- 1 root root 96695 Oct 1 10:56 118945-01.jar
    -rw-r--r-- 1 root root 91763 Oct 1 10:56 118981-03.jar
    -rw-r--r-- 1 root root 5573200 Oct 8 09:42 119059-18.jar
    -rw-r--r-- 1 root root 5576430 Feb 23 21:03 119059-21.jar
    -rw-r--r-- 1 root root 114774 Oct 1 10:57 119063-01.jar
    -rw-r--r-- 1 root root 1189956 Feb 23 21:00 119081-25.jar
    -rw-r--r-- 1 root root 13288480 Oct 1 10:57 119115-18.jar
    -rw-r--r-- 1 root root 14743306 Feb 23 21:03 119115-22.jar
    -rw-r--r-- 1 root root 4273087 Oct 1 10:56 119117-22.jar
    -rw-r--r-- 1 root root 4617883 Feb 23 21:02 119117-29.jar
    -rw-r--r-- 1 root root 8607487 Oct 1 10:56 119213-09.jar
    -rw-r--r-- 1 root root 8618010 Oct 14 07:18 119213-10.jar
    -rw-r--r-- 1 root root 8660261 Feb 23 21:01 119213-11.jar
    -rw-r--r-- 1 root root 1356682 Oct 1 10:45 119254-27.jar
    -rw-r--r-- 1 root root 1361281 Feb 24 00:01 119254-34.jar
    -rw-r--r-- 1 root root 101596 Oct 1 10:56 119309-03.jar
    -rw-r--r-- 1 root root 1270965 Feb 23 21:04 119397-06.jar
    -rw-r--r-- 1 root root 494252 Oct 1 10:53 119470-08.jar
    -rw-r--r-- 1 root root 1827070 Oct 1 10:56 119546-07.jar
    -rw-r--r-- 1 root root 1160825 Oct 1 10:56 119548-05.jar
    -rw-r--r-- 1 root root 1939955 Oct 1 10:52 119578-29.jar
    -rw-r--r-- 1 root root 61172 Feb 23 21:02 119703-08.jar
    -rw-r--r-- 1 root root 39643171 Oct 1 10:56 119757-04.jar
    -rw-r--r-- 1 root root 751835 Oct 1 10:53 119850-20.jar
    -rw-r--r-- 1 root root 751901 Oct 8 09:42 119850-21.jar
    -rw-r--r-- 1 root root 541532 Oct 1 10:56 119900-02.jar
    -rw-r--r-- 1 root root 797869 Oct 1 10:57 119903-02.jar
    -rw-r--r-- 1 root root 1720037 Oct 1 10:48 119963-07.jar
    -rw-r--r-- 1 root root 1737070 Feb 23 21:03 119998-02.jar
    -rw-r--r-- 1 root root 91104 Oct 1 10:52 120056-02.jar
    -rw-r--r-- 1 root root 90969 Oct 1 10:53 120061-02.jar
    -rw-r--r-- 1 root root 51318 Feb 23 21:01 120068-02.jar
    -rw-r--r-- 1 root root 302460 Oct 1 10:56 120099-07.jar
    -rw-r--r-- 1 root root 54484 Oct 1 10:53 120294-01.jar
    -rw-r--r-- 1 root root 71490 Oct 1 10:53 120346-04.jar
    -rw-r--r-- 1 root root 999740 Oct 1 10:53 120467-05.jar
    -rw-r--r-- 1 root root 795638 Oct 1 10:53 120469-05.jar
    -rw-r--r-- 1 root root 16139832 Oct 1 10:52 120543-05.jar
    -rw-r--r-- 1 root root 16258980 Oct 8 09:42 120543-06.jar
    -rw-r--r-- 1 root root 16253320 Feb 23 21:03 120543-08.jar
    -rw-r--r-- 1 root root 493214 Feb 24 00:02 120719-02.jar
    -rw-r--r-- 1 root root 270675 Oct 1 10:48 120753-02.jar
    -rw-r--r-- 1 root root 84612 Oct 1 10:48 120780-02.jar
    -rw-r--r-- 1 root root 320258 Oct 14 07:18 120791-05.jar
    -rw-r--r-- 1 root root 58715 Oct 1 10:52 120887-06.jar
    -rw-r--r-- 1 root root 102087 Feb 24 00:02 121002-03.jar
    -rw-r--r-- 1 root root 1175840 Oct 1 10:52 121081-05.jar
    -rw-r--r-- 1 root root 1176987 Feb 23 23:05 121081-06.jar
    -rw-r--r-- 1 root root 61029 Oct 1 10:56 121095-01.jar
    -rw-r--r-- 1 root root 87618400 Oct 1 10:47 121104-01.jar
    -rw-r--r-- 1 root root 1604794 Oct 14 07:18 121118-08.jar
    -rw-r--r-- 1 root root 1756896 Feb 23 21:02 121118-11.jar
    -rw-r--r-- 1 root root 25377 Oct 1 10:48 121136-01.jar
    -rw-r--r-- 1 root root 43541 Oct 1 10:52 121302-01.jar
    -rw-r--r-- 1 root root 1349725 Oct 1 10:45 121308-07.jar
    -rw-r--r-- 1 root root 766128 Oct 1 10:45 121430-11.jar
    -rw-r--r-- 1 root root 33454 Oct 1 10:52 121474-01.jar
    -rw-r--r-- 1 root root 39156 Oct 1 10:53 121556-01.jar
    -rw-r--r-- 1 root root 54439 Oct 1 10:53 121557-01.jar
    -rw-r--r-- 1 root root 38531 Oct 1 10:53 121558-01.jar
    -rw-r--r-- 1 root root 64667 Oct 1 10:53 121559-01.jar
    -rw-r--r-- 1 root root 455467 Oct 1 10:56 121563-02.jar
    -rw-r--r-- 1 root root 73619 Oct 1 10:52 121693-03.jar
    -rw-r--r-- 1 root root 78784 Feb 23 21:04 121734-05.jar
    -rw-r--r-- 1 root root 26983 Feb 23 23:05 121901-01.jar
    -rw-r--r-- 1 root root 328956 Oct 8 09:42 122027-08.jar
    -rw-r--r-- 1 root root 334464 Feb 23 21:01 122032-04.jar
    -rw-r--r-- 1 root root 5622658 Oct 8 09:42 122212-10.jar
    -rw-r--r-- 1 root root 5712006 Oct 14 07:19 122212-12.jar
    -rw-r--r-- 1 root root 5724049 Feb 23 21:02 122212-17.jar
    -rw-r--r-- 1 root root 73018 Oct 1 10:53 122363-01.jar
    -rw-r--r-- 1 root root 39118 Oct 1 10:53 122515-01.jar
    -rw-r--r-- 1 root root 77359 Oct 1 10:53 122517-02.jar
    -rw-r--r-- 1 root root 81527 Oct 1 10:53 122523-03.jar
    -rw-r--r-- 1 root root 63877 Oct 1 10:53 122525-02.jar
    -rw-r--r-- 1 root root 195842 Oct 14 07:18 122669-01.jar
    -rw-r--r-- 1 root root 42365 Oct 14 07:18 122761-01.jar
    -rw-r--r-- 1 root root 197594 Oct 14 07:18 122860-01.jar
    -rw-r--r-- 1 root root 10965819 Oct 8 09:42 122911-02.jar
    -rw-r--r-- 1 root root 475616 Feb 23 21:01 123186-02.jar
    -rw-r--r-- 1 root root 108231 Oct 1 10:53 123304-02.jar
    -rw-r--r-- 1 root root 30541 Oct 1 10:53 123334-02.jar
    -rw-r--r-- 1 root root 34196 Oct 1 10:53 123360-01.jar
    -rw-r--r-- 1 root root 223934 Oct 14 07:18 124206-02.jar
    -rw-r--r-- 1 root root 51848 Feb 23 21:03 124244-01.jar
    -rw-r--r-- 1 root root 578669 Feb 23 21:12 124614-01.jar
    -rw-r--r-- 1 root root 437290 Feb 23 21:00 124630-03.jar
    -rw-r--r-- 1 root root 307636 Feb 23 21:03 124922-02.jar
    -rw-r--r-- 1 root root 41967 Feb 23 21:01 124943-01.jar
    -rw-r--r-- 1 root root 55028 Feb 23 21:03 124997-01.jar
    -rw-r--r-- 1 root root 657450 Feb 23 21:01 125011-01.jar
    /var/sadm/spool/patchsvr/entitlement:
    total 12
    drwxr-xr-x 2 root root 2560 Feb 24 09:52 .
    drwxr-xr-x 6 root sys 512 Sep 9 05:36 ..
    -rw-r--r-- 1 root root 121 Oct 14 07:18 https%3A%2F%2Fgetupdates.sun.com%2Fsolaris%2F%2Fentitlement_lps
    -rw-r--r-- 1 root root 0 Oct 1 12:29 https%3A%2F%2Fgetupdates.sun.com%2Fsolaris%2F%2Fentitlement_lps32461
    -rw-r--r-- 1 root root 0 Oct 1 12:30 https%3A%2F%2Fgetupdates.sun.com%2Fsolaris%2F%2Fentitlement_lps32463
    -rw-r--r-- 1 root root 0 Oct 1 12:39 https%3A%2F%2Fgetupdates.sun.com%2Fsolaris%2F%2Fentitlement_lps32465
    -rw-r--r-- 1 root root 0 Oct 1 12:48 https%3A%2F%2Fgetupdates.sun.com%2Fsolaris%2F%2Fentitlement_lps32467
    -rw-r--r-- 1 root root 0 Oct 1 13:01 https%3A%2F%2Fgetupdates.sun.com%2Fsolaris%2F%2Fentitlement_lps32469
    -rw-r--r-- 1 root root 0 Oct 1 13:08 https%3A%2F%2Fgetupdates.sun.com%2Fsolaris%2F%2Fentitlement_lps32471
    -rw-r--r-- 1 root root 187 Feb 23 17:12 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fentitlement_lps
    -rw-r--r-- 1 root root 0 Feb 23 20:58 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fentitlement_lps263
    -rw-r--r-- 1 root root 0 Feb 23 21:00 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fentitlement_lps265
    -rw-r--r-- 1 root root 0 Feb 23 21:10 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fentitlement_lps268
    -rw-r--r-- 1 root root 0 Feb 23 21:12 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fentitlement_lps270
    -rw-r--r-- 1 root root 0 Feb 23 21:19 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fentitlement_lps273
    -rw-r--r-- 1 root root 0 Feb 23 21:19 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fentitlement_lps275
    -rw-r--r-- 1 root root 0 Feb 23 21:21 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fentitlement_lps278
    -rw-r--r-- 1 root root 0 Feb 23 21:25 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fentitlement_lps280
    -rw-r--r-- 1 root root 0 Feb 23 21:30 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fentitlement_lps282
    -rw-r--r-- 1 root root 0 Feb 23 21:47 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fentitlement_lps285
    -rw-r--r-- 1 root root 0 Feb 23 22:12 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fentitlement_lps288
    -rw-r--r-- 1 root root 0 Feb 23 22:31 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fentitlement_lps290
    -rw-r--r-- 1 root root 0 Feb 23 23:05 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fentitlement_lps293
    -rw-r--r-- 1 root root 0 Feb 24 00:01 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fentitlement_lps298
    -rw-r--r-- 1 root root 0 Feb 24 00:01 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fentitlement_lps299
    -rw-r--r-- 1 root root 0 Feb 24 00:02 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fentitlement_lps300
    -rw-r--r-- 1 root root 0 Feb 24 05:45 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fentitlement_lps303
    -rw-r--r-- 1 root root 0 Feb 24 05:49 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fentitlement_lps305
    -rw-r--r-- 1 root root 0 Feb 24 06:12 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fentitlement_lps308
    -rw-r--r-- 1 root root 0 Feb 24 08:12 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fentitlement_lps310
    -rw-r--r-- 1 root root 0 Feb 24 09:43 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fentitlement_lps312
    -rw-r--r-- 1 root root 0 Feb 24 09:52 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fentitlement_lps314
    root@b3osdsun01:/root#
    SCENARIO 1
    - Did NOT restart the sunUC proxy server
    - run smpatch analyze from two sunUC clients
    - source URL = http://solaris3.ny.frb.org:3816/
    Results of client B1STSUN02
    root@b1stsun02# patchadd -p | grep 121118
    Patch: 121118-06 Obsoletes: Requires: 121453-02 Incompatibles: Packages: SUNWppror SUNWpprou SUNWppro-plugin-sunos-base SUNWupdatemgru SUNWupdatemgrr
    Patch: 121118-08 Obsoletes: Requires: 121453-02 Incompatibles: Packages: SUNWppror SUNWpprou SUNWppro-plugin-sunos-base SUNWupdatemgru SUNWupdatemgrr
    Patch: 121118-11 Obsoletes: Requires: 121453-02 Incompatibles: Packages: SUNWppror SUNWpprou SUNWppro-plugin-sunos-base SUNWcsmauth SUNWupdatemgru SUNWupdatemgrr
    root@b1stsun02# smpatch get
    patchpro.backout.directory - ""
    patchpro.baseline.directory - /var/sadm/spool
    patchpro.download.directory - /var/sadm/spool
    patchpro.install.types - rebootafter:reconfigafter:standard
    patchpro.patch.source http://solaris3.ny.frb.org:3816/ https://getupdates1.sun.com/
    patchpro.patchset - current
    patchpro.proxy.host - ""
    patchpro.proxy.passwd **** ****
    patchpro.proxy.port - 8080
    patchpro.proxy.user - ""
    root@b1stsun02# smpatch analyze -C patchpro.log.level=3 -C patchpro.debug=true
    Effective proxy host : ""
    Effective proxy port : "8080"
    Effective proxy user : ""
    ... Submitting download request against a Non-GUUS server
    ... Caught IO Exception.
    ((HttpURLConnection)connection).getResponseCode() : 503
    ((HttpURLConnection)connection).getResponseMessage() : Servlet PatchServer is currently unavailable
    Error: Unable to download document : "xml/motd.xml"
    Cannot connect to retrieve xml/motd.xml: Servlet PatchServer is currently unavailable
    Unable to display any message of the day notices from Sun Microsystems. Refer to the log file for additional information.
    Effective proxy host : ""
    Effective proxy port : "8080"
    Effective proxy user : ""
    ... Submitting download request against a Non-GUUS server
    Effective proxy host : ""
    Effective proxy port : "8080"
    Effective proxy user : ""
    ... Submitting download request against a Non-GUUS server
    ... Caught IO Exception.
    ((HttpURLConnection)connection).getResponseCode() : 503
    ((HttpURLConnection)connection).getResponseMessage() : Servlet PatchServer is currently unavailable
    ... Caught IO Exception.
    ((HttpURLConnection)connection).getResponseCode() : 503
    ((HttpURLConnection)connection).getResponseMessage() : Servlet PatchServer is currently unavailable
    Failure: Cannot connect to retrieve detectors: Servlet PatchServer is currently unavailable
    root@b1stsun02#
    Results of client B1ISFSUN02
    root@b1isfsun02# patchadd -p | grep 121118
    Patch: 121118-06 Obsoletes: Requires: 121453-02 Incompatibles: Packages: SUNWppror SUNWpprou SUNWppro-plugin-sunos-base SUNWupdatemgru SUNWupdatemgrr
    Patch: 121118-10 Obsoletes: Requires: 121453-02 Incompatibles: Packages: SUNWppror SUNWpprou SUNWppro-plugin-sunos-base SUNWcsmauth SUNWupdatemgru SUNWupdatemgrr
    Patch: 121118-11 Obsoletes: Requires: 121453-02 Incompatibles: Packages: SUNWppror SUNWpprou SUNWppro-plugin-sunos-base SUNWcsmauth SUNWupdatemgru SUNWupdatemgrr
    root@b1isfsun02# smpatch get
    patchpro.backout.directory - ""
    patchpro.baseline.directory - /var/sadm/spool
    patchpro.download.directory - /var/sadm/spool
    patchpro.install.types - rebootafter:reconfigafter:standard
    patchpro.patch.source http://solaris3.ny.frb.org:3816/ https://getupdates1.sun.com/
    patchpro.patchset - current
    patchpro.proxy.host - ""
    patchpro.proxy.passwd **** ****
    patchpro.proxy.port - 8080
    patchpro.proxy.user - ""
    root@b1isfsun02# smpatch analyze -C patchpro.log.level=3 -C patchpro.debug=true
    Effective proxy host : ""
    Effective proxy port : "8080"
    Effective proxy user : ""
    ... Submitting download request against a Non-GUUS server
    ... Caught IO Exception.
    ((HttpURLConnection)connection).getResponseCode() : 503
    ((HttpURLConnection)connection).getResponseMessage() : Servlet PatchServer is currently unavailable
    Error: Unable to download document : "xml/motd.xml"
    Cannot connect to retrieve xml/motd.xml: Servlet PatchServer is currently unavailable
    Unable to display any message of the day notices from Sun Microsystems. Refer to the log file for additional information.
    Effective proxy host : ""
    Effective proxy port : "8080"
    Effective proxy user : ""
    ... Submitting download request against a Non-GUUS server
    Effective proxy host : ""
    Effective proxy port : "8080"
    Effective proxy user : ""
    ... Submitting download request against a Non-GUUS server
    ... Caught IO Exception.
    ((HttpURLConnection)connection).getResponseCode() : 503
    ((HttpURLConnection)connection).getResponseMessage() : Servlet PatchServer is currently unavailable
    ... Caught IO Exception.
    ((HttpURLConnection)connection).getResponseCode() : 503
    ((HttpURLConnection)connection).getResponseMessage() : Servlet PatchServer is currently unavailable
    Failure: Cannot connect to retrieve detectors: Servlet PatchServer is currently unavailable
    root@b1isfsun02#
    SCENARIO 2
    - same as scenario 1 except source URL = http://solaris3.ny.frb.org:3816/solaris/
    Results of client B1STSUN02
    root@b1stsun02# smpatch set patchpro.patch.source=http://solaris3.ny.frb.org:3816/solaris/
    root@b1stsun02# smpatch get
    patchpro.backout.directory - ""
    patchpro.baseline.directory - /var/sadm/spool
    patchpro.download.directory - /var/sadm/spool
    patchpro.install.types - rebootafter:reconfigafter:standard
    patchpro.patch.source http://solaris3.ny.frb.org:3816/solaris/ https://getupdates1.sun.com/
    patchpro.patchset - current
    patchpro.proxy.host - ""
    patchpro.proxy.passwd **** ****
    patchpro.proxy.port - 8080
    patchpro.proxy.user - ""
    root@b1stsun02# smpatch analyze -C patchpro.log.level=3 -C patchpro.debug=true
    Effective proxy host : ""
    Effective proxy port : "8080"
    Effective proxy user : ""
    ... Submitting download request against a Non-GUUS server
    ... Caught IO Exception.
    ((HttpURLConnection)connection).getResponseCode() : 400
    ((HttpURLConnection)connection).getResponseMessage() : Bad Request
    Error: Unable to download document : "xml/motd.xml"
    Cannot connect to retrieve xml/motd.xml: Bad Request
    Unable to display any message of the day notices from Sun Microsystems. Refer to the log file for additional information.
    Effective proxy host : ""
    Effective proxy port : "8080"
    Effective proxy user : ""
    ... Submitting download request against a Non-GUUS server
    Effective proxy host : ""
    Effective proxy port : "8080"
    Effective proxy user : ""
    Key 1 : Content-Type = application/octet-stream
    Key 2 : Date = Sun, 25 Feb 2007 15:13:56 GMT
    Key 3 : Server = Apache Tomcat/4.0.5 (HTTP/1.1 Connector)
    Key 4 : Transfer-Encoding = chunked
    Key 5 : PatchProServletCompletionCode = 0
    Effective proxy host : ""
    Effective proxy port : "8080"
    Effective proxy user : ""
    Effective proxy host : ""
    Effective proxy port : "8080"
    Effective proxy user : ""
    ... Submitting download request against a Non-GUUS server
    Key 1 : Content-Type = application/octet-stream
    Key 2 : Date = Sun, 25 Feb 2007 15:14:18 GMT
    Key 3 : Server = Apache Tomcat/4.0.5 (HTTP/1.1 Connector)
    Key 4 : Transfer-Encoding = chunked
    Key 5 : PatchProServletCompletionCode = 0
    119081-25 SunOS 5.10: CD-ROM Install Boot Image Patch
    124630-03 SunOS 5.10: System Administration Applications, Network and Core Libraries Patch
    119254-34 SunOS 5.10: Install and Patch Utilities Patch
    113886-42 OpenGL 1.3: OpenGL Patch for Solaris (32-bit)
    113887-42 OpenGL 1.3: OpenGL Patch for Solaris (64-bit)
    120543-08 SunOS 5.10: Apache 2 Patch
    124244-01 SunOS 5.10: /usr/bin/rm patch
    124997-01 SunOS 5.10: /usr/bin/tip patch
    124614-01 SunOS 5.10: sconadm proxy: UnknownHostException
    118371-08 SunOS 5.10: elfsign Patch
    120068-03 SunOS 5.10: in.telnetd patch
    119115-23 Mozilla 1.7 patch
    root@b1stsun02#
    [b]Results of client B1ISFSUN02
    root@b1isfsun02# smpatch set patchpro.patch.source=http://solaris3.ny.frb.org:3816/solaris/
    root@b1isfsun02# smpatch get
    patchpro.backout.directory - ""
    patchpro.baseline.directory - /var/sadm/spool
    patchpro.download.directory - /var/sadm/spool
    patchpro.install.types - rebootafter:reconfigafter:standard
    patchpro.patch.source http://solaris3.ny.frb.org:3816/solaris/ https://getupdates1.sun.com/
    patchpro.patchset - current
    patchpro.proxy.host - ""
    patchpro.proxy.passwd **** ****
    patchpro.proxy.port - 8080
    patchpro.proxy.user - ""
    root@b1isfsun02# smpatch analyze -C patchpro.log.level=3 -C patchpro.debug=true
    Effective proxy host : ""
    Effective proxy port : "8080"
    Effective proxy user : ""
    ... Submitting download request against a Non-GUUS server
    ... Caught IO Exception.
    ((HttpURLConnection)connection).getResponseCode() : 400
    ((HttpURLConnection)connection).getResponseMessage() : Bad Request
    Error: Unable to download document : "xml/motd.xml"
    Cannot connect to retrieve xml/motd.xml: Bad Request
    Unable to display any message of the day notices from Sun Microsystems. Refer to the log file for additional information.
    Effective proxy host : ""
    Effective proxy port : "8080"
    Effective proxy user : ""
    Effective proxy host : ""
    Effective proxy port : "8080"
    Effective proxy user : ""
    ... Submitting download request against a Non-GUUS server
    ... Submitting download request against a Non-GUUS server
    Key 1 : Content-Type = application/octet-stream
    Key 2 : Date = Sun, 25 Feb 2007 15:17:41 GMT
    Key 3 : Server = Apache Tomcat/4.0.5 (HTTP/1.1 Connector)
    Key 4 : Transfer-Encoding = chunked
    Key 5 : PatchProServletCompletionCode = 0
    Key 1 : Content-Type = application/octet-stream
    Key 2 : Date = Sun, 25 Feb 2007 15:17:42 GMT
    Key 3 : Server = Apache Tomcat/4.0.5 (HTTP/1.1 Connector)
    Key 4 : Transfer-Encoding = chunked
    Key 5 : PatchProServletCompletionCode = 0
    Effective proxy host : ""
    Effective proxy port : "8080"
    Effective proxy user : ""
    Effective proxy host : ""
    Effective proxy port : "8080"
    Effective proxy user : ""
    ... Submitting download request against a Non-GUUS server
    Key 1 : Content-Type = application/octet-stream
    Key 2 : Date = Sun, 25 Feb 2007 15:18:27 GMT
    Key 3 : Server = Apache Tomcat/4.0.5 (HTTP/1.1 Connector)
    Key 4 : Transfer-Encoding = chunked
    Key 5 : PatchProServletCompletionCode = 0
    124614-01 SunOS 5.10: sconadm proxy: UnknownHostException
    118371-08 SunOS 5.10: elfsign Patch
    120068-03 SunOS 5.10: in.telnetd patch
    119115-23 Mozilla 1.7 patch
    root@b1isfsun02#
    SCENARIO 3
    - RESTART sunUC proxy server
    - same two sunUC clients
    - source URL = http://solaris3.ny.frb.org:3816/
    Results of restarting sunUC proxy
    root@b3osdsun01:/root# patchsvr stop
    Shutting down Local Patch Server
    root@b3osdsun01:/root# patchsvr start
    Starting Local Patch Server
    root@b3osdsun01:/root# patchsvr enable
    root@b3osdsun01:/root# patchsvr status
    enabled
    root@b3osdsun01:/root#
    Results of clientB1STSUN02
    root@b1stsun02# smpatch set patchpro.patch.source=http://solaris3.ny.frb.org:3816/
    root@b1stsun02# smpatch get
    patchpro.backout.directory - ""
    patchpro.baseline.directory - /var/sadm/spool
    patchpro.download.directory - /var/sadm/spool
    patchpro.install.types - rebootafter:reconfigafter:standard
    patchpro.patch.source http://solaris3.ny.frb.org:3816/ https://getupdates1.sun.com/
    patchpro.patchset - current
    patchpro.proxy.host - ""
    patchpro.proxy.passwd **** ****
    patchpro.proxy.port - 8080
    patchpro.proxy.user -

  • Where to download wlst.jar and python.jar for weblogic 10

    where to download wlst.jar and python.jar for weblogic 10 ? I am unable to find the links ..most of the prevoius ones point to dev2dev which are no longer valid

    Hi,
    I have written the below python script to list the user ,that was created in realms->myrealms->users.
    It's not working it.
    Kindly help to in this python script.
    from weblogic.management.security.authentication import UserReaderMBean
    from weblogic.management.security.authentication import GroupReaderMBean
    file_loc='MbeanValues.properties'
    file=java.io.File(file_loc)
    if file.exists():
         loadProperties(file_loc)
    connect(dwlusr,dwlspwd,dwlsurl)
    domain_name = cmo.getName()
    print 'UserName='+dwlusr
    print 'URL='+dwlsurl
    print 'DomainName='+ domain_name
    print 'welcome'
    print 'Checking if isMember of a group'realm=cmo.getSecurityConfiguration().getDefaultRealm()
    atns = realm.getAuthenticationProviders()
    for i in atns:
    if isinstance(i,UserReaderMBean):
    userReader = i cursor = i.listUsers("*",0)
    print 'Users in realm '+realm.getName()+' are: '
    while userReader.haveCurrent(cursor):
    print userReader.getCurrentName(cursor)
    userReader.advance(cursor)
    userReader.close(cursor)for i in atns:
    if isinstance(i,GroupReaderMBean):
    groupReader = i
    cursor = i.listGroups("*",0)
    print 'Groups in realm are: '
    while groupReader.haveCurrent(cursor):
    print groupReader.getCurrentName(cursor)
    groupReader.advance(cursor)
    groupReader.close(cursor)
    disconnect()

Maybe you are looking for