Download file with cyrilic filename in Internet Explorer 8

I have a problem when trying to download a file which name contains cyrillic symbols. I store the file in the database. I created a procedure, that I call using a link from my report to download the file. There aren't any problems when the filename contains only latin symbols, but when it contains cyrillic symbols Internet Explorer doesn't show the name properly in the dialog box for saving the file. The procedure I use looks like this:
PROCEDURE download_blob( p_file_name varchar2
, p_mime_type varchar2
, p_blob in out blob
, p_blob_length number
, p_app_id number )
is
begin
apex_application.g_flow_id := p_app_id;
-- set up HTTP header
-- use an NVL around the mime type and
-- if it is a null set it to application/octect
-- application/octect may launch a download window from windows
owa_util.mime_header( nvl(p_mime_type, 'application/octet'), FALSE );
-- set the size so the browser knows how much to download
htp.p('Content-length: ' || p_blob_length);
-- the filename will be used by the browser if the users does a save as
htp.p('Content-Disposition: attachment; filename="' || p_file_name || '"');
-- close the headers
owa_util.http_header_close;
-- download the BLOB
wpg_docload.download_file( p_blob );
end;
I call this procedure from a link in a report. Any ideas how can I fix this problem?
The character set in the database is AL32UTF8 and the parameter PlsqlNLSLanguage in the dads.conf is set to AMERICAN_AMERICA.AL32UTF8.
Thanks, Mimi
Edited by: user4810045 on 2009-10-1 7:54

I have same problem. Firefox works fine.

