Jnlp cannot run on Safari for Windows

When accessing Java jnlp via the Windows version of Safari I get a dialog asking "save" the jnlp exec file or cancel. It should execute the exec-jnlp file.
On the Mac Safari version it works seamlessly.
Any ideas how to run jnlp on the Windows-Safari?

Someone posted the location in the forums, but I can't find it.
Checked Windows Explorer... try making a copy of the "en" file in the folder: C:\Documents and Settings\(username here)\Application Data\Apple Computer\Safari\Spelling
Next, edit the en file to add words you want. Not sure if you can add your own language files in that folder...

Similar Messages

  • Problem with ipad 2 safari cannot download the file for windows live photo gallery

    on ipad 2 safari cannot download the file for windows live photo gallery

    What you can download via Safari on the iPad is very limited - you can only download apps from the iTunes app store on your computer to sync to the iPad, or from the App Store app directly on the iPad

  • How to run greasemonkey in Safari for Windows

    How to run greasemonkey in Safari for Windows, trying to use this for work and I have scripts I use in FF 3.5 that I would need in safari.
    Safari 4.0
    Message was edited by: metalsiren

    bump

  • Safari for windows cannot open PDF files

    I'm posting this topic because it was archived in 2009 without a solution.
    When clicking a pdf link in Safari for windows (4.0.3) it opens a new window but does not show the pdf. The window remains blank with "canceled opening page" in the status bar.
    For me this hangup was caused by the environment variables TEMP and TMP being set to an inaccessible location.
    Basically, to open a pdf file Safari needs to safe it to a temporary location. Then Adobe reader can open it from that location. The location is set in the environment variables TEMP and TMP. For me they were set to "D:\Temp", however D was a CD drive hence the file could not be saved let alone opened.
    Solution: Go to Control Panel>System>Advanced tab>Environment Variables then check/change the user variables TEMP and TMP to something you are sure is accessible like "C:\Temp".
    If this solution works for you please write up a response. Good luck.

    There needs to be a way in Safari (or in Acrobat or Windows) to say "if you download a PDF file from Safari, launch Acrobat and open that file."
    I'm not on a Windows machine to check at the moment, but in the Mac version you can set in the Safari preferences an option to 'Open safe files after downloading'. I wouldn't be surprised if this were missing from the Windows version though due to the additional security implications this could have on Windows. There is no ability to configure different files types to be opened by specific applications from within Safari, unlike Firefox for example.
    You can however open files simply by double clicking the icon in the Downloads window that Safari pops up when a download occurs.
    ... how I tell Apple there needs to be an option to allow Safari to push streamed or downloaded file types to their correct creator application?
    On a Mac, Safari menu -> Report Bugs to Apple...
    On a Windows PC, Safari Help Menu -> Report Bugs to Apple... (I think)

  • Very poor implementation of XMLHttpRequest streaming with Safari for Window

    I hope this post reaches Apple engineers. This is critical for us to resolve this. I am a member of the developer network, so if using incident support is necessary, it can be used. Do not hesitate to contact me with any questions. I have implemented a test to compare XMLHttpRequest streaming performance for different browsers. Safari for Windows 5.0.3 had the worst results compared to Chrome and Firefox. Furthermore, I think this problem was introduced after Safari 3. The test consists of a server pushing messages of about 350 bytes to the browser at a rate of about 300/s. Once server pushes 10,000 messages, it closes the connection and browser opens new one repeating the cycle. There were several problems associated with Safari: 1) Safari could not process much more then 300 messages/s, that is quite low. Chrome had no problem processing 1,000. If, for example, 500 m/s was used, Safari would quickly allocate hundreds of meg of memory and crash. 2) Safari starts with about 64MEG of memory allocated. Once the test page is opened, memory quickly climes to 150MEG and as test progresses to >400MEG. Once the connection closes, it drops to 150MEG again. Chrome's memory did not fluctuate at all staying at 32MEG for the same test. 3) CPU was steadily claiming as test progressed and then dropped as connection was reset, creating CPU spikes. It reached about 50% CPU before connection was closed. Chrome's CPU stayed at about 2% all the time. This is the code: Server. Should be run with the latest Java Tomcat 7. Configure Tomcat to use Http11NioProtocol: package test; import java.io.IOException; import java.io.PrintWriter; import java.text.SimpleDateFormat; import java.util.Date; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.apache.catalina.comet.CometEvent; import org.apache.catalina.comet.CometProcessor; @SuppressWarnings("serial") public class WebFrameworkServletXHRReconnects extends HttpServlet implements CometProcessor { @Override public void event(CometEvent event) throws IOException, ServletException { HttpServletRequest request = event.getHttpServletRequest(); HttpServletResponse response = event.getHttpServletResponse(); if (event.getEventType() == CometEvent.EventType.BEGIN) { System.out.println("Begin for session: " + request.getSession(true).getId() + " " + response.getWriter()); response.setHeader("pragma", "no-cache,no-store"); response.setHeader("cache-control", "no-cache,no-store,max-age=0,max-stale=0"); event.setTimeout(Integer.MAX_VALUE); PrintWriter out = response.getWriter(); SimpleDateFormat formatter = new SimpleDateFormat("mm:ss: "); for (int i = 0; i < 10000; i++) { out.print("{\"messageType\":8448,\"requestId\":"0",\"eventType\":1,\"symbolId\" :[\"BAC.EA\",0],\"fields\":[{\"header\":"0",\"type\":6,\"data\":[3993,2]},{\"hea der\":"55",\"type\":6,\"data\":[1185,2]},{\"header\":54,\"type\":6,\"data\":[321 8,2]},{\"header\":"5",\"type\":6,\"data\":[6617,2]},{\"header\":52,\"type\":4,\" data\":[15]},{\"header\":"12",\"type\":6,\"data\":[1700,2]}]}"); out.flush(); if (i % 10 == 0) { try { //Thread.sleep(60); Thread.sleep(30); } catch (InterruptedException e) { } } if (i % 100 == 0) { System.out.println(formatter.format(new Date()) + i); } } out.close(); event.close(); } else if (event.getEventType() == CometEvent.EventType.ERROR) { event.close(); } else if (event.getEventType() == CometEvent.EventType.END) { event.close(); } } } client: <script type="text/javascript" src="log4js.js">
    </script>
    <script type="text/javascript">
    var api;
    var log = new Log(Log.DEBUG, Log.popupLogger);
    var byteoffset;
    var perocessedMessages;
    function connect() {
    perocessedMessages = 0;
    byteoffset = 0;
    id = 0;
    api = new XMLHttpRequest;
    api.onreadystatechange = onreadystatechange;
    api.onerror = onerror;
    log.debug('connect');
    api.open("GET", "http://localhost/Test/Controller", true);
    api.send("");
    function onreadystatechange() {
    switch (api.readyState) {
    case 3:
    change();
    break;
    case 4:
    disconnect();
    break;
    function change() {
    connected = true;
    var buffer = api.responseText;
    var newdata = buffer.substring(byteoffset);
    byteoffset = buffer.length;
    while (1) {
    var x = newdata.indexOf("<activ>");
    if (x != -1) {
    y = newdata.indexOf("</activ>", x);
    if (y != -1) {
    processMessage(newdata.substring((x + 7), y));
    newdata = newdata.substring(y + 8);
    else {
    break;
    else {
    break;
    byteoffset = buffer.length - newdata.length;
    function processMessage(msg) {
    var objJson = eval('(' + msg + ')');
    perocessedMessages++;
    //if (perocessedMessages % 100 == 0) {
    // log.debug('' + perocessedMessages);
    function disconnect() {
    log.debug('disconnect');
    connect();
    function onerror() {
    log.debug('onerror');
    </script>

    I hope this post reaches Apple engineers. This is critical for us to resolve this. I am a member of the developer network, so if using incident support is necessary, it can be used.
    We're a user-to-user forum, ilyag. So it'd be better for you to use the Apple Bug Reporter if you want to ensure someone from Apple sees your post:
    http://developer.apple.com/bugreporter/

  • Safari for Windows crashes when I try to import bookmarks

    Hi everybody!
    I'm trying to import my mozilla firefox bookmarks into Safari for windows 5.1.7... (running on Windows 7 Professional SP1)
    So I exported it from Firefox bookmarks menu, and then go to Safari > File > IMport Bookmarks
    Then error occurs: It opens a dialog box to choose the html file with the bookmarks wanted, and after a few mileseconds... it crashes!
    I receive this screen/dialog box:
    When i go to error console, to get the error message, i found this:
    Assinatura do problema:
      Nome do Evento de Problema:    APPCRASH
      Nome do Aplicativo:    Safari.exe
      Versão do Aplicativo:    5.34.57.2
      Carimbo de Data/Hora do Aplicativo:    4f982b5e
      Nome do Módulo de Falhas:    CoreGraphics.dll
      Versão do Módulo de Falhas:    1.87.0.0
      Carimbo de Data/Hora do Módulo de Falhas:    4f9739a0
      Código de Exceção:    40000015
      Deslocamento de Exceção:    0013a762
      Versão do sistema operacional:    6.1.7601.2.1.0.256.48
      Identificação da Localidade:    1046
      Informações Adicionais 1:    6771
      Informações Adicionais 2:    67715460e11cf4d8a3ceaf4d49ffdca1
      Informações Adicionais 3:    ab8e
      Informações Adicionais 4:    ab8ec1bd3e08be819760b14cdc014550
    Leia nossa declaração de privacidade online:
      http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0416
    Se a declaração de privacidade online não estiver disponível, leia nossa declaração de privacidade offline:
      C:\Windows\system32\pt-BR\erofflps.txt
    Anyone already pass throuhgt this error or know how i fix it?
    Thanks in advance.
    Paludo
    Natal-RN-Brazil

    Hi ..
    Apple has dropped support for Safari for Windows.
    Use IE or Chrome Browser
    Apple apparently kills Windows PC support in Safari

  • Safari for Windows 7 - Where can I get a safe download?

    I want to download Safari for my Windows 7 PC.  I cannot find 5.1.7 on the Apple website.  Is that the one that I should be looking for?  If so, where can I get a download of it that won't include a bunch of garbage.
    Or, if there is a version that I can download from Apple, which version should I choose? 
    A hyperlink would be greatly appreciated.

    Safari for Windows was discontinued a couple years ago.  By now it's outdated, not standards compliant, etc..  There's no reason why you should use it. 

  • Need Help with safari for Windows 8

    i am stuck with the need to have a pc due to a proprietary business software... I am a mac user and prefer to use safari... i just had to by a new pc and tried to download safari for windows 8.1 but cannot find it... any help out there?

    Apple hasn't supported Safari for Windows in quite a while (and even when they did, you wouldn't want it - total crap). IE 11 actually isn't bad, you can also try Chrome.

  • Is it possible to clear the entire Bookmarks list at one time in Safari for Windows?

    Hello. Is it possible to clear the entire Bookmarks list at one time in Safari for Windows? I would like to continue to use the Safari browser even though I have Windows 7 as the operating system on my notebook. When I try to delete bookmark entries one at a time, after deleting several, errors start popping up in the browser. Can I reinstall Safari without the Bookmarks I've built up? Please help a humbled Safari user.

    Are you sure that you can change the permissions of symlinks themselves? I think I've tried to make files read-only via symlinks on a local server but ended up using bindfs because it wasn't possible. Even if you can, symlinking everything that might be necessary for a given environment would not be ideal, plus I don't think symlinks can be used across different filesystems.
    If a real-life human can figure out if it's he/she is in a chroot and break out of it, then he/she can write a script to do the same. I want a sandbox that could run malicious code with no effect on the system (if that's possible). Also, I think if the chroot idea were truly feasible, makepkg would have been using it for years already to simply install packages in the chroot as you normally would and then package them. There would also be several sandbox applications that could run applications safely. So far I have yet to find any.
    I admit that I haven't looked into using a chroot in detail though and of course I may have missed some application which creates such a setup. Right now I think using per-application namespaces with fuse seems the most promising but I won't know until I've finished implementing a test application. If it turns out that it's a dead end I'll take harder look at chroot but it really doesn't seem to be able to do what I want.

  • How does one stop Safari for Windows from auto resetting itself?

    Safari for Windows running on XP Pro SP2 on a Dell Latitude D520
    gets its settings reset automatically somehow. Also, the saved
    userids/passwords randomly get "lost". These behaviors occur whether the
    system is left running (with Safari terminated) then Safari is
    started or when the the system is put in sleep mode (with Safari
    terminated) and Safari is started after waking the system or when
    the system is put into hibernate state (with Safari terminated) and then
    Safari is started when the system is woken from hibernation. The
    resetting and lost UIDs/PWDs is a random occurrence; it may, or may
    not, occur after any one of the three use cases described above.
    This behavior is becoming very annoying and will cause me to dump
    Safari for Windows as my patience wears thin.
    Any known solutions or suggestions will be greatly, and gratefully, appreciated.

    [[How to fix preferences that won't save]] may help

  • Language Problems With Safari For Windows

    Hello
    I am using SFW on Windows Vista Media Edition.
    I bought the whole thing in Spain.
    First my Windows XP Media Edition is in Spanish and I cannot find the way to change the language to English.
    The reason I mention that is because , having originally been using XP Media Edition, I have been using the very nice SFW for some three weeks.
    However when I downloaded the SFW software it installed in Spanish.
    Does anyone have the method (for a novice) of getting the whole thing to change to English please?

    Unfortunately, you cannot change the language for Windows Vista, because Spanish is the default language for the version on that computer you purchased. You should contact the vendor of your computer system and ask them to provide you with a U.S. or U.K. English version, since you were unaware that the installed version was in Spanish. If they will not do that, you'd need to buy a copy of Windows Vista Media Edition in English and install it over the version you already have.
    For Safari, you can change the language displayed, but keep in mind that Safari defaults upon installation to the default language of the OS. To change the default language for Safari, do this:
    1. Navigate to C:\Program Files\Safari and look in all the folders for .lproj files. These are language resource files and they are in more than one folder, so you have to check all of them to be sure you find everything.
    2. Remove all the language files or folders that aren't named "English.lproj"; (move them to a folder on your Desktop named so that you know where each group goes in case you have to put them back), then minimize or close the Find/Search window and try starting Safari to see if you have English again.
    Mulder

  • Safari: For Windows!?

    From Job's WWDC presentation:
    11:09AM - "There is one other thing we wanted to tell you
    about that we
    think you might like. Safari... it's been a wonderful
    success, there are now
    over 18m Safari users. It's climbed from 0 to 5% across the
    entire internet.
    If you look at the world of browsers, IE is about 78%, Ffx
    15%, Safari 5%,
    other 2% -- we would love for Safari's market share to grow
    substantially.
    But how are we gonna do that? Safari for Windows!"
    -Darrel

    SAN FRANCISCO - Apple Inc. launched a version of its Safari
    Web browser for Windows-based PCs on Monday, pitting it against
    Microsoft Corp.'s dominant Internet Explorer and Mozilla's Firefox.
    "What we've got here is the most innovative browser in the
    world and the most powerful browser in the world," Apple CEO Steve
    Jobs said during his keynote speech at the company's Worldwide
    Developers Conference.
    Safari, which was released a few years ago for Apple's
    Macintosh computers, has captured about 5 percent of the world's
    browser market share with more than 18 million users, Jobs said.
    Internet Explorer, which is built into Windows, has a 78
    percent share, while Firefox has rapidly climbed to gain about 15
    percent of the market, he said. Like the other Web browsers, Safari
    is available at no charge.
    Jobs claimed Safari performs twice as fast as its
    competitors.
    Never one to disappoint his audience, the iconic chief
    executive - in his final highlight of his 1 1/2 hour speech - said
    Apple's upcoming iPhone will run Safari.
    That means, Jobs said, that any application designed to run
    on the Safari browser for Macs also would be fully compatible with
    the iPhone - Apple's highly anticipated combination cell phone,
    iPod and wireless Web browser. The iPhone will be available in the
    U.S. on June 29.
    The move to make Safari available to non-Mac users is not
    unprecedented: Apple also makes its iPod media players and iTunes
    Store for Windows. The strategy is aimed in part at drawing more
    people to its Macintosh computers.
    It appears to be paying off. Mac sales have grown
    significantly over the past two years, pushing its slice of the PC
    market in the United States from 3.5 percent in 2004 to 4.9 percent
    in 2006, according to IDC, a market research company.
    "Safari is another Trojan horse that introduces an innovation
    of Apple to the Windows community and entices them to the Mac
    platform," said Tim Bajarin, an industry analyst at Creative
    Strategies, a technology consultancy.
    Publication date: 2007-06-11
    © 2007, YellowBrix, Inc.

  • Where is the buttion to download and install Safari for Windows 7?

    I have tried searching the site, but cannot find how to download Safari for Windows 7.

    Nowhere. Apple pulled it.
    (126021)

  • Dreamweaver CS3 + Safari for Windows problems

    Hello
    Well first off I would like to Thank Apple for making a Version of Safari that runs on Windows. As a web developer (using DW CS3 for Windows) I always had to upload a test webpage to a server, look at it on a Mac, and go back to Windows to make adjustments. Now I can do it all in Windows.
    I am having a problem with previewing a page on my local machine. When I preview in Safari it just opens my Safari Homepage. I have to preview in Firefox, copy the URL, and paste it into Safari to view my page in Safari.
    I don't know if this is a Dreamweaver issue or Safari issue. Any help at all would be great. Thank you.

    Thanks, Sarah.
    My post went out before I was finished. Then tried editing it, during which you replied. My reply to you was then lost, because I'm not allowed to edit... Sorry.
    I have been busy figuring out what Safari for Windows will and won't play back through tedious trial and error. It did leave me insecure as to the reliability of AE's output; hence my question. But with this news, I guess it makes more sense for me to just leave it, and hope Safari for Windows users will figure to get another browser, right? Or wait.. maybe I could put in a message that will show to those users...
    Thanks again & all best,
    Phil

  • Has anyone tried running Dragon NaturallySpeaking (for Windows) on Mac Mavericks?

    Has anyone tried running Dragon NaturallySpeaking (for Windows) on Mac Mavericks? I have finally given up on Dragon Dictate for Mac, which alas, after years of buying every new updated version, is still exceedingly buggy and does not begin to compare in quality to the PC version. I love my Mac, and don't like my PC at all, but the third-party  voice  dictation software for Mac is so pathetic, that I have wound up dictating on my PC, and then sending it to my Mac: an truly annoying and Baroque process. I was able to train over 120 words in Sanskrit word perfect on Dragon NaturallySpeaking, but on Dragon Dictate for Mac, I can't even get it to train my name. I know this is not an Apple problem, but I'm trying to find a way around by possibly running the DNS version on Windows on my iMac.
    I have a hand disability, so I really do need to use voice dictation, both for dictating and navigating on my computer.
    If anyone is doing this, are you using Boot Camp, VM fusion, or Parallels? How well does it work? Has anyone discovered anything else I ought to be considering, before giving this a try? I had tried running this on an old on 2008 iMac (with much less power), using Parallels, but it was incredibly slow. Now that I have a much more powerful iMac, I'm wondering whether it would be worth another try. As it will be quite an investment to purchase all this third-party software to get Dragon up and running, I was hoping to get a sense of how well it works, before plunking down the cash. I would be extremely grateful for helpful feedback.
    IMac, Mavericks OS X 10.9.4, 3.5 GHz Intel core i 7, 8 GB 1600 MHz DD3, Dragon NaturallySpeaking 12, Dragon Dictate 4.0.2

    You cannot run a Windows application on a Mac unless you run Windows on the Mac.
    Windows on Intel Macs
    There are presently several alternatives for running Windows on Intel Macs.
         1. Install the Apple Boot Camp software.  Purchase Windows
             XP w/Service Pak2, Vista, or Windows 7.  For Boot Camp
             4.0 and above you can only use Windows 7 or later. Follow
             instructions in the Boot Camp documentation on
             installation of Boot Camp, creating Driver CD, and
             installing Windows.  Boot Camp enables you to boot the
             computer into OS X or Windows.
         2. Parallels Desktop for Mac and Windows XP, Vista Business,
             Vista Ultimate, or Windows 7.  Parallels is software
             virtualization that enables running Windows concurrently
             with OS X.
         3. VM Fusion and Windows XP, Vista Business, Vista Ultimate,
             or Windows 7.  VM Fusion is software virtualization that
             enables running Windows concurrently with OS X.
         4. CrossOver which enables running many Windows
             applications without having to install Windows.  The
             Windows applications can run concurrently with OS X.
         5. VirtualBox is an Open Source freeware virtual machine such
             as VM Fusion and Parallels that was developed by Solaris.
             It is not as fully developed for the Mac as Parallels and VM
             Fusion.
    Note that VirtualBox, Parallels, and VM Fusion can also run other operating systems such as Linux, Unix, OS/2, Solaris, etc.  There are performance differences between dual-boot systems and virtualization.  The latter tend to be a little slower (not much) and do not provide the video performance of the dual-boot system. See MacTech Labs- Virtualization Benchmarks, January 2013 | MacTech for comparisons of Boot Camp, Parallels, and VM Fusion. Benchmarks of all of the above except Crossover can be found in Benchmarking Parallels, Fusion, and VirtualBox Against Boot Camp - The Mac Observer. Boot Camp is only available with Leopard or later. Except for Crossover and a couple of similar alternatives like DarWine you must have a valid installer disc for Windows.
    You must also have an internal optical drive for installing Windows. Windows cannot be installed from an external optical drive.

Maybe you are looking for

  • Shuffle shows in explorer, works on iBook, not in iTunes on XP

    My wife has a shuffle, my iPod photo works/updates etc. on the PC, the shuffle shows up fine in Explorer and I can browse it. I also plugged it into my iBook, shows up fine there too and says it's linked to the other computer and shows it as formatte

  • Ref No & Chapter ID

    Hi I have defined items batch wise , i want tariff & Supplier ref no  automatically should come row wise  when in goods receipt po i enter items batch wise. These things are required in Create Batches form. Can anybody help me with the solution Thank

  • My account is blocked now how to contact customer ...

    How to contact customer care when your accont is blocked.plz reply how to resolve the issue .

  • How to open Photoshop files as layers in an open Illustrator file?

    Hi there, Sorry if this is a stupid question, but right now I'm working with both Photoshop and Illustrator CS6 on a mac. I'm creating a graphic. The background is a (cartoonish) mouth and I finished it a couple of days ago. (It's an Illustrator file

  • General error won't open

    for a few months now, i've had a problem that, every week or so, won't allow me to save. I've since gotten over it (i never found a solution) by exporting it to a quicktime file every time it happens, so i can re-import the changes i've made that day