Patching: HTTP errors when downloading blobs from proxy controller to agent

Hi all,
I have a persistent issue which I can't figure out. Oracle support aren't much help.
When applying a Recommended Baseline patchset to our managed Solaris 10 servers, I have observed that blobs are downloaded to the target servers at a rate of 1-2 blobs per minute. I consider this to be quite slow, but that's not my main problem.
At some point during the blob downloads, http errors start appearing in /var/scn/update-agent/logs/error.log on the target server....
HTTP request failed. Reason: Moved temporarily.
HTTP request failed. Reason: Bad gateway.
Eventually, the blob download job fails completely...
118099456 Download aborted.
Our servers are quite a way behind in their patching levels. Consequently, we often need to apply as many as 200 patches to a single server. We are lucky to download 100 patches (blobs) before the http errors begin.
The errors would seem to indicate that the http servers on the proxy controllers are refusing any further connections midway through the blob downloads. I have tried tweaking the httpd.conf file on the proxy controllers - increased the number of httpd processes running and increased MaxClients to 100. None of this has helped.
The proxy controllers have interfaces on the same subnet as the target servers. Network performance between proxy and asset is good.
Has anyone else experienced similar issues with patching ?
Does anyone have any suggestions for httpd.conf settings on the Proxy Controllers ?
Cheers,
Graham

So I have figured out the issue and as Eddie mentioned it is because the email attribute is not synced.  For some reason when I go into Manage User Profiles I am unable to edit anything, i.e. I cannot add the email address.  
I am able to create a whole new user, which I did (already existed in AD) and of course included the email attribute.  When I sign into sharepoint with this user I am then able to view IRM protected documents.
I cannot figure out why the email attribute is not synced to SP.  As mentioned above it seems the UPS does not work in a standalone SP install, but my undesrtanding is that when i sign into SP it is going to AD to autheticate, so why then does it not
also retrieve the email attribute as well?
I created an SharePoint Active Directory Import job, it runs successfully, it imports all my users from AD, but again without the eamil attribute!  Very strange.  If anyone has any clues I am all ears.

