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.

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.

  • 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");
              >
              

  • 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. 

  • 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.

  • 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.

  • 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.

  • 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.

  • Are there Issues with poor performance with Maverick OS,

    Are there issues with slow and reduced performance with Mavericks OS

    check this
    http://apple.stackexchange.com/questions/126081/10-9-2-slows-down-processes
    or
    this:
    https://discussions.apple.com/message/25341556#25341556
    I am doing a lot of analyses with 10.9.2 on a late 2013 MBP, and these analyses generally last hours or days. I observed that Maverick is slowing them down considerably for some reasons after few hours of computations, making it impossible for me to work with this computer...

  • 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

  • Are people who are having prob with iTunes 8.2 & iPhone OS3.0 using Intego?

    I am wondering whether people who are having problems with iTunes and iPhone are using Intego's Netbarrier? I couldn't download OS3.0 until I turned off Banner and eventually the whole thing. Is this the cause of my problems? My iPhone is no longer recognized by iTunes 8.2.

    I want to withdraw this question as it unfairly associates many problems with this one company and application. The problems are not just related to this software. I apologize to Intego if this appeared accusatory.
    I have since found answers to all of the questions posed for the iPhone 3.0 update. Only one was related to Intego and its firewall.
    Thanks.

Maybe you are looking for

  • I cannot send emails from my bt mail account.

    I am unable to send emails from either my iphone or ipad. I have rebuilt the account on my ipad, i receive emails ok. The account works ok from my laptop. I have checked the account settings provided by BT and all appear ok.

  • Need explanation about Oracle documentation (DBMS_LOB.LOADCLOBFROMFILE)

    Hello World, I try to understand Oracle documentation about DBMS_LOB.LOADCLOBFROMFILE function. I am not shure the explanation is written in a very good english, but i can't understand a word !!! Is anybody could explain me in more simple sentences ?

  • Family Sharing Family Member Payments

    Is there any way family members inside the family sharing group can pay for their own purchases without it being charged to the organizer? All my family members are over 18 but some younger siblings are just a little over. My parents are not very tec

  • None of the available endpoints supports authentication methods user/pass

    Dear All i  create a destination in the ce7.1.but when i  test the destination in the ws navigator  ,but it cant not run ,  the error is: The destination [YHSendMessage02] supports the following authentication methods [User Name/Password (Basic)], bu

  • Error in ASKB "Asset 1-177 0 not in company code LX01'

    Hi Experts, Until Jan. 2009, only 1 depreciation area is activated for company code LX01 (01). For some assets, we had retirements/write-up postings. Came Feb. 2009, dep.area 10 was activated. With 2009 year-end closing AJAB, the process found an err