We are having issues with WLS 5.1   pdf   SSL

We are running IE 5.0 and above browser with our application and the server is Weblogic 5.1 We are having issues with a generated pdf being sent down from the server using the response outputStream in an SSL connection. We tried setting the content type before getting the outputstream. IE comes back with a dialog for download. When we select either of the options IE comes back with "Unable to download <url> from <server>. We are using WLS 5.1 service pack 6. Any help will be greatly appreciated
          

          I tried this option, but did not help. We have two weblogic servers on different
          machines. One works fine in downloading pdf file over https, but not the other.
          The error we are getting after selecting it to save it to a file:
          IE cannot download xx.pdf from www.xxx.com
          From the link, when we say "save target as", we get different error as:
          This file could not be written to cache.
          Someone suggested to pass "pragma: public" or "pragama: no-cache" in the header.
          But we are just simply serving it as a file, neither from servlet nor from jsp.
          So I suspect it something to do with our weblogic proxy or security configuration.
          Any ideas/help is much appreciated.
          Thanks
          Jayashree Raghavan <[email protected]> wrote:
          >If you ever have a similar problem it might help to check in browser
          >settings.
          >In IE goto tools/internet options/
          >Goto advanced Tab
          >go down to Security.
          >Uncheck the "donot save encrypted pages to disk".
          >This will make downloading a pdf work in ssl.
          >
          >
          >Jayashree Raghavan wrote:
          >
          >> We resolved this problem thanks to Maxim, by commenting out the code
          >that sends to the browser not to cache these pdf files. response.setHeader("Pragma",
          >"no-cache");
          >
          

