When will patches be listed on the web ?

Hello,
I have two re-registered servers, 'smpatch analyze' shows numerous patches, but on the web the column 'Available updates' list 0 patches. That is nearly 24 hours ago.
Also one server has a orange triangle with a call sign (column 'Last checked-In').
I installed one patch with the updatemanager GUI, but the situation keeps the same.
How long will it take until the patches are listed?
Which logfile would be appropriate?
Thanks for any help.
-- Nick

thankys for your help -
there are a few interesting points to show:
# /usr/lib/cc-cfw/platform/transport/bin/cctrunner -p
* Establish HTTP proxy tunnel to cns-transport.sun.com:443
< HTTP/1.1 200 Connection established
<
* Proxy replied OK to CONNECT request
* successfully set certificate verify locations:
*   CAfile: /usr/lib/cc-cfw/platform/transport/etc/CACert.pem
  CApath: none
* SSL certificate problem, verify that the CA cert is OK. Details:
error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed
* Closing connection #0
* Establish HTTP proxy tunnel to cns-transport.sun.com:443
< HTTP/1.1 200 Connection established
<
* Proxy replied OK to CONNECT request
* successfully set certificate verify locations:
*   CAfile: /usr/lib/cc-cfw/platform/transport/etc/CACert.pem
  CApath: none
* SSL certificate problem, verify that the CA cert is OK. Details:
error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed
* Closing connection #0
curl error code: 60
curl message: SSL certificate problem, verify that the CA cert is OK. Details:
error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed
# less /var/log/swupas/swupas.log
Swup Agent run:  Fri Aug 17 12:23:00 CEST 2007
** DEBUG ON **
Attempt to get exclusive lock: 1
We have the lock!
prepare to register with Transport
Error: unable to register with Transport
com.sun.cc.transport.client.TransportAdapterException: proxy communication failure
        at com.sun.cc.transport.client.TransportAdapter.register(TransportAdapter.java:474)
        at com.sun.cc.transport.client.TransportAdapter.<init>(TransportAdapter.java:305)
        at com.sun.swup.client.agent.SwupAgent.main(SwupAgent.java:337)
Swup Agent finish:  Fri Aug 17 12:25:31 CEST 2007
# /usr/lib/cc-ccr/bin/ccr -g cns.swup.lastCheckin
0
# crontab -l
54 3 * * * /usr/lib/patch/swupAuto > /dev/null 2>&1
38 * * * * /usr/lib/patch/swupas > /dev/null 2>&1
# ps -ef | grep cctransport
    root 25911 20175   0 12:39:43 pts/1       0:00 grep cctransportSo how can this be corrected?
-- Nick

