Can not make call on face time

Can not make call on Face time. Mac book pro with mountain lion. Camera ok, face time starts fine, validates apple id ok. Showes list of contacts. when I select one nothing happens!! Face time is on, apple id is ok wi fi is fine (verified with lion macbook pro), also can not access face time preferences, it shows grey????

try posting in macbook pro forum. or ML

Similar Messages

  • I have problem with concoction i can not make call or sms

    I have problem with my i phone 5 i can not make call and sms do please help me

    I think you don't understand the purpose of this forum. This is a user-to-user support forum. You're not talking to Apple. You're not talking to your cellular carrier.
    One last time and then I'm done:
    You need to call your cellular carrier and get this sorted out. No one here can help you.

  • I can not make document over two times

    Hello.
    When I use the code generated by xmlclassgen_v1_0_0_2, I can not
    make document over two times in same class. I modified sample
    code(TestWidl.java) that I got from OTN
    (xmlclassgen_v1_0_0_2.zip) to check this problem. I modified it
    like below. The only modification is that I made XML data two
    times. The first call was success, but the second call was
    failed. The result of my test program was below:
    How can I avoid this error? Would you please help me?
    *** Result ****
    <
    ?xml version = '1.0' encoding = 'ASCII'?>
    <!DOCTYPE WIDL SYSTEM
    "file:/D:/usrs/ikeda/java/myprojects/XML_test1/WIDL_dtd.txt">
    <WIDL NAME="WIDL1" VERSION="1.0">
    <SERVICE NAME="Service1" URL="Service_URL" INPUT="File"
    OUTPUT="File"/>
    <BINDING NAME="Binding1" TYPE="Input">
    <REGION NAME="Region1" START="Start" EN
    D="End"/>
    <VARIABLE NAME="Variable1" NULLOK="False" TYPE="String"
    USAGE="Internal" VALUE="value"/>
    <CONDITION REF="CRef1" MATCH="CMatch1" SERVICE="Ser
    vice1" TYPE="Success"/>
    <VARIABLE NAME="Variable2" NULLOK="True" TYPE="String1"
    USAGE="Header"/>
    </BINDING>
    <BINDING NAME="Binding2" TYPE="Output">
    <CONDITION REF="CRef2" MATCH="CMatch2" TYPE="Retry"/>
    <VARIABLE NAME="Variable3" NULLOK="False" TYPE="String2"
    USAGE="Function" MASK="mask"/>
    </BIN
    DING>
    </WIDL>
    oracle.xml.parser.XMLDOMException: Node doesn't belong to the
    current document
    oracle.xml.parser.XMLDOMException: Node doesn't belong to the
    current document
    at oracle.xml.parser.XMLNode.checkDocument(Compiled
    Code)
    at oracle.xml.parser.XMLNode.appendChild(Compiled Code)
    at oracle.xml.parser.XMLDocument.appendChild(Compiled
    Code)
    at oracle.xml.parser.XMLNode.appendChild(Compiled Code)
    at oracle.xml.classgen.CGDocument.<init>(Compiled Code)
    at XML_test1.WIDL.<init>(Compiled Code)
    at XML_test1.TestWidl.test(Compiled Code)
    at XML_test1.TestWidl.main(TestWidl.java:11)
    The sample code that I modified was below:
    import oracle.xml.classgen.*;
    import oracle.xml.parser.*;
    public class TestWidl
    public static void main (String args[])
    test(); // I modified
    test(); //I modified
    static void test(){
    try
    WIDL w1 = new WIDL();
    DTD dtd = w1.getDTDNode();
    w1.setNAME("WIDL1");
    w1.setVERSION(WIDL.VERSION_1_0);
    SERVICE s1 = new SERVICE("Service1", "Service_URL");
    s1.setINPUT("File");
    s1.setOUTPUT("File");
    BINDING b1 = new BINDING("Binding1");
    b1.setTYPE(BINDING.TYPE_INPUT);
    BINDING b2 = new BINDING("Binding2");
    b2.setTYPE(BINDING.TYPE_OUTPUT);
    VARIABLE v1 = new VARIABLE("Variable1",
    VARIABLE.NULLOK_FALSE);
    v1.setTYPE(VARIABLE.TYPE_STRING);
    v1.setUSAGE(VARIABLE.USAGE_INTERNAL);
    v1.setVALUE("value");
    VARIABLE v2 = new VARIABLE("Variable2",
    VARIABLE.NULLOK_TRUE);
    v2.setTYPE(VARIABLE.TYPE_STRING1);
    v2.setUSAGE(VARIABLE.USAGE_HEADER);
    VARIABLE v3 = new VARIABLE("Variable3",
    VARIABLE.NULLOK_FALSE);
    v3.setTYPE(VARIABLE.TYPE_STRING2);
    v3.setUSAGE(VARIABLE.USAGE_FUNCTION);
    v3.setMASK("mask");
    CONDITION c1 = new CONDITION("CRef1", "CMatch1");
    c1.setSERVICE("Service1");
    c1.setTYPE(CONDITION.TYPE_SUCCESS);
    CONDITION c2 = new CONDITION("CRef2", "CMatch2");
    c2.setTYPE(CONDITION.TYPE_RETRY);
    CONDITION c3 = new CONDITION("CRef3", "CMatch3");
    c3.setSERVICE("Service3");
    c3.setTYPE(CONDITION.TYPE_FAILURE);
    REGION r1 = new REGION("Region1", "Start", "End");
    b1.addNode(r1);
    b1.addNode(v1);
    b1.addNode(c1);
    b1.addNode(v2);
    b2.addNode(c2);
    b2.addNode(v3);
    w1.addNode(s1);
    w1.addNode(b1);
    w1.addNode(b2);
    //w1.validateContent();
    w1.print(System.out);
    catch (Exception e)
    System.out.println(e.toString());
    e.printStackTrace();
    null

    Satoshi Ikeda (guest) wrote:
    : Hello.
    : When I use the code generated by xmlclassgen_v1_0_0_2, I can
    not
    : make document over two times in same class. I modified sample
    : code(TestWidl.java) that I got from OTN
    : (xmlclassgen_v1_0_0_2.zip) to check this problem. I modified
    it
    : like below. The only modification is that I made XML data two
    : times. The first call was success, but the second call was
    : failed. The result of my test program was below:
    : How can I avoid this error? Would you please help me?
    : *** Result ****
    : <
    : ?xml version = '1.0' encoding = 'ASCII'?>
    : <!DOCTYPE WIDL SYSTEM
    : "file:/D:/usrs/ikeda/java/myprojects/XML_test1/WIDL_dtd.txt">
    : <WIDL NAME="WIDL1" VERSION="1.0">
    : <SERVICE NAME="Service1" URL="Service_URL" INPUT="File"
    : OUTPUT="File"/>
    : <BINDING NAME="Binding1" TYPE="Input">
    : <REGION NAME="Region1" START="Start" EN
    : D="End"/>
    : <VARIABLE NAME="Variable1" NULLOK="False" TYPE="String"
    : USAGE="Internal" VALUE="value"/>
    : <CONDITION REF="CRef1" MATCH="CMatch1" SERVICE="Ser
    : vice1" TYPE="Success"/>
    : <VARIABLE NAME="Variable2" NULLOK="True" TYPE="String1"
    : USAGE="Header"/>
    : </BINDING>
    : <BINDING NAME="Binding2" TYPE="Output">
    : <CONDITION REF="CRef2" MATCH="CMatch2" TYPE="Retry"/>
    : <VARIABLE NAME="Variable3" NULLOK="False" TYPE="String2"
    : USAGE="Function" MASK="mask"/>
    : </BIN
    : DING>
    : </WIDL>
    : oracle.xml.parser.XMLDOMException: Node doesn't belong to the
    : current document
    : oracle.xml.parser.XMLDOMException: Node doesn't belong to the
    : current document
    : at oracle.xml.parser.XMLNode.checkDocument(Compiled
    : Code)
    : at oracle.xml.parser.XMLNode.appendChild(Compiled Code)
    : at oracle.xml.parser.XMLDocument.appendChild(Compiled
    : Code)
    : at oracle.xml.parser.XMLNode.appendChild(Compiled Code)
    : at oracle.xml.classgen.CGDocument.<init>(Compiled Code)
    : at XML_test1.WIDL.<init>(Compiled Code)
    : at XML_test1.TestWidl.test(Compiled Code)
    : at XML_test1.TestWidl.main(TestWidl.java:11)
    : The sample code that I modified was below:
    : import oracle.xml.classgen.*;
    : import oracle.xml.parser.*;
    : public class TestWidl
    : public static void main (String args[])
    : test(); // I modified
    : test(); //I modified
    : static void test(){
    : try
    : WIDL w1 = new WIDL();
    : DTD dtd = w1.getDTDNode();
    : w1.setNAME("WIDL1");
    : w1.setVERSION(WIDL.VERSION_1_0);
    : SERVICE s1 = new SERVICE("Service1", "Service_URL");
    : s1.setINPUT("File");
    : s1.setOUTPUT("File");
    : BINDING b1 = new BINDING("Binding1");
    : b1.setTYPE(BINDING.TYPE_INPUT);
    : BINDING b2 = new BINDING("Binding2");
    : b2.setTYPE(BINDING.TYPE_OUTPUT);
    : VARIABLE v1 = new VARIABLE("Variable1",
    : VARIABLE.NULLOK_FALSE);
    : v1.setTYPE(VARIABLE.TYPE_STRING);
    : v1.setUSAGE(VARIABLE.USAGE_INTERNAL);
    : v1.setVALUE("value");
    : VARIABLE v2 = new VARIABLE("Variable2",
    : VARIABLE.NULLOK_TRUE);
    : v2.setTYPE(VARIABLE.TYPE_STRING1);
    : v2.setUSAGE(VARIABLE.USAGE_HEADER);
    : VARIABLE v3 = new VARIABLE("Variable3",
    : VARIABLE.NULLOK_FALSE);
    : v3.setTYPE(VARIABLE.TYPE_STRING2);
    : v3.setUSAGE(VARIABLE.USAGE_FUNCTION);
    : v3.setMASK("mask");
    : CONDITION c1 = new CONDITION("CRef1", "CMatch1");
    : c1.setSERVICE("Service1");
    : c1.setTYPE(CONDITION.TYPE_SUCCESS);
    : CONDITION c2 = new CONDITION("CRef2", "CMatch2");
    : c2.setTYPE(CONDITION.TYPE_RETRY);
    : CONDITION c3 = new CONDITION("CRef3", "CMatch3");
    : c3.setSERVICE("Service3");
    : c3.setTYPE(CONDITION.TYPE_FAILURE);
    : REGION r1 = new REGION("Region1", "Start", "End");
    : b1.addNode(r1);
    : b1.addNode(v1);
    : b1.addNode(c1);
    : b1.addNode(v2);
    : b2.addNode(c2);
    : b2.addNode(v3);
    : w1.addNode(s1);
    : w1.addNode(b1);
    : w1.addNode(b2);
    : //w1.validateContent();
    : w1.print(System.out);
    : catch (Exception e)
    : System.out.println(e.toString());
    : e.printStackTrace();
    Move
    WIDL w1 = new WIDL();
    out of test() and modify it as
    public class TestWidl
    static WIDL w1 = new WIDL(); ...
    and this will work.
    Oracle XML Team
    http://technet.oracle.com
    Oracle Technology Network
    null

  • I can not get in my face time can you help me

    I can not get in my face time it tells me me is incorrect

    Using FaceTime http://support.apple.com/kb/ht4319
    Troubleshooting FaceTime http://support.apple.com/kb/TS3367
    The Complete Guide to FaceTime + iMessage: Setup, Use, and Troubleshooting
    http://tinyurl.com/a7odey8
    Troubleshooting FaceTime and iMessage activation
    http://support.apple.com/kb/TS4268
    iOS: About Messages
    http://support.apple.com/kb/HT3529
    Set up iMessage
    http://www.apple.com/ca/ios/messages/
    Troubleshooting Messages
    http://support.apple.com/kb/TS2755
    Setting Up Multiple iOS Devices for iMessage and Facetime
    http://macmost.com/setting-up-multiple-ios-devices-for-messages-and-facetime.htm l
    FaceTime and iMessage not accepting Apple ID password
    http://www.ilounge.com/index.php/articles/comments/facetime-and-imessage-not-acc epting-apple-id-password/
    Unable to use FaceTime and iMessage with my apple ID
    https://discussions.apple.com/thread/4649373?tstart=90
     Cheers, Tom

  • I have an iPad 2 wifi 3G , living in Iran and can not make call , what i should do?

    Hello , I have an iPad 2 wifi 3G , living in Iran , and can not make call , what i should do?

    If you're trying to FaceTime, you must be connected to a wifi source and the other individual must also have wifi and FaceTime. Like Jonathan said, it can't make calls.

  • "Hello, I bought an iphone from Japan but I can not make calls fom him, his number is 012417004140945. Please help me."

    Hello, I bought an iphone from Japan but I can not make calls fom him, his number is 012417004140945. Please help me."

    Get SIM from the carrier who sold the iPhone.
    Or Get it unlocked from them if they offer unlocking service.
    If it is from SoftBank, they don't.

  • Can not answer calls 8/10 times

    Hi,
        I am Running Win 8.1 and have a secondary account also (skype). When people call me i can not answer or decline. i have version 6.20.0.104. The person calling says that the call connects his side but can not hear anything. I call back and i have the dialing screen without ringing untill the call times out.
     I have tried with only 1 account open but it makes no difference.
    I call back the third time or they call me and i can answer no problem but 8/10 times this happens with the 2/10 being answered first time.
    I hope someone has some advice as its a real pain now.
    Regards
    AMICA_DAVID

    I have this same problem... had couple of my staff of network engineers trying to resolve this over the course of several days... cleared all and anything to do with skype from my hard drive... program, registers, cache, hidden folder stuff, defrag, etc...  and it appeared fixed... but after about a week this same crap started again... no matter how many times i press the answer button it won't answer... until the caller hangs up and calls again... many times I have to engage control alt delete just to get the Skype ringer to shut off... funny that we don't seem to get any response from Microsoft on this issue... there was some critiptic funky stuff buried deep in some text strings we followed Microsoft's instructions on about 6 month ago, but did not work either... ever since Microsoft got their hands on Skype, its realiability has gone down (at least for our company)... too bad such a formerly great company is eroding so quickly.

  • I am having problem with iphone 4s, I can not make calls or send text message? Please help.

    The problem is presistant. I tried to send the text message but it does not leave the phone, it is only delivered after I turn the phone off and then turn it on again. Only then it gets delivered and even that is only for that moment.
    Secondly, I can not send or recieve the calls as well.
    Thirdly, after I make a call, the calling screen gets stuck and I can not talk to the current caller or dial to another caller.
    Note: I have 'Not" dropped my iphone any where uptil now and I keep it in a pouch to protect it. The problem started recently and before that it worked fine. The problem started when I turned off the phone and after an hour or 2, I turned it on again.
    The signals of the service provider is coming perfectly. I haven't found any problem with there service yet.

    Network unavailable means the phone is detecting and using the SIM, else you would get a NO SIM error.
    It means that Sprint does not exist in the Ukraine (obvious), and Sprint does not have any interconnection agreement with a local carrier. Hence, the phone can't talk to anyone, carrier-wise. You need to get a SIM from a local carrier and try again. If it works, you're all set and the phone is indeed unlocked. Else you have been conned and will need to go and complain with whomever sold it to you.

  • BH 214 can not make call but can hear music.

    I am using Nokia X6-00 8GB, I have BH 214, I have succesfuly connect the bluethooth headphone and i can heared music throgth it but  when make call, the call is not handfree to bh 214. please reply as soon as posible. thank you. But with E63 it work properly

    just try a hard reset on ur phone, i had almost d same prob. sound can b heard from headphones but headset buttons were not working during call, so cant accept n reject call with BH 214

  • I can not hear when I face time on my IPad

    When using face time on my IPad the audio quits after using for a short time. Is there a fix for this.

    Press and hold the Sleep/Wake button and the Home button together for at least ten seconds, until the Apple logo appears. DONT CONNECT YOUR DEVICE TO A COMPUTER.
    then try it. if that doesnt work
    Go to settings>icloud>storage and back up>back up
    or back it up to a computer
    after that preform a restore by going to
    general>reset>erase all content and settings
    this will delete everything except the enabled stuff on icloud.
    You can view whats enabled by going to icloud in settings.

  • HT4623 I have updated my iphone 4 to 6.0 and now can not make calls or receive them...battery life is very short as well.

    Not able to send or receive calls since upgrading my iPhone 4.  Every time i make a call it fails.  I have also noticed that my the battery life is very short as well.
    What is Apple and other carriers doing about this?  When will this be fixed?

    Look to the right in the "More Like This" box for assistance.  Your issue has been explored ad nauseum.

  • Brand new iPhone 4 can not make calls network says extended

    Me and my husband bought brand new iPhone 4 on Saturday at Walmart through straight talk. Since Monday his phone is unable to make phone calls his network did say TFW but since then it just says extended. He can recieve calls and texts and can text off his phone with a time delay. Any idea how to fix it

    Sounds as if it a carrier issue. Contact Sraight Talk.

  • Can not make call to Canada no!!!

    I'm having a subscription for calling unlimited to Canada. But while I call once of my friend in Canada. skype usually said that the number is uncorrected or unavailable. However, I able to connect to him sometime. So what wrong with my account?

    try posting in macbook pro forum. or ML

  • Can we conference call on face time now

    the last reference to this question was in 2012 and No was the answer then. So I am wondering if the new Air and operating system will allow it now

    Not in Mavericks, but it's an announced feature of Yosemite.

  • I can not make or recieve calls or texts

    I have had an EE contract for almost a year now, I can use Imessage and FaceTime but I can not make calls or texts and I can not recieve them. I have called EE and they haven't helped, I have signal and 3G but the 3G barely works. Does anyone know what I can do?

    Hi ,
    Thanks for coming to the community with this.
    Does this happen in all areas?
    Also have you tried the SIM in another phone at all?
    I will certainly see what I can do for you .

Maybe you are looking for

  • Any hope for old powerpc mini?

    Hi, Older than dirt mini running 10.5.8 with the following specs: Model Name: Mac mini   Model Identifier: PowerMac10,2   Processor Name: PowerPC G4 (1.2)   Processor Speed: 1.5 GHz   Number Of CPUs: 1   L2 Cache (per CPU): 512 KB   Memory: 512 MB  

  • PIR and Production Orders

    Hi all, X product's strategy is 40 and it has 20 production orders, seen in MD04. In MD61 i have entered 40 PIR. In MD04 i want to see that 20 production orders and 40 planned orders after MRP run. But MRP run creates 20 planned orders. It creates PI

  • QUESTION ABOUT DETAILS ON INSTALLING SNOW LEOPARD 10.6 ON MACBOOK!

    Obviously I'm not too knowledgeable on this subject but I'm wondering when I buy the new Snow Leopard 10.6 for my macbook(which has an Intel processor), I've heard/read that I don't have to delete all my current files on my computer and basically res

  • How to confirm Network issue

    Dear Experts, Whenever there is a performance issue (Oracle EBiz 11.5.10.2 and db 10.2.0.4) and, i ask our network admin to check if there is a network issue. They blindly say that there is no Network issue. We have diagnostics which can give data on

  • Where can i find my photos that are on my phone, are they saved to i tunes?

    where can i find the photos on my phone, should they not be saved on i tunes?