File download using weblogic 6.1(Urgent)

Hi all,
Iam using weblogic 6.1 and wrote a code to download a file.
Previously when i used the same code , it worked properly in Tomcat but in weblogic it returns some junck values .
the same code is,
<%@page import="java.io.*,com.oreilly.servlet.*,javax.servlet.*;"%>
<%
ServletOutputStream outs = response.getOutputStream();
// Get the file to view
String file = "c:/ww-ww.xls";
// No file, nothing to view
if (file == null) {
out.println("No file to view");
return;
// Get and set the type of the file
     response.setContentType("application/vnd.ms-excel");
// Return the file
try {
ServletUtils.returnFile(file, outs);
catch (FileNotFoundException e) {
out.println("File not found");
catch (IOException e) {
out.println("Problem sending file: " + e.getMessage());
%>
can anyone say whats the prob .
Thanx all

have u checked with the content type of weblogic.
as u r getting some chunks that means file has been send but been able
to display on client side.
problem must be with content type.

Similar Messages

  • Accessing BSP File Download using HTTPS URL

    Hi,
    I'm struggling with a problem of downloading a file from a https url. I wrote a BSP App for downloading a file from a unix server.. It works fine when I use a http URL with port 8080 and does not work when I use https.!!
    Example:
    https://comms.gmsanet.co.za/supplier [ download does not work ]
    http://comms.gmsanet.co.za:8080/supplier [ download works ]
    When I try to download using https.. it does not pull the file name and path
    see code  below and suggest me if anything to be chnaged.
    In the Form Initialization method:
    event handler fr data retrieval
    DATA: i_file        type string,
          s_fields      TYPE tihttpnvp,
          s_fields_line TYPE ihttpnvp,
          multipart_form type ref to if_http_entity,
          file_upload    type xstring,
          lv_backend     type string,
          success        type string,
          entity         type ref to if_http_entity,
          file           type xstring,
          content_type   type string,
          content_filename type string,
          content_length type string,
          content_disposition type string,
          num_multiparts type i,
          i              type i value 1,
          doEcho         type string value 'X',
          value          type string,
          filename       type ZFILETAB-fileinfo,
          ext1           type string,
          ext2           type string,
          dsn            type string,
          bptype         like sy-uname,
          itab           TYPE ZFILETAB,
          itab_line      TYPE ZFILETABLINE,
          file_ext       type ZFILETABLINE,
          fileinfo       type c,
          zcount         type i.
        filename = '/NewMessge.doc'.
        content_filename = filename.
    Check the extension and assign the content type
        split filename at '.' into ext1 ext2.
        case ext2.
          when 'zip'.
            content_type = 'application/x-zip-compressed'.
          when 'doc'.
            content_type = 'application/msword'.
          when 'txt'.
            content_type = 'text/plain'.
          when 'ppt' or 'pps'.
            content_type = 'application/vnd.ms-powerpoint'.
          when 'xls' or 'exe'.
            content_type = 'application/octet-stream'.
          when 'gif'.
            content_type = 'image/gif'.
          when 'jpg' or 'jpeg'.
            content_type = 'image/pjpeg'.
          when 'htm' or 'html'.
            content_type = 'text/html'.
        endcase.
        dsn = filename.
        OPEN DATASET dsn FOR INPUT IN BINARY MODE.
        IF sy-subrc NE 0.
          zmessage = 'Error opening file'.
          navigation->set_parameter( name = 'zmessage' value = zmessage ).
          navigation->goto_page( 'downloaderror.htm' ).
          exit.
        ENDIF.
        DO.
          READ DATASET dsn INTO <b>file</b>.
          EXIT.
        ENDDO.
        CLOSE DATASET dsn.
    set response data to be the file content
      runtime->server->response->set_data( <b>file</b> ).
      runtime->server->response->set_header_field(
                                    name  = 'Content-Type'
                                    value = content_type ).
      concatenate 'attachment; filename=' filename into content_disposition.
      runtime->server->response->set_header_field(
                                    name = 'Content-Disposition'
                                    value = content_disposition ).
    set the file size in the response
      content_length = xstrlen( file ).
      runtime->server->response->set_header_field(
                                name  = 'Content-Length'
                                value = content_length ).
      runtime->server->response->delete_header_field(
                                name = 'Cache-Control' ).
      runtime->server->response->delete_header_field(
                                name = 'Expires' ).
      navigation->response_complete( ).
    Thanks
    Ajay

    Hi Brian,
    I have the same problem as Ajay Yeluguri. In http mode I can generate a download of an Excel document but when we use the portal in https it doesn't work.
    When I try to download using https it does not pull the file name and path and when I choose download I have a error message : "Internet Explorer cannot download from ..."
    I've test the point 3.2 "... including file up/download" of the BSP application IT00 and it works fine in http and https mode. My problem is not the upload but the download. And in this application the uploaded document is opened in the Internet Explorer window but I want to generate a Save as... window to download the file.
    Have you an idea what i can do to solve my problem.
    Thanks
    Yann

  • How to load Java properties file dynamically using weblogic server

    Hi,
    We are using Java properties file in Java code. Properties in java properties file are frequently modified. If I keep these properties file in project classpath or as part of war, I will have to redeploy application after each change.
    We are using Weblogic Server.
    Can you please suggest me how can this properties file be loaded at weblogic server startup. Then in that case, how to refer property file in Java code?
    What is the best practice for this?
    Thanks,
    Parshant

    Another alternative is, keep the property file in any pre-defined location. Write a class which reads the properties from the file and returns the one which is requested by caller and deploy this class. Whenever you have to change the properties just update the property file on server and next call to fetch the property should return the updated one.
    Downside of this approach is file I/O everytime. To overcome that you can actually "cache" the properties in a hashmap. Basically when any property if requested, first check the hashmap, if not found then only read from property file and also update in hash map. Next time same property will be returned from hash map itself. The hash map will be cleared at every server restart since its in the memory. You will also need to build a method to clear the hashmap when you update the values in the property file on server.
    This solution would be suitable for small size files and when network overhead of calling a DB needs to be avoided.

  • Cannot open pdf files downloaded using firefox. They open fine using safari, and used to open fine before my latest update of firefox.????

    I am running the latest version of snow leopard on my mac. Since the last update of Firefox, I have not been able to open any newly downloaded pdf's. I get a message that says "The file cannot be opened.
    it may be damaged or use a file format that preview doesn't recognize."
    When I download using Safari, everything works fine. I have been using Firefox for a long time and all of my bookmarks are in Firefox.

    I also disabled adobe npapi plug-in and now the pdf files open as usual.

  • Anybody have a resolution for PRIAMOS file download using a Mac OSX 10.6.8 and Adobe Reader XI?

    Does anyone have experience of the EU PRIAMOS file download system? I am experiencing difficulties in downloading files in Adobe Reader format ( I have set the default PDF reader to Adobe Reader).
    The PRIAMOS system can only communicate with Windows 32bit - Mozilla Firefox 2 and higher or......
    IE 6 or 7
    IE 7 or 8 (in compatibility mode)
    Supported PDF programmes are:
    Adobe Reader 8.1 or higher
    My Adobe Reader software is the latest version (Adobe Reader XI for Mac with latest update as at 10 Sept 2013)
    The PRIAMOS system does not officially support Mac computers, but PRIAMOS has been used successfully with OS X version 10.5.8 (Leopard) and Mozilla Firefox (2.5) (with built in PDF reader disabled and Adobe Reader enabled) and Adobe Reader 8.1
    Any help would be gratefully appreciated

    Oops, I hit return before I was finished!
    In short, does anyone have any ideas apart from those I've tried. One solution seems to be to go back to 10.6.4 - one of the other discussions seem to indicate that the probelm comes in with 10.6.8.
    Thanks!

  • Download file when using weblogic 6.1

              hi,
              When I download a .jar file using WLS 6.1 sp1, the file was corrupted.and I
              always got the same errors just like :
              <Error> <HTTP> <Servlet execution in servlet context "WebAppServletContext
              (6679584,mapsweb,/mapsweb)" failed, java.net.ProtocolException: Didn't meet
              stated Content-Length, wrote: '78' bytes instead of stated: '86327' bytes.
              java.net.ProtocolException: Didn't meet stated Content-Length, wrote: '78' bytes
              instead of stated: '86327' bytes.
              at weblogic.servlet.internal.ServletOutputStreamImpl.finish(ServletOutpu
              tStreamImpl.java:413)
              at weblogic.servlet.internal.ServletResponseImpl.send(ServletResponseImp
              l.java:974)
              at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestIm
              pl.java:1964)
              at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
              the jar file's actual size is 86327.but after downloading, the jar size became
              (86327+78) bytes.at the beginning of the jar file-- the first 78 bytes were
              all "0d0a" ,I don't know when they are inserted .
              is it a bug of weblogic?
              

              thanks charlie, it works. i follow ur suggestion and now it works.
              "Charlie Sadler" <charlie_sadler_AT_mathworks_DOT_com> wrote:
              >Rajesh,
              >How does SP3 resolve the issue? Doesn't the JSP spec say anything not
              >in
              >tags gets sent to the output?
              >Thanks, Charlie
              >
              >"Rajesh Mirchandani" <[email protected]> wrote in message
              >news:[email protected]...
              >> Upgrade to SP3.
              >>
              >> Charlie Sadler wrote:
              >>
              >> > I'm guessing you've got a .jsp which attempts to download a file
              >to the
              >> > client browser. Remember anything not inside JSP markup gets compiled
              >to
              >> > out.print. "0d0a" is I think a carriage-return line-feed. I'm guessing
              >> > you've got 39 lines of JSP code prior to the code which downloads
              >the
              >file.
              >> > You might try spanning the line ends with a comment. For example,
              >> > <%@ page buffer="64kb" %><%--
              >> > --%><%@ page import="java.util.Iterator" %><%--
              >> > --%><%@ page import="java.util.HashMap" %><%--
              >> > --%><% //code to download the file...
              >> >
              >> > "netoasis" <[email protected]> wrote in message
              >> > news:[email protected]...
              >> > >
              >> > > hi,
              >> > > When I download a .jar file using WLS 6.1 sp1, the file was
              >> > corrupted.and I
              >> > >
              >> > > always got the same errors just like :
              >> > >
              >> > > <Error> <HTTP> <Servlet execution in servlet context
              >"WebAppServletContext
              >> > > (6679584,mapsweb,/mapsweb)" failed, java.net.ProtocolException:
              >Didn't
              >> > meet
              >> > > stated Content-Length, wrote: '78' bytes instead of stated: '86327'
              >bytes.
              >> > > java.net.ProtocolException: Didn't meet stated Content-Length,
              >wrote:
              >'78'
              >> > bytes
              >> > > instead of stated: '86327' bytes.
              >> > > at
              >> > weblogic.servlet.internal.ServletOutputStreamImpl.finish(ServletOutpu
              >> > > tStreamImpl.java:413)
              >> > > at
              >> > weblogic.servlet.internal.ServletResponseImpl.send(ServletResponseImp
              >> > > l.java:974)
              >> > > at
              >> > weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestIm
              >> > > pl.java:1964)
              >> > > at
              >weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
              >> > > at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
              >> > >
              >> > > the jar file's actual size is 86327.but after downloading, the
              >jar
              >size
              >> > became
              >> > >
              >> > > (86327+78) bytes.at the beginning of the jar file-- the first 78
              >bytes
              >> > were
              >> > > all "0d0a" ,I don't know when they are inserted .
              >> > >
              >> > > is it a bug of weblogic?
              >
              >
              >
              

  • Urgent: File download using HTTP

    Hello,
    I have some files stored on a Remote machine A. The machine A accepts HTTP connection only.
    I want to write a java program which runs on Machine B, creates a connection to machine A and gets/downloads the file and store it on machine B. The file is a 3gp/mp4 file.
    Can you please advise/suggest as how this can be done?
    Regards.

    Thanks for your reply.
    I am getting the following error now, can some one please advise how to fix this:
    HttpTest.java:12: incompatible types
    found : java.net.URLConnection
    required: java.net.HttpURLConnection
    (The openConnection method returns a URLConnection object and not a HttpURLConnection object)
    I also tried the below code:
    URL url = new URL("http","10.176.96.63",9000,"c:\\database.properties");
    InputStream is = url.openStream();
    This code gives an exception:
    java.net.SocketException: Unexpected end of file from server
    Can someone please help...
    Thanks.

  • File download using jsp

    I am trying to download a file from the server using jsp but it always shows the file in the browser.I want a Save/Open dialog box to allow the user to save this file in the local system. any feedback is welcome.
    thanks in advance
    vinod

    Basically out frame work is in struts.........
    In struts for file down load I wrote the code as
    String fileName = <file name>;
    String filePath = <file path>;
    String fileType = fileName.substring(dotIndex+1,fileName.length());
    ServletOutputStream out = httpservletresponse.getOutputStream();
    if (fileType.trim().equalsIgnoreCase("doc"))
    httpservletresponse.setContentType( "application/msword" );
    else if (fileType.trim().equalsIgnoreCase("xls"))
    httpservletresponse.setContentType( "application/vnd.ms-excel" );
    else if (fileType.trim().equalsIgnoreCase("pdf"))
    httpservletresponse.setContentType( "application/pdf" );
    else if (fileType.trim().equalsIgnoreCase("ppt"))
    httpservletresponse.setContentType( "application/ppt" );
    else
    httpservletresponse.setContentType( "application/octet-stream" );
    httpservletresponse.setHeader("Content-disposition", "attachment; filename=" +actualName );
    BufferedInputStream bis = new BufferedInputStream(new FileInputStream(filePath));
    BufferedOutputStream bos = new BufferedOutputStream(out);
    byte[] buff = new byte[2048];
    int bytesRead;
    while(-1 != (bytesRead = bis.read(buff, 0, buff.length)))
    bos.write(buff, 0, bytesRead);
    I hav written this in seperate function which returns boolean true If this works correctly otherwise fase.
    If it is 'true ' I am forwarding it to 'success.jsp' else'fail.jsp'....................
    Now problem is It is not forwarding to any other pages and giving error as "Illegal state .can not forward.Response already committed."
    I think this error is coming becos of 'response.setHeader()' and using out object.........
    Please give me any solution for this problem.........Since I am strucked here.It is urgent for me to do...................................
    I don't mind If u giv any alteernative code for this..............
    Thanx in advance..................
    Plz. respond quickly...................

  • I cannot get the file download using 1.6

    Hi,
    I am using HTMLDB v1.6 and I have followed the example to upload and download files. I was able to get the file upload working but I am getting the page cannot be found error message. I am using a package to implement the page download can I do that? The URL I entered when I set the ID files is
    #OWNER#.JobManagement.Download_Submitted_File?p_file=#ID#.
    The URL Generated when I click on the download link is:
    http://aseera:7777/pls/htmldb/BFAYEZ.JobManagement.Download_Submitted_File?p_file=4.
    Anyone has any idea why the download is not working?
    Thanks,
    Bashar

    Sergio,
    I looked at the log files and I was able to figure out what was wrong. I changed my parameter name to p_job_id for the stored procedure but I used the p_file parameter name from the example. I also switched to use the package instead of the stored procedure and that worked too. The only thing I need to figure out is why the downloaded file name is packagename.ext for the file name.
    Thanks,
    Bashar

  • File download using CURL

    Hi there,
    I'm trying to download the file(s) from external server. The protocol which i'm using is https, to download the file i'm using CURL utility but this utility is not downloading the file. Command which i'm using is
    curl -k -u {user_name}:{password} url/{filename}
    the url will look something like https://filetransfer.abc.com
    I tried to list out the file at least but its not working curl -kl -u {user_name}:{password} {url}
    Can some one please suggest me how to use curl for downloading the files.
    Thanks in advance,

    I've tested it with downloading the latest openssl source from https://www.openssl.org. Can you do the same? that way you'll know your curl is working or not.
    here's the output of my curl downloading the latest source:
    vxlt090101:~ fritshoogland$ curl -o test.tgz -v -# https://www.openssl.org/source/openssl-0.9.8k.tar.gz
    * About to connect() to www.openssl.org port 443 (#0)
    *   Trying 195.30.6.166... connected
    * Connected to www.openssl.org (195.30.6.166) port 443 (#0)
    * successfully set certificate verify locations:
    *   CAfile: /usr/share/curl/curl-ca-bundle.crt
      CApath: none
    * SSLv2, Client hello (1):
    } [data not shown]
    * SSLv3, TLS handshake, Server hello (2):
    { [data not shown]
    * SSLv3, TLS handshake, CERT (11):
    { [data not shown]
    * SSLv3, TLS handshake, Server key exchange (12):
    { [data not shown]
    * SSLv3, TLS handshake, Server finished (14):
    { [data not shown]
    * SSLv3, TLS handshake, Client key exchange (16):
    } [data not shown]
    * SSLv3, TLS change cipher, Client hello (1):
    } [data not shown]
    * SSLv3, TLS handshake, Finished (20):
    } [data not shown]
    * SSLv3, TLS change cipher, Client hello (1):
    { [data not shown]
    * SSLv3, TLS handshake, Finished (20):
    { [data not shown]
    * SSL connection using DHE-RSA-AES256-SHA
    * Server certificate:
    *       subject: /C=GB/OU=Domain Control Validated/O=*.openssl.org/CN=*.openssl.org
    *       start date: 2008-09-12 17:14:11 GMT
    *       expire date: 2011-09-13 17:14:06 GMT
    *       common name: *.openssl.org (matched)
    *       issuer: /C=BE/OU=Domain Validation CA/O=GlobalSign nv-sa/CN=GlobalSign Domain Validation CA
    * SSL certificate verify ok.
    GET /source/openssl-0.9.8k.tar.gz HTTP/1.1
    User-Agent: curl/7.16.3 (powerpc-apple-darwin9.0) libcurl/7.16.3 OpenSSL/0.9.7l zlib/1.2.3
    Host: www.openssl.org
    Accept: */*
    < HTTP/1.1 200 OK
    < Date: Sun, 19 Jul 2009 10:50:43 GMT
    < Server: Apache/1.3.33 (OpenPKG/2.5)
    < Last-Modified: Wed, 25 Mar 2009 12:21:40 GMT
    < ETag: "f0c99a-3ac7e3-49ca21d4"
    < Accept-Ranges: bytes
    < Content-Length: 3852259
    < Content-Type: application/x-tar
    < Content-Encoding: x-gzip
    <
                                                                               0.0%{ [data not shown]
    ######################################################################## 100.0%* Connection #0 to host www.openssl.org left intact
    * Closing connection #0
    * SSLv3, TLS alert, Client hello (1):
    } [data not shown]

  • Jar file downloaded using FTP gets damaged

    Hi people, Am working on a solution that implements an auto update of an application developed using Java. I am using Apache commons package for downloading the updated JAR file from an FTP site. Once I have the new JAR file on my local machine, I double click it and I get the following error. Invalid or corrupt jarfile C:\FIDS\FIDS.jar When I use a different FTP client to download my JAR file, the file works well when double clicked. What could be happening on my JAR file. Thanks and regards.

    tdulce_aboo wrote:
    I know that FTP is not the best solution, however, sometimes we are bound by what the client has in place.I know, it wasn't trying to attack you, it was just a general rant. FTP is so common and when it's the only thing available you obviously have to use it. I just don't understand those who actively enable it on their server and suggest (or even require) its use.
    What is your suggestion,that I use http? or ?That depends on what it's used for.
    My normal one-stop replacement would be SFTP: based on SSH, secure, authenticated, tunnelable, uses a single connection, doesn't do stupid "translations" of the transfered data, ...

  • File download using servlet and jsp. File Dialog comes twice

    Hi
    I was trying to download a file using servlet. There is a link which calls the servlet. When I click on the link file dialog box comes up. On selecting Open it again shows me the file dialog box. I changed the method from POST to GET and it worked properly.
    My question is why does it work with GET and not with POST. I am aware of the differences between POST and GET but am not able to come to a rational explanation for this behaviour.
    Please if anyone can explain this to me I am going crazy thinking an answer for this.
    Thank you.
    Regards
    Jay

    Hi Jay,
    I also have the same question. Why does it work with GET and not for POST?. If you were able to find the answer please let me know.
    Thank you.
    Regards,
    Aravind

  • Jsp files download message!!! URGENT

    Hi,
    Does anyone have an idea about why I'm getting a download message when I try to run my jsp file deployed on OC4J?
    Seems to be a problem with parameters:
    This is what I do in my code:
    pageContext.forward("pag_loginc.jsp?p_idusr=" + strUsr + "&c_password=");
    And then I get a window for saving pag_loginc.jsp

    Yes,
    Works just fine. Which gui were you talking about. I did it through the webui.
    Check out the ora iFS User's Guide. pp 3-10 to 3-14.
    Good luck.

  • I need some information about File Download & File Upload

    Hi  All,
    Can any one help me on this, I need some information about File Download & File Upload.
    I read tutorial abt file upload and download but some of methods in tutorial are deprecated so i need clear information abt File upload and Download, if possible Code examples.
    Thanks
    Ragards
    Ravi Golla

    Hi Ravi
    Check out thses links for examples:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/00062266-3aa9-2910-d485-f1088c3a4d71
    /docs/DOC-8661#22 [original link is broken]
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/202a850a-58e0-2910-eeb3-bfc3e081257f
    Otherwise you can simply follow this code for file download
    Use the code like this.
    1) Create the button and bind the action for it.
    2)then write this code in the action.
    3) do not write any thing in the init method.
    try {
    final byte[] content = this.getByteArrayFromResourcePath("C:
    xyz.properties");
    final IWDCachedWebResource resource = WDWebResource.getWebResource(content, WDWebResourceType.UNKNOWN);
    try {
    final IWDWindow window = wdComponentAPI.getWindowManager().createExternalWindow(resource.getAbsoluteURL(), "WD_Filedownload", false);
    window.open();
    catch(Exception e)
    wdComponentAPI.getMessageManager().reportException(new WDNonFatalException(e), false);
    5) writr the method getByteArrayFromResourcePath
    //@@begin others
    private byte[] getByteArrayFromResourcePath(String resourcePath)
    throws FileNotFoundException, IOException {
    FileInputStream in = new FileInputStream(new File(resourcePath));
    ByteArrayOutputStream out = new ByteArrayOutputStream();
    int len;
    byte[] part = new byte[10 * 1024];
    while ((len = in.read(part)) != -1) {
    out.write(part, 0, len);
    in.close();
    return out.toByteArray();
    //end
    Similarly for file upload
    Similarly for upload in to server path also do the same
    IWDAttributeInfo attInfo =
    wdContext.getNodeInfo().getAttribute("upload");
    binaryType =
    (IWDModifiableBinaryType) attInfo.getModifiableSimpleType();
    uploadedName = binaryType.getFileName();
    File filename =new File("
    <server name>
    <folder name>
    "+uploadedName ); );
    try {
    FileOutputStream out = new FileOutputStream(filename);
    out.write(b);
    out.close();
    } catch (FileNotFoundException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
    } catch (IOException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();

  • Force file download for IE9 on Azure Blob Storage

    Hello,
    I am trying to use Azure Blob Storage as a location for secure file downloads using Shared Access Signature. Everything is working very well, however the problem I am having is I am trying to allow the user to save files from the browser and I have all browsers
    except IE9 working.
    Reviewing this question,
    What content type to force download of text response?
    this works well when I can control all of the headers, however in Azure Blob Storage, I have set the Content-Type to application/octet-stream and this allows all browsers except IE to ask the user to save the file, IE simply opens the file. It appears that
    known file types will open (example .jpg, .wmv etc…).
    In Azure, I have found no way to set
    Content-Disposition: attachment;filename="My Text File.txt"
    Is there a way, using Azure Blob Storage, to use IE to download any file directly from Azure Blob Storage?
    Thanks in advance.

    Hi,
    Actually, we can't set Content-Disposition for blobs, and I can't think of any other workarounds. From my experience, in most case IE's behavior is fine. I would like to know why you have to prompt a download? The user can see the text file, and
    if they wish to save it locally, they have more than one way to do that (copy paste, save file, etc.). If they simply want to read the text and then forget it, that's also fine. They don't even have to download it and then double click a local file to read
    the content.
    If you have to modify the behavior, the only workaround I can think of is to use a web role as an intermediate bridge, and add the Content-Disposition from your web role.
    Best Regards,
    Ming Xu.
    Please mark the replies as answers if they help or unmark if not.
    If you have any feedback about my replies, please contact
    [email protected]
    Microsoft One Code Framework

Maybe you are looking for

  • Administrator's password doesn't work.

    Hello. As the only user I have only set one password during installation. This has worked to install applications as I understand it should - untill yesterday. Now I get an error message: "Type an administrator's name and password to make changes to

  • I had to G5's 2.2Ghz donated, and they were not wiped clean, and I don't have a Leopard CD. Anyone know what I can do? I am a non profit.

    I would greatly appreciate some help here. I have two PowerPC's that were donated to my community center, and they were not wiped clean. (insert major frowny face) I am at a loss on what to do, being a non profit I don't have much money to spend on h

  • Remediation for the remote clients

    Hi Folks, One of my main customer concerns is the patch/update process that NAC will force it on the remote clients to do the remediation (Bandwidth issue). The client does not want this update to happen from the HQ; instead it should happen from a c

  • I need to reset my admin password, no cd, help!

    Hi community, I recently had my faulty hard drive replaced and picked it up today. Luckily they were able to save my data but not my programs. To re-download them I need my password. I assumed it was my old password, but it's not accepting that? I ha

  • Difficulty Installing Updates to Digital Photo Professional

    I'm trying to install an update for DPP. I've downloaded the latest file from Canon, unzipped it and clicked the installer. I however get a message back that I  don't have sufficient privileges to install and to log back on an an Adminstrator. I've c