SDN access with Safari For Windows?

All,
Am just playing around with the Safari browser and when I try to access SDN using the same, I get a pop up stating, "to view this page you need to log into WebURLProtectionSpace Proxy HTTPS proxy server www.sdn.sap.com:443"
Has anyone tried accessing SDN using the new Apple Safari for Windows browser?
Any clues on what the user id and password needs to be here.
I have already tried,
1. My SDN user id and password.
2. My Proxy server's user id and password.
Also read up on the net that https sites seem to have an issue with Safari. Just wanted to know if anyone has tried this though.
Regards
Bhavesh

Thought so as well .
But just wanted to know if anyone has tried this as well.
Regards
Bhavesh
PS : Wanted to post this question on Suggestions and Comments but posted it on the Coffee Corner by Mistake and so cannot award points. Apologies.

Similar Messages

  • Is there any diffence in rendering websites with safari for windows and safari for mac os, or are both equal?

    Is there any diffence in rendering websites with safari for windows and safari for mac os, or are both equal?
    So is it necessary to buy a mac to guarantee that a website acts like it should, or is the Safari for Windows enough?

    So is it necessary to buy a mac to guarantee that a website acts like it should, or is the Safari for Windows enough?
    Pages render the same for Mac and Windows in Safari.

  • Does the Citrix ICA client work with Safari for Windows XP?

    I really like safari for XP so far. However, I use the Citrix ICA client software to remotely access programs from a server at work. I tried following instructions on the Citrix knowledge base site for installing the client for Firefox, etc. since they did not have any info on Safari for windows. Please help, or I will be stuck using Explorer. Thanks.

    The Citrix ICA client doesn't work with Safari on a Mac. Given the number of bugs and other problems with the Safari 3 Beta for Windows, I'd guess that the chances of Citrix working with this release are slim to none. However, the Citrix ICA client works well with Firefox 2.0, in case you're interested in trying it.

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

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

  • Flash Video Encoder conflict with Safari for Windows

    I installed Safari for Windows (AMD/Windows XP) without the
    options (no Bonjour) and found that it disabled Adobe Flash Video
    Encoder (tries to reinstall, can't find msi, can't reinstall from
    disk, 1 keeps asking for disk 1). Uninstalled Quicktime, didn't
    help. Uninstalled Safari, rebooted, still can't get Flash Encoder
    working.

    timtro;
    Many (myself included)won't be installing safari/win until
    the final
    release, and I suspect Adobe won't test much until then
    either, so it's
    probably best to report this to apple as a possible bug with
    their
    beta. -Tom Unger

  • 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

  • Windows media player with safari for windows

    Hi everyone
    just a little problem of mine...
    safari seems unable to detect windows media player. I get a message about 'content of MIME type application/x-mplayer2' when I safari tries to use media player. I tried installing the plugin on this page http://www.apple.com/safari/download/plugins.html which didn't seem to work. I don't know if this is a mistake but the file name suggests the plugin is for firefox...
    i have also tried installing quicktime and realplayer with no effect
    help appreciated; thank you in advance!

    Hi on_safari,
    I don't know if this is a mistake but the file name suggests the plugin is for firefox...
    Safari and Firefox (and other browsers) use the same interface for handling plug-ins so Safari should be able to use it nonetheless.
    I tried installing the plugin on this page http://www.apple.com/safari/download/plugins.html which didn't seem to work.
    Can you describe in more detail what you mean? What did you try and what happened? Were any error messages generated?

  • Print as pdf in safari for windows

    When I print an article from the web as a pdf file with safari for windows, the PC creates by default a non-text file that I have to convert into a text file in order to access/highlight etc. the text. Both with Safari for Mac and with IE I directly get a text pdf. What can I do to make Safari for Windows to do the same thing by default?
    Thanks for any help!

    It sounds like you're confused. Windows has no built-in capability to create anything as a PDF file, so I don't see how you would get one unless you had Acrobat Pro installed.
    If you want to be able to save web pages as PDF files, you need to install a PDF writer in your system, which would let you do that via any web browser. You can download a free PDF driver here: CIB PDF Brewer.
    Mulder

  • Uploading files to website not working with Safari in Windows 7

    Safari version: 5.1.7
    OS: Windows 7
    Hi,
    I am a website owner, and I have a feature on my site where users can upload large (up to 50MB) music files to my server. The feature works in Firefox on OSX & Windows platforms and it also works in Safari on OSX. The uploading feature is not working with Safari for Windows. Do you have any idea why and how to fix this? It can't be an issue with my server as it works in other browsers fine and works fine in Safari for OS X.
    If you have any information on how to solve this or things for me to try to rectify this for use with Windows operating system it would be much appreciated.
    Thanks.

    GREAT NEWS!!!!
    I have solved this issue myself with some help from my a user on Microsoft Forums. The issue stems from the mime type of each Browser Chrome, IE, & Safari for Windows defaults as audio/wav. When the mime type is changed to audio/x-wav everything works. Firefox defaults to audio/x-wav and when changed to audio/wav it DOES NOT work.
    Once I input some code in my .php upload page to change the mimetype if audio/wav is detected everything works GREAT!!!
    So Here is what you need to do: Find your upload page and input this code:
    echo "<p>MIME Type: ".$_FILES["file"]["type"]."</p>";   
    right before your "If/then" statement of file type. For me it was near line 30 in my upload.php page, but I'm sure this is different for everyone.
    This will detect and DISPLAY the default mime type of your browser on the error page when your upload doesn't work. Once you know what mime type works for your file type then you can change your "if/then" statement for mime type upload to change your mime type to the correct one.
    I don't want to give the code here, because I'm sure it's specific to your file types and your site construction, but this should lead you on the right track.
    ***This is the solution if you ARE NOT ABLE to upload any certain file in a certain Browser. It has to do with mime type construction***
    I hope this helps others like it helped me!!!!!

  • Opening Safari for Mac Web Archives in Safari for Windows???

    I need to open Safari for Mac Web Archives (saved html web pages on a Mac) on my Windows PC at work. Does anyone know how I can accomplish this? The original Web Pages are no longer available and the data in the Archives is the only set left.
    I've tried opening the files with Safari for Windows but that doesn't work. I've also tried renaming the web archives from file.webarchive to file.html and that doesn't work either.
    Does anyone out there have any suggestions for accomplishing this task??? Thanks in advance for your help!
    YV

    If you can move your archives to a Mac I think you can convert them to folders with Webarchive Folderizer and then move back to your pc:
    http://www.versiontracker.com/dyn/moreinfo/macosx/29095

  • Is there a way to get iCloud tabs to sync between my iPod touch and Safari for Windows?

    I would like to know if there is a setting or something that I'm missing over...
    I already have iTunes and the iCloud Control Panel on my Windows 8 computer.  Is the iCloud Tab feature Mac-only or can I get it to sync with Safari for Windows?  Thanks for the help.

    OS X Lion and Windows 7 users can still sync Bookmarks and the Reading List with iOS devices via iCloud when using Safari 5.1. The iCloud Control Panel 2.1 for Windows also supports syncing Bookmarks with Internet Explorer 9, but not the Reading List as IE simply doesn’t have an equivalent feature.
    While not as seamless as the iCloud Tabs feature, Bookmarks and Reading List can still be an effective way to share pages between your Windows 7 PC and your iOS devices; if you’re using Safari on Windows, the Reading List is best for storing and sharing one-time content while Bookmarks obviously are better suited for keeping track of pages that you may want to refer back to more than once.
    Found In: http://www.ilounge.com/index.php/articles/comments/icloud-tabs-bookmarks-and-rea ding-list-on-windows-7/
    According to this, I think you can.

  • Trouble with PDF files in Safari for Windows

    I downloaded Safari for Windows at work on my XP machine because I much prefer the Safari interface. The problem that I am having is that one of the web-based programs that I use at work does reports in PDF format and when I click on the link for a report Safari is popping up a window that says the document doesn't exist. Of course, the document does exist and my Internet Explorer and Safari for Mac that I have at home both view these reports with no problems through Safari. I have the most up to date version of Adobe Reader 8, and when I check the installed plugins through the help menu on Safari it shows that the Adobe plugin is installed. So, I have no clue how to get this to work, but if I can't get it fixed soon I'm gonna have to switch back to Internet Explorer (which I don't want to do). Can anyone help???

    Try to uninstall and after that install Acrobat Reader 8 again.

  • Safari for Windows will not log into IIS sites with Windows Authentication

    Safari for Windows will not log into IIS sites with Windows Authentication enabled. The IIS log has thousands of login attempts from Safari that result in 401 errors.
    I disable Windows Authentication on IIS and it works fine. The problem with that is that my Windows clients stop working properly with seemless logins when I disable this.
    The expected behavior is that Safari will work with basic authentication when NTLM does not work. That would result in a password prompt followed by a successful login instead of Safari stopping at "Loading" while hammering the IIS logs.
    It does this on all machines that I have tried.
    Any ideas or is this a bug?

    I noticed that as well. I have to wonder if it's due to not making note of the the different end of line characters between Mac OS X and Windows in code.

  • Safari for Windows is NOT compatible with Unicode 3.1 CJK characters!

    This is an "old" problem since Safari for Windows was initially released. In the meantime, the problem is still not fixed in the latest version 4.0.3 (531.9.1).
    Not only Safari (for Windows) does not properly show homepages that contain Unicode 3.1 CJK characters, but it also fails to show Unicode 3.1 CJK characters (it shows "squares" instead) in the whole application, such as Search box and all dialog boxes. Will this be fixed in the next release?
    By the way, it is strange that Safari 4 for Mac is Unicode 3.1 compatible.

    To speak more precisely, the Safari for Windows doesn't support CJK characters of Unicode CJK Unified Ideographs Extension B.
    The following test illustrates the incompatibility of Safari for Windows:
    1. Sample text displayed in Firefox 3.0.2 on Fedora 9.
    http://farm4.static.flickr.com/3020/3002743180_e026d5c84b.jpg
    2. Sample text displayed in Safari 3.x/4.x on Windows XP with "MingLiu Ext-B" (an Ext-B font provided by Microsoft) installed.
    http://farm4.static.flickr.com/3224/2971019999_1c113109a9.jpg

Maybe you are looking for

  • Retrieving farm details of Sharepoint server

    an anyone help me out with the c# code to retrieve farm Id, farm Name,No of WSP solution, No of web application,No of site collection, Number of sites, Number of Content database, farm version and farm size of a sharepoint server??

  • Bringing items to the front.

    I have 4 rotating pictures and each time they rotate I want one of them to be on top of the rest but yet the corners of the others to be visible underneath. Is there a way I can do this as it seems only the first one will be on top obviously because

  • Define the Objects in Portal

    Hi,   Could you please briefly define the following in Portal   Folder   iView   Web Dynpro iView   iView Template   Page   Web Dynpro Page   Page Template   Workset   Role   Page Layout   Framework Page    Unresolved Link   Business Object   iView (

  • Inventory problems

    When workstations register and try to do an inventory these are the error messages they get. Scanner(Warning) : 027: Unable to read the sequence number from the Workstation Object. Scanner(Warning) : 021: Unable to access the Custom Scan file. Invent

  • Slow load of first page

    I have recently noticed that it seems to take a long time for safari to load the first page when it starts up. I think it started ever since I ran that huge java updater. It is really annoying because it is just that first page. After that everything