Similar Messages

  • How to download  file with Save As dialog

    I am trying to download files with a Save As dialog, according to Jason Hunter's instructions in Jave Enterprise Best Practices.
    String filename = "content.txt";
    // set the headers
    res.setContentType( "application/x-download" );
    res.setHeader( "Content-Disposition", "attachment; filename=" + filename);
    // send the file
    OutputStream out = res.getOutputStream();
    returnFile( filename, out);
    The file content.txt is in the root directory of my webapp. But I get this stack:
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    java.io.FileNotFoundException: content.txt (The system cannot find the file specified)
         at java.io.FileInputStream.open(Native Method)
         at java.io.FileInputStream.(FileInputStream.java:64)
         at com.interwoven.cssdk.examples.servlets.FileDownloadServlet.returnFile(FileDownloadServlet.java:43)
         at com.interwoven.cssdk.examples.servlets.FileDownloadServlet.doGet(FileDownloadServlet.java:24)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:260)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2415)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:170)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:172)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:223)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:432)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:386)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:534)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:530)
         at java.lang.Thread.run(Thread.java:484)

    The root of the webservers changes from server to server and
    sometimes it depends on the path you run webserver exe.
    The best i have found to overcome this kind of problems is by
    using getResourceAstream() method which basically looks at classpath locations only, but still this has some problems like it should kept at the
    specified classpath becoz the getResourceAsStrem() method is not static
    method and it always associated with the class object and the file
    accessing also should be in the same package/classpath.
    by using getResourceastream you cannot look at other places (except classpaths)
    and this should be used only if you looking for .properites definitions.
    the Second best method is
    see you have a file called "context.txt" right
    before you create a file, first create a directory at the root, let say
    "\tmp"
    and then create a file \tmp\context.txt
    and then open an output stream to it either using fileoutputstreamm...
    and then write all output content to servlet/client output stream.
    this will be the best becoz you are specifying the "\" the root
    and this is common for all operating systems and definitely it will create at the root directory either serverroot or harddiskdrives root
    so you will never missout and the exceptin will also not comes along the way
    cheers..
    if you get new thing , let me know
    bye
    with regards
    Lokesh T.C

  • Why won't my flash player work? downloads but does not install! internet explorer 9

    I need the flash player to do my college statistics homework but it will not work!!!!! I was prompted by my textbook's website to update my flash player, so I followed the link as well as all the instructions on the adobe website. The flash player starts to download, then tells me to close internet explorer. i close explorer and retry. then, the adobe webpage comes up saying it's been installed, but when i try to go back and use my e-textbook, it says i need to update my flash player and i'm in the same place i started! help!

    Windows 7 - 32-bit or 64-bit?
    Make sure you use the 32-bit version of Internet Explorer when you try to use Flash Player, or checking the Shockwave Flash add-on.
    What files do you have in C:\Windows\system32\Macromed\Flash (32-bit Windows), or C:\Windows\syswow64\Macromed\Flash (64-bit Windows) ?

  • Recently, when opening some websites, I can't view the page and now must open them with google chrome or internet explorer in order to view them

    Recently, when opening some websites, I can't view the page and now must open them with google chrome or internet explorer in order to view them

    Hi headshot, <br /> Sorry you are having problems.
    Are you seeing any error message or notification ? <br />If so what ?
    If the page fails to load try clearing Reloading with the Ctrl F5 shortcut to force loading without the old new cached files. If that does not help try cache and clearing cookies for that site.
    * Also see [[Websites don't load - troubleshoot and fix error messages]]
    * [[Delete cookies to remove the information websites have stored on your computer#w_delete-cookies-for-a-single-site]]_delete-cookies-for-a-single-site
    Reload the webpage while bypassing the cache using '''one''' of the following steps:
    *Hold down the ''Shift'' key and click the ''Reload'' button with a left click.
    OR
    *Press ''Ctrl'' + ''F5'' or ''Ctrl'' + ''Shift'' + ''R'' (Windows and Linux)
    *Press ''Command'' + ''Shift'' + ''R'' (Mac)
    Let us know if this solves the issues you are having.
    Many site issues can be caused by corrupt cookies or cache. In order to try to fix these problems, the first step is to clear both cookies and the cache.
    Note: ''This will temporarily log you out of all sites you're logged in to.''
    To clear cache and cookies do the following:
    #Go to Firefox > History > Clear recent history or (if no Firefox button is shown) go to Tools > Clear recent history.
    #Under "Time range to clear", select "Everything".
    #Now, click the arrow next to Details to toggle the Details list active.
    #From the details list, check ''Cache'' and ''Cookies'' and uncheck everything else.
    #Now click the ''Clear now'' button.
    Further information can be found in the [[Clear your cache, history and other personal information in Firefox]] article.

  • A problem with this webpage caused Internet Explorer (IE9) to close and reopen the tab

    I have IE9 (using 32-bit version) installed on a relatively new laptop with Windows 7 64-bit. Up until last weekend IE9 worked fine and Flash Player worked fine too.
    At the weekend a webpage asked for Flash Player to be updated - which I did. Ever since then whenever I go to a webpage needing Flash Player I get the message "A problem with this webpage caused Internet Explorer to close and reopen the tab". This happens twice and then an IE9 error page.
    I have read the discussions in here about the problems with Flash Player 10.3 and have tried the various solutions. I have updated to 10.3.181.16 having tried 15 and 14 previously. Same problem.
    I have reset IE9. Same problem.
    I have disabled all add-ons which stops the problem. If I enable just the Flash Player add-on then the problem recurs. Since there are so many webpages that use Flash I do not want to run my browser without this add-on running.
    If I enable the add-on and run IE9 using software rendering instead of GPU rendering then I don't get the problem. However, this isn't exactly making the best use of the resources on my laptop.
    This may well all be related to the 10.3 problems but no one seems to have mentioned having a problem with tabs closing and reopening so I thought I would post on here to check.
    Any suggestions for how to solve this (other than using software rendering)?

    Thanks again for your reply. I appreciate the time you have taken to respond.
    I think, however, you misunderstand the problem. IE9 does not reopen the tabs on just one website - it is doing this on every website that needs Flash Player. Therefore, running in Compatibility mode is not an option. In fact, because IE9 reopens the tabs so quickly and then ends up with an error page, I cannot even click the Compatibility button anyway.
    I could use ActiveX filtering - true. All that this means is that Flash does not play on any of the websites. When I want to re-enable ActiveX for a particular website where I need to see the Flash Player item, this just triggers the error.
    This problem also happened on .14, .15 and well as the current .16 version. It did not happen with the previous version of Flash Player that I had on the system (version 10.2 I think).
    The fact is that either Flash Player or IE9 or both is/are broken. The two choices I am still left with are:
    1. Use software rendering (which contradicts the latest advertisements for IE9 about unleashing the power of IE)
    2. Use another browser - I have no problems with either Firefox or Chrome

  • How can I upload and download files with uiXML?

    I want to implement upload and download files with uiXML. In some previouse topic I got answare to look in AbstractPageBroker class in JavaDOC. I did it but this is a very-very little resolution description for this problem. I think for developers YOU (UIX Team) must in very quick time to put some examples on the NET because this is a nice technology but with adecvate samplase and developers guide it will be dead very soon. I digging this forum for information. I see many many people have same problems about this technology. They like it and want to use and try but documentation is very very poor.
    WE WANT EXAMPLES and separate forum for UIX. I think it deserve this.
    If You have any more detailed documentation would be nice to put on the net. I have uixdemo.zip file but this is in very early fase of development. I downloaded it before fwe months. And now I can't find it anymore on youre site. What happend?

    Attila -
    I went back and re-read the JavaDoc for AbstractPageBroker and MultipartFormItem and put together the following sample PageBroker based on the description from the JavaDoc:
    import java.io.File;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import javax.servlet.ServletConfig;
    import javax.servlet.ServletContext;
    import oracle.cabo.servlet.BajaContext;
    import oracle.cabo.servlet.Page;
    import oracle.cabo.share.util.MultipartFormItem;
    import oracle.cabo.servlet.xml.UIXPageBroker;
    * An extension of UIXPageBroker which stores all uploaded
    * files in the temporary directory.
    public class UploadingPageBroker extends UIXPageBroker
    * Override of AbstractPageBroker.doUploadFile() which saves
    * all files to the temporary directory.
    protected String doUploadFile(
    BajaContext context,
    Page page,
    MultipartFormItem item) throws IOException
    // Get the location of the file to create in the temp directory.
    // Of course a real application probably wouldn't upload files to
    // the temp directory - just using this contrived example to
    // demonstrate basic uploading support.
    File file = _getFile(context, item);
    if (file != null)
    // Create a FileOutputStream. Of course, a real application would
    // probably want to buffer the output
    FileOutputStream out = new FileOutputStream(file);
    // Write out the file
    item.writeFile(out);
    // Close up the output stream
    out.close();
    // We can return a value here to add to the PageEvent
    // if so desired.
    return null;
    // Gets the File for the item that we are uploading
    private File _getFile(
    BajaContext context,
    MultipartFormItem item
    // Get the file name
    String name = item.getFilename();
    // If we don't have a file, bail...
    if (name == null)
    return null;
    // Get the path to the temporary directory
    File dir = _getTempDir();
    // Return the File object
    return new File(dir, name);
    // Returns the path to the temprary directory
    private File _getTempDir()
    // Get the temporary directory from the ServletContext
    ServletConfig sConfig = getServlet().getServletConfig();
    ServletContext sContext = sConfig.getServletContext();
    return (File)sContext.getAttribute("javax.servlet.context.tempdir");
    In this sample, each uploaded file is simply saved in the temporary directory. You'll want to replace the code that creates the FileOutputStream for the uploaded file to use whatever OutputStream makes sense for your application.
    BTW - I used the following UIX page to test this out:
    <?xml version="1.0" encoding="UTF-8"?>
    <page xmlns="http://xmlns.oracle.com/uix/controller">
    <content>
    <pageLayout xmlns="http://xmlns.oracle.com/uix/ui">
    <contents>
    <form name="uploadForm" usesUpload="true">
    <contents>
    <fileUpload name="uploadedFile"/>
    <submitButton name="upload" text="Upload"/>
    </contents>
    </form>
    </contents>
    </pageLayout>
    </content>
    </page>
    Hope this sample helps with the uploading part of your question. I'll see if I can provide a download sample in a later post.

  • Copy a file with same filename using XI - module experts please help!

    Guys,
    Felix Jeyareuben had an excellent blog on how to copy a binary file with XI.
    /people/sap.user72/blog/2005/07/15/copy-a-file-with-same-filename-using-xi
    It is a shame by the way that such a simple thing has to be this complicated in XI, but that's another question...
    So after I created the EAR file and successfully deployed the modules on our XI server, I got the following file adapter error, when I was trying to use it:
    Sender Adapter v2727 for Party '', Service 'BS_TA_XI_DEV':
    Configured at 2006-11-30 14:04:15 EST
    History:
    - 2006-11-30 14:10:00 EST: Error: java.lang.ClassCastException
    - 2006-11-30 14:10:00 EST: Processing started
    Can you give me any clues what could have gone wrong?
    This is the first module I deployed so I might have messed up something simple, but I cannot figure this out.
    Also how can I debug this?
    Your help would be much appreciated.
    Thanks a lot,
    Viktor Varga

    > Moorthy,
    > My issue is not so much about the filename, but an
    > encrypted (binary) file that I just want to copy from here to there.
    Do it like in the mentioned blog, but don't do any mapping. That will be fine.
    > Michal,
    > In my adapter I have the following:
    > 1)  localejbs/xi_file_module/ReadBinaryBean
    >  (LocalEnterpriseBean)
    > )  localejbs/CallSapAdapter
    >                         (LocalEnterpriseBean)
    > ine.xml file I have this:
    > <enterprise-bean>
    >   <ejb-name>ReadBinaryBean</ejb-name>
    > <jndi-name>xi_file_module/ReadBinaryBean</jndi-name>
    >   <session-props/>
    > enterprise-bean>
    Check your EAR if there are any libs from the adapter framework and delete them if necessary.
    After deployment check in your visual administrator if your EAR is available.
    Regards
    Stefan

  • I can´t download files with Real Player whwn I upsated Firefox.

    I was told to update Firefox whichI did. After that I can´t download files with Real Player which I could before I updated.

    You cannot download files to the iPad via Safari.  You download them on your computer and synch them through iTunes.
    http://manuals.info.apple.com/en_US/ipad_user_guide.pdf

  • Fail to download file with explorer 10 while explorer 9 and other browsers succeed to download the same file

    I try to download file from management website of switch device. The file size is 11.66K.
    The webserver is GoAhead, OS is windows7 and explorer version is 10 (it also happens with explorer 11). The server is using Transfer-Encoding: chunked.
    After I download the file, I get pop-up message from the browser “Do you want to open or save running-config.txt from 1.1.1.11?”
    If I press the save/open button I get message “running-config .txt couldn’t be downloaded”. If I press the retry button the file is downloaded successfully.
    When I used meddler to debug the problem, it didn’t occur and the file was downloaded successfully.
    I took capture of successful download (with meddler debugger) and  another capture of download that raised “couldn’t be downloaded” message, but I didn’t see any difference between the requests and the responses. I also made sure the last chunk
    “0” was not missing in the response and it wasn’t.
    Please note, I also tried many suggestions given to other users that reported similar problem – restart explorer, remove add-ons, etc – nothing worked!
    Please help.

    Hi,
    Did  this issue occur on when you download file from other website?
    This problem occurs if the Do not save encrypted pages to disk option in Internet Explorer is selected.
    To fix this issue, try these methods:
    Methods 1
    On the Tools menu in Internet Explorer, click Internet Options, click the
    Advanced tab, click to clear the check mark from the Do not save encrypted pages to disk check box in the
    Security area, and then click OK. (This is the default Internet Explorer setting.)
    Methods 2
    1.Start Registry Editor.
    2.For a per-user setting, locate the following registry key:
    HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings
    For a per-computer setting, locate the following registry key:
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings
    3.On the Edit menu, click Add Value, and then add the following value:
    "BypassSSLNoCacheCheck"=Dword:00000001
    4.Exit Registry Editor
    Karen Hu
    TechNet Community Support

  • Firefox 3 cannot download files with white space in the filename

    When opening attachments in e-mail Firefox is unable to handle files with white space in the name. This is not the same as the white space file name truncation problem documented on this site (where file names with white space are truncated on saving.) The issue is that the browser will prompt to allow the file to be saved, but it will not prompt to open the file as an option. If I rename the file to remove white space then I do receive the "Open with..." dialog box. I verified that Firefox 2 did not have this problem and I can open attachments with white space in the file names just fine using that version of the browser (2.0.0.20).
    == This happened ==
    Every time Firefox opened
    == Upgraded to version 3

    When a user clicks on an attachment with spaces, the filename is truncated to the first whitespace. While IE, Chrome & Safari handle this, Firefox refuses to accept mime headers with unquoted filename parameters. According to Firefox's bugzilla/knowledgebase, Firefox's behavior is the correct behavior and it's a problem with most webservers or web applications. This problem can be easily corrected by surrounding the filename parameter with double quotes.
    Eg.
    Response.AddHeader("Content-Disposition", "attachment; filename=\"" + fileName + "\"");

  • How can I save a web page without creating a dozen or more tiny files, which is worse than Internet Explorer?

    When I try to save a Firefox web page, I get about a dozen tiny files with funny names cluttering up my documents folder, and making it hard to find anything. This reminds me of problems I used to have with Internet Explorer more than ten years ago. But at least, IE was kind enough to gather all of these files in a single folder, named "files". Firefox dumps them all into my documents folder. Messy.
    Years ago, I discovered Opera, which offered a file format that combined the original html code with the other files into one file: an internet archive, with the extension mht instead of htm. I used Opera for years, but recently became aware of the advantages of Firefox.
    A few days ago, I downloaded the latest version of Firefox, and installed it. I have been evaluating it ever since. It looks good; I have figured out (more or less) how bookmarks work, and I'm getting used to the taskbars.
    But when I try to save a page, I still get a deluge of tiny files cluttering up the target folder. Firefox doesn't save pages in archive form, but only in the old scattered form. Of course, I could simply save only the html. Maybe that's the best thing, but it loses a lot.
    The chaos of junky files cluttering up my target folder is enough to send me back to Opera, despite its limitations.

    This extension allows for web pages to saved on MHT format. <br />
    https://addons.mozilla.org/en-US/firefox/addon/8051

  • Load/download files with a MAC

    We have oracle iFs 9.0.1 Win 2000
    The users are using ftp and windows explorer to load and download the files with Windows and NT OS. Now we have a user with MAC.
    How can he load/download the files, I dont have any mac to test?

    hii, plz use this code ...
    theResponse.setContentType("application/download");
    theResponse.setHeader("Content-Disposition", "attachment; filename= \""+"StudentReport.pdf"+"\"");

  • I cannot download exe files. I have no trouble downloading files with other extensions (ex: dta).

    I have an HP Pavilion dm4-2070us computer running Windows 7.  I have the same problem with internet explorer and with Firefox.  The file seems to download but never finishes; it is not in my downloads folder. 

    Hello number1stat, try to temporarily disable your antivirus software and see if that helps, if it does not work then try the following.  This can occur if you have customized your Internet Options Security settings for the Internet zone, if the option, "Launching applications and unsafe files" is set to "Disable". Method 1: Reset your Security settings for the Internet zone to the default level. Go to "Control Panel -> Internet Options" (or use "Start -> Run -> inetcpl.cpl -> OK" to open "Internet Properties") then click the Security tab, select the Internet zone and click "Default level"  Method 2: Set a custom level for security in the Internet zone. Go to "Control Panel -> Internet Options -> Security (tab) -> Internet". If security is set to "High", or if you have customized the Internet zone settings, select "Custom level..." and change the single option, "Launching Applications and Unsafe Files" from 'Disable' to 'Prompt (recommended)'. If executable file downloads fail from certain sites but you are able to download exe files from other sites, check in "Internet Options -> Security - > Restricted sites -> Sites" to make sure that the problem site is not in the "Restricted sites" list, as the security level for that zone is High by default. Some Security software, including Spybot S&D, add known malware sites to that listing.

  • Problem downloading files with japanese names

    I'm having trouble with Safari and a group-ware used in our company.
    The group-ware is Cybozu, made in Japan, and now it is in version 6.
    Officially, the only supported browser is MS Internet Explorer versions
    5 and above (should be there something like that? I though it was
    supposed to support ANY browser since that's the MAJOR selling point
    for browser-based group-ware solutions...). And more: it seems that
    support for Macintosh is non-existent.
    Since the Panther upgrade, me and my colleagues can't download files
    whose names are in japanese and that are stored in or sent to us by the
    group-ware . We are working in a telecommunications company (here in
    Japan), but our team focuses on media and advertising, and so are the
    only ones having Macs (in an almost exclusively Windows environment).
    To add to the complexity, our target market is brazilians who live in Japan
    (trust me, there's a lot of them!). So our Macs have to deal also with
    the accentuated characters of the Brazilian Portuguese language, english
    AND japanese.
    In a way, the Mac is the ONLY successful solution to such an environment.
    Since administrative and other mundane tasks don't require dealing with
    multilingual files, the vast majority of the employees use Windows (nothing
    new there, eh?). The problem only starts to affect us when we request help
    to the System Administrators. I called on them about this problem but it
    seems that we are deep under in the priorities list.
    So I present the problem here:
    -When clicking in the link:
    •With Firefox, Netscape and Explorer, there is no problem.
    •With Safari, I am sent to the login window of the group-ware.
    -I figured out that the problem is with the way the URLs are presented.
    Let's say that the file I want to download is <a href="http://www.geocities.jp/claytonshima/Imagem1.gif>this</a>.
    • <a href="http://www.geocities.jp/claytonshima/Imagem2.gif>Here's a sample of a good URL (in Firefox, Netscape and Explorer).
    • http://www.geocities.jp/claytonshima/Imagem3.gif>And this is the URL in Safari.
    So it seems that the problem is the way that Safari handles the japanese
    characters in the URL.
    Any insights on this?
    Thanks in advance!
    Clayton Shima
    PS: Edited and included the link to the images because I couldn't figure out how to write in japanese here in these discussion boards.....

    Hi, thanks for the reply.
    The problems occurs when I click on the link AND when I copy/paste the URL.
    In fact, I realized that something wrong was happening to the way Safari
    handles the urls after I copied and pasted.
    We are using Tiger, but the problem started to appear when we upgraded to
    Panther. In Jaguar there were no problems - or is it the other way around?
    I can't remember, but put the older in this place and I guess you can figure it
    out, sorry!
    Doing what you suggested (turning text encoding to UTF-8) solves the
    problem of downloading, but when turning the encoding, all the text in the
    page gets weird and unreadable. Even so, clicking in the link downloads the
    file, but the file gets saved with its name all messed (the file name extension
    are OK though, the same as files which file names include roman alphabet
    letters preserve the integrity of such letters). This can be a temporary
    workaround, but to rename each downloaded file can get quite painful if
    downloading lots of files!
    I have already tried changing the system language between the three ones
    we most use (english, japanese and brazilian portuguese), with and without
    system restart, in all the possible text encoding combinations, with no avail.
    Is there the possibility that this is a Safri bug? Since the links to the files are
    generated by the server running the groupware, is it possible that the
    group-ware is the culprit? One could think that URL formatting is a pretty
    standard thing....
    ありがとうございます! <- japanese test in UTF-8

  • Problem with af:showPrintablePageBehavior and Internet Explorer

    Hi, I am using JDeveloper 11.1.2.1.0.
    I have a table with the iterators Range size = -1 and the tables AutoHeightRows and FetchSize set to estimatedRowCount.
    I have added a commandButton with af:showPrintablePageBehavior to the page.
    The table I am printing generates 4 pages in Firefox, Chrome and Safari. In Internet Explorer 8 and 9 I only get 1 page. (The metadata on the page also say page 1 of 1. )
    Unfortunately we have some customers that use Internet Explorer, so how do I make this work for them?
    All data is viewed at the printable page in IE, but when printed there is only 1 page.
    Regards,
    Thomas H.

    Hi,
    not sure this is an issue with the showPrintablePageBehavior if IE shows all data in the browser after using this behavior. The print functionality is owned by the browser and obviously it doesn't get to all of the page content (which I think is out of the ADF Faces scope). You may try and file a Service Request with customer support for them to have a look. However, if the showPrintablePageBehavior properly displays the data, then I am not sure what we can do to make the browser native print functionality working
    Frank

Maybe you are looking for

  • Session TimeOuts

    Hi again, Thanks for the response on my application model question. Here's another one : Is there a way to set a timeout on a query to a DBMS using the DBSession (or some other way) ? Or must I rely on a timeout setting in the DBMS ? Thanks. Christia

  • Authorized and Deauthorized

    I just installed iTunes on my work computer, cause I just can't work without my music. When I installed and try to play my music, iTunes states that I have 5 Authorized computers and that I need to deauthorized a computer to do this. I don't have tha

  • ERP Integrator

    Hi all, We have requirement to load data from oracle GL to Hyperion planning by using ERP integrator and ODI. We configured the source system in ERP integrator and ODI. When we try to Intialize the source system in ERP integrator,we are getting error

  • Watch movie on Ipad on tv

    I bought the adapter for the Lightening Plug to HDMI plug so we could watch movies downloaded onto my Ipad on my TV.  Got a message that says I can not do so.  What is happening here.  The movie was downloaded from Itunes and I bought it rather then

  • Duplex printing of multiple copies of single page

    I really like that the settings for printing are retained so you can leave it set to duplex rather than having to select it each time. Although I do get caught with not resetting the number of copies on occasion. I do a lot of printing and like to co