Similar Messages

  • Verisign announced a new CA certificate in October 2010, Verisign Class 3 Secure Server G3. When will this be included in the CA list of the browser? It is in other browsers already (IE, Safari, etc)

    Verisign announced a new CA certificate in October 2010, Verisign Class 3 Secure Server G3. When will this be included in the CA list of the browser? It is in other browsers already (IE, Safari, etc), yet in Firefox you're currently prompted with a security warning for a trusted CA.

    That is one of the intermediate certificates that VeriSign is using. Intermediate certificates are part of the chain that is formed by the web server certificates and build-in root certificates. Such an intermediate certificate needs to be send by the server and is not included by default in Firefox. Firefox will store such an intermediate certificate for future use when a website sends it.
    See https://knowledge.verisign.com/support/ssl-certificates-support/index?page=content&id=AR1130

  • How can I get a printable list of the web sites in a tab showing both the name of the site and it's location?

    I use tab groups for specific projects and would like to print/save a list of the websites used on each project. Using the list function on a tab group produces a list of the web-sites which can be printed/saved via PrtSc and Word. How can the web-site addresses be included? With this list available I would then close the tabs.

    Someone might have created an add-on for this, although I didn't find one in a search.
    Could I suggest this workaround for now:
    (1) Use the Bookmark All Tabs feature (right-click a tab when your tab group is displayed) to save all tabs to a new folder on the bookmarks menu. Some tips in the "How do I bookmark all of my open tabs?" section of this article: [[How to use bookmarks to save and organize your favorite websites]].
    (2) Export bookmarks to an HTML file. Unfortunately, this will be all bookmarks, not just the ones you want, but hang in there. This article has the steps: [[Export Firefox bookmarks to an HTML file to back up or transfer bookmarks]].
    (3) Open the exported HTML file in Firefox or your favorite WP program. Now you can either:
    (A) Copy/paste the live links for your tab group into your preferred form of archival storage. Or
    (B) Print (e.g., select the relevant bookmarks and use the Print Selection feature). However, in order to show the URLs, you need to hack the page a little bit.
    (i) In Firefox, you can run a little script in the Web Console on the bookmarks page. Press Ctrl+Shift+k to open the web console. Copy the following line of script, then paste it next to the caret (">") in the web console and press Enter. The URLs should appear after the links.
    for(var i=0; i&lt;document.links.length; i++) {document.links[i].parentNode.appendChild(document.createTextNode(' ['+document.links[i].href+']'))}
    (ii) In Word, there probably is a macro to split the hyperlink fields into the display text and URL. If Word is your preferred tool, I'll see whether I can write one.

  • Adobe reader X will not open files on the web

    Adobe reader X will not open files on the web.  It works fine on off-line files.

    Hello Ray,
    Please try following steps:
    1. Run the installed Adobe Reader X.
    2. Click on Edit in the menu bar.
    3. Then click on Preferences in the drop down menu list.
    4. Click on the Internet category on the left pane.
    5. Now, make sure that Display PDF in Browser option is checked.
    If above steps doesn't work then let me know which Browser you are using, may be we have to do some settings there.

  • Directory lister for the web.

    Hi
    Here iam attaching my project code for my particualr aplication
    The source code for a directory lister for the web. You give it
    one or more URLs as arguments and its not displays the formatted results .. can any body will help me
    import java.util.*;
    import java.net.*;
    import java.io.*;
    public class WebList extends abcd.Application
    static final String progName = "WebList";
    public static void main( String[] args )
    (new WebList()).compat( args );
    public int newMain( String[] args )
    int argc = args.length;
    if ( argc == 0 )
    usage();
    return -1;
    for ( int argn = 0; argn < argc; argn++ )
    if ( argc > 1 )
    if ( argn > 0 )
    out.println( "" );
    out.println( args[argn] + ":" );
    list( args[argn] );
    return 0;
    private void usage()
    err.println( "usage: " + progName + " URL ..." );
    void list( String urlStr )
    String base = abcd.Utils.baseUrlStr( urlStr );
    Enumeration as;
    try
    as = new abcd.Spider( urlStr, err );
    catch ( MalformedURLException e )
    err.println( e );
    return;
    while ( as.hasMoreElements() )
    URLConnection uc = as.nextElement();
    if ( uc == null )
    continue;
    URL thisUrl = uc.getURL();
    String thisUrlStr = thisUrl.toExternalForm();
    if ( thisUrlStr.startsWith( base ) )
    thisUrlStr = thisUrlStr.substring( base.length() );
    if ( thisUrlStr.length() == 0 )
    thisUrlStr = ".";
    String mimeType = uc.getContentType();
    int len = uc.getContentLength();
    long mod = uc.getLastModified();
    Date modDate = new Date( mod );
    String modDateStr = abcd.Utils.lsDateStr( modDate );
    out.println(
    abcd.Fmt.fmt( mimeType, 14, abcd.Fmt.LJ ) + " " +
    abcd.Fmt.fmt( len, 8 ) + " " +
    modDateStr + " " + thisUrlStr );
    try
    InputStream in = uc.getInputStream();
    in.close();
    catch ( IOException e ) {}
    }

    Hi,
    It is enumerating the files reachable at or
    below those URLs, i hope it will full fill your application requirements.
    and also in the for loop you have to do pre increment not post increment so it may be the casue for entier your logic ..
    as per my knowledge iam changing the code .. i hope it will work for your application...
    still if you have any querys please post me with details of your projects so that i can help you more..
    here is modified code:
    =================
    import java.util.*;
    import java.net.*;
    import java.io.*;
    public class WebList extends abcd.Application
    static final String progName = "WebList";
    public static void main( String[] args )
    (new WebList()).compat( args );
    public int newMain( String[] args )
    int argc = args.length;
    if ( argc == 0 )
    usage();
    return -1;
    for ( int argn = 0; argn < argc; ++argn )
    if ( argc > 1 )
    if ( argn > 0 )
    out.println( "" );
    out.println( args[argn] + ":" );
    list( args[argn] );
    return 0;
    private void usage()
    err.println( "usage: " + progName + " URL ..." );
    void list( String urlStr )
    String base = abcd.Utils.baseUrlStr( urlStr );
    Enumeration as;
    try
    as = new abcd.Spider( urlStr, err );
    catch ( MalformedURLException e )
    err.println( e );
    return;
    while ( as.hasMoreElements() )
    URLConnection uc = (URLConnection) as.nextElement();
    if ( uc == null )
    continue;
    URL thisUrl = uc.getURL();
    String thisUrlStr = thisUrl.toExternalForm();
    if ( thisUrlStr.startsWith( base ) )
    thisUrlStr = thisUrlStr.substring( base.length() );
    if ( thisUrlStr.length() == 0 )
    thisUrlStr = ".";
    String mimeType = uc.getContentType();
    int len = uc.getContentLength();
    long mod = uc.getLastModified();
    Date modDate = new Date( mod );
    String modDateStr = abcd.Utils.lsDateStr( modDate );
    out.println(
    abcd.Fmt.fmt( mimeType, 14, abcd.Fmt.LJ ) + " " +
    abcd.Fmt.fmt( len, 8 ) + " " +
    modDateStr + " " + thisUrlStr );
    try
    InputStream in = uc.getInputStream();
    in.close();
    catch ( IOException e ) {}
    Regards,
    TirumalaRao.
    Developer Technical support,
    sun MicroSystem, India.

  • Operations not sorted in the drop list of the web service endpoint

    Hello,
    Since the beginning of oc4j standalone till the last release 10.1.3.5.0, the operations in the drop list of the web service endpoint are not alphabetically sorted,
    they are in a random order.
    If a web service contains a lot of operations, it's always difficult to find one operation in the list.
    How can this list be sorted ?
    I don't see any sort option in the web service properties (in Jdevelopper) or in the deployment descriptor (in Jdevlopper).
    Best regards
    Laurent

    You are correct...the above code is useful only when debugging in Visual Studio.  You should have better luck with either of the following two options:
    Option 1: Retrieve the id from the response of SaveChanges()
    sc.AddToSampleList(new ServiceReference.SampleListItem { Title= "Hello World" });
    System.Data.Services.Client.ChangeOperationResponse response = sc.SaveChanges().FirstOrDefault() as System.Data.Services.Client.ChangeOperationResponse;
    int id = ((ServiceReference.SampleListItem)((System.Data.Services.Client.EntityDescriptor)response.Descriptor).Entity).Id;
    Option 2: Create the list item and access its properties after calling SaveChanges()
    ServiceReference.SampleListItem li = new ServiceReference.SampleListItem { Title= "Hello World" };
    sc.AddToSampleList(li);
    sc.SaveChanges();
    int id = li.Id;

  • TS4006 My Apple iPod Touch 4th Generation was stolen if the thief signed out of my iCloud account on the device will it go away on the web map on my computer and keep me from locking it remotely?

    My Apple iPod Touch 4th Generation was stolen if the thief signed out of my iCloud account on the device will it go away on the web map on my computer and keep me from locking it remotely? I was asking my grandmother who works in apple tech support at at&t but she didnt know. so im hoping somebody will come by and say yes to my question because my iPod touch is still appearing in my iCloud.com account.

    Yes. If it was signed out from iCloud, it will disappear from the Devices list in Find my iPhone.

  • When will Lightroom and Elements support the Nikon D600?

    When will Lightroom and Elements support the Nikon D600?  In the meantime is there a workaround so the D600 raw files can be exported to Lightroom or am I simply out of business until Adobe develops the needed patch?
    As best as I have been able to figure out I may as well rebox the 600 and go back to my older, supported camera, until whenever.

    A: What were you using before your precious D600 showed up today.
    A D90 with good glass.
    Nikon 70-200 f2.8, Nikon 24-70 f2.8, Voigtlander 58 f1.4, Tokina 11-16 f2.8.
    Now I need to get a good FF wide solution for the D600.
    Trigger on the D600 is much more stiff than my D90 so I'm having to press down a bit harder to get the AF confirmation. Just need to get used to that I guess.
    FYI, JPG files right out of the camera are looking good.
    B: Don’t you think Adobe wants to sell you the next generation product/upgrade to accommodate all of our insatiable photographic pursuits???
    I had been using Apple's Aperture and switched to Lightroom a couple of months ago. I thought the price was actually quite fair for the power of the LR software. I did have to updgrade my computer's RAM....
    C: Have a nice glass of wine tonight and enjoy your $2K investment. I’m personally looking forward to savoring a next generation photographic paradigm.
    We did enjoy some vino last night! I was thinking I would possibly jump ship to Sony A99 and just switch to all Zeiss glass with autofocus, but I'm not convinced that the EVF is for me, and I'm really not a video shooter, mostly just landscape and real estate. Also, I the Sony turned out to be priced a bit too high for me personally in comparision to the D600.
    Buenos Dias!
    EB

  • MacBook Pro freezes when using any app other than the web browser.

    My MacBook freezes when using any app other than the web browser. I can open up Google Chrome and use it all day with no problem, but if I minimize it and try to browse through photos in my picture folder or do anything that involves the Finder, the computer just freezes up and I get the rainbow wheel. If I put in a CD to play it, the computer freezes with the rainbow wheel. Any suggestions? I would like to use the mac for more things than the internet.

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, by a peripheral device, or by corruption of certain system caches. 
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode and log in to the account with the problem. Note: If FileVault is enabled, or if a firmware password is set, or if the boot volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including sound output and  Wi-Fi on certain iMacs. The next normal boot may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin. Test while in safe mode. Same problem? After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of the test.

  • Error workflow has been created successfully, but failed to publish and will not be listed in the Project Center

    hello,
    when i try creating projects in Project center am posted on with this error.
    Your new XXXX workflow has been created successfully, but
    failed to publish and will not be listed in the Project Center.For more information on the failure, visit the My Queue Jobs page or contact your administrator.
    Any help would be appreciated!!!!!
    Thanks regards, Vignesh.

    hello Rouyre,
    Thanks for ur reply
    Am using 
    Microsoft Project Server 2013
    15.0.4420.1017
    Yes! It is Custom EPT with Custom Workflow(Declarative Workflow) built through VS2012
    after associating the Site workflow with EPT i try creating Projects using my Custom EPT since then am posted on with this error.
    ULS Error:Log
    07/04/2014 10:21:38.03 Microsoft.Office.Project.Server (0x1840)
    0x06B8 Project Server                
    Queue                        
    ad3fy Critical
    Standard Information:PSI Entry Point: <unknown>  Project User: <unknown>  Correlation Id: <unknown>  PWA Site URL:   SA Name: <unknown>  PSError: <unknown> A queue job has failed. This is a general
    error logged by the Project Server Queue everytime a job fails - for effective troubleshooting use this error message with other more specific error messages (if any), the Operations guide (which documents more details about queued jobs) and the trace log
    (which could provide more detailed context). More information about the failed job follows. GUID of the failed job: 39cd36d6-3603-e411-b33e-00155d00091f. Name of the computer that processed this job: 3eebbc1d-7558-4050-bf5d-d985b23b89f5 (to debug further,
    you need to look at the trace log from this computer). Failed job type: ReportWorkflowProj...
    2c1ea19c-5849-002d-b89f-50aaf0a752fd
    07/04/2014 10:21:38.03* Microsoft.Office.Project.Server (0x1840)
    0x06B8 Project Server                
    Queue                        
    ad3fy Critical
    ...ectDataSync. Failed sub-job type: ReportWorkflowProjectDataSyncMessage. Failed sub-job ID: 1. Stage where sub-job failed:  (this is useful when one sub-job has more than one logical processing stages).
    2c1ea19c-5849-002d-b89f-50aaf0a752fd
    07/04/2014 10:21:38.03 Microsoft.Office.Project.Server (0x1840)
    0x06B8 Project Server                
    Queue Jobs                    
    ad3fy Medium  
    Error is: GeneralQueueJobFailed. Details: Queue Attributes:  39cd36d6-3603-e411-b33e-00155d00091f  3eebbc1d-7558-4050-bf5d-d985b23b89f5  ReportWorkflowProjectDataSync  ReportWorkflowProjectDataSyncMessage  1    2c1ea19c-5849-002d-b89f-50aaf0a752fd
     . Standard Information: , LogLevelManager Warning-ulsID:0x000DD158 has no entities explicitly specified.
    2c1ea19c-5849-002d-b89f-50aaf0a752fd
    07/04/2014 10:21:38.03 Microsoft.Office.Project.Server (0x1840)
    0x06B8 Project Server                
    Project Server Database      
    ah91z Medium  
    Successfully got the connection string (database name=[ProjectWebApp_Practice], id=1f6004ae-5d8a-41d2-81f9-e424a31484aa, type=Consolidated). Requested access level=ReadWrite: Data Source=XXXX;Initial Catalog=ProjectWebApp_Practice;Integrated Security=True;Enlist=False;Pooling=True;Min
    Pool Size=0;Max Pool Size=100;Connect Timeout=15
    2c1ea19c-5849-002d-b89f-50aaf0a752fd
    07/04/2014 10:21:38.04 Microsoft.Office.Project.Server (0x1840)
    0x06B8 Project Server                
    Queue Jobs                    
    ad3fz Medium  
    PWA:http://XXXX:10000/PWAPactice, ServiceApp:Project Server Service Application, User:PROJECTSERVER\system, PSI: [QUEUE] receiver http://XXXX:10000/PWAPactice: Group 3bcd36d6-3603-e411-b33e-00155d00091f type = ReportWorkflowProjectDataSync aborted at
    Message 1, LogLevelManager Warning-ulsID:0x000DD159 has no entities explicitly specified.
    2c1ea19c-5849-002d-b89f-50aaf0a752fd
    07/04/2014 10:21:38.04 Microsoft.Office.Project.Server (0x1840)
    0x06B8 Project Server                
    Queue Jobs                    
    ad3f2 Medium  
    PWA:http://XXXX:10000/PWAPactice, ServiceApp:Project Server Service Application, User:PROJECTSERVER\system, PSI: [QUEUE] receiver http://XXXX:10000/PWAPactice: Group 3bcd36d6-3603-e411-b33e-00155d00091f correlation 82705dc5-3603-e411-b33e-00155d00091f
    type = ReportWorkflowProjectDataSync failed at Message 1 Errors: GeneralQueueJobFailed, LogLevelManager Warning-ulsID:0x000DD15C has no entities explicitly specified.
    2c1ea19c-5849-002d-b89f-50aaf0a752fd
    Thanks regards, Vignesh.

  • When will LabVIEW Drop Support for the NXT?

    We currently use LabVIEW to program LEGO NXT kits in our engineering courses.  However, LEGO is phasing out the NXT within the next year or two.  Does anyone know the LabVIEW/NXT life cycle plan, i.e., when will LabVIEW no longer support the NXT platform?

    Hi Joel777,
    NI doesn't currently have a definitive roadmap for future NXT support in LabVIEW, but I recommend you check out the community page for updated modules. I would also recommend adding any feedback you have regarding future releases to this page in the comments section and periodically checking this page for support updates.
    Rick C.

  • When will Yosemite be available in the usa?

    Hi,
    When will Yosemite be available in the USA getting error that says no available in the USA.

    Getting Upgraded

  • When will iPhone be available in the phillipines?

    When will iPhone be available in the Phillipines?
    I Have been waiting for months but still none.....

    No one knows, you can try and email steve jobs and see if he will answer you.

  • When I try to print from the web firefox crashes

    when i try to print from the web firefox crashes

    https://support.mozilla.com/en-US/kb/Firefox%20crashes#w_get-help-fixing-this-crash
    Type '''about:crashes''' in the URL bar and hit Enter. <br />
    # Middle-Click the hyperlinks to bring up each Crash Report page in a new Tab; each page may take a few minutes to load.
    # '''Then copy'n'paste the URL of each of those reports into the message box here.'''
    # We'll see if we can help you figure out what is causing those crashes to happen.

  • Office 2013 SP1 is here - when will Access 2013 Runtime get the service pack?

    Office 2013 SP1 is here - when will Access 2013 Runtime get the service pack? ie. When will we see Access 2013 Runtime Service Pack 1?

    Hi,
    There has no exact information about the Access 2013 Runtime Service Pack 1 now. We can continue to pay attention about it in the Microsoft Official website.
    Regards,
    George Zhao
    TechNet Community Support

Maybe you are looking for

  • Do I need to use a website to submit my S3 files as a podcast on iTunes?

    I have never submitted a podcast to iTunes, but after a few hours of research I understand that in order to do so I need a media host, such as S3, and a website to publish the file on and use as a feed for iTunes. I have my complete audio files on S3

  • BPM attachments fail to store in UCM:

    I am trying to integrate BPM with UCM. I installed JDEV 11.1.1.6,UCM,RCU,weblogic & soa. I created a simple application in BPM with one use case. and i configured UCM,soa & weblogic. Below are the steps what i did : -- Go to EM. Click on SOA node. Cl

  • Cannot download previously purchased music

    I am trying to download previously purchased music, Darius Rucker True Believer album, to my iPhone 5. I've tried using my LTE connection and WiFi. When I click on the cloud icon, it spins for a few seconds then stops. If I try to stream the song it

  • TS3772 how to download of free excel software in apple ipad

    how to download of free excel software in apple ipad

  • Printing with referenced images

    I have a print component in my Flex application which works fine if I embed the header image to be printed.  But if I merely link it as an external file, it appears to load, but somehow the print code creates the page too rapidly and the header does