Safari Sharing Session Info With Air

Hi Guys,
I'm having issues with safari sharing session information
with my air application. What i'm doing is using a URLLoader to
send a URLRequest to a web server. When I send the request in my
app, AIR is applying its own header vars to the request. When i try
to prevent this by setting URLRequest.manageCookies to false, I
lose some of the custom header variables that are sent by the
server in the response. Is there any way of preventing air from
cookie sharing and still retrieve all the header variables
including cusom vars?

This crash seems to be caused by a bug in iCloud. The only workaround that I know of at the moment is to disable Safari synchronization in the iCloud preference pane. Sync bookmarks with iOS devices in iTunes instead. You may also need to do as follows.
Back up all data.
Triple-click the text on the line below to the clipboard, then copy it to the Clipboard (command-C):
~/Library/Safari/Bookmarks.plist
Quit Safari.
Select
Go ▹ Go to Folder
from the Finder menu bar. Paste into the text box that opens (command-V), then press return.
A folder window should open with a file named "Bookmarks.plist" selected. Move the selected file to the Desktop, leaving the folder open.
Relaunch Safari. It will open with the default set of bookmarks. Delete them all. Select
File ▹ Import Bookmarks
from the Safari menu bar. Import from the bookmarks file you moved to the Desktop. Arrange the bookmarks as you wish.
If Safari now performs normally, you can delete the old bookmarks file. Otherwise, quit Safari again and put back the file you moved, replacing the newer one with the same name. Close the Finder window and post again.

