Siri is not making calls when i ask

For some reason, siri is telling me it has a problem every time I ask it to place a call.  How do I fix this? 

Return for exchange or repair. It can't be doing that, actually, since it is human-finger touch activated. If it is doing that on its own, there is a problem with the hardware.
THere is another thread on this - so yes, it does appear to have happened to someone else. But it isn't correctable by any of us on here, it needs to go to Apple for service or exchange.

Similar Messages

  • Charged £1.50 for not making calls... but we are!

    Hello, we have been with BT for about 3 months. We paid for 12 months of line rental and have a unlimited phone/10GB broadband package.
    We have been chaged every single month for not making the minimum number of calls per month, however we are making a couple of calls each week and one month in paticular we made quite alot as a family member was in hospital. We started to record the calls but gave up at about 10 because it was inconvinient.
    The customer service people (whom we are calling from this phone we are not making any calls from!) repeatedly tell us over and over that we are not making calls... but we are!
    Does anyone know what is happening here?
    Solved!
    Go to Solution.

    If your calls are being billed to the wrong company, try prefixing your calling number with 1280, that will ensure that the call gets routed via BT. Then see if the calls appear on your bill.
    If they do, then somehow your calls are still being billed to TalkTalk, and you may have a nasty surprise when they bill you.
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

  • Listeners keyDown are not being called when keyDown in an popup l

    For some reason the listeners titleWindow_keyDown are not being called when keyDown in an popup like so:
    <?xml version="1.0" encoding="utf-8"?>
    <s:SkinnablePopUpContainer xmlns:fx="http://ns.adobe.com/mxml/2009"
                               xmlns:s="library://ns.adobe.com/flex/spark"
                               xmlns:mx="library://ns.adobe.com/flex/mx" width="400" height="300"  keyDown="titleWindow_keyDown(event);" >
        <s:TitleWindow title="Edit Complaint" close="close()">
    private function titleWindow_keyDown(evt:KeyboardEvent):void {
                        if (evt.charCode == Keyboard.ESCAPE) {
                            close();
    Any ideas friends??

    But in my code it is a child inside SkinnablePopUpContainer:
    <s:SkinnablePopUpContainer xmlns:fx="http://ns.adobe.com/mxml/2009"
                               xmlns:s="library://ns.adobe.com/flex/spark"
                               xmlns:mx="library://ns.adobe.com/flex/mx" width="400" height="300"  keyDown="titleWindow_keyDown(event);" >
        <s:TitleWindow title="Edit Complaint" close="close()">

  • Firefox keeps dropping my bookmarks or perhaps not storing them when I ask it to. Is there a fix?

    Firefox keeps dropping some of my bookmarks and not storing others when I ask it to. Also, in searching for answers, I found out that I have 2 profiles. I couldn't open any of the 3 items in the first but in the second one I found a number of dated bookmarkbackups files. Am I supposed to have 2 profiles? How do I fix all this.
    I have also noticed other anomalies and wonder if they are part of the new 32.0 download I just got. Today, twice, exactly 27 instances of Firefox opened when I clicked on it just once.

    These can't get your data back, but will help in the future.
    These add-ons can be a great help by backing up and restoring Firefox
    '''[https://addons.mozilla.org/en-US/firefox/addon/febe/ FEBE (Firefox Environment Backup Extension)]''' {web link}
    FEBE allows you to quickly and easily backup your
    Firefox extensions, history, passwords, and more.
    In fact, it goes beyond just backing up -- It will actually rebuild
    your saved files individually into installable .xpi files.
    It will also make backup of files that you choose.
    '''[https://addons.mozilla.org/en-US/firefox/addon/opie/ OPIE]''' {web link}
    Import/Export extension preferences

  • Siri starts a facetime call when asked to read a text

    Siri will not read any text message that I have recieved.  I have tried to use "Read new message" and other suggestions, but everytime I try Siri facetimes someone randomly from my contact list.  Does anyone know why this is happening or how to fix it?  Thanks.

    Howdy vorsilva,
    If you are having an issue with Siri not functioning as expected, I would suggest that you troubleshoot using the steps in this article - 
    Get help with Siri - Apple Support
    Thanks for using Apple Support Communities.
    Best,
    Brett L 

  • CommandButton actions not getting called when "disabled" element present

    MyObjectForm.jsp contains commandButtons for "add", "update" and "delete" that are enabled/disabled according to the value of the bound id field.
    MyObjectForm.jsp
    <html>
    <body>
    <f:view>
    <h:form id="create">
    <h:inputHidden id="id" value="#{myObjectBean.id}" />
    <h:panelGrid columns="3" border="0">
    Name: <h:inputText id="name"
    requiredMessage="*"
    value="#{myObjectBean.name}"
    required="true"/>
    <h:message for="name"/>
    // other fields
    <h:commandButton id="add"
    value="Add" disabled="#{myObjectBean.id!=0}"
    action="#{myObjectBean.add}"/>
    <h:commandButton id="update"
    value="Update" disabled="#{myObjectBean.id==0}"
    action="#{myObjectBean.update}"/>
    <h:commandButton id="delete"
    value="Delete" disabled="#{myObjectBean.id==0}"
    action="#{myObjectBean.delete}"/>
    <h:commandButton id="delete2"
    value="Delete (no disabled element)"
    action="#{myObjectBean.delete}"/>
    </h:form>
    </f:view>
    </body>
    </html>In its managed bean, MyObjectBean, if an id parameter is found in the request, the record is read from the database and the form is populated accordingly in an annotated @PostConstruct method:-
    MyObjectBean.java
    public class MyObjectBean {
    private int id;
    /** other properties removed for brevity **/
    public MyObjectBean() {
    LOG.debug("creating object!");
    @PostConstruct
    public void init() {
    String paramId = FacesUtils.getRequestParameter("id");
    if(paramId!=null && !paramId.equals("")){
    getById(Integer.parseInt(paramId));
    LOG.debug("init id:"+id);
    }else{
    public String delete(){
    LOG.debug("delete:"+id);
    MyObjectVO myObjectVO = new MyObjectVO();
    ModelUtils.copyProperties(this, myObjectVO);
    myObjectService.removeMyObjectVO(myObjectVO);
    return "";
    public String add(){
    LOG.debug("add");
    MyObjectVO myObjectVO = new MyObjectVO();
    ModelUtils.copyProperties(this, myObjectVO);
    myObjectService.insertMyObjectVO(myObjectVO);
    return "";
    public String update(){
    LOG.debug("update:"+id);
    MyObjectVO myObjectVO = new MyObjectVO();
    ModelUtils.copyProperties(this, myObjectVO);
    myObjectService.updateMyObjectVO(myObjectVO);
    return "";
    public void getById(int id){
    MyObjectVO myObjectVO= myObjectService.findMyObjectById(id);
    ModelUtils.copyProperties(myObjectVO, this);
    /** property accessors removed for brevity **/
    }When no parameter is passed, id is zero, MyObjectForm.jsp fields are empty with the "add" button enabled and the "update" and "delete" buttons disabled.
    Completing the form and clicking the "add" button calls the add() method in MyObjectBean.java which inserts a record in the database. A navigation rule takes us to ViewAllMyObjects.jsp to view a list of all objects. Selecting an item from the ViewAllMyObjects.jsp list, adds the selected id to the request as a paramter and a navigation rule returns us to MyObjectForm.jsp, populated as expected. The "add" button is now disabled and the "update" and "delete" buttons are enabled (id is no longer equal to zero).
    Action methods not getting called
    This is the problem I come to the forum with: the action methods of commandButtons "update" and "delete" are not getting called.
    I added an extra commandButton "delete2" to the form with no "disabled" element set and onclick its action method is called as expected:-
    commandButton "delete2" (no disabled element) - works
    <h:commandButton id="delete2"
    value="Delete (no disabled element)"
    action="#{myObjectBean.delete}"/>Why would "delete2" work but "delete", not?
    commandButton "delete" (disabled when id is zero) - doesn't work
    <h:commandButton id="delete"
    value="Delete" disabled="#{myObjectBean.id==0}"
    action="#{myObjectBean.delete}"/>The obvious difference is the "disabled" element present in one but not the other but neither render a disabled element in the generated html.
    Am I missing something in my understanding of the JSF lifecycle? I really want to understand why this doesn't work.
    Thanks in advance.
    Edited by: petecknight on Jan 2, 2009 1:18 AM

    Ah, I see (I think). Is the request-scoped MyObjectBean instantiated in the Update Models phase? If so then the id property will not be populated at the Apply Request Values phase which happens before this, making the commandButton's disabled attribute evaluate to true.
    Confusingly for me, during the Render Response phase, the id property is+ set, so the expression is false (not disabled) giving the impression that the "enabled" buttons would work.
    So, is this an flaw in my parameter passing and processing code or do you see a work around?

  • Why is FmsDestroyFileAdaptor not being called when FMSCore exits

    I'm developing a file-io plug-in and the FmsDestroyFileAdaptor or FmsDestroyFileAdaptor2 functions are not being called for my dll when the FMSCore process exits. I built the and tested the sample plug-in that comes with FMIS 3.5 and the same problem exists with it as well.
    Any clues? Is this a bug?
    Thanks,
    George

    This issue has been fixed in 3.5.2 release. See http://www.adobe.com/support/documentation/en/flashmediaserver/releasenotes.html

  • Shutdown hook not getting called when running tomcat as a service

    I have a shutdown hook as part of a lifecycle <Listener> tomcat6 class, which gets created and registered in the class's constructor (class is referenced in the server.xml). The hook gets called during shutdown when tomcat has been started from a shell, but not when tomcat has been installed as a service. The -Xrs flag doesn't make a difference either way. I am running java 6u12 server VM (haven't tried client) and prior versions. Does anyone have any ideas? This has been tested by starting/stopping from the Control Panel, and also with 'tomcat6 //TS/ServiceName' (i.e. in test mode)
    One possibility is that tomcat internally calls Runtime.halt(), but the shutdown process appears to be normal and the same with either scenario. The other possibility is that the JVM has an issue. The tomcat user groups don't have anything to offer.
    Thoughts?
    tia

    sanokistoka wrote:
    jschell wrote:
    sanokistoka wrote:
    Let me ask the last question in a better way: Does anyone have any GOOD ideas?Get back to us when you have found your good solution.Stop wasting bandwidth. I didn't post here to be a smart ars like you and pretend that I have a solution to a rare problem... FYI - the workaround is to use the tomcat lifecycle events (AFTER_STOP_EVENT) to achieve the same - why do you think I mentioned it's a tomcat listener in the first place? Feel free to educate me.
    So you are claiming that Runtime.getRuntime().addShutdownHook() that you posted in the above is not part of the java API?
    Or perhaps that everything that is added via addShutdownHook() runs?
    Surely you are not claiming that it isn't calling addShutdownHook() in the first place?
    Get a life and a job.I have both but thanks for the concern.
    sanokistoka wrote:
    swamyv wrote:
    There are free tools available to debug windows. I think gdb is one of them. If you search you can find some good tools.
    If you find any good tools that you like share it with us.
    Yes I will try gdb (have cygwin) and see where this takes us - not sure if the JVM or tomcat6.exe have the symbols to get a meaningful stack trace. As luck would have it, [https://issues.apache.org/bugzilla/show_bug.cgi?id=10565|https://issues.apache.org/bugzilla/show_bug.cgi?id=10565] claims that "shutdown hooks are not supported in a container environment" although there is no such restriction in the servlet spec, which would make this a tomcat issue (it does sound like that tomcat6.exe wrapper is somehow involved). Unfortunately, tomcat does NOT issue the AFTER_STOP_EVENT if killed before it has completed its start-up (it appears its own shutdown hook, which sends the event, is not registered until it has fully come up); thus the need for a shutdown hook (at least, up until it's fully up). A shutdown hook is still required in my case for clean-up after tomcat is completely out of the picture. It sounds like the proper architecture here is to really embed tomcat in an application, and create a shutdown hook at the outer level.
    Educate me some more. The above description certainly seems like you are suggesting that both of the following are true.
    1. It is not a bug in the VM.
    2. The problem, for your implementation, is in how the wrapper terminates the windows service.
    Perhaps what is actually happening it that addShutdownHook() is never being called at all? Thus of course any processing of the thread associated with that would never, ever run.
    And that happens because you are banging on the stop service so fast that it doesn't actually have time to spin up?

  • IDBase_UI_Dialog::Destructor not always called when dialog exits?

    Hi,
    We're having an intermittent issue with one of our dialogs on CC 2014 on Mac 10.8.  It's a Moveable Modal dialog and sometimes when it is closed, the next time it opens the dialog come up but IDialog::Open returns immediately rather than blocking as you would expect for a Modal dialog.
    Having used the trace, what appears to be happening is that when the dialog is closed, when it works properly the last thing that InDesign does is:
    DVModalDialogWindow::Destructor
    DVWindow::ReleaseWindow deleting drover OS_Window for 3b50e600
    IDBase_UI_Dialog::Destructor
    but when it doesn't work, these three lines do not appear in the trace.  Could we be doing something that would cause this?
    Can anyone shed some light on this?
    Thanks,
    Dan Tate

    I have found a workaround for this: when the IDialog::Open returns immediately, the IDialog::IsOpen returns true, so I can trap it.  If I then call IDialog::SetDeleteOnClose(true) and then IDialog::Close, then the dialog does close properly and opens correctly the next time.
    I'd still like to know why I am getting into this state in the first place though.
    For further information, this seems to happen less frequently (if at all) on CC 2014 10.1, but happens fairly regularly on 10.0 - was anything changed in this area between the two versions?
    Thanks,
    Dan Tate

  • Desktop version not making calls

    On Skype metro I am able to make calls as well as receive them, and I like normal. However, on the desktop version of Skype, I am only able to IM. When to I go to make a call it makes the initial dial noise then silence. It soon offers to let me leave a message.
    I've tried uninstalling Metro but it does no good. When both programs are installed I can IM on both but if I am called, the metro version of Skype receives it and the desktop version does not.

    Bump?

  • Queue music is not releasing calls when agent is available

    Dear experts, need your urgent suggestion here –
    I have configured a Network VRU script on UCCE for queue music but problem is even if agent is available queue music keeps on playing to callers and call does not connect to caller. Please advise if something is wrong with below configuration.

    Thank you for your response. We did multiple testing on this application and RUN External Script is not interruptible for some options on IVR but same RUN EXTERNAL SCRIPT configuration is working and it’s interruptible for some options. We checked all variables being set in application to validate if it’s any variable for some options making media file non-interruptible but couldn’t find anything.
    Finally, we created a new skill group and routed non-interruptible calls to these new skill groups and everything was fine after this. It is clear that skill group configuration is not allowing RUN EXTERNAL SCRIPT to be non-interruptible. This is really a very strange issue because skill group configuration is absolutely fine. I also checked route of skill group and it's similar to other working skill group.
    Can you pleese suggest what configuration may be casusing skill groups problem ?

  • My phone is not making calls or sending text it keeps saying it is searching in left hand corner! I've read and tried to restart and reset and its not working! Please help

    My phone was working fine this am then I go to use it and there is a searching word in the left corner and I can not send a text or a call, i read what the online said to do and it did not work! Please help!

    The searching is searching for your cell phone providor... without that being connect you will not be able to use your phone or text messages... try turning on Airplane mode for 30 seconds and turning it back off to see if it reboots the providor search.

  • I could previously open my itunes program on my computer. Not now as when it asks, Do you want to allow this program to make changes to your computer and I select, Yes, it shuts down.  I have removed and re-installed itunes, checked firewall. Pls help

    I could previously open my itunes program on my computer and sync with ipad, ipod and iphone but no longer. When I select itunes a dialogue box opens  with question - "Do you want to allow this program to make changes to your computer"  When I select YES, it just shuts down.   I have removed and reinstalled itunes. have checked firewall and spent hours trying to fix. Please help.

    A possible cause of this error is that Firefox is set to run as Administrator.
    Check that Firefox isn't set to run as Administrator.
    Right-click the Firefox desktop shortcut and choose "Properties".
    Make sure that all items are deselected in the "Compatibility" tab of the Properties window.
    * Privilege Level: "Run this program as Administrator" should not be selected
    * "Run this program in compatibility mode for:" should not be selected
    Also check the Properties of the firefox.exe program in the Firefox program folder (C:\Program Files\Mozilla Firefox\).

  • When I click on Mozilla Firefox I get server not found. When I ask for help I get server not found. Without my intention visual bee is in background.

    I recently responded to a prompt to upgrade Mozilla Firefox and started seeing visual bee in background and got lookup for browser safeguard.com.com failed. Can't get into Firefox. My version is 3.6.12. Help requested. Thanks Keith

    It is possible that your security software (firewall, anti-virus) blocks or restricts Firefox or the plugin-container process without informing you, possibly after detecting changes (update) to the Firefox program.
    Remove all rules for Firefox and the plugin-container from the permissions list in the firewall and let your firewall ask again for permission to get full unrestricted access to internet for Firefox and the plugin-container process and the updater process.
    See:
    *https://support.mozilla.org/kb/Server+not+found
    *https://support.mozilla.org/kb/Firewalls
    *https://support.mozilla.org/kb/fix-problems-connecting-websites-after-updating

  • IPhone not making sounds when in dock

    When I put my iPhone in the Dock to sit, it will act like it is on vibrate, when it is, of course, on ring. It will still play music and my even my ringtone when I go into the sound settings, but it won't make the text message sound or anyother sound like that (locking sound, new mail, etc.) When out of the Dock, it works perfectly fine. Any ideas?

    Not normal for sure. I would say try rebooting the phone (see here)
    http://discussions.apple.com/message.jspa?messageID=5851978#5851978
    After that not really sure. Any chance you jailbroke it thus causing the issue?

Maybe you are looking for