Download via proxy unstable

We use BM3.8 as a proxy server. We have big problems downloading some files, but others work fine.
One example which never works are downloading drivers from hp.com.
Just hanging .......
Another download not working is NW65SP7.zip from novell download.
A strange popup box apears and counting bytes downloaded......
Magne

Originally Posted by 030552
We use BM3.8 as a proxy server. We have big problems downloading some files, but others work fine.
One example which never works are downloading drivers from hp.com.
Just hanging .......
Another download not working is NW65SP7.zip from novell download.
A strange popup box apears and counting bytes downloaded......
Magne
I know that HP downloads come from their FTP server, so if you don't have the correct rules in your BM filters/ACLs, it will just sit there and do nothing. That is exactly what happens here if I try to download an HP driver logged in as someone who does not have FTP proxy access, it just sits and sits, doing nothing. I'm not sure if the same holds true for Novell's download site.

Similar Messages

  • I am using an iphone 3g and when i connect my device to my laptop a dialog box appears saying that an update of 4.2 is available so went for it.after the firmware is downloaded via itunes it shows that the firmware is invalid!.please help.

    HEY GUYS I AM USING AN IPHONE  3g and when i connect my device to my laptop a dialog box appears saying that an update of 4.2 is available so went for it.after the firmware is downloaded via itunes it shows that the firmware is invalid!.please help.
    AND ALSO I HAVE HEARD THAT THE IPHONE 3G CANNOT BE UPDATED TO IOS 4.2!IS IT TRUE???
    PLEASE HELP ME.

    This means that the phone you have was software unlocked to use on any carrier, or hacked. When you installed the update it restored the lock that originaly came with your phone. Not much you can do now. Apple will not support hacked phones. You will need to find out the carrier your phone is locked to and see if they offer official unlocking, or start googling to see if you can find a way to unlock 4.2.

  • HT1311 I know this is a basic question, however, how do i change my pass word on itunes to stop my kids from automatically buying tunes from the I store... as my card details are already saved they just log in with their ipods and download via my account

    I know this is a basic question, however, how do i change my pass word on itunes to stop my kids from automatically buying tunes from the I store... as my card details are already saved they just log in with their ipods and download via my account

    http://support.apple.com/kb/HE36
    Regards.

  • Is there any way to get my music that I've downloaded via different apps or made via my MusicStudio to show up on my music app?

    I have been researching and trying different apps all night and I've ended up spending four dollars that I ended up wasting. I'm sure there's a very easy answer.  I have an iPad, it is the newest iOS software, my question is, is there anyway to get the music that I've downloaded on say Amazon or that I've made via my MusicStudio app to show up in my music on my iPad without having to then download it to my computer to get on iTunes to transfer from my computer to my iPad again?  I've got the music on my iPad, but both of the apps that I use to make a video with the music just use the native music app to search for the music on the iPad and shows the some 69 songs that I've either downloaded via iTunes or transferred from my laptop to my iPad. it won't show any of the other stuff that is on there. Is there any app that I could get that will help me to add music to my  native music app so we'll show up or is there anything I can do other then transferring it from iTunes on my laptop back to my iPad?
    Thanks.

    You will need to go via your computer's iTunes - to get music into the Music app you either need to download it directly on the iPad from the iTunes store app, or sync it from your computer's iTunes

  • I bought photoshop from pc world, it was a download via activation code my computer has broken and had to be replaced how do i re download program as i no longer have the scratch card

    i bought photoshop from pc world, it was a download via activation code my computer has broken and had to be replaced how do i re download program as i no longer have the scratch card

    you just need your serial number.
    Downloads available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4 | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  13 | 12 | 11, 10 | 9, 8, 7
    Photoshop Elements:  13 |12 | 11, 10 | 9,8,7
    Lightroom:  5.6| 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

  • I purchased Adobe Acrobat XI Pro on a CD but didn't realize that my new computer doesn't have a CD drive. Is there a way to download via the web using the serial number on my CD?

    I purchased Adobe Acrobat XI Pro on a CD but didn't realize that my new computer doesn't have a CD drive. Is there a way to download via the web using the serial number on my CD?

    Downloads available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4 | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  13 |12 | 11, 10 | 9, 8, 7
    Photoshop Elements:  13 |12 | 11, 10 | 9,8,7
    Lightroom:  5.7| 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.window using the Lightroom 3 link to see those 'Important Instructions'.

  • File download via servlet doesn't work with IE via https

    I have a URL from a jsp page which points to a struts action servlet. This works with firefox via http and https. With IE it works via http but it doesn't work via https. The error message I get is "Internet Explorer cannot download ...File_name.doc from Server_name.
    Internet Explorer was not able to open this Internet site. The requested site is either unavailable or cannot be found. Please try again later."
    Here is my code.
    public ActionForward execute(ActionMapping mapping, ActionForm form,
                   HttpServletRequest request, HttpServletResponse response)
                   throws Exception {
              String attachmentURL = AppSettings.get("EAIAttachmentURL");
              String encodingScheme = AppSettings.get("EAI_encoding");
              String filename = request.getParameter("URL");
              String fileStr = URLEncoder.encode(filename, encodingScheme);
              fileStr = fileStr.replaceAll("\\+","%20");
              URL targetURL = new URL(attachmentURL + "/" + fileStr);
              URLConnection connection = targetURL.openConnection();
              connection.setDoInput(true);
              connection.setDoOutput(false);
              connection.setAllowUserInteraction(false);
              BufferedInputStream attachmentStream = new BufferedInputStream(
                        connection.getInputStream());
              * Setting the content disposition filename, so that the
              * attachment preserves the original filename
              response.setHeader("Content-Disposition",
                        " attachment; filename=" + filename);
              if (connection.getContentType() != null) {
                   response.setContentType(connection.getContentType());
              else {
                   response.setContentType("application/octet-stream");
              response.setContentLength(connection.getContentLength());
              response.setHeader("Pragma", "public");
              response.setHeader("Cache-Control", "public, max-age=-1, must-revalidate");
              if ( connection.getContentEncoding() != null ) {
                   response.setHeader("Content-Encoding",
                             connection.getContentEncoding());
              BufferedOutputStream responseStream = new BufferedOutputStream(
                        response.getOutputStream());
              byte[] buffer = new byte[4096];
              int bytesRead;
              try {
                   while ((bytesRead = attachmentStream.read(buffer)) != -1) {
                        responseStream.write(buffer, 0, bytesRead);
              } catch (Exception e) {
                   log.error("AttachmentProxy error: " + e.getMessage());
              } finally {
                   if (attachmentStream != null) {
                        attachmentStream.close();
                   if (responseStream != null) {
                        responseStream.flush();
                        responseStream.close();
              return null;
    There is a bug with IE when downloading via https according to Microsoft support site. Refer to http://support.microsoft.com/default.aspx?scid=kb;en-us;812935
    According to this bug, I have set the response header - "pragma" to public and "cache-control" to public. I've also unchecked the Do not save encrypted pages to disk setting in IE Options, Advanced tab.
    Has anyone come across this problem or a similar problem. Any help is appreciated. Thanks.

    I have a URL from a jsp page which points to a struts action servlet. This works with firefox via http and https. With IE it works via http but it doesn't work via https. The error message I get is "Internet Explorer cannot download ...File_name.doc from Server_name.
    Internet Explorer was not able to open this Internet site. The requested site is either unavailable or cannot be found. Please try again later."
    Here is my code.
    public ActionForward execute(ActionMapping mapping, ActionForm form,
                   HttpServletRequest request, HttpServletResponse response)
                   throws Exception {
              String attachmentURL = AppSettings.get("EAIAttachmentURL");
              String encodingScheme = AppSettings.get("EAI_encoding");
              String filename = request.getParameter("URL");
              String fileStr = URLEncoder.encode(filename, encodingScheme);
              fileStr = fileStr.replaceAll("\\+","%20");
              URL targetURL = new URL(attachmentURL + "/" + fileStr);
              URLConnection connection = targetURL.openConnection();
              connection.setDoInput(true);
              connection.setDoOutput(false);
              connection.setAllowUserInteraction(false);
              BufferedInputStream attachmentStream = new BufferedInputStream(
                        connection.getInputStream());
              * Setting the content disposition filename, so that the
              * attachment preserves the original filename
              response.setHeader("Content-Disposition",
                        " attachment; filename=" + filename);
              if (connection.getContentType() != null) {
                   response.setContentType(connection.getContentType());
              else {
                   response.setContentType("application/octet-stream");
              response.setContentLength(connection.getContentLength());
              response.setHeader("Pragma", "public");
              response.setHeader("Cache-Control", "public, max-age=-1, must-revalidate");
              if ( connection.getContentEncoding() != null ) {
                   response.setHeader("Content-Encoding",
                             connection.getContentEncoding());
              BufferedOutputStream responseStream = new BufferedOutputStream(
                        response.getOutputStream());
              byte[] buffer = new byte[4096];
              int bytesRead;
              try {
                   while ((bytesRead = attachmentStream.read(buffer)) != -1) {
                        responseStream.write(buffer, 0, bytesRead);
              } catch (Exception e) {
                   log.error("AttachmentProxy error: " + e.getMessage());
              } finally {
                   if (attachmentStream != null) {
                        attachmentStream.close();
                   if (responseStream != null) {
                        responseStream.flush();
                        responseStream.close();
              return null;
    There is a bug with IE when downloading via https according to Microsoft support site. Refer to http://support.microsoft.com/default.aspx?scid=kb;en-us;812935
    According to this bug, I have set the response header - "pragma" to public and "cache-control" to public. I've also unchecked the Do not save encrypted pages to disk setting in IE Options, Advanced tab.
    Has anyone come across this problem or a similar problem. Any help is appreciated. Thanks.

  • XI to BI via Proxy

    I am pulling an .xml from a ready folder into XI then sending it to BI via proxy. Once it is in the BI box it shows that the message is successful however i do not receive any data in the PSA.  Is there some kind of config on the BI side that has to be in place first? The data sources are there but it seems like something is missing.

    HI
    Check with the BI person Delta queue in BI can have issue while pushing the data from Proxy.
    for your understanding you can refer this
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/0ccae190-0201-0010-1593-c90ef3c1d159
    Thanks
    Gaurav

  • File size when doing ftp via proxy

    Hi ALL,
    I can not see file size when doing ftp download through proxy.
    Why?

    Welcome to the Apple Discussions.
    There’s a second setting in the New Message Window in Mail that only appears if you have a JPEG attached:
    Uploaded with plasq's Skitch!
    Regards
    TD

  • Trouble send a message to XI via Proxy

    Hi,
    I'm trying to send a message from R/3 System to XI via Proxy, but I just can see the message in the R/3 side (SXMB_MONI), the message has a Green Flag Status. When I activated a queue that the message belongs to it goes to Red Flag Status and I got an 'ErrorHeader' with:
    - <SAP:ErrorHeader xmlns:SAP="http://sap.com/exchange/MessageFormat">
      <SAP:Context />
      <SAP:Code p1="401" p2="Unauthorized" p3="" p4="">HTTP.HTTP_STATUS_CODE_NEQ_OK</SAP:Code>
      <SAP:Text language="EN">HTTP status code 401 : Unauthorized</SAP:Text>
      </SAP:ErrorHeader>
    When I check a Compoment Monitoring:
    <b>domain
       Integration Server
       Integration Engines
          Proxy Runtime <Business System></b>
    I got an error 'Unable to log on to system <Business System> in language en with user XIRWBUSER'.
    Could someone help me?
    Thanks in advance
    Leo

    Hi Leonardo,
    Check these threads...
    >>HTTP.HTTP_STATUS_CODE_NEQ_OK
    ABAP PROXY CONNECTION TO SAP/XI
    >>I got an error 'Unable to log on to system <Business System> in language en with user XIRWBUSER'.
    Demo application: "You cannot log on to system .... with user XIRWBUSER
    Regards
    Anand
    Message was edited by: Anand Torgal

  • PI ( old version called XI ) connectivity with ABAP via Proxy

    Hi
    Could any body please share with me the sample code for
    connectivity  of  PI ( old version called XI )  and ABAP  via Proxy for Outbound interface.
    points will be rewarded for sure
    Thanks & Regards
    Meeta

    The prerequisites to configure ABAP Proxy include: (landscape dependent) 
    The business systems should be based on SAP Web AS 6.20 and SAP Web AS 6.20 kernel patch level above 1253
    You have installed the XI Add-On in each of these business systems as described in the Installation Guide SAP Exchange Infrastructure 3.0
    The business systems and your central Integration Server are maintained in the System Landscape Directory (SLD).
    Configuration required on the Business System:
    1.       Create a HTTP connection in the business system using transaction SM59
    Technical Setting:
    ·         Connection Type: H
    ·         Target Host: System name
    ·         Service Number: HTTP Port name
    ·         Path Prefix: /sap/XI/engine/?type=entry
    Logon Security
    On the Logon/Security tab page, enter the following logon data:
    ·         User: XIAPPLUSER (for example); this user should represent the sending business system (see also the SAP XI Security Guide under Service Users for Message Exchange).
    ·         Password: the password you have specified for this user
    ·         Client: SAP XI Integration server
    ·         Language: Language required 
    2.       Configuration Business system as local Integration Engine.
    1.       Go to Transaction SXMB_ADM
    2.       Choose Edit --> Change Global Configuration Data.
    3.       Select Role of Business System: Application system
    4.       Corresponding Integration server: dest:// XI_XIR_CONNECTION created in step 1. Dest://XI_XIR_CONNECTION.
    5.       Under Specific Configuration Data you can specify additional configuration data
    Select the relevant category under Specific Configuration Data.
    Choose Change Specific Configuration Data.
    For ABAP Proxies, Add the following configuration:
    1.Category RUNTIME
    2.Parameters: IS_URL
    3.Current Value: dest://XI_XIR_CONNECTION

  • Making pdf content downloadable via link in Iview problem

    Hi,
    I have been having problems with the following scripting code, where I have a link that when clicked makes a PDF file stored in the KM downloadable to the users local area.The file does download to the users desktop but when opened, the content is corrupt. So when a user clicks the view link the PDF document is loaded into the browser iframe with no issues. However when they click the download link they get the attached error.The file can be viewed properly through an  iframe in an iview on the portal but when downloaded via this script 'token missing' errors occur.
    I have pasted the code and would appreciate any help offered.
    Thanks
    Rebecca
    pResponse.write("<a onClick=\"blur(); downloadDoc('" + fileIds<i> +  "'); return false;\" href=\"javascript: void(0);\">");
                                       pResponse.write("<img src=\"" + docURL + downloadGif + "\" border=0 width=\"16\" height=\"20\" alt=\"Download\"></a></td>");
                                       pResponse.write("</tr>");
                             pResponse.write("</table>");
    Generate the link to use for file downloads
                             IPortalComponentURI componentURI = pRequest.createPortalComponentURI();
                             componentURI.setContextName(downloadPCDPath);
                             String uri = componentURI.toString();
                             pResponse.write("<script>");
                             pResponse.write("function downloadDoc(docToDownload)");
                             pResponse.write("{");
                             pResponse.write("document.getElementById('downprint').src = '" + componentURI.toString() + "?rid=' + docToDownload; ");
                             pResponse.write("}");
                             pResponse.write("</script>");
                             pResponse.write("<script><!--\n");
                             pResponse.write("function changeURL(newurl) {\n");
                             pResponse.write("this.location.href = newurl;\n");
                             pResponse.write("}\n");
                             pResponse.write("//--></script>");
                             pResponse.write("<iframe name=\"downprint\" src=\"\" style=\"width: 0; height: 0;\"></iframe>");
                        } //end if
                   printStyle(pResponse);
              } catch (AccessDeniedException ex) {
                   ex.printStackTrace();
                   mDbUtil.writeException(ex, pResponse );
              } catch (ResourceException ex) {
                   ex.printStackTrace();
                   mDbUtil.writeException(ex, pResponse );
              } catch(Exception ex) {     
                   ex.printStackTrace();
                   mDbUtil.writeException(ex, pResponse );

    I am not quite sure what this is supposed to be doing, however, a better method would be to have a custom component which accepts a RID to a resource. This component would then read the content of the PDF (using its bytes) and write these bytes out to the HttpServletResponse output stream. You need to make sure that the HTTP header content-disposition is also set correctly (can't remember exactly what this should be, however, a quick google search should return the correct results).
    This should be all you need to do I believe. Let me know if you need any help with this further
    D

  • Cannot read PDF files downloaded via acsm

    The app does not allow copying and reading the PDF downloaded via acsm delivery mechanism as it reports to be protected.  Is this known issue or needs to be treated like a feature request. On PC, you read this document via Adobe Digital Editions.
    Thanks, soujanna

    That is definitely a very old Reader version!  Uninstall it, then install the latest Reader for Vista, which is 10.1.9

  • I have pages 4.1 on my iMac and they tell me I have to download Pages for my iPhone to store in iCloud, etc; but when I go to the Apple Store to download via my iPhone it only gives me a Pages 1.6 or something like the version.  ?

    I have pages 4.1 on my iMac and they tell me I have to download Pages for my iPhone to store in iCloud, etc; but when I go to the Apple Store to download via my iPhone it only gives me a Pages 1.6 or something like the version.  ? 

    Thank you.  So it is ok to download the different number.  Also, someone just emailed me saying that iCloud is really not a storage.  Does one have to get SugarSync, etc. then?

  • Puchased mountain lion from app store and tried downloading via store 4 times, always rcvg an alert stating "error downloading"

    puchased mountain lion from app store and tried downloading via store 4 times, always rcvg an alert stating "error downloading"
    Is there any other mean to get the mountain lion.
    I ve a 512kbps connection.

    I believe you have correctly identified your 512kbps connection as the source of the problem.
    The Mountain Lion download is more than 4 gigabytes.  You should try hard to find a much better, faster, more robust connection.

Maybe you are looking for

  • PHP works, but CodeIgniter doesn't?

    Community, I've followed both the wiki regarding mysql installation, LAMP installation etc. Added http group and user, configured apache and php. When I run a test file with phpinfo() inside, everything works. But when I try to run my previous codeig

  • IMac, firewire, drobo and camera

    Hi guys, I'm currently working off an old power pc-based mac pro and need to upgrade. I'd like to get an iMac but am running into an issue: I think I need two firewire ports I use a drobo drive, connected via fw and if I ever need to capture video, w

  • Insert records from user form to multiple tables in same database

    Hi Experts, I need your help. I have a form that has multiple text fields that I need to insert the records to their each respective table. For example: The first name field needs to go the the name table, address goes to a seperate table, phone goes

  • Why can't I see all enents posted on my iTouch calander??

    When I use iCal on my computer, I can see all events posted to the calander. However, when I access the calander on my I touch I can only see events posted under each catagory (personal, user name, etc.). How can I view all events posted my computer'

  • Stack with original has disappeared

    I go to "edit in> photoshop elements 10> I get the pop up for "edit a copy with LR adjustment" or "Edit a copy" or "Edit original" Also an arrow for file options "file format" ,"color space", "bit depth" and "resolution"  there is not a box anywhere