Similar Messages

  • How do I stop iOS8 sharing Contact info with Facebook?

    Every time I make a change in Contacts, my iPhone tries to send the information to Facebook. Also, my personal (Me) information in Contacts has little blue Facebook linking tags throughout. Here's the thing - I never specifically set this up and I don't want it. It is a breach of my privacy. But for the life of me, I can't find how to disable this function anywhere within Settings nor within the Facebook App.
    Please, can someone tell me how to disable this functionality?

    @Don Kirk
    Try the steps below to help you out with your issue:
    Removing Facebook Contacts from iPhone
    One of the easiest ways to remove or hide the Facebook contacts from appearing in your Contacts is to turn off a switch you’ll find in Facebook settings. To do this:
    Open the Settings app
    Tap on Facebook
    Under “Allow These Apps to User Your Account”, turn off the switch for Contacts
    Go back to your Phone app → Contacts and refresh the contacts list. All those Facebook contacts should be gone now.
    Hide Facebook Contacts From Showing Up (Groups)
    So we come to the next method which is usually considered a step backward because of its implementation in iOS 7 (more on that later).
    You have these Groups that you can create and manage. Controlling the groups (and their visibility on the Contacts app) was very easy with iOS 6. With iOS 7, it gets a couple of steps extra.
    Open the Phone app and tap on contacts
    Now, tap on “Groups” link on the top-right
    Do you see a “Facebook Contacts” group. You have to turn this off. (Uncheck)
    Tap on Hide All Contacts  first. Then tap on all other groups that you want  to see. Don’t tap on the Facebook group. That’s it. (In iOS 6, tapping used to toggle check/uncheck. The implementation is kind of strange in iOS 7).
    <Link Edited By Host>

  • Sharing Personal Info with App Dev's?

    Does anyone know if our personal information is being provided to app developers each time we download an app? I've been downloading several apps for the ipad and just started wondering if this is the case. I'd be unhappy if every app I downloaded that my personal info would be given to the developers too. My curiosity is getting to me. I'm trying to read into the License Agreements but the fine print is killing my eyes and there's so much fine print to read. Any and all help is much appreciated. Thanks!

    Apple does not share any sensitive information to 3rd party developers, if they did they would be in serious trouble.

  • Sharing contact info with separate Apple ID

    How can I sync the contact information in the iCloud with a user with different Apple ID?

    Welcome to the Apple Community.
    Add your iCloud account to theirs as a secondary account in system preferences (settings) > mail, contacts and calendars.

  • How do I get Safari 7 to open with my tabs restored from my previous session?

    I have a new MacBook Air running Mavericks.  How do I get Safari to open with my previous tabs restored.  I used to be able to find an option in Preferences that said when you open a new window open with the tabs from my previous session.  That is no longer available to me. 

    I don't have that option in my general preferences. Even though I have Safari set to open with all windows from last session, it doesn't. I also think its very slow

  • Will the newest version of Safari Mavericks work properly with Snow Leopard?

    Will the newest version of Safari Mavericks work properly with Snow Leopard?

    Are you asking if you can install Mavericks on a machine running Snow Leopard?
    Upgrade to Mountain Lion/Mavericks.
    Check that your computer is compatible with Mountain Lion/Mavericks.
    To check the model number hold down the option/alt key, go to the Apple menu and select System Information.
    iMac (Mid 2007 or newer) model number 7,1 or higher
    MacBook (Late 2008 Aluminum, or Early 2009 or newer) model number 5,1 or higher
    MacBook Pro (Mid/Late 2007 or newer) model number 3,1 or higher
    MacBook Air (Late 2008 or newer) model number 2,1 or higher
    Mac mini (Early 2009 or newer) model number 3,1 or higher
    Mac Pro (Early 2008 or newer) model number 3,1 or higher
    Xserve (Early 2009) model number 3,1 or higher
    Your Mac needs:
    OS X v10.6.8 or OS X Lion already installed
    2 GB or more of memory (More is better - 4 GB minimum seems to be the consensus)
    8 GB or more of available space
    Check to make sure your applications are compatible. PowerPC applications are no longer supported.      
    Application Compatibility
    You can also check which applications are PowerPC by going to the  menu, select About this Mac, click on More info…, then click System Report and select Software/Applications.
    If you do decide to upgrade, make sure you do a backup before installing.

  • New insight into my dropdown list problems: loss of session info

    I tried again, this time with NetBeans 5.5.1 (with Tomcat 5.5.17) and stepped through my code; code executed as a result of selecting an item in the second, misbehaving dropdown box.
    I have this function:
        public void prerender() {
            SessionBean1 sb = this.getSessionBean1();
            sb.setPortfolio_id(0);
            this.getDropDown2().setSelected(ddsi);
        }This uses a private data member:
    Object ddsi = null;
    And here is my value changed event handler for this combobox:
        public void dropDown2_processValueChange(ValueChangeEvent event) {
            SessionBean1 sb = this.getSessionBean1();
            String sp_id = (String) this.getDropDown2().getValue();
            ddsi = event.getNewValue();
            String desc = (String) ddsi;
            Long Ldesc = new Long(desc);
            long p_id = Ldesc.longValue();
            sb.setPortfolio_id(p_id); 
            this.getFacesContext().getCurrentInstance().renderResponse();
        }As you can see, I am trying to ensure that the value selected is preserved and used the next time the item is rendered.
    sb.setPortfolio_id(p_id); is a trivial setter function (taking a long argument) for the property portfolio_id.
    When I step through this code, at every step along the way, I see the correct value for p_id! The correct value is passed to the session bean! And I even see the correct value in ddsi when the function "prerender" is executed. However, it seems that this information is lost when the page is actually rendered.
    And, when the servlet that produces the image that is to be displayed on the page checks the session bean, the session bean has the default value (0) for the portfolio_id property rather than the the value (30) that had been passed to the session bean.
    It is as if the session information has been lost, or a new session bean is provided each time the page is rendered.
    The only additional clue is this (found in Tomcat's output);
    com.sun.rave.web.ui.component.DropDown::The current value of component form1:dropDown2 does not match any of the selections.
    Did you forget to reset the value after changing the options?
    Why is this happening? I know full well that at the time the value in dropdown2 is changed, the value in dropdown1 has not, and therefore the value passed to dropDown2 IS in the list of selections. But, when the value in dropDown1 is changed, the list of options in dropDown2 is changed. I wonder if the valueChanged event handler for dropdown1 is being executed every time the page is rendered, forcing dropDown2 to "forget" what was selected, and somehow losing the session info at the same time?????????
    Any ideas?
    Thanks
    Ted

    Upgrading to itunes 7.0 just cost me 2 days of messing around and in the end I had to revert back to v6.0 and resore my lib.
    Apple CS was good but did not belly up the fact that 7.0 is defective in some cases and in the end told me I had a hardware problem!
    The main issue is that I could not get itunes 7.0 to see my ipod (very infrequently after a hard boot I would see it but would not be able to upload anything). Worked(s) 100% with v 6.0.
    This is very defintey 1/2 baked following in the steps of the other well known producers of sw that is not always functional/buggy the first time around.
    My computer is a x40 IBM laptop with xp sp2. Will have to wait a few more weeks to see how this pans out.
    IBM X40 Windows XP

  • HT4859 I shared itunes account with my daughter, had never synced my phone with computer, synced with computer and chose daughter's phone instead of create new phone, all phone contacts are now gone replaced with daughter's - is there no way to get contac

    I shared itunes account with daughter's phone, never synced my phone with home computer through itunes, synced tonight with itunes but choose her iphone and it restored all her info on my phone, all my phone contacts, text messages and photos are gone  - I had auto backup to icloud daily - is there any way to get phone numbers and texts back off icloud?

    If you have been backing up to iCloud your camera roll photos, text messages and other data and setting should be contained in the backup.  Restoring the backup to the phone should recover them.
    To do this, go to Settings>General>Reset, tap Erase All Content and Settings (which will erase the phone), then go through the setup screens on the phone and when given the option, choose Restore from iCloud Backup and follow the prompts.  Be sure your phone is connected to wifi and your charger as this may take some time to finish.

  • Sharing iTunes library with other users (on Vista)

    I'm posting this for my sister who just purchased a new computer running Vista. She's set up a user account for herself as well as one for each of my two nephews. We've successfully moved over her iTunes music folder from her laptop and can now access it and listen through her account.
    However, we'd like to set it up so that my two nephews can also listen to the music from their user accounts. My oldest nephew also has a shuffle that would sync to it.
    I've found a link to information about sharing, but I still need to clarify a few things.
    Here's the link:
    http://docs.info.apple.com/article.html?artnum=93195
    On this page, it describes how "to share your music with other accounts on the computer" and also how "to listen to another account's music files".
    Exactly how are these two things different? I'm pretty sure that I probably want the first of the two, but I'm not positive.
    And once we successfully set this up, would we have to sync the shuffle via my sister's main account or could it be synced from any of them?

    Let's answer your second question first ...
    And once we successfully set this up, would we have to sync the shuffle via my sister's main account or could it be synced from any of them?
    Any of them.
    ... and your first question second.
    Exactly how are these two things different?
    The first part - sharing your music with other accounts - makes the music available to the other users on the computer.
    It is then up to the other users to decide whether or not they want to make use of the available music, hence the second part - listening to another account's music files - which, as the article says, must be repeated "for each account that is listening to shared music."

  • During setup of new Apple TV I am not able to progress past the screen that asks if I want to share usage info with Apple.  Using both wireless and hardwire setup I've answered no - then yes - but I cannot get the system to accept an answer. Anyone else?

    Aside from not being able to progress past the question of sharing info with Apple  - I've also noticed that the remote does not function when I presss the "select" button - only when I press the "menu" button can I acknowledge a question or a step in the setup proccess.  Help!

    From: Test Screen Name [email protected]
    Sent: Sunday, August 04, 2013 11:32 AM
    To: gunner0490
    Subject: I'm not able to open PDF files in Adobe Reader XI.
    Re: I'm not able to open PDF files in Adobe Reader XI.
    created by Test Screen Name <http://forums.adobe.com/people/TestScreenName>  in Adobe Reader - View the full discussion <http://forums.adobe.com/message/5565198#5565198

  • Where is the file that contains info on previous session info on a Mac?

    Where is the file that contains info on previous session info on a Mac? I would like to restore several windows and tabs I had open earlier, but the restore previous session menu item does not appear to be available. I had to install and use an older version of Firefox (3.6) to access a website (Fedtraveler.com) that is not compatible with Firefox 6 and is seems to have cleared out the previous session information. I thought I would use Mac OSX Time machine feature to restore the Firefox file where this the previous session info is kept but I don't know what it is called nor how to find it.

    That is the file sessionstore.js in the Firefox Profile Folder.
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    *http://kb.mozillazine.org/sessionstore.js
    *Help > Troubleshooting Information > Profile Directory: Open Containing Folder

  • HT204291 I do not have video, audio only with air play on my apple tv using my instant video form my iPad

    I do not have video, audio only with air play on my apple tv using my ipadusing instant video

    It needs to be in iTunes, with home sharing enabled on computer and Apple TV. When computer is on and running iTunes you will be able to access via the Computers icon on Apple TV
    File also needs to be in the correct format
    H.264 video up to 1080p, 30 frames per second, High or Main Profile level 4.0 or lower, Baseline profile level 3.0 or lower with AAC-LC audio up to 160 Kbps per channel, 48kHz, stereo audio in .m4v, .mp4 and .mov file formats
    MPEG-4 video up to 2.5 Mbps, 640 by 480 pixels, 30 frames per second, Simple Profile with AAC-LC audio up to 160 Kbps, 48kHz, stereo audio in .m4v, .mp4 and .mov file formats
    Motion JPEG (M-JPEG) up to 35 Mbps, 1280 by 720 pixels, 30 frames per second, audio in ulaw, PCM stereo audio in .avi file format

  • Synchronizing persistent tmux loginctl session ID with new session

    Hey all. Does anyone else have the issue with a persistent tmux session losing it's 'active' session status with loginctl after restarting the window manager (monsterwm in this case, logging in automatically on VT1 per the wiki)? This causes issues with udisks mounting priviliges. I'd think it'd cause issues with pulseaudio but it doesn't (and I don't understand why).
    So, to reproduce:
    1. Fresh reboot and login
    2. Open terminal. $XDG_SESSION_ID will be 1
    3. Open tmux instance. $XDG_SESSION_ID will be 1
    4. Restart the window manager
    5. Open terminal. $XDG_SESSION_ID = 3. loginctl session-status active=yes
    6. Reattach tmux session. XDG_SESSION_ID =1. loginctl session-status active=no
    Is there some easy way to keep these synchronized so I don't have permissions issues?
    Thanks!
    Scott

    No, it has nothing to do with host names, CNAME, DNS or anything.
    The session ID is sent to the server from the browser in either a cookie header or as part of the "extra info" part of a URL with the request. If there is no session ID in either place, the server creates a new session. If there is a session ID, then it gets the session object (if it's not expired). Then it sends the session ID back to the browser with the response to that request (either as a cookie or encoded into the URLs in the page, which you have to do explicitly do for each URL). Click on a link, then the process starts again. The first time you go to a site, you have no session ID. The server just makes a new one.
    The only thing that domain names have any affect on is cookies. Cuz cookies are name/value data associated with a domain name of the server (amongst other things). The browser, for security reasons, only sends cookies in requests to servers that set the cookie in the first place. The server can't get cookies that it didn't set.
    So if you have a server running on your local machine, you can access that server in 3 ways:
    1) localhost
    2) network name
    3) domain name
    The browser can know quite easily that 1 and 2 are the same thing, and send cookies for either interchangably (not that it has to, but it seems you are seeing this happen, so...). But the browser will probably not make any assumption about 3's relation to 1 or 2. The association is generally to domain name, not necessarily IP address.
    And it's really a moot point anyway. You should not typically be accessing a server from those 3 different means within the same session. Someone connecting to your server isn't going to use anything but #3 anyway, the other 2 (definitely #1 and #2 only works on the same LAN) wouldn't make much sense. So there's not going to be this issue at all. The session ID itself has no relation whatsoever to a client's domain name.

  • Catch BO Session info in Crystal Report 2008

    Hi All.
    I have an Xcelsius model with data provided by a Live Office connection.
    I've tried to embed this model, as swf file, in a report Crystal 2008.
    I've published this report within BOE Enterprise, but trying to visualize it, the Live Office connection prompts for BO authentication.
    Is there any way in Crystal Report 2008 to catch current BO session info to pass it to the Live Office connection?
    I would really appreciate any suggestion.
    Thanks a million.
    PS: I'm sorry if this is not the right forum. This thread is available also in Dashboard Design (Xcelsius) section.

    HI,
    to get or find an answer/solution about your question/problem?
    I planning also to use Hierarchy Display in CR. And it is very interessting for me to know if that is working.
    Thanks
    Andreas

  • Catch BO Session info in Crystal Report 2008 to pass to Xcelsius 2008

    Hi All.
    I have an Xcelsius 2008 model with data provided by a Live Office connection.
    I've tried to embed this model, as swf file, in a report Crystal 2008.
    I've published this report within BOE Enterprise, but trying to visualize it, the Live Office connection prompts for BO authentication.
    Is there any way in Crystal Report 2008 to catch current BO session info to pass it to the Live Office connection?
    I would really appreciate any suggestion.
    Thanks a million.
    PS: I'm sorry if this is not the right forum. This thread is available also in Crystal Reports Design section.

    No, we haven't found a solution that we would like to have.
    We are putting in place a workaround to update the Xcelsius SWF file outside of Crystal.  We will have the Crystal Report using the BOBJ scheduler to export to Excel on a file share the cross tab table used in Xcelsius and then have Xcelsius updated using the BOBJ scheduler.  Instead of having the Xcelsuis embedded in Crystal, the SWF file will be posted to the same SharePoint site that we will be posting the PDF file from Crystal.  Not ideal, but it should work.

Maybe you are looking for

  • Unable to run a form(FOrms 5.0) on Web. Security exception E

    Hi, I am trying to run a simple form developed in Forms 5.0 over our intranet. Environment: On NT I am using Oracle 8.0.5, Developer/2000 Server and Internet Information Server 4.0. I have created a simple form and deployed on the server. (created th

  • How to embed Windows video files in iweb

    I uploaded several videos to a web site using iweb for a fortune 500 company only to find out the wmv videos I put in didn't load because iweb uses a quicktime container for all videos dropped on the page. After spending a lot of time on this site (h

  • Sourcing integration with ECC using PI (percentage rebate scenario)

    Hi Experts, Sourcing - OP 7 ECC - configurations done for rebate conditions as mentioned in standard configuratin guide PI - SP02 patch 0 We are publishing percentage rebates in Master agreement from sourcing to ECC to create Online Agreement using s

  • Photoshop Elements 7 neu PDF Miniaturen

    Plötzlich bekomme ich beim Öffnen eines Dokuments oder Bildes durch Emails ein zweites Fenster PDF Importieren mit Miniaturen. Wenn ich sie vergrössern will, kommen sie als weiss/graues Schachbrett und das in der letzten Zeit immer, dazwischen kommt

  • Transport Tablespace using RMAN from 10.2.0.2 to 10.2.0.3 ??

    Hello all, Is it possible to do RMAN Transport Tablespace from 10.2.0.2 to 10.2.0.3 ?? TIA, J J