Recordset Retrieval in Servlets

Dear All,
I am using a Servlet to access the Database and read a recordset. The issue I am having is that the query executes in the backend in a fraction of a second. But the fetching of data from the database to the application server takes a very long time.
I am using CallableStatement Interface and also setting a prefetch value which is appropriate. The issue is that though the number of records are few, it takes 4-5 seconds to fetch the data. This results in very poor performance of the system.
Could someone provide some help quicly since this is an extremely urgent requirement.
Thanks
Menon

Do one thing first access the said records using Statement or PreparedStatement and see the performance then tell me what happend. I'll try find out the problem .

Similar Messages

  • Get value from Table/Recordset Cell into a JSP variable

    Can anyone please help with this ?...
    I need to get a cell value from a selected row of a table into a variable to pass to a java bean.
    1 - The dynamic table is populated by a recordset named "rs" and has a submit button for each row .
    2 - The user clicks on the corresponding button to select the row.
    3 - The recordset retrieved the ID for that row in the query, but does not display it in the table.
    I have tried :
    <% String ID = rs.getString("bookid");%>
    <% Library.bookConfirm(ID);%>
    But this fails saying that it "cannot resolve variable rs..."
    Yet the recordset populates correctly and its name is "rs"
    Is there another way to do this perhaps ?... ie: put the id in a column of the table and get the cell value ?...
    What would be the syntax to get the ID cell value of that selected row on the button click ?...
    Your feed back would be greatly appreciated.
    Thank you.

    Create a new rs
    ResultSet rs1 = statement.executeQuery(query);
    and use getstring to access the individual cell.

  • SBO B1 2005 SP 01 Patch 11 - Issues with recordsets.

    Hi,
    We are using ‘recordset’ for Query all over our application. I have performance problems when I upgraded to SP01 Patch 11. Recordset retrieves the data fast but takes very very long time when I do movenext() or eof() or movefirst().
    Here is a sample code:
    Dim rs As SAPbobsCOM.Recordset = Query (sqlStmt)
                ' If no record is fetched, returns false which indicates the finding failed
                rs.MoveFirst()
                If rs.EoF() Then Return False
                ' Caches the object columns
                CacheColumns(rs)
                ' Releases the referenced object
                rs = Nothing
    The whole process takes long time. So I debugged the code. The delay is at MoveFirst() and eof() stage. If I comment these 2 steps, it is faster. But I have to use the recordset functions. 
    IT WAS VERY QUICK IN SBO 2005 before upgrading the sp01 patch 11. Am I missing something? Is something changed in SP01? I am using Recordset to query on user tables only.
    Please somebody help me out.
    Regards,
    Prakash

    Does this bug also affect the GetByKey method? Because I am developing an addon, and all of a sudden it starts to hang. I did upgrade to PL11 during the development. I have been going insane trying to figure out what made my program stop working, and I even back-tracked numerous revisions. In the end, it is the following code that made the difference:
    oDocs = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oOrders)
                            strSQL = "Select DocEntry from ORDR where DocNum = '" + strDocNum + "'"
    oRecs = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset)
                        oRecs.DoQuery(strSQL)
                        strDocEntry = oRecs.Fields.Item("DocEntry").Value
                        If oDocs.GetByKey(strDocEntry) Then
    oDocs.UserFields.Fields.Item("U_MyField").Value = strValue
    end if
    If I comment out the last if statement with GetByKey, it seems to be fine. If I leave it in, it hangs when I click the "Update" button on the Sales Order form. The database I'm working on has thousands of order records. Could it be caused by the bug since it's a large volume of records to go through? We also use record sets all over the place. It also doesn't make sense to me that in other areas it seems to work ok.

  • Linking Recordset in Dreamweaver

    Hi
    To better explain my problem and hopefully find a solution, here is a backstory.
    I am building a database driven website with PHP and MySQL using Dreamweaver CS5.
    One of the pages on site is called programme, and it access by query string like this
    www.domain.com/programme/?id=10000000
    Depending on the value of the query string, programme data is retrieved from the database and is displayed on the page. All this is working without any problems.
    In addition to the main programme information, I also want to display related ‘programmes’ on the bottom of the page.
    To achieve this I have created two ‘record sets’ in Dreamweaver.
    The first recordset retrieves the main programme and the second recordset will retrieves the related programmes.
    These are the fields in the database.
    Id, programme, episode, date, time
    Recordset 1 : SQL
    PHP Code:
    $programme_Programme = "-1";
    if (isset($_GET['id'])) {
      $programme_Programme = $_GET['id'];
    mysql_select_db($database_main, $main);
    $query_Programme = sprintf("SELECT * FROM main WHERE id = %s", GetSQLValueString($programme_Programme, "int"));
    $Programme = mysql_query($query_Programme, $main) or die(mysql_error());
    $row_Programme = mysql_fetch_assoc($Programme);
    $totalRows_Programme = mysql_num_rows($Programme);
    I have had great difficulty in the SQL for the second recordsets. 
    I think the solution involves in taking $programme defined in first recodset and using in the second recordset SQL somehow.
    Something like
    PHP Code:
    $related_Related = "-1";
    if (isset($_GET['programme'])) {
      $related_Related = $_GET['programme'];
    mysql_select_db($database_main, $main);
    $query_Related = sprintf("SELECT * FROM main WHERE %s = programme", GetSQLValueString($related_Related, "text"));
    $Related = mysql_query($query_Related, $main) or die(mysql_error());
    $row_Related = mysql_fetch_assoc($Related);
    $totalRows_Related = mysql_num_rows($Related);
    But, this does not work. 
    I know this is totally messed-up
    So I would really appreciate if someone can let me know what I should be doing to get this to work.
    Thanks

    Thanks for that, but am afraid it did not work
    I just get syntax error, not in Dreamweaver but when I try to load the page.
    This is the message
    You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'Cut' at line 1
    The first record in my table contains the word 'Cut', so I thought that was the problem.
    I then decided to change the name of the first record to progamme and hey presto no syntax error.
    It seems like this codes works only if the record name is programme.
    What I wanted to achieve was a way of taking the name of the programme retrieved in the first recordset and using it to look up the programme field for other "related" programmes.
    Here is the code as it stands
    $programme_Programme = "-1";
    if (isset($_GET['id'])) {
      $programme_Programme = $_GET['id'];
    mysql_select_db($database_main, $main);
    $query_Programme = sprintf("SELECT * FROM main WHERE id = %s", GetSQLValueString($programme_Programme, "int"));
    $Programme = mysql_query($query_Programme, $main) or die(mysql_error());
    $row_Programme = mysql_fetch_assoc($Programme);
    $totalRows_Programme = mysql_num_rows($Programme);
    $programme = $row_Programme['programme'];
    $maxRows_Related = 2;
    $pageNum_Related = 0;
    if (isset($_GET['pageNum_Related'])) {
      $pageNum_Related = $_GET['pageNum_Related'];
    $startRow_Related = $pageNum_Related * $maxRows_Related;
    mysql_select_db($database_main, $main);
    $query_Related = "SELECT * FROM main WHERE programme  = $programme";
    $query_limit_Related = sprintf("%s LIMIT %d, %d", $query_Related, $startRow_Related, $maxRows_Related);
    $Related = mysql_query($query_limit_Related, $main) or die(mysql_error());
    $row_Related = mysql_fetch_assoc($Related);
    if (isset($_GET['totalRows_Related'])) {
      $totalRows_Related = $_GET['totalRows_Related'];
    } else {
      $all_Related = mysql_query($query_Related);
      $totalRows_Related = mysql_num_rows($all_Related);
    $totalPages_Related = ceil($totalRows_Related/$maxRows_Related)-1;

  • Need JSP-URL in controlling servlet

    Hi,
    I have a simple questions which is driving me crazy.
    2 JSP's are using same Servlet which has to process their input.
    Inside this servlet I need to know which jsp is calling the servlet.
    I tried following code :
              System.out.println("req.getRequestURI() = \"" + req.getRequestURI() +"\"");
              System.out.println("req.getClass() = \"" + req.getClass() +"\"");
              System.out.println("req.getPathInfo() = \"" + req.getPathInfo() +"\"");
              System.out.println("req.getPathTranslated() = \"" + req.getPathTranslated() +"\"");
              System.out.println("req.getServletPath() = \"" + req.getServletPath() +"\"");
              System.out.println("HttpUtils.getRequestURL(req)= \"" + HttpUtils.getRequestURL(req) +"\"");
    but none of them are returning the correct name of the calling JSP...
    Here are the results in same sequence:
    req.getRequestURI() = "/servlet/com.clipper.servlets.FQController"
    req.getClass() = "class com.ibm.servlet.engine.webapp.WebAppDispatcherRequest"
    req.getPathInfo() = "null"
    req.getPathTranslated() = "null"
    req.getServletPath(req) = "/servlet/com.clipper.servlets.FQController"
    HttpUtils.getRequestURL()= "http://www.clippersupport.be:2031/servlet/com.clipper.servlets.FQController"
    As you can see, I only retrieve the Servlets info, not the JSP's...
    I need to find :
    /JSP/JSP1.jsp
    How do I do this ???

    I don't think it is possible to find out the details of the calling jsp in another servlet jsp or servlet. The only possibility is in the jsp get requestURL and place this as a request parameter in the request. Then when you call the servlet, the servlet can then extract this request parameter.

  • Invoking servlet at Click of a JButton.

    I have a swing application running fine.I now want to introduce a functionality for opening a new popup window on the click of a JButton in my appln., similar to window.open() method in javascript.When I click a JButton , a servlet gets invoked, talks to the database and gives some results. I want these results to be displayed in the new popup window.
    Thks.

    if you have an applet then try this:
    URL pageURL = null;
    try {
    pageURL = new URL("your servlet path");
    } catch (Exception e) {
    System.out.println(e);
    return;
    getAppletContext().showDocument(pageURL, "_blank");
    for an application you need to retrieve the servlet result and display it in a HTML parser container.

  • Adding new line item to Delivery

    When I try to post (Add) a delivery document based on a sales order that has a line item added that did not belong to the sales order I get the following error "[OACT] No matching records found (ODBC -2028)".  Looking in the DI API documentation I see that the Document_Lines object has a mandatory AccountCode property.  How do I go about getting the appropriate account code for the added line item?  The help documentation shows some sample code (included below), which doesn't make much sense to me. 
    Dim sStr As String
        Dim vRs As SAPbobsCOM.Recordset
        Dim vBOB As SAPbobsCOM.SBObob
        Dim vCH As SAPbobsCOM.ChartOfAccounts
        Set vCH = Vcmp.GetBusinessObject(oChartOfAccounts)
        Set vBOB = Vcmp.GetBusinessObject(BoBridge)
        Set vRs = Vcmp.GetBusinessObject(BoRecordset)
        Set vRs = vBOB.GetObjectKeyBySingleValue(oBusinessPartners, "CardName", "aaa", bqc_Equal)
        ' When working with segmentation use this function
        ' to find the account key in the ChartOfAccount object
        Set vRs = vBOB.GetObjectKeyBySingleValue(oChartOfAccounts, "FormatCode", "125100000100101", bqc_Equal)
        'The Recordset retrieves the value of the key (for example, sStr = _SYS00000000010).
        sStr = vRs.Fields.Item(0).Value
        'Use the sStr value to set the AccountCode
    Where does the FormatCode value of "125100000100101" come from?  Why the first call to GetObjectKeyBySingleValue?  It doesn't appear the results are being used?
    Any help would be greatly appreciated!
    Thanks,
    Jason Eiler
    BTW - I'm developing with/for SAP Business One version 2004 (or 6.7 of the DI API).

    Hi Jason,
    First of all:
    The displayed account code must be translated into the internally used code ("_SYS...") when using segmentation - when not using segemntation it is just internal code = displayed code.
    The code displayed is just a sample to give you a hint in case you are already familiar with the SAP Business One application.
    Therefore the sample code does not talk about where you got e.g. the value for FormatCode from ("FormatCode" is e.g. a field in table OACT where the account name with segments is (redundantly) stored without separators).
    The user should know on which account he/she wants to book a line on; maybe you might want to give some help to the user by displaying a dialog with suitable - or preselected accounts?
    In addition I am sure you know how to assign a string value to a string property - without explicitly writing it, right?
    HTH,
    Frank

  • Accessing ServletContext in a Action file

    Hi all,
    I have a servlet which i load on start up and put in the context. Now, i want to retrieve that servlet from the context and use it in a Action file, what should i do?
    The class Action, which every action file extends doesn't have any method to get the servlet context.
    please help,
    Seshu

    You can use request dispatcher to forward the request to the servlet, I guess.Since the request object is available to you in the Action class, u can get the request dispatcher object from the request and use it to forward the request to the servlet.

  • Need help getting mysql data

    I have two pages, page X has all the record and page Y has a record that is based  on a url paramater sent from page X, meaning at the end in the browser I have something like this:
    the_site/item_detail.php?item_name=KEDS, CHUKKA, BLUE SLATE
    The thing is, I want to get another record on page Y where I want to have some of the information of the first record which receives its URL paramater from page X.
    More clear maybe:
    On page Y, I have one record which receives its data info from a URL paramater sent from page X
    on thi same page, I want to create another record and I would like this new record to use a column from the first one to get its data result.
    Thank

    I am retrieving data
    on page Y there already a recordset that retrievs data based on the URL parameter sent from page X (recordset 1)
    On the same page, I want to create another recordset (retrieve more data) and to retrieve this data (of recordset 2 on the same oage) I want to be able to use some information from recordset 1.
    I hope your understand what I mean

  • [OINV.GrosProfit][line: 1] , 'No matching records found (ODBC

    When creating a sales service invoice in Business One I get the following error:
    [OINV.GrosProfit][line: 1] , 'No matching records found (ODBC
    Can anyone help?

    Thanks,
    I found the solution to the problem.
    My SAP B1 system was using segmented accounts. When using segmented accounts you can not simply pass in the 'normal' AccountCode, you must pass in the system account code.
    For example is the AccountCode you want to use is: "15100-01-01" you would need to pass in an account code that looks something like this: "_SYS00000000051"
    How do you get this system account code?
    The easiest way is to use the SBobs as follows (Note c refers to a company object and "151000101" is the AccountCode you want to find:
    Dim sStr As String
    Dim vBOB As SAPbobsCOM.SBObob
    Set vBOB = c.GetBusinessObject(BoBridge)
    Dim vRs As SAPbobsCOM.Recordset
    Set vRs = vBOB.GetObjectKeyBySingleValue(oChartOfAccounts, "FormatCode", "410000101", bqc_Equal)
    'The Recordset retrieves the value of the key (for example, sStr = _SYS00000000010).
    sStr = vRs.Fields.Item(0).Value
    sStr now has the account code in the system format.
    Note: The above code is in VBA. In my Application I use C# and .Net

  • JSP error page in web.xml

    I had a JSP error page spcified through the attribute isErrorPage and referenced in the other JSPs through the errorPage attribute, and everything worked well.
    Then, I decided to specify that errorpage in the web.xml instead :
    <error-page>
      <exception-type>java.lang.Throwable</exception-type>
       <location>/error.jsp<location>
    </error-page>The page is found and everythiing, except that I don't get the Throwable info in the implicit exception object in error.jsp. There's nothing in exception.getMessage().
    Anybody knows why and the solution to this ?

    The JSP spec lets you get the Throwable through the javax.servlet.jsp.jspException request attribute.
    The servlet spec uses the javax.servlet.error.exception request attribute for the same thing.
    Therefore, because of the above unfortunate mismatch, when you switched to a global error page, you could no longer get the Throwable through the implicit exception obj, because the later retrieves Throwable from the javax.servlet.jsp.jspException request attribute.
    The solution would be to retrieve javax.servlet.error.exception from the request yourself in your error page.

  • "Image not Found" error with Show Thumbnails

    Using Dreamweaver's ADDT "Show Thumbnail" server behavior, I get an "image not found" error. The thumbnail has been created because I can see in on the remote server. I am new at this, please help!

    >>
    And If I change the "File List Recordset" to get images subfolders related to a rename rule, {dogs_images_recordset.id_dog) I get an image displayed, but its always the same image and corresponds only to one record (the first of the display list)
    >>
    I´m now trying to understand your scenario -- so if I get it right, the file list recordset retrieves the correct image folder
    (assuming you´re passing the dynamic folder name from e.g. an URL variable "id_dog"), but just displays one image rather than looping through all images in that directory ? However, can you please post the code of the page containing the file list recordset ?
    Günter Schenk
    Adobe Community Expert, Dreamweaver

  • How to transfer the attributes of one page to other without using submit

    hi friends,
    I have faced a prob when i use submit to transfer the parameter from page1 to page 2 i can get the parmeter in page 2. But when u try to implement through action of onclick i cannt able to fetch the value of the parameter in the jsp page2. is there is any other option equivalent to request.getParmeterValues. in setting the attribute.
    can any one give me the solution to overcome this prob it will be appreciated and thanked by me.

    Hi Anand,
    We can send request to server with submitting the page.
    why dont you try using xml over http.
    This is some thing like thru java script you can pass the values to some Servlet, construt the object there, while returning from the servlet just put your response thru printwriter pw object like pw.print(response);
    In java script you can mensioned to retrieve the servlet result.
    check the following code, it would help you
    EXPLORER_xmlHttp = new ActiveXObject("Microsoft.xmlHttp");
    serverURL = "someUrl.com"+ "method=" + "callMethod.do";
    EXPLORER_xmlHttp.open("POST",serverURL,true);
    EXPLORER_xmlHttp.setRequestHeader("ClientType","HTML");
    EXPLORER_xmlHttp.onreadystatechange = Return_Method_onready;
    (control will come from servlet to the above method)
    set the other headers what ever you want...
    then set the input parameters
    EXPLORER_xmlHttp.send(inputAttr);
    from Servlet you get the response directly to the javaScript method which you specified.
    this is how it works.
    Regards
    Jyothi Prakash

  • How to send SQL query results to XML ?

    Hey Guys, I am querying a DB with huge amount of traffic. A user select a particular lot and then details of the lot will be displayed in the following page. My concern here is that it takes really LONG to retrieve back the results coz it has to requiry in the following JSP page.
    I was told to use XML to retrieve the dataset and store it. Hence, in the following query it will re-query only from the recordsets in the XML file (...Logically, should be faster rite ? ). Hence, how do parse my recordsets retrieved from the SQL query to an XML file ?
    Any sort of suggestion , help, reference would be deeply appreciated ..Thanks !

    <HTML>
    <BODY>
    <H1>Manufacturing Summary beta </H1><BR>
    <%@ page import="java.sql.*" %>
    <%@ page import="java.lang.*" %>
    <%@ page import="java.text.*" %>
    <jsp:include page="/index.html" flush="true"/>
    <P><B>Returned result<B><BR>
    <B>Query String :</B><%=request.getParameter("date") %>
    <TABLE BORDER=1 cellpadding=0 cellspacing=0>
    <%!
    static double roundDouble(double toBeRounded, int fractionDigits)
    NumberFormat format = NumberFormat.getInstance();
    format.setMaximumFractionDigits(fractionDigits);
    String tempDouble = format.format(toBeRounded);
    return Double.parseDouble(tempDouble);
    %>
    <%
    DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
    Connection conn = DriverManager.getConnection("jdbc:oracle:thin:@klmomnidb:1521:
    OMNIDB","omni","omni");
    Statement stmt = null;
    ResultSet rset = null;
    String S_date = new String();
    String temp = new String();
    String lot_id = new String();
    String result = new String();
    String SQL_String = new String();
    double yield;
    int bad_cnt;
    S_date = request.getParameter("date");
    lot_id = request.getParameter("lot_id");
    temp = request.getParameter("TST_TEMP");
    SQL_String = "SELECT LOT_ID, FLOW_ID, TST_TEMP, MODE_COD, RTST_COD, PART_CNT, GO
    OD_CNT, OPER_NAM, JOB_REV, PROC_ID, START_T, FACIL_ID, TSTR_TYP, NODE_NAM FROM L
    OT where START_T > TO_DATE('"+ S_date + "','MM/DD/YYYY') AND TST_TEMP <='" + tem
    p+"' order by START_T";
    out.println(SQL_String);
    stmt = conn.createStatement();
    rset = stmt.executeQuery (SQL_String);
    out.println("<TR>");
    out.println("<TD> Select Lot(s)</TD>");
    out.println("<TD>Flow </TD>");
    out.println("<TD>Temp </TD>");
    out.println("<TD>Test Mode </TD>");
    out.println("<TD>Retest</TD>");
    out.println("<TD>Total </TD>");
    out.println("<TD>Good</TD>");
    out.println("<TD>Bad</TD>");
    out.println("<TD>Yield </TD>");
    out.println("<TD>UserID</TD>");
    out.println("<TD>Program</TD>");
    out.println("<TD>Mask</TD>");
    out.println("<TD>Start Time </TD>");
    out.println("<TD>Loc </TD>");
    out.println("<TD>Tester</TD>");
    out.println("<TD>System </TD>");
    out.println("</TR>");
    if (! rset.next()) {
    result ="No records found matching seach criteria.";
    while (rset.next()) {
    bad_cnt = Integer.parseInt(rset.getString(6)) - Integer.parseInt(rset.getString(
    7));
    yield = (Double.parseDouble(rset.getString(7)) / Double.parseDouble(rset.getStri
    ng(6))) * 100;
    result= "<TR>";
    result = result + "<TD><a href=coolpage.jsp?LOT_ID=" + rset.getString(1)+ ">" +
    rset.getString(1) + "</A></TD>";
    result = result + "<TD>" + rset.getString(2) + "</TD>";
    result = result + "<TD>" + rset.getString(3) + "</TD>";
    result = result + "<TD>" + rset.getString(4) + "</TD>";
    result = result + "<TD>" + rset.getString(5) + "</TD>";
    result = result + "<TD>" + rset.getString(6) + "</TD>";
    result = result + "<TD>" + rset.getString(7) + "</TD>";
    result = result + "<TD>" + bad_cnt + "</TD>";
    result = result + "<TD>" + roundDouble(yield,2) + "% </TD>";
    result = result + "<TD>" + rset.getString(8) + "</TD>";
    result = result + "<TD>" + rset.getString(9) + "</TD>";
    result = result + "<TD>" + rset.getString(10) + "</TD>";
    result = result + "<TD>" + rset.getString(11) + "</TD>";
    result = result + "<TD>" + rset.getString(12) + "</TD>";
    result = result + "<TD>" + rset.getString(13) + "</TD>";
    result = result + "<TD>" + rset.getString(14) + "</TD>";
    result = result + "</TR>"; %>
    <%=result%>
    <% }
    rset.close();
    stmt.close();
    conn.close();
    %>
    <%=result%>
    </TABLE>
    </BODY>
    </HTML>

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

Maybe you are looking for

  • Windows 7 on Mac Pro, Local Access Only, No Internet

    Installed Windows 7 on my 2.66 Quad Mac Pro. Whenever I boot, the network adapter icon in the traybar comes up with a yellow slash through it that says "Local Access Only" Looked into troubleshooting, turning off Network power management, turning off

  • *content repositry id*

    hi during archive link custmisation , it asking me for content repositry id it throwing error like Content Repository Identification= ID for connection to a content repository through which documents can be stored in a content server. I have content

  • Preferences not opening after asking for restart

    As we all know, when using 3rd party preferences panes the preferences asks you to restart (I think to go into 32/63-bit mode) But when I press ok, it quits then doesn't open again, It's extremely annoying and cripples my productivity and use of this

  • JDev hangs when opening a file in customization role

    Using JDev PS5. when I open JDev in default role, everything works fine. When i open JDev in customization role everything seems to work fine at first but when I double click on a file to open it, JDev just hangs. It mostly happens when I try to open

  • Restrict Form & Reports Pages but allow users to Save their Records

    Hi I have a database with Forms & editable Reports pages. I have also created a table with certain 'Admin Levels' of access so that users with the 'ADMIN_LEVEL' = 1 cannot access the editable reports pages. I find that applying the below restriction