Similar Messages

  • Hi people, have on the phone till Apple, the reason i cant download OS X Lion is because BT are having issues with the large download & are working on a fix. Was told to phone back in 24 hours if problem continues

    Hi people, have on the phone till Apple, the reason i cant download OS X Lion is because BT are having issues with the large download & are working on a fix. Was told to phone back in 24 hours if problem continues

    Hi, just got off the phone from BT Business. It is the Business 2wire hub that has the issue. The girl from technical talked through a direct modem to Mac connection and my download took 20 minutes. If you are on Fibre broadband this is the only current fix or a new router if non fibre customer. Hope that helps.

  • IF YOU ARE HAVING ISSUES WITH THE DROID TURBO BEING SLOW

    IF YOU ARE HAVING ISSUES WITH THE DROID TURBO BEING SLOW ON WIFI JUST TURN OFF GLOBAL MODE!! DONT ASK ME WHY THIS WORKS BUT IT DOES.  I TOOK MY FIRST PHONE BACK TO THE STORE BECAUSE I THOUGHT IT WAS DEFECTIVE BUT THEN MY REPLACEMENT DID THE SAME THING.  GLOBAL MODE IS WHAT THE PHONE IS SET TO USE OUT OF THE BOX.  I SWITCHED IT TO LTE/CDMA AND NOW IT WORKS FLAWLESSLY.  AWESOME

    I'm glad you had luck with this.  I have the same issue, and i've replaced the droid turbo 4 times.  I've tried it on 4 or 5 different wifi networks and it doesn't give me any type of speed at all. 

  • MPS 200 with J 4.6. We are having issues with encryption and unable to install latest, J 4.7.2

    We have an MPS 200 with J 4.6. We are having issues with encryption and the tech assigned to our TAC case informed us that version J 4.7.2 would resolve the issue per release notes (confirmed). Unfortunately we have been unable to install latest, J 4.7.2. Every time we select the 4000j472.tar.gz file, the MPS displays software upgrade failed. We have used IE 8, 9 and 11 and have opened them up as much as possible, still no joy. We have unzipped the file, but do not know which file to select for the install.
    Would appreciate any assist.

    As the others have suggested - download the file again - and check that the MD5 Checksum (with something like WinMD5) of what you have downloaded matches what it should be (for J4.7.2 is b328946e6ca24f181c937d90d8e5cc12).  Then upload the .tar.gz file as downloaded (wihtout extracting it).
    Wayne
    Please remember to rate responses and to mark your question as answered if appropriate.

  • After upgrading from Prosight V6 to V7.5 we are having issue with API's

    Team,
    Current version 6 of prosight upgraded to version 7.5. We are having our external webservice consumes Prosight webservice which defaulted installed under ProsightWS virtual directory. After up gradation we are running into issue in external application ,application unable to communicate to Prosight new version webservices. Fails in the time of calling in Login method itself in the psPortfoliossecturiy service.
    Exception as follows:
    “System.Web.Services.Protocols.SoapException: Could not create Security Token for specified User and Password at ProSight.Portfolios.WebServices.WS.psPortfoliosSecuritySOAP.Login(String sUser, String sPassword, Int32 lTimeOut) “
    Our web application uses a dedicated user account to interact with Prosight webservice and it runs under windows authentication. Application build on ASP.NET 2.0 and later.
    The sad part here is , our web application running perfectly with Prosight v6. :( I would appreciate if anyone could help us to resolve this issue. This is blocking our up gradation from 6 to higher version of prosight.
    Thanks for your valuable time
    Regards,
    Jithesh

    Here is the offical documentation from version 8.0 on the backward-compatability of the APIs. This document comes the version 8 installer. Not sure this helps you with the 7.5 issues, but hoping it will help:
    Considerations for applications using the PPM Open API via COM
    Applications which use the Primavera Portfolio Management (PPM) Open API via any interface (COM, SOAP/RCP or Document/Literal) and were developed and used with previous versions of PPM will continue to operate without the need for recompilation, as Primavera Portfolio Management 8.0 provides full binary backwards compatibility for all of the Open API interfaces. New functionality is available only to applications that are written to take advantage of such functionality.
    Note however that any process can only load and use one version of the Microsoft .NET Framework. Therefore, applications developed with the .NET Framework 1.1 cannot use APIs to communicate with software developed using the .NET Framework 2.0 if this would cause the same process to need to load both versions of the .NET Framework.
    This means that if any part of an application that uses the Open API which was developed using .NET Framework 1.1 communicates directly with PPM using the COM API (which is in-process), that part of the application would need to be recompiled to target the .NET Framework 2.0. If on the other hand, the application developed using .NET Framework 1.1, only communicates with PPM using SOAP RPC or Web Services (which are out-of-process) then there is no issue.
    Instead of recompiling, it is usually sufficient to ”force” the existing executables to actually use the .NET Framework 2.0 instead of the native version of the .NET Framework for which they were compiled (1.1). This can be achieved by using an application config file with the following content:
    <?xml version ="1.0"?>
    <configuration>
    <startup>
    <supportedRuntime version="v2.0.50727" />
    </startup>
    </configuration>
    The application config file can easily be created using Notepad or something similar. It does not need to be compiled in any way. It should be named with the exact same name as the executable file plus the suffix “.config”. For example: if the application executable file is called “Tester1.exe” then the config file must be named “Tester1.exe.config”. It must be placed in the same directory as the executable file.
    The config file “forces” the application to use the .NET Framework 2.0, which would mean that even when using COM (in-process) Open API calls to PPM, there would still be only one version of the .NET Framework involved in the process (.NET 2.0).
    ----------------------------------------------------------------------------------------

  • Please report if you are having issues with your ATV

    http://www.apple.com/feedback/appletv.html
    iTunes 9 created a streaming issue for me.

    ...it blows my theory that they maybe changed something with later builds.
    Not necessarily. In my case, I think there are both hardware and software problems. I think stability issues like random restarts may be related to hardware, and I think the erratic wi-fi problems some people experience may be the result of bad hardware. On the other hand, the stability issues that almost always follow long streaming sessions may be related to memory/cache management issues, which may indicate software.
    Streaming high bit-rate audio from a radio playlist seems to be particularly problematic for my ATV. It could be a hardware limitation problem, or it could be that the software can't manage such a data stream reliably for an extended period of time.
    For example, if you stream a two-hour movie, the stream data will be cached ahead until all of the video data has been received, then the caching stops as the movie plays from the cache. However, a continuous live stream will never stop caching, and I think that's where the problem may be. Keep in mind that Internet radio wasn't possible until the v2 software, and that's when I began experiencing stability issues related to streaming.

  • Users are having issues w/ the community page for pa.

    It seems other users are having issues with accessing the community page for pa, as noted on
    URL: http://www.dslreports.com/forum/r22862991-Any-else-out-there-having-issues-w-the-community-page-4-pa
    Title/Location: DSLR (dslreports.com) Forums -> US Telco Support -> Verizon -> Verizon Fiber Optics -> Any else out there having issues w/ the community page 4 pa?
    If you are the original poster (OP) and your issue is solved, please remember to click the "Solution?" button so that others can more easily find it. If anyone has been helpful to you, please show your appreciation by clicking the "Kudos" button.

    This is what I told at the online chat..
    Richardo: if some people can get to both URLs and others can only get to the new one that could be that the old one is being done away with or if not that then it would have to be the setting for those computers that are not getting to the old one.
    Me: Like what kind of settings?
    Me: I have, as you may know, A Static Public IP (IP, Subnet Mask, Default Gateway, and DNS Servers) as assigned by Verizon.
    Richardo: that would be the settings within the browser.
    Me: like cache, or proxy server for example... ?
    Me: connection setting
    Me: You do not need to tell me where these settings are, just what type of browser settings...
    Me: Please, and thanks.
    Richardo: the security , cookies, temporary internet files
    [EDIT] My appolgies for Cross posting.
    If you are the original poster (OP) and your issue is solved, please remember to click the "Solution?" button so that others can more easily find it. If anyone has been helpful to you, please show your appreciation by clicking the "Kudos" button.

  • If you are having issues installing the new Win 7 PCI/PCIe driver.

    If you have a problem with updating to the new Win 7 driver, you may need to do a virgin re-install.
    Uninstall PatchMix and the drivers from the uninstaller, or from add/remove programs.
    Power down and remove the PCI card.
    Boot up and let windows do it's own clean up.
    Power down and re-insert the PCI card.
    Cancel windows hardware wizard if it pops up, (and it should), then install the most recent PatchMix and beta driver updates.
    You may need to load a new factory template in PatchMix, and then rebuild any custom session templates you had.

    Now, do you have to disconnect your printer everytime that you want to use it? If so, this is just a temporary fix and that's not something that you should have to do with regularity.
    It's GLARING, the amount of people who are having issues with this software. Is APPLE listening to its customers? I'm to the point where I'm about to NOT recommend an I-Pod to anyone that asks. If they do, that's what I'm recommending. I'll also steer them to this website so that they can see with their own eyes, the problems that everyone is having.
    This is totally ridiculous. I've been trying for THREE weeks to get my POS I-Pod Shuffle to download songs through I-Tunes 7.0. It's clear to me that these designers of this software haven't got a clue.
    Sorry for the rant but I've had it with this junk.

  • Having issues with localStorage

    Hi Guys,
    Apparently we are having issues with returning saved data from localStorage. Currently, we are able to store some data in the localStorage.
    However, when we close out of the DPS app and restart it, localStorage seems not to be loading the saved data/entires.
    We currently have the onAppear event in our code, to trigger storing and loading of localStorage data... maybe this event is causing some sort of issue with localStorage? Any suggestions?
    Does anyone know which events are currently working with localStorage without issues?
    It would be great if someone could provide a small working localStorage snippet as an example, this would really help us.
    Many thanks!
    Juan

    You can also use Dropbox. 2GB free. Put files in the Public folder and you can send them links of the files instead.
    You can use my referral link http://db.tt/MXNpy62 to create an account.

  • If you are facing issues with AutoVue after upgrading Java

    Oracle periodically releases security updates (CPU see Oracle Critical Patch Update - July 2014 for latest)  for all its software, Java is no exception to it.
    At every CPU, the AutoVue team monitors the impact and documents the steps required to have AutoVue working properly with your integrations
    For your reference, we attach the latest KM note here.  It is a highly recommended reading for customers using AutoVue Client/Server Deployment.
    KM Note 1615032.1 - AutoVue Client Usage with Java 7u51
    (https://support.oracle.com/epmos/faces/DocumentDisplay?id=1615032.1)
    Feel free to post any questions through this Community thread.

    Now, do you have to disconnect your printer everytime that you want to use it? If so, this is just a temporary fix and that's not something that you should have to do with regularity.
    It's GLARING, the amount of people who are having issues with this software. Is APPLE listening to its customers? I'm to the point where I'm about to NOT recommend an I-Pod to anyone that asks. If they do, that's what I'm recommending. I'll also steer them to this website so that they can see with their own eyes, the problems that everyone is having.
    This is totally ridiculous. I've been trying for THREE weeks to get my POS I-Pod Shuffle to download songs through I-Tunes 7.0. It's clear to me that these designers of this software haven't got a clue.
    Sorry for the rant but I've had it with this junk.

  • FIXED!!!! Please read if you are having issues!!

    My husband bought me a new Ipod Video in September and after upgrading to Itunes 7 I have had nothing but problems and issues. I was so close to selling the Ipod and buying a Zune.
    My IPOD wasn't being recognized by Itunes and when it was being recognized it needed to be restored or was corrupt. I tried everything on this discussion board and was on my last effort when my husband called Itunes support. The problem was my printer that is also connected with a USB port. Once I disconnected the printer - the Ipod worked!!! So if you are having issues try disconnecting everything else that is connected to your computer through a USB cable!
    I can't believe it was something so SIMPLE!!!
    Happy Holidays and Best of Luck!

    Now, do you have to disconnect your printer everytime that you want to use it? If so, this is just a temporary fix and that's not something that you should have to do with regularity.
    It's GLARING, the amount of people who are having issues with this software. Is APPLE listening to its customers? I'm to the point where I'm about to NOT recommend an I-Pod to anyone that asks. If they do, that's what I'm recommending. I'll also steer them to this website so that they can see with their own eyes, the problems that everyone is having.
    This is totally ridiculous. I've been trying for THREE weeks to get my POS I-Pod Shuffle to download songs through I-Tunes 7.0. It's clear to me that these designers of this software haven't got a clue.
    Sorry for the rant but I've had it with this junk.

  • Is anyone else having issues with "skipping" while the songs are playing?! It is very aggravating to us... and we've had it going on for several months now.  Any ideas at all how to fix it?

    Is anyone else having issues with "skipping" while the songs are playing?! It is very aggravating to us... and we've had it going on for several months now.  Any ideas at all how to fix it?

    So, don't use youtube.
    http://www.the-top-tens.com/lists/best-alternatives-youtube.asp
    http://www.youtubealternative.com/

  • I cant find my pdf/ibooks on computer after backing up my iPad (they are on my iPad).   Also, I'm having issues with my Ipad turning off about every 2 minutes so I want to restore it.  Dont want to lose my files from my iPad.

    Actually I have 2 problems:  I cant find my pdf/ibooks on computer after backing up my iPad (they are on my iPad).  I looked under Ipad, I Books, PDFs, and it doesn't show them on the computer. How do I manually transfer these files?
    Also, I'm having issues with my Ipad turning off about every 2 minutes, and I want to restore it.  I want to make sure all of the files are backed up before I restore.  My trouble started when I was trying to update my IPad but it was taking too long (internet was scetchy) so I powered off...now Im having problems.  I haven't tried to update again since this problem. Any suggestions?  Should I restore? Should I update to 7.0.6?  (currently 7.0.3).
    Thanks,

    Try here:
    iTunes Store: Transferring purchases from your iOS device or iPod to a computer

  • Several of us have a iPhone 6s and are having trouble with hearing and speaking at the same time when using the phone. ? The speakers seem to be too far apart? Are others having this issue? Solutions?

    Several of us have a iPhone 6plus and are having trouble with hearing and speaking at the same time when using the phone. ? The speakers seem to be too far apart? Are others having this issue? Solutions?

    Not having the problem, don't personally know anyone who is.

  • Having issues with my MacBook. Even when the internet is disconnected, apps are still closing and opening on their own. I sometimes do not have control over my cursor.....any suggestions?

    Having issues with my MacBook. Even when the internet is disconnected, apps are still closing and opening on their own. I sometimes do not have control over my cursor.....any suggestions?

    There are several possible causes for this issue. Please take each of the following steps that you haven't already tried until it's resolved. Some may not be apply in your case.
    1. Follow the instructions in this support article, and also this one, if applicable. A damaged or defective AC adapter could be the cause, even if it's the right kind.
    2. Open the Bluetooth preference pane in System Preferences and delete all pointing devices other than the trackpad, if applicable. Disconnect any USB pointing devices. By a "pointing device," I mean a peripheral that moves the cursor, such as a trackpad, mouse, trackball, or graphics tablet. A plain keyboard is not a pointing device.
    3. Start up in safe mode and test, preferably without launching any third-party applications. If you don't have the problem in safe mode, but it comes back when you restart as usual, stop here and post your results. Do the same if you can't start in safe mode. If there was no difference in safe mode, go on to the next step.
    4. Reset the System Management Controller.
    5. If you're using a Bluetooth trackpad, investigate potential sources of interference, including USB 3 devices.
    6. A swollen battery in a portable computer can impinge on the trackpad from below and cause erratic behavior. If you have trouble clicking the trackpad, this is likely the reason. The battery must be replaced without delay.
    7. Press down all four corners of the trackpad at once and release. If there's any effect, it's likely to be temporary, and the unit needs to be serviced or replaced.
    8. There's a report that a (possibly defective) Thunderbolt Ethernet adapter can cause the built-in trackpad of a MacBook to  behave erratically. If you're using such an adapter, disconnect it and test.
    9. There's also a report of erratic cursor movements caused by an external display that was connected but not turned on.
    10. If none of the above applies, or if you have another reason to think that your computer is being remotely controlled, remove it from the network by turning off Wi-Fi (or your Wi-Fi access point), disconnecting from a Bluetooth network link, and unplugging the Ethernet cable or USB modem, whichever is applicable. If the cursor movements stop at once, you should suspect an intrusion.
    11. Make a "Genius" appointment at an Apple Store to have the machine and/or external trackpad tested.

Maybe you are looking for

  • WEB WIDGET - HTML SNIPPET  how to post myspace music in iWeb

    i'm making a site for a band. i'm using the *web widget- html snippet* to insert the myspace player from a band. the bands site is http://www.myspace.com/mod39lone. this is the code i'm putting in : <embed src="http://lads.myspace.com/music/musicplay

  • In bdc how we handle tabstrips...& tablecontrols

    hi gurus,             in bdc how we can handle tabstrips and table controls.... pls any one suggest .. regards, praveen

  • Step E2E RFC Details

    Dear Experts, I am configuring the managed system on SOLMAN_SETUP transaction and in the step - Configure Diagnostics, I got this error message: The definition of the READ RFC to the managed system could not be found. Please make sure to run the RFC

  • Pictures are saved in different format in Photostream

    I have not been using iCloud Photostream but I decided to do so for my iPhone 4S and iPad 2.. So, I turned photostream on for my iPhone and transferred about 300 files to my Macbook-doing so automatically transferred them to my iCloud Photostream. Ho

  • Crashes when scrolling through the albums (iOS 5)

    Hi all, I have an ipod touch 3 gen with the new iOS 5, and every time I turn it sideways to scroll through the albums, fast, it just crashes and restarts... Anybody else having the same issue? It's like the iOS is to taxting for the ipod. Also when l