Can you face time with more than one person at one time?

Can you face time with more than one person at one time?

You mean like a conference call?  No, unfortunately.

Similar Messages

  • Can you sign in with more than one apple id on an iPad?

    Can you sign in with more than one apple id on an iPad?

    Only one account can be signed in at a time (via Settings > Store), and if you turn on automatic downloads and/or download past purchases from an account then you risk tying the iPad to that account for 90 days : http://support.apple.com/kb/HT4627

  • TS2755 I can't send text to more than 1 person at a time on my Iphone 4.  How can I fix this, it just started doing it out of the blue?

    I can't send a text message to more than 1 person at a time.  I can send text message to one contact, then re-type and send to another contact.  It was working fine until a week ago.

    Send a group message with your iPhone, iPad, or iPod touch - Apple Support
    Send messages with your iPhone, iPad, or iPod touch - Apple Support
    If you can't send or receive messages on your iPhone, iPad, or iPod touch - Apple Support

  • Can you sync Ipad with more than one computer?

    I am just curious, can I associate my Ipad with more than 1 computer.  I have a desktop and a laptop both with itunes and same library.  Can I sync the Ipad on both computers without it totally erasing the Ipad or should I only sync it on one computer?
    Than kyou in advance for the help.

    In theory - If the libraries are identical, yes it should work. Keeping the libraries identical might become a little challenging. You may want to make sure that you always manually transfer purchases whenever you sync to each computer to make sure that all content is always being transferred into each iTunes library and I would think that you would want to backup each time you sync as well. And you might want to sync with the one computer right after you sync with the other computer so that all of your data remains intact in the backups of both computers.
    You can always check by giving it a try and see of you get the "this iPad have been synced to a different computer" message and see what happens. If the message pops up, just cancel and don't sync.
    However, I wouldn't recommend doing this unless you absolutely have to for some reason.

  • HT4528 I have an Iphone 4 CDMA. Can you pair it with more than one vehicle through HFL? I have Hondas. Also my new CRV receives texts through the Nav. It says this phone is non-compatible. Is there some software that needs downloaded?

    Can you pair through bluetooth my phone to more than one vehicle? My new Honda CRV receives text messages. However it says my Iphone 4 CDMA is not compatible. Is there software I need to download to my phone?

    If it works anything like Ford Sync, you can pair the same phone to different vehicles, as long as you set up separate Bluetooth profiles on the iPhone for each vehicle.
    As far as Texts go, you won't be able to get them in your vehicle because the iPhone doesn't have the software protocols to do it.  FWIW, I can't get texting from my iPhone 4S in my new Lincoln with Ford Sync either.

  • Can't access ejb with more than 1 person at the same time?

    I am using the ejb to access the database using DBConnection Pool that I find in book. The code is as follow:
    The problem is when more than one user access almost at the same time, the one who enter frst can access, but the other one can't and return context lookup error in creating EJB.
    What's the problem of it, is it the ejb concurrent access problem or database concurrent access problem?
    package login.database;
    import java.io.*;
    import java.sql.*;
    import java.util.*;
    import java.util.Date;
    public class DBConnectionManager {
    static private DBConnectionManager instance;
    static private int clients;
    private Vector drivers = new Vector();
    private PrintWriter log;
    private Hashtable pools = new Hashtable();
    static synchronized public DBConnectionManager getInstance() {
    if (instance == null) {
    instance = new DBConnectionManager();
    clients++;
    return instance;
    private DBConnectionManager() {
    init();
    public void freeConnection(String name, Connection con) {
    DBConnectionPool pool = (DBConnectionPool) pools.get(name);
    if (pool != null){
    pool.freeConnection(con);
    public Connection getConnection(String name) {
    DBConnectionPool pool = (DBConnectionPool) pools.get(name);
    if (pool != null) {
    return pool.getConnection();
    return null;
    public Connection getConnection(String name, long time) {
    DBConnectionPool pool = (DBConnectionPool) pools.get(name);
    if (pool != null) {
    return pool.getConnection(time);
    return null;
    public synchronized void release() {
    if (--clients != 0) {
    return;
    Enumeration allPools = pools.elements();
    while (allPools.hasMoreElements()) {
    DBConnectionPool pool = (DBConnectionPool) allPools.nextElement();
    pool.release();
    Enumeration allDrivers = drivers.elements();
    while (allDrivers.hasMoreElements()) {
    Driver driver = (Driver) allDrivers.nextElement();
    try {
    DriverManager.deregisterDriver(driver);
    log("Deregistered JDBC driver " + driver.getClass().getName());
    } catch (SQLException e) {
    log(e, "Can't deregister JDBC driver: " + driver.getClass().getName());
    private void createPools(Properties props) {
    Enumeration propNames = props.propertyNames();
    while (propNames.hasMoreElements()) {
    String name = (String) propNames.nextElement();
    if (name.endsWith(".url")) {
    String poolName = name.substring(0, name.lastIndexOf("."));
    String url = props.getProperty(poolName + ".url");
    if (url == null) {
    log("No URL specified for " + poolName);
    continue;
    String user = props.getProperty(poolName + ".user");
    String password = props.getProperty(poolName + ".password");
    String maxconn = props.getProperty(poolName + ".maxconn", "0");
    int max;
    try {
    max = Integer.valueOf(maxconn).intValue();
    } catch (NumberFormatException e) {
    log("Invalid maxconn value " + maxconn + "for " + poolName);
    max = 0;
    DBConnectionPool pool = new DBConnectionPool(poolName, url, user, password, max);
    pools.put(poolName, pool);
    log("Initialized pool " + poolName);
    private void init(){
    InputStream is = getClass().getResourceAsStream("db.properties");
    Properties dbProps = new Properties();
    try {
    dbProps.load(is);
    } catch (Exception e) {
    System.err.println("Can't read the properties file. " +
    "Make sure db.properties is in the CLASSPATH");
    return;
    String logFile = dbProps.getProperty("logfile","DBConnectionManager.log");
    try {
    log = new PrintWriter(new FileWriter(logFile, true), true);
    } catch (IOException e) {
    System.err.println("Can't open the log file: " + logFile);
    log = new PrintWriter(System.err);
    loadDrivers(dbProps);
    createPools(dbProps);
    private void loadDrivers(Properties props) {
    String driverClasses = props.getProperty("drivers");
    StringTokenizer st = new StringTokenizer(driverClasses);
    while (st.hasMoreElements()) {
    String driverClassName = st.nextToken().trim();
    try {
    Driver driver = (Driver) Class.forName(driverClassName).newInstance();
    DriverManager.registerDriver(driver);
    drivers.addElement(driver);
    log("Registered JDBC driver " + driverClassName);
    } catch (Exception e) {
    log("Can't register JDBC driver: " + driverClassName + ", Exception: " + e);
    private void log(String msg) {
    log.println(new Date() + ": " + msg);
    private void log(Throwable e, String msg) {
    log.println(new Date() + ": " + msg);
    e.printStackTrace(log);
    class DBConnectionPool {
    private int checkedOut;
    private Vector freeConnections = new Vector();
    private int maxConn;
    private String name;
    private String password;
    private String URL;
    private String user;
    public DBConnectionPool(String name, String URL, String user, String password, int maxConn) {
    this.name = name;
    this.URL = URL;
    this.user = user;
    this.password = password;
    this.maxConn = maxConn;
    public synchronized void freeConnection(Connection con) {
    freeConnections.addElement(con);
    checkedOut--;
    notifyAll();
    public synchronized Connection getConnection() {
    Connection con = null;
    if (freeConnections.size() > 0) {
    con = (Connection) freeConnections.firstElement();
    freeConnections.removeElementAt(0);
    try {
    if (con.isClosed()) {
    log("Removed bad connection from " + name);
    con = getConnection();
    } catch (SQLException e) {
    log("Removed bad connection from " + name);
    con = getConnection();
    else if (maxConn == 0 || checkedOut < maxConn) {
    con = newConnection();
    if (con != null) {
    checkedOut++;
    return con;
    public synchronized Connection getConnection(long timeout) {
    long startTime = new Date().getTime();
    Connection con;
    while ((con = getConnection()) == null) {
    try {
    wait(timeout);
    } catch (InterruptedException e) {}
    if ((new Date().getTime() - startTime) >= timeout) {
    return null;
    return con;
    public synchronized void release() {
    Enumeration allConnections = freeConnections.elements();
    while (allConnections.hasMoreElements()) {
    Connection con = (Connection) allConnections.nextElement();
    try {
    con.close();
    log("Closed connection for pool " + name);
    } catch (SQLException e) {
    log(e, "Can't close connection for pool " + name);
    freeConnections.removeAllElements();
    private Connection newConnection() {
    Connection con = null;
    try {
    if (user == null) {
    con = DriverManager.getConnection(URL);
    else {
    con = DriverManager.getConnection(URL, user, password);
    log("Created a new connection in pool " + name);
    } catch (SQLException e) {
    log(e, "Can't create a new connection for " + URL);
    return null;
    return con;

    Hi,
    static synchronized public DBConnectionManager getInstance() {
    The word "synchronized" will allow only one user at a time to access the getInstance() method which returns DBConnectionManager. Suggest u read some stuff on the same
    As I am not sure which App server ur using, u cld do the following
    1. Create a Conection Pool in ur App Server itself (Weblogic/Websphere/Jboss way)
    2. Create a DataSource which maps to this Connection Pool.
    3. Use the DataSource object which handles poolong of Connections to access the database
    4. As mentioned above, Read notes/documents on "Synchronized" and "Vector" before you use this word in any code of EJB. This will solve ur problem. Read topic called "Collection Framework".
    Seetesh

  • Can you video-chat with more than one friend at a time in new Hello?

    Simply wondering if a group of people can video-chat together at same time, or just one-on-one?

    It is currently only possible to have a peer to peer connection with one other computer.
    To connect with multiple computer you would have to connect via a dedicated server and that is currently not possible with WebRTC.

  • Can you share games with more than one iTouch?

    I am about to buy 2 iTouches for my family. My question is can I purchase a game and use it on both of the iTouches? Or do I have to purchase the same game twice? Thanks!

    Hi,
    Provided they both use the same itunes account, yes you can.
    dud.

  • Is it possible to Face Time with more than one person?

    All of my grandchildren posess iiPads, and I regularly Face Time with them---individually.  Is it possible to Face Time with more than one person?

    Not at present-no.

  • Can you get free trial more than 1 time

    Can you get free trials more than on time on the same computer cause i need dreamweaver but cant pay for it i use at school but dont have it on my computer yet just the trial

    This page says that you cannot restart a trial, you can only install onto a different machine:
    http://kb2.adobe.com/cps/153/tn_15322.html
    You can try contacting Adobe support ( http://www.adobe.com/support/contact/ ), and maybe they will have some other work around. You should also check with your school, they may have a student or education price that is much much less than the retail price of Dreamweaver.

  • I have iPod shuffle 2nd gen. 1GB, how can I autofill it with more than 70 songs?

    I have iPod shuffle 2nd gen. 1GB, how can I autofill it with more than 70 songs, when I used to be able to get more than l20+ songs?

    Is your shuffle full after the Autofill?  Does the playlist you selected as the source have more than 70 songs?
    My 2nd gen 1GB shuffle currently has 140 songs on it, almost 100% full using Autofill.  The number of songs depends on two factors.  One is the average length of the songs.  Longer songs take more space.  A 20-minute symphony takes more space than a 4-minute pop song.  The other key factor is the bit rate used for compression.
    All of my songs are compressed using the AAC encoder at 256 kbps, which is Apple's current standard and the setting used for downloads from the iTunes Store.  The same songs compressed at 128 kbps AAC takes up half the space.  320 kbps MP3 would use more space per song.  If a lossless format, such as Apple Lossless or AIFF is used to encode, the sound quality is the best possibe, but the file size per song is MUCH higher.
    If you think there is problem on the shuffle, you can try doing a Restore in iTunes.  The Restore button is on the shuffle's Settings tab.  This will erase the shuffle, re-install its software, and set it to default settings. If there is data corruption on the shuffle's storage that is causing this problem, a Restore should fix it.

  • Can a user facetime with more than one user at a time

    I can use facetime with Macbook and connect to another Macbook user on another WIFI network... I was wondering if one can facetime with more than one user at a time?

    ellis911 wrote:
    I can use facetime with Macbook and connect to another Macbook user on another WIFI network... I was wondering if one can facetime with more than one user at a time?
    Only if you have more than one device running FaceTime at your end.
    Mac Pro Quad Core (Early 2009) 2.93Ghz Mac OS X (10.6.5); MacBook Pro (13 inch, Mid 2009) 2.26GHz (10.6.5)
    LED Cinema Display; G4 PowerBook 1.67GHz (10.4.11); iBookSE 366MHz (10.3.9); External iSight; iPod4touch4.2.1

  • HT204291 Can you send music to more than one airplay enabled speaker at the same time

    I have just purchased an airplay enabled speaker which is great, I would like another in the kitchen so as you move from room to room you can listen to the same music but I am not sure if you can play the music through more than one speaker at a time ?

    iOS devices and Apple TV's will only send the audio to one Airplay speaker at a time. However, iTunes on a computer will send audio to multiple Airplay speakers. With the help of Home Sharing and Apple's free Remote app on an iOS device you can control iTunes as well as the speakers connected to it.

  • Why can't I text to more than 10 contacts at a time with my iPhone3GS?

    Does any one have any feed back on this topic? I have discover this holiday season that I can't no longer text a message to more than 10 people at a time from my contact list. I call apple iphone support and they have confirm that this is the case.
    This is a feature that I very much enjoyed in the past and have notice that in the older software version 3.1 of my 3GS, I can still do it, but not in the new version 3.1.2

    Thank you so much Tamara, I wonder why the folks at help desk for iPhone are not a ware of this answer.. You been very helpful I really appreciated. Happy Holidays to all!

  • Can you install lightroom on more than one computer?

    Can I install Lightroom on more than one computer? I want to use it on both my laptop and desktop

    You can install on two as long as you use only one at a time.

Maybe you are looking for

  • Not going to sleep after Leopard?

    I never had any problem getting my computer to sleep with Tiger, but there seems to be a persistent problem since I installed Leopard. I think it's taking a long time to go to sleep when I close the lid. I've noticed that if I close the lid on, say,

  • Table for Valuated Project stock

    Dear All, Can any one  suggest form which table I can get value of valuated project stock for whole project. I can get it through table QBEW (Project Stock Valuation), but it gives value for individual WBS only. Regards, Nitish

  • I can't get my vocals to record and playback!

    The sound bars move and I can hear myself on my speakers but my voice doesn't record or playback. I'm micing directly in to my computer. My midi keyboard plays and records and plays back. I have it set to vocals and male R&B, monitor on.

  • Lock and Unlock ?

    Hi, i am submititing the  report "rm06k052"(Transaction- MEKL) via job in background. Suppose if one scheduling agreement contains several no of line items and for materials i have to change the price. So i m calling for each and every line item. Whe

  • Configuration parameter which are stored in automationBuild.xml file

    Do you know the correct path for below configuration parameter which are stored in automationBuild.xml file which is kept in src folder of osm project? <property name="studio.weblogic.home" value=""/>      <property name="studio.java.sdk.home" value=