Similar Messages

  • Error when downloading application from Server

    Hi,
    I have installed MI Client 7.0 SPS 11 Patch 0 on Symbol Device ;OS Windows Mobile5.0
    i have successfully completed <b>first</b> synchronization .
    After that i assigned Mobile Component to the device and tried synchronizing.
    "Error when downloading application from http://<servername>:50000/meContainerSync/servlet/com.sap.ip.mi.http.MobileComponentServlet?Application=xyz&Type=APPLICATION&Runtime=JSP"
    Pl. suggest
    Note: In NWA under 'Device Maintenance' -> Mobile component
    The state of the aplication is <b>"Deployment Activated"</b>
    rgds,
    Kiran Joshua
    Message was edited by:
            Kiran Joshua

    Hi ALL,
    I resolved it on my own guys !!!
    Actually while downloading server url consists of hostname bcoz the hostfile entry in windows/system32/drivers/etc/hosts was only hostname.
    i entered FQDN name in the hostfile... It WORKED
    Being Saturday and Sunday...i cud not get any help from forums...i was really worried and Guys we need to think on this :-?
    rgds,
    Kiran Joshua

  • How can I get rid of a 1202 error when downloading products from itunes

    How can I get rid of an 1202 error when downloading products from itunes?

    You have probably downloaded the Norton program which is one of the least desirable helpmates you can invite in.
    Read this thread and follow the suggestions by Thomas R, one of our gurus in this field.
    https://discussions.apple.com/message/20005609#20005609

  • HT203200 How can i solve the -50 error when downloading video from itunes??

    How can I solve the -50 error when downloading video from itunes.   The apple support people cannot even figure it out!??

    The 2330 error often means some sort of damage to the filing system as might happen if the battery fell out while the disk was in use.
    Try running a disk check to see if it finds and fixes any errors.
    http://support.microsoft.com/?kbid=315265

  • Errors when downloading files from web sites

    I cannot download files from Firefox anymore on my home computer. I click on the download link and it takes me to another page that is blank. I can download just fine w/o any problems from my work computer, download box/window appears just fine. I'm using the same Windows 7, Firefox 8.0 program and same website that gives me the error message from my home computer. Is there a pop-up blocker, cookie or plug-in that I need to turn off/on? How do I enable downloads so I can save to my home computer?

    Clear cache and cookies and try again. Also, check your firewall permissions for Firefox 8

  • Strange error when downloading blob

    ADF 11g
    Hello
    I have a pdf file uploaded to the DB as a blob column.
    I am now trying to download it.
    I've tried to convert the Kuba [http://kuba.zilp.pl/?id=1] example from ADF 10 to 11.
    I have page showing an af:table.
    Clicking on the filename column runs the following :
        public BindingContainer getBindings() {
            FacesContext fc = FacesContext.getCurrentInstance();       
            return (BindingContainer)fc.getApplication().evaluateExpressionGet(fc,"#{bindings}", BindingContainer.class);
        public String onDownLoad() {
             BindingContainer bindings = getBindings();
             DCIteratorBinding itr = (DCIteratorBinding) bindings.get ("SttAttachedFilesView1Iterator");
             Row r = itr.getCurrentRow();
             BlobDomain file = (BlobDomain)r.getAttribute("FileContent");
             String fileName = (String)r.getAttribute("FileName");
             FileOperations.downloadFile( fileName,  file);
             return null;
         }The actual download code is
    public class FileOperations {
        public FileOperations() {
        public static String getMimeType(String fileName){
            String mime = null;
            String ext = fileName.toLowerCase();
                 if(ext.endsWith(".pdf")) { mime = "application/pdf"; }
            else if(ext.endsWith(".doc")) { mime = "application/msword"; }
            else if(ext.endsWith(".ppt")) { mime = "application/vnd.ms-powerpoint"; }
            else if(ext.endsWith(".rar")) { mime = "application/octet-stream"; }
            else if(ext.endsWith(".zip")) { mime = "application/zip"; }
         return mime;
        public static synchronized void downloadFile( String fileName, BlobDomain blobDomain )
            FacesContext facesContext = FacesContext.getCurrentInstance();
            ExternalContext extContext = facesContext.getExternalContext();
            Long length = blobDomain.getLength();      
            String fileType = getMimeType(fileName);
            HttpServletResponse response = (HttpServletResponse) extContext.getResponse();
            response.setHeader("Content-Disposition", "attachment;filename=\"" + fileName + "\"");
            response.setContentLength((int) length.intValue());
            response.setContentType( fileType );
            try {
                InputStream in = blobDomain.getBinaryStream();
                OutputStream out = response.getOutputStream();
                byte[] buf = new byte[1024];
                int count;
                while ((count = in.read(buf)) >= 0) {
                    out.write(buf, 0, count);
                in.close();
                out.flush();
                out.close();
                facesContext.responseComplete();
            } catch (IOException ex) {
                System.out.println(ex.getMessage());
                ex.printStackTrace();
    }Whats happening is the first time I click on the filename the file is downloaded from the DB correctly.
    If I click a second time I get the following errors :
    <25 juil. 2009 12.54. h CEST> <Error> <HTTP> <BEA-101083> <Connection failure.
    java.net.ProtocolException: Didn't meet stated Content-Length, wrote: '0' bytes instead of stated: '156751' bytes.
         at weblogic.servlet.internal.ServletOutputStreamImpl.ensureContentLength(ServletOutputStreamImpl.java:425)
         at weblogic.servlet.internal.ServletResponseImpl.ensureContentLength(ServletResponseImpl.java:1451)
         at weblogic.servlet.internal.ServletResponseImpl.send(ServletResponseImpl.java:1494)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1437)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         Truncated. see log file for complete stacktrace
    >
    <25 juil. 2009 12.54. h CEST> <Error> <HTTP> <BEA-101104> <Servlet execution in servlet context "ServletContext@18785780[app:UpLoadDownload module:UpLoadDownload-ViewController-context-root path:/UpLoadDownload-ViewController-context-root spec-version:2.5]" failed, java.net.ProtocolException: Didn't meet stated Content-Length, wrote: '0' bytes instead of stated: '156751' bytes..
    java.net.ProtocolException: Didn't meet stated Content-Length, wrote: '0' bytes instead of stated: '156751' bytes.
         at weblogic.servlet.internal.ServletOutputStreamImpl.ensureContentLength(ServletOutputStreamImpl.java:425)
         at weblogic.servlet.internal.ServletResponseImpl.ensureContentLength(ServletResponseImpl.java:1451)
         at weblogic.servlet.internal.ServletResponseImpl.send(ServletResponseImpl.java:1494)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1437)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         Truncated. see log file for complete stacktrace
    >It as if the inputStream is empty the second time round even though the lenght is correct.
    If I close the application and restart I can download the file again.
    I've added an execute button to re-execute the query after the first download but the problem persists.
    Anybody got any ideas ?
    Regards
    Paul

    If I add
    OperationBinding operation = getBindings().getOperationBinding("Rollback");        
    operation.execute();         to the end of the onDownLoad method the error dissapears and everything works as expected.
    If I replace Rollback with either Commit or Execute the problem continues.
    Whats going on here its as if the blob field isn't really there....
    Regards
    Paul
    Bump - because I've been on holiday :-)
    Edited by: Paul (MITsa) on 10-Aug-2009 04:20

  • Internal error when downloading web service proxy jars

    Hi,
    I have a web service created from a stateless Java class in OC4J 10.1.2. I access the web page of the service and can download the WSDL and test the services, but if I try to download the compiled or source JAR files of the client proxy I get this:
    500 Internal Server Error
    java.lang.NullPointerException     at oracle.wsdl.toolkit.util.JarUtil.addFileEntry(JarUtil.java:105)     at oracle.wsdl.toolkit.util.JarUtil.createJar(JarUtil.java:34)     at oracle.j2ee.ws.BaseWebService.generateClientStubJar(BaseWebService.java:1555)     at oracle.j2ee.ws.BaseWebService.doGetClientJar(BaseWebService.java:1469)     at oracle.j2ee.ws.BaseWebService.doGet(BaseWebService.java:1142)     at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)     at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    I ccan find both the java and class files at %OC$J_HOME%\j2ee\home\application-deployments\myapp\myapp2006\temp\__java_stateless_rpc...(packages)...\proxy
    So I have the impression that the problem comes at packaging files into a JAR file.
    I've noticed the class names are very long because they include the full package route changing dots for underscores, which in my case results in class names of up to 64 characters (excluding extension and separator dot). Also the proxy directory where those files are created is very deep because after the __java_stateless_rpc directory the full package structure is repeated twice. I've detected that Windows Explorer does not allow me to delete, edit or view properties of those class and source files with names of 64 characters or more under the proxy directory, which for those cases means a complete path of over 256 characters.
    I'm not sure if this is the cause, but anyway I don't like those very long class names, is there any way of instructing the servlet to use other name generation scheme?
    Regards

    Hi,
    It seem that I was right and the length of the paths where in the heart of the problem. I've moved my oc4j directory to the root of my filesystem and the problem has dissapeared.
    Anyway, I find that name scheme very ugly and also ackward to use in the client, I could probably edit the sources myself but having to do so each time something changes...
    I'd propose that the servlett replicated the package structure under which the beans are originally, thus creating a more natural and logical structure with much shorter names.
    Maybe the path under __java_stateless_rpc could also be shortened.
    Regards

  • IPOD Nano experiences error when downloading music from iTunes

    To make a long story short, my new Nano wouldn't fully download all songs from my iTunes library. I received an error about a missing file. As I followed the Apple suggestions to fix the problem I eventually got to a point where the Nano was frozen and wouldn't respond to anything. I couldn't even reset it. I took the Nano back and exchanged for another. The exact same thing happened again, which leads me to believe it's not the Nano that is the problem. Any help would be appreciated.

    By "download" I assume you mean transferring songs from iTunes to iPod correct?
    When the songs are transferring, try to pin down if it's any particular file from your library that's causing this. Watch the status window at the top of iTunes.
    It may be a corrupt file from your library that's causing this, and if you can pinpoint which one(s), you can delete them from iTunes and try again.

  • General error when accessing blob from oracle

    Hi
    I have successfully uploaded and saved images into oracle(8.1.5) table DATA_TYPE(dtid number, iconname varchar2(30), icon blob). When I try to retrieve icon from the database, I get "javax.servlet.ServletException: General error" at:
    PreparedStatement pstmt = myConnection.prepareStatement(mySQL);
    My code looks like this:
    imgModifyDataType.jsp
    <%
    ResultSet myResultSet = null;
    Statement myStatement = null;
    Connection myConnection = null;
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver").newInstance();
    myConnection = DriverManager.getConnection("Jdbc:Odbc:Te","te","te");
    String iconName;
    String pDTID = request.getParameter("dtid");
    String mySQL = "Select iconname, icon from data_types where dtid=?";
    //Following statement throws general error exception
    PreparedStatement pstmt = myConnection.prepareStatement(mySQL);
    pstmt.setString(1,pDTID);
    myResultSet = pstmt.executeQuery();
    iconName = myResultSet.getString("iconname");
    myUpload.initialize(pageContext);
    myUpload.downloadField(myResultSet,"icon","application/x-msdownload", iconName);
    %>
    One more thing. The error occurs only when I try to execute query retrieving blob data. The same set of statements works fine for simple text or numbers.
    Please help

    When you read a BLOB with ORACLE,
    you have to lock the corresponding row.
    This means that...
    - the connection must not be in "AUTO COMMIT" mode
    - you have to do a "SELECT ... FOR UPDATE"

  • Error when downloading music from i-tunes...PLEASE HELP

    I began downloading music onto my ipod mini...it downloaded about 12 songs and then said "Attempting to copy to disk''''failed. An unknown error occured (-69)". Ive tried everything including uninstalling and reinstalling all ipod programs. I need more music. PLEASE HELP ME!!

    Hey.I have the same problems when i connect my iPod mini to my laptop it says can't locate songs and it will only download 11 of my songs. I tried everything that you did and nothing worked my next step is to call up help support.

  • Acrobat 8 Pro Error when download pdf from website

    Fresh install of Acrobat 8 Pro.
    Win XP Home edition SP3.
    IE 7.0.5730
    Windows message:
    "Do you want to save this file, or find a program online to open it?"
    "Name:5821.pdf
    Type: Unknown File Type, 242kb
    Buttons: [Find] [Save] [Cancel]"
    This happens everytime I try to download a pdf (different file name of course)
    How do I set Adobe Acrobat to be my default pdf reader?
    Thanks

    I remember what the difference is. I used to have different choices. [Open] [Save] [Cancel]
    I used to Always choose OPEN for pdfs. I could choose to save later if I decided to keep the file. Is this a change that Adobe made? A browser plug-in, maybe?
    I really dont want to save EVERYTHING, and have to remember to drag it to the recycle bin later.
    Any help?

  • Error in segment COMM_PR_SHTEXT when downloading products from ERP to CRM

    Hi experts
    I get below error when downloading materials from ERP to CRM.
    "Data for set COMM_PR_SHTEXT may only be changed in the original system Q10CLNT310" But the material and the short texts has been created in ERP, hence I can't change them in CRM. When I look in table COMM_PRODUCT field LOGSYS has value 'Q01CLNT300' which is our ERP system. So as far as I see it, our original system is Q01CLNT300 and not Q10CLNT310 as it says in the errormessage. The result is that the sales org data we are trying to download to CRM are not downloaded.
    Can you help me on this one?
    Best regards
    Jørgen Jensen

    Hello Jørgen ,
    Q10CLNT310 --> Is this you old ERP system?
    One possibility for this error would be some product related tables contain the wrong LOGSYS value i,e Q10CLNT310.
    Also,check LOGSYS for table COMM_PRSHTEXT.
    This generally happens when data has been copied by means of client copy , and you do not run txn:BDLS.
    In txn:BDLS ,you can change the LOGSYS for a particular table or all relevant tables.
    You can execute in in Test mode, to check the affected tables.
    Hope this helps!
    Best Regards,
    Shanthala Kudva.

  • HTTP error while downloading solaris patches using wget

    Hello,
    I am getting a HTTP error while downloading solaris patches using wget.
    'Downloading unsigned patch 113096-03.
    --2010-06-18 03:51:15-- http://sunsolve.sun.com/pdownload.pl?target=113096-03&method=h
    Resolving sunsolve.sun.com (sunsolve.sun.com)... 192.18.108.40
    Connecting to sunsolve.sun.com (sunsolve.sun.com)|192.18.108.40|:80... connected.
    HTTP request sent, awaiting response... 302 Moved Temporarily
    Location: http://sunsolve.sun.com/pdownload.do?target=113096-03&method=h [following]
    --2010-06-18 03:51:15-- http://sunsolve.sun.com/pdownload.do?target=113096-03&method=h
    Reusing existing connection to sunsolve.sun.com:80.
    HTTP request sent, awaiting response... 401 Unauthorized
    Unknown authentication scheme.
    Authorization failed.
    Problem downloading 113096-03.
    What am i missing here... The credentials to login to sunsolve are correct and are updated in the downloadpatch.sh script.
    Please assist
    Thanks
    Sunny

    Try download via browser url:
    [http://sunsolve.sun.com/pdownload.pl?target=113096-03&method=h]
    You need a valid support contract not just Sunsolve account for many patches.

  • I keep receiving an error 8268 when downloading content from the iTunes Store. Does anyone have solution for it?

    I keep receiving an error 8268 when downloading content from the iTunes Store. Does anyone have solution for it?

    contact iTunes Customer support to resolve this issue. They will provide you a fresh copy of the song

  • Getting an "installer failed to initialize" error when installing CS5 from CD

    Getting an "installer failed to initialize" error when installing CS5 from CD
    Mac OS X Version 10.7.5

    Try using the Adobe Creative Suite Cleaner Tool
    helps resolve installation problems for CS3 thru CS6 and for Creative Cloud
    http://www.adobe.com/support/contact/cscleanertool.html
    If you continue to have problems getting the CD installation to work you can download the trial version of the software thru the page linked below and then use your current serial number to activate it.
    Be sure to follow the steps outlined in the Note: Very Important Instructions section on the download pages at this site or else the download will not work properly.
    CS5:
    http://prodesigntools.com/all-adobe-cs5-direct-download-links.html

Maybe you are looking for