Multiples FACETIMES sessions

We have created multiple FaceTime sessions to place multiple video-calls to remote Apple FaceTime subscriber. We have noticed that if one remote subscriber terminated a video-call, 28 to 30 seconds (it shows a reconnecting messahe) after, all the other sessions are killed.
We have also noticed that creating multiple Facetime Audio session, the problems is not present.
We are using a iMAC with Yosemtime 10.10.3
Is there any way to fix this situation?

I can't active my FaceTime on Mac mini PLS   HELP

Similar Messages

  • Multiple View sessions, same PC?

    View 6.0.1, Client 3.3.0
    Can I have multiple View sessions from the same PC? In other words
    Launch the Horizon View client, login, and access a desktop
    Launch the Horizon View client again, login as a different user, and access a different desktop
    Repeat until I have many session open at once
    The reason I ask is we are migrating from Exchange to Gmail. Google provides a utility called GAMME that in a larger environment can be run from multiple machines with each machine migrating one portion of the alphabet. Rather than using 10 physical machines I would rather use 10 View desktops. This will work slick if from my real PC I can access all 10 view desktops. I will be using a different login account to access each desktop.

    Have not tried yet. I did not want to go through the time setting up a separate non-persistent desktop pool if I could not login to more than one desktop at the same time. Now that I know it will work, I will run with it. Thanks for the help

  • Multiple user sessions for ADF application

    Hi All,
    We have a ADF application with 3-4 pages starting with a login screen.
    Assume we have two users, user1 and user2. In same system but different browser windows, when both users are logging in, only user2 's session is active. Though user1 logged in first and is able to perform transactions, the moment user2 logs in, user1's session is being over-written by user2 (user1's window now displays user2's information). I have observed the URL of user1 window which now changes to user2's URL (_adf.ctrl-state parameter of user2 is displayed in user1 browser)
    How do we overcome this?? We have a requirement to be able to open multiple user sessions.
    We are using JDeveloper 11.1.2.3.0 and browsers being used are IE 8, IE9 and chrome.
    Thanks,
    Deepti

    Hi,
    Continuation to my above question
    I am using these two statements in my code..
    ExternalContext ectx = FacesContext.getCurrentInstance().getExternalContext();
    HttpSession httpSession = (HttpSession)ectx.getSession(true);
    On any event in Window1, I gues it is getting the context and session of window2(this being the latest)..
    Shouldnt it return the context and session of the current window instead of the latest window???
    This problem is well explained here
    internet explorer 8 - How to avoid session sharing provided by IE8 programmatically in Java EE application? - Stack Over…
    I want to know.. what is the best way to handle this in ADF... We are using managed beans with request scope and using HttpSession to store few values like user Id.

  • How can I have a stronger Facetime session?

    How can I have a stronger Facetime session between my Macbook and an iPhone?
    The calls seem to have a delay/latency. What would improve this?
    Is 4g the fastest mode available?
    Would using a cellular data plan work?
    Would having my own personal hotspot device help?
    Would Skype be a better choice? If so, why?
    Thanks

    Is 4g the fastest mode available?
    For which device?  Phone or computer?
    Would using a cellular data plan work?
    The phone is already using that.
    Would having my own personal hotspot device help?
    For which device?  Phone or computer?
    Would Skype be a better choice? If so, why?
    Try it and find out.

  • Similar to multiple x sessions

    I know that on linux you can initiate multiple x sessions so that when you connect to the computer using VNC and use the mouse and keyboard without interfering with what the user on the computer does.
    Is there some way to start a new session on the mac and do that same thing?

    TL;DR version - not really.
    Long winded version...
    Much of the apple magic in making X11 work within the Cocoa on top of Aqua on top of Quartz/OpenGL/QuickTime stack makes this really hard to do.
    Have you looked over Xnest - it's really powerful and can act as a server and a client. If remote boxes are ssh into the mac and using the multiple displays set up under Xnest your local display would be cluttered but one mac could support many remote machines with X11 services.
    See these links for some good reading on the subject:
    [Fun with Xnest HowTo|http://box.matto.nl/xnest.html]
    [X11 for Mac OS X|http://www.scl.utah.edu/computers/mac/help/x11>
    The only time I've seen this actually deployed, xnest was ditched after a few days of pain. Instead, a beefy Mac Pro with RAM/CPU to spare was set up with VMWare fusion and a virtual machine per user with linux/freeBSD installed. Then X11 could roam there free of "the dictator" known as Quartz Compositor.

  • How to disable Refresh,Reload in browser and user should not allow to multiple browser sessions ?

    Dear All,
    How to disable Refresh,Reload in browser and end user should not allow to multiple browser sessions in portal.Where we need to configure the settings or any code in masthead or any other component. My server version is 7.4 - SP5 .Please help us.
    Thanks for advance,
    BR,
    Durga Rao.

    Dear all,
    i am able to logoff the click refresh button on keyboard.I am using this code to log off the user into the portal.
    document.onkeydown = function(e)
      var key;
      if (window.event) key = event.keyCode
      else
      var unicode = e.keyCode ? e.keyCode : e.charCode
      key = unicode
      switch (key)
      { //event.keyCode
      case 116: //F5 button
        LSAPI.sessionPlugin.logoff();
      event.returnValue = false;
      key = 0; //event.keyCode = 0;
      return false;
      case 82: //R button
      if (event.ctrlKey)
    LSAPI.sessionPlugin.logoff();
      event.returnValue = false;
      key = 0; //event.keyCode = 0;
      return false;
      case 91: // ctrl + R Button
    LSAPI.sessionPlugin.logoff();
      event.returnValue= false;
      key=0;
      return false;
    Thanks.
    But i am unable to control the multiple windows opening the browser.So any one can tell me the how to block the new window and new tab/duplicate tab option.
    BR,
    Durga Rao.

  • Multiple server sessions

    Hi,
    Should there be any issue mixing objects between multiple server sessions.
    We have multiple services that each have each have their own ServerSession.
    There are situations where objects retrieved through one ServerSession are ultimately part of an object that is persisted through another ServerSession.
    Note: communication between client and services is via RMI and persistence is performed using the mergeWithReferences method.
    Example,
    - Person object has an Address object.
    - Address is retrieved from ServerSession 1 (RMI)
    - Person object is retrieved from ServerSession 2 (RMI)
    - Address is added to Person and Person is persisted
    thru ServerSession 2. (RMI)
    The behavior I've observed is inconsistent but ultimately there seems to be problems.
    From the example above, occasionally ServerSession2 will attempt to reinsert the Address object into the table.
    In the case where Address is read only the cached version of Person in ServerSession2 will have a null Address attribute after persistence even though the database was updated correctly.
    What accounts for this behavior?
    Thanks
    Mark

    Marc,
    The problem you are seing is related to TopLink's existence checking. When you go to write an object from session 1 into session2 and it does not exist in the cache TopLink assumes the object is new. This is very similar to when you are running in a cluster and your write request ends up in a JVM where the TopLink session has not read in the object you plan to write.
    In order to make this work you can change the existence-checking setting, which I don't recommend, or you can alter your pattern for dealing with the UnitOfWork.
    When you serialize the object(s) across RMI to the server that is going to do your writing I recommend the following pattern:
    1. Acquire UnitOfWork from session
    2. Read objects from database
    unitOfWork.read(person);
    unitOfWork.read(address);
    3. Merge objects (unitOfWork merge APIs)
    4. Commit UnitOfWork
    Step #2 is important here. If you are writing to a session that has the objects cached then no database call is required. If not, the database version will be read in. The merge will copy the values over to the working copy and the commit will calculate and write any necessary changes.
    Other recent threads in this forum and the documentation detail the merge options.
    Doug

  • How to I record a FaceTime session on iMac?

    How do I record a FaceTime session on my IMac?  Where is the video stored? On iPhoto? on Quicktime?

    Can I record my FaceTime session?
    Can I record a facetime session?

  • Record multiple, simultaneous sessions through one webinar meeting room

    Is there a way to record multiple, simultaneous sessions through one webinar meeting room? I know breakout rooms can't be recorded, but is there another way to have users join a main webinar room, select a sub-room/session they're interested in, and then join that sub-session? We want to have four sessions happening at once and allow users to choose which they want to participate in. We'd also like to record the sessions. Thanks for any help you can provide.

    Use PPT, or a tool of your choice, to create a slide/object with links to each room. Then the user can click between the rooms as desired.
    You may want to use the ?launcher=false command at the end of the URLs to keep the individuals from having the add-in launched multiple times and in multiple rooms at the same time. This will keep the meetings in the individual's browser.

  • Multiple SNMP sessions

    I have a Java application which uses SNMP and a Windows executable which also uses SNMP. I want to run SNMP sessions in both - with the Windows executable being launched from the Java application. If I launch the Java application it works fine. If I launch the executable it works fine (whether or not the java app is running). However when I launch the Windows executable from the Java app (with Runtime.exec()) the Windows executable fails to set up an snmp session.
    This is on NT. Does anyone know if there is some hard and fast rule which prevents me from running multiple snmp sessions in this way ? ...or if it should definitely be possible (and I should look at how the snmp session is being set up in the executable).

    If the application works as an snmp agent and listens on the standard snmp agent port (UDP 161 I think) then you will only be able to run one instance of it.
    If you were to try and start a second instance it would find that port unavailable.
    Perhaps that is the problem you are encountering.

  • Multiple ICWC sessions resulting in lost service ticket data

    Hi All
    I have an issue where an IC Agent is encouraged to work with multiple ICWC sessions to compare and copy/paste data from service tickets.  We have seen on multiple occasions tha the data in ticket A is overwritten (with ticket B data) when ticket B is saved.
    Has anyone come across this before?
    Thanks
    Mark

    Hi Mark,
    I suppose as per SAP multiple sessions are not supported if Communication Management Service is used.
    Please look at the last posting on the following thread.
    Can we have multiple IE in the same machine to access IC Webclient ?
    Therefore, in this case solution suggested by Glenn could be useful to you.
    Regards,
    Deepak
    Edited by: Deepak Ahuja on Jan 29, 2009 5:10 PM

  • Multiple j-sessions for IOP fail-over?

    Weblogic has the ability to support multiple j-sessions to allow fail-over of the connection.
    My understanding is that this is not currently supported in IOP.
    When will IOP support multiple j-sessions?
    Is it possible to get a patch for this in the current version 11 of IOP?
    Thank you.

    That is part of the product roadmap to support multiple j-sessions for IOP fail over using Weblogic. That way, if the primary IOP server fails, the user can be re-routed to the backup server in a high-availability fashion. However, that is not supported currently, but will be over the next couple of releases.

  • Do I need «Toast» to do multiple burning sessions ?

    I would like to be able to do multiple burning sessions on CD or DVD. Apple software doesn't seem to offer this. Maybe in iphoto 6 ? I tried installing Toast a few years ago and it screwed things up so I am looking for another solution if there is one. Many thanks.

    If you're trying to burn from within iPhoto via the Share->Burn menu option to get a iPhoto disc that will mount and can be used by iPhoto like this then you can't do multiple burns. iPhoto does not support multiple sessions.
    There are 3rd party applications that will facilitate multiple burns to a CD. You can several by searching at VersionTracker.com for "multiple burn" or "multiple sessions". Toast can also produce multiple session disks.

  • My recent FaceTime session on ipad to ipad suddenly paused. I don't know if I pressed something inadvertently, or my friend did. My screen showed "paused" but I could still hear my friend, although she said she could not see me.

    My recent FaceTime session from ipad to ipad suddenly paused. I don't know if I inadvertently done something, or the other party did. Didn't know how to resolve.

    If could be that the other user lost data connection.

  • Opening multiple visa sessions

    I'm having problems with opening multiple VISA sessions for communicating with 4 HP-34401A multimeters in LabVIEW 6.1. If you have a little bit of time, please take a look at what I have here to see if I'm doing something wrong.
    Thanks
    Attachments:
    HP34401_Test.vi ‏108 KB

    I have made a look at your VI. I don't have the driver for the instrument I couldn't go into the subVIs and its documentation and I could not change it for you.
    1. You initialise only 2 of the 4 meters. Initialize all meters.
    2. In sequence 0 you close the session to the meter. In the next loop iteration it will not measure as you intended. Delete the "VISA Close" function.
    3. The stop button would cause the while loop to exit. But your handling is a little bit complicated. Do following:
    Delete the "not" and case where the stop terminal is connected. Wire the stop terminal directly to the termination terminal of the while loop. With the context menu set it to "stop if True". Wire the VISA sessions to the right border of the while loop and connect t
    hem to the "VISA Close" function.
    Waldemar
    Waldemar
    Using 7.1.1, 8.5.1, 8.6.1, 2009 on XP and RT
    Don't forget to give Kudos to good answers and/or questions

Maybe you are looking for

  • How do you use two ipods in the same itunes???

    My brother recently bought an ipod (15GB) i have been fine using my one (20GB) with my itunes on my computer. When i plug my brothers ipod in to my computer and open itunes i expect the music only about (5GB) to transfer to his ipod instead it just s

  • How to Add namespace to all elements in a xml document

    Hi, I am trying to read an xml file that does not have any namespace definitions. I have been able to create another schema in which i specify the namespace defination as shown below. <?xml version="1.0" encoding="UTF-8"?> <xs:schema xmlns:xs="http:/

  • In action script, how would I be able to capture animation on the stage and save it to a file

    using action script how would I be able to capture video that's playing on the stage and save it as a file

  • Characteristics missing in EasyDMS?

    Hi all, First time poster. I have a troubleshooting question regarding EasyDMS. I'm currently setting up some test document types for training purposes and I'm having trouble understanding why EasyDMS isn't showing the characteristics that I have set

  • Unable to get context object in condition editor

    Hi , I am trying to get FileName in the condition editor, but its not coming. I have set the Adapter-Specific Message Properties also. I am able to see the file name in MONI. But its not coming in condition editor. Could any one help me on this ? Reg