Siri not finding relations in address book

I have today purchased the new iPhone4S 64GB because I think Siri is very usefull.
I have assigned relationships to people by talking to Siri such as "Emma Davies is my sister" successfully.  However when I ask Siri to "Call my sister" it translates the relationship to the name but then says "I don't see 'Emma Davies' in your address book."
I have tried with other relations, restarted the phone, and re-set the phone to no avail so far.  It's not stopping my usage nor dose it anoy me that it isn't working.  I'm just posting this information incase anyone else is experiancing the same problem and/or maybe has a fix.
Thanks,

Yup, me too. This started out as a custom group I'd created, then later wanted to delete ... I can't find it in Address Book, yet it's still showing up when I sync my iPhone with iTunes.

Similar Messages

  • HT4489 How to find out which contact(s) not imported in icloud address book?

    How to find out which contact(s) not imported in icloud address book?

    You can find out which once are in the cloud, by going to icloud.com and signing in.

  • Getting a "Could not find a base address that matches scheme net.tcp"

    I've written several WCF services which use HTTP (and its variants).  Now I'm trying to learn how to write a WCF service which will use TCP.  I'm using Andrew Troelsen's book, "Pro C# 2008 and the .NET 3.5 Platform" as a guide (chapter 25).  I've asked questions related to this before on a much more complicated WCF service, so I decided to write a simple WCF service to learn how to do it, rather than work on my more complicated WCF service.  Coincidentally I chose the same routine as Troelsen did in his book, although in my case I called the WCF service SimpleAdd.
    Anyway, after writing the WCF service, I then wrote the Windows Service to host it.  I then installed it, and the installation went fine.  When I tried to run the service, the service started but then immediately stopped.  I checked the event log and found the following message in it:
    "Service cannot be started. System.InvalidOperationException: Could not find a base address that matches scheme net.tcp for the endpoint with binding MetadataExchangeTcpBinding. Registered base address schemes are [http]."
    Here's the interface code for my SimpleAdd:
    using System;  
    using System.Collections.Generic;  
    using System.Linq;  
    using System.Runtime.Serialization;  
    using System.ServiceModel;  
    using System.Text;  
    namespace SimpleAdd  
        // NOTE: If you change the interface name "IService" here, you must also update the reference to "IService" in App.config.  
        [ServiceContract]  
        public interface IService  
            [OperationContract]  
            int Add(int FirstNumber, int SecondNumber);  
    Here's the code for the implementation (I'm leaving out the using statements):
    namespace SimpleAdd  
        // NOTE: If you change the class name "Service" here, you must also update the reference to "Service" in App.config.  
        public class Service : IService  
            #region IService Members  
            int IService.Add(int FirstNumber, int SecondNumber)  
                return (FirstNumber + SecondNumber);  
            #endregion  
    And here's the App.Config file for the service:
    <?xml version="1.0" encoding="utf-8" ?> 
    <configuration> 
      <system.web> 
        <compilation debug="true" /> 
      </system.web> 
      <!-- When deploying the service library project, the content of the config file must be added to the host's   
      app.config file. System.Configuration does not support config files for libraries. --> 
      <system.serviceModel> 
        <services> 
          <service behaviorConfiguration="SimpleAdd.ServiceBehavior" name="SimpleAdd.Service">  
            <clear /> 
            <endpoint binding="wsHttpBinding" contract="SimpleAdd.IService" 
              listenUriMode="Explicit">  
              <identity> 
                <dns value="localhost" /> 
                <certificateReference storeName="My" storeLocation="LocalMachine" 
                  x509FindType="FindBySubjectDistinguishedName" /> 
              </identity> 
            </endpoint> 
            <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" 
              listenUriMode="Explicit">  
              <identity> 
                            <!--   
                <certificateReference storeName="My" storeLocation="LocalMachine" 
                  x509FindType="FindBySubjectDistinguishedName" /> 
                                --> 
              </identity> 
            </endpoint> 
            <endpoint address="net.tcp://localhost/SimpleAdd/" binding="netTcpBinding" 
              bindingConfiguration="" contract="SimpleAdd.IService" /> 
            <host> 
              <baseAddresses> 
                <add baseAddress="http://localhost:8731/Design_Time_Addresses/SimpleAdd/Service/" /> 
              </baseAddresses> 
            </host> 
          </service> 
        </services> 
        <behaviors> 
          <serviceBehaviors> 
            <behavior name="SimpleAdd.ServiceBehavior">  
              <serviceMetadata httpGetEnabled="true" /> 
              <serviceDebug includeExceptionDetailInFaults="false" /> 
            </behavior> 
          </serviceBehaviors> 
        </behaviors> 
      </system.serviceModel> 
    </configuration> 
    I don't think it will matter much, because I believe the problem probably lies in the App.config file for the Windows service, but just in case, here's the code for the AddWinService (without the using statements):
    namespace WindowsAddService  
        public partial class AddWinService : ServiceBase  
            //A member variable of type ServiceHost.  (I'm using the "Pro C# 2008" book as reference for this.)  
            private ServiceHost myHost;  
            public AddWinService()  
                InitializeComponent();  
            protected override void OnStart(string[] args)  
                //just to be really safe  
                if (myHost != null)  
                    myHost.Close();  
                    myHost = null;  
                //create the host  
                myHost = new ServiceHost(typeof(SimpleAdd.Service));    //I've included the class from SimpleAdd, which isn't in the book!!!  
                //open the host  
                myHost.Open();  
            protected override void OnStop()  
                //shut down the host  
                if (myHost != null)  
                    myHost.Close();  
    And lastly, here is the App.Config file from my AddWinService:
    <?xml version="1.0" encoding="utf-8" ?> 
    <configuration> 
        <system.serviceModel> 
            <client> 
                <endpoint address="net.tcp://localhost/SimpleAdd" 
                                    binding="netTcpBinding" 
                                    contract="SimpleAdd.IService" 
                                    name="netTcpBinding_IService" /> 
            </client> 
            <services> 
                <service name="SimpleAdd.Service" 
                                 behaviorConfiguration="SimpleAddMEXBehavior">  
                    <!-- Enable the MEX endpoint --> 
                    <endpoint address="mex" 
                                        binding="mexTcpBinding" 
                                        contract="IMetadataExchange" /> 
                    <host> 
                        <!-- Need to add this so MEX knows the address of our service. --> 
                        <baseAddresses> 
                            <add baseAddress="http://localhost:8731/Design_Time_Addresses/SimpleAdd/Service/" /> 
                        </baseAddresses> 
                    </host> 
                </service> 
            </services> 
            <behaviors> 
                <serviceBehaviors> 
                    <behavior name="SimpleAddMEXBehavior">  
                        <serviceMetadata httpGetEnabled="true" /> 
                    </behavior> 
                </serviceBehaviors> 
            </behaviors> 
        </system.serviceModel> 
    </configuration> 
    So, where have I gone wrong?
    Rod

    Hello Richard,
    Well, I've tried making the change to the MEX point for net.tcp, but now when I try to start the service I get the following error in the event log:
    Service cannot be started. System.InvalidOperationException: Service 'SimpleAdd.Service' has zero application (non-infrastructure) endpoints. This might be because no configuration file was found for your application, or because no service element matching the service name could be found in the configuration file, or because no endpoints were defined in the service element.
    I am sure the problem lies with what I've put into the app.config file.  My app.config file now looks like this:
    <?xml version="1.0" encoding="utf-8" ?> 
    <configuration> 
        <system.serviceModel> 
            <client> 
                <endpoint address="" 
                                    binding="netTcpBinding" 
                                    contract="SimpleAdd.IService" 
                                    name="netTcpBinding_IService" /> 
            </client> 
            <services> 
                <service name="SimpleAdd.Service" 
                                 behaviorConfiguration="SimpleAddMEXBehavior">  
                    <!-- Enable the MEX endpoint --> 
                    <endpoint address="mex" 
                                        binding="mexTcpBinding" 
                                        contract="IMetadataExchange" /> 
                    <host> 
                        <!-- Need to add this so MEX knows the address of our service. --> 
                        <baseAddresses> 
                            <add baseAddress="net.tcp://localhost/SimpleAdd" /> 
                        </baseAddresses> 
                    </host> 
                </service> 
            </services> 
            <behaviors> 
                <serviceBehaviors> 
                    <behavior name="SimpleAddMEXBehavior">  
                        <serviceMetadata httpGetEnabled="false" /> 
                    </behavior> 
                </serviceBehaviors> 
            </behaviors> 
        </system.serviceModel> 
    </configuration> 
    I've also tried using this for the <client> tag under <system.serviceModel>:
    <client> 
       <endpoint address="net.tcp://localhost/SimpleAdd" 
             binding="netTcpBinding" 
        contract="SimpleAdd.IService" 
        name="netTcpBinding_IService" /> 
    </client> 
    But that gives me the same error in the event log.
    So, what have I done wrong now?
    Rod

  • WCF Published Orch - Could not find a base address that matches scheme http for the endpoint with binding MetadataExchangeHttpBinding

    I have an orchestration published as a web service.  It was working fine on our test environment, we deployed to production, and now getting this error.  The website wouldn't go in the BizTalk MSI, so we copied the files.  We reset the Authentication
    to match the test system (we are using Basic Auth).
    When we try to browse the webservice in the browser, it prompt for userid/password, we enter it, then it gives the following error. 
    I'm not even sure what it means by "base address", if URL was https://prod.mydomain.com/myapp/myservice.svc, would https://prod.mydomain.com be the based address? In the test environment, the URL is https://test.mydomain.com/myapp/myservice.svc. 
    In both environments, we have a customer calling this webservice.
    Also, I don't know what it means "scheme http".  We are using https:... on the URL.
    I'm thinking this is either security related, something to do with the app pool being different, or maybe something to do with bindings. 
    Thanks,
    Neal Walter
    http://MyLifeIsMyMessage.net
    Web.config:
        <services>
          <!-- Note: the service name must match the configuration name for the service implementation. -->
          <service name="Microsoft.BizTalk.Adapter.Wcf.Runtime.BizTalkServiceInstance" behaviorConfiguration="ServiceBehaviorConfiguration">
            <endpoint name="HttpMexEndpoint" address="mex" binding="mexHttpBinding" bindingConfiguration="" contract="IMetadataExchange" />
            <!--<endpoint name="HttpsMexEndpoint" address="mex" binding="mexHttpsBinding" bindingConfiguration="" contract="IMetadataExchange" />-->
          </service>
        </services>
      </system.serviceModel>
        <system.webServer>
            <security>
                <authorization>
                    <remove users="*" roles="" verbs="" />
                    <add accessType="Allow" users="myCustomer" />
                </authorization>
            </security>
        </system.webServer>
    Server Error in '/eSecuritelIn' Application.
    Could not find a base address that matches scheme http for the endpoint with binding MetadataExchangeHttpBinding. Registered
    base address schemes are [https].
    Description:
    An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the
    code. Exception Details: System.InvalidOperationException: Could not find a base address that matches scheme http for the endpoint with binding MetadataExchangeHttpBinding. Registered base address schemes are [https].
    Source Error:
    An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using
    the exception stack trace below.
    Stack Trace:
    [InvalidOperationException: Could not find a base address that matches scheme http for the endpoint with binding MetadataExchangeHttpBinding. Registered base address schemes
    are [https].]
       System.ServiceModel.ServiceHostBase.MakeAbsoluteUri(Uri relativeOrAbsoluteUri, Binding binding, UriSchemeKeyedCollection baseAddresses) +16582113
       System.ServiceModel.Description.ConfigLoader.LoadServiceDescription(ServiceHostBase host, ServiceDescription description, ServiceElement serviceElement, Action`1
    addBaseAddress) +1082
       System.ServiceModel.ServiceHostBase.ApplyConfiguration() +156
       System.ServiceModel.ServiceHostBase.InitializeDescription(UriSchemeKeyedCollection baseAddresses) +215
       System.ServiceModel.ServiceHost..ctor(Object singletonInstance, Uri[] baseAddresses) +400
       Microsoft.BizTalk.Adapter.Wcf.Runtime.WebServiceHost`3..ctor(IsolatedReceiverType isolatedReceiver, BizTalkServiceInstance serviceInstance, Uri[] baseAddresses)
    +36
       Microsoft.BizTalk.Adapter.Wcf.Runtime.WebServiceHostFactory`3.CreateServiceHost(String constructorString, Uri[] baseAddresses) +533
       System.ServiceModel.HostingManager.CreateService(String normalizedVirtualPath) +1413
       System.ServiceModel.HostingManager.ActivateService(String normalizedVirtualPath) +50
       System.ServiceModel.HostingManager.EnsureServiceAvailable(String normalizedVirtualPath) +1172
    [ServiceActivationException: The service '/eSecuritelIn/eSecuritelIn_OrchPublished_RepairEquipmentService.svc' cannot be activated due to an exception during compilation. 
    The exception message is: Could not find a base address that matches scheme http for the endpoint with binding MetadataExchangeHttpBinding. Registered base address schemes are [https]..]
       System.Runtime.AsyncResult.End(IAsyncResult result) +901424
       System.ServiceModel.Activation.HostedHttpRequestAsyncResult.End(IAsyncResult result) +178702
       System.Web.AsyncEventExecutionStep.OnAsyncEventCompletion(IAsyncResult ar) +107
    Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET
    Version:4.0.30319.272

    When you want to migrate Web Applications from one environment to other there are multiple ways to achieve it.
    1) Migrate in MSI- Export MSI and select the option for your Web Application, however I don't recommend this option
    2) Is to browse the folder for Web Application(Right click on web app and browse). Copy this folder(normally within inetpub folder) and take it to the inetpub folder of other environment. Later from the IISManager create application.
    Are you not using the same Binding file?
    Check you web.config file and see if the endpoint is configured for mexHTTpBinding.
    Old: binding="mexHttpBinding"
    New: binding="mexHttpsBinding"
    web.config snippet:
    <services>
    <service behaviorConfiguration="ServiceBehavior" name="LIMS.UI.Web.WCFServices.Accessioning.QuickDataEntryService">
    <endpoint behaviorConfiguration="AspNetAjaxBehavior" binding="webHttpBinding" bindingConfiguration="webBinding"
    contract="LIMS.UI.Web.WCFServices.Accessioning.QuickDataEntryService" />
    <endpoint address="mex" binding="mexHttpsBinding" contract="IMetadataExchange" />
    </service>
    Also look into the below article- How to fix: "Could not find a base
    address that matches scheme http for the endpoint with binding WebHttpBinding" Errors
    Moving to https = Could not find a base address that matches scheme
    Thanks,
    Prashant
    Please mark this post accordingly if it answers your query or is helpful.

  • How can I do a Find & Replace in Address Book?

         I asked this question in a different forum & they suggested I post the same question here because someone might have an Apple Script?! 
    Here is the link:  https://discussions.apple.com/community/feeds/messages?thread=3187576 but to keep things simple, I want to find certain words and phrases in the note section of my address book and update those to something else.  How can I accomplish this?
    I have tried exporting and using numbers to make the changes but when I re-import those changes back to address book I get a huge mess of information.  Duplicate contacts and triplicate notes to say the least.  A suggestion was made to export ALL the information in the address book and then re-import it ( I was only exporting the names & notes previously ).  That poses new problems such as how to keep my custom categories in tacked.  Most of my contacts have things such as, 'John's Cell' and 'Susan's Work E-mail'.
    Thanks in Advance!
    R

    The basic idea is as follows:
    set keyWords to {"word 1", "word 2", "phrase 3"}
    repeat with thisWord in kewWords
              tell application "Address Book"
                        set p to (every person whose note contains thisWord)
      -- modify the text - depends on what you're trying to do
              end tell
    end repeat
    exactly what code you need to modify the text will depend on how you want to modify it, but the basic idea will be something like (using text item delimiters):
              tell application "Address Book"
                        set q to my tid(p's note, thisWord)
                        set p's note to my tid(q, replacementText)
              end tell
    on tid(input, delim)
              set {oldTID, my text item delimiters} to {my text item delimiters, delim}
              if class of input is list then
                        set output to input as text
              else
                        set output to text items of input
              end if
              set my text item delimiters to oldTID
              return output
    end tid

  • Exchange 2010 Free busy not working from remote site to main site "exception message is: Could not find a base address"

    Hi all , I have an exchange 2010 SP 2 environment with 2 sites , the remote site FL free busy has NEVER worked and I get this error on the remote site , is this related ?
    thanks 
    Log Name:      Application
    Source:        System.ServiceModel 3.0.0.0
    Date:         :
    Event ID:      3
    Task Category: WebHost
    Level:         Error
    Keywords:      Classic
    User:          SYSTEM
    Computer:      FL-CAS1.WOMBAT.LOCAL
    free bust works from WITHIN the remote (FL ) site , but NEVER to the main (WASH) site , it has Never worked ,I am thing that this error is related
    thanks I have no idea how to fix 
    Description:
    WebHost failed to process a request.
    Sender Information: System.ServiceModel.ServiceHostingEnvironment+HostingManager/17256489
    Exception: System.ServiceModel.ServiceActivationException:
    The service '/EWS/exchange.asmx' cannot be activated due to an exception during compilation.  The exception message is: Could not find a base address that matches scheme http for the endpoint with binding CustomBinding. Registered base address schemes
    are [https].. ---> System.InvalidOperationException:
    Could not find a base address that matches scheme http for the endpoint with binding
    ++++

    Hi 
    This issue could be with corruption in  Autodiscover and web services virtual directory 
    Replace Web.config file for Autodiscover and web services virtual directory from the other working site
    Delete and Recreate  Autodiscover and web services virtual directory 
    Do this only  on the affected site 
    Remember to mark as helpful if you find my contribution useful or as an answer if it does answer your question.That will encourage me - and others - to take time out to help you Check out my latest blog posts on http://exchangequery.com Thanks Sathish
    (MVP)

  • Lotus Notes 5.x Personal Address Book for mailings?

    Is it possible to use the Lotus Notes 5.x Personal Address Book for mailings in StarOffice 7?
    There is no direct choice for Notes in Extras/Datenquellen.
    Regards,
    Volker

    You will need to check to see how you configured CCM Enterprise parameters. most of the time, the pararemeters need to be set to IP address, not hostname. I find hostnames for the CM servers to be a pain in the rear for "services" "directories" etc.
    Unless you want to configure DNS on the IP phones to resolve the hostname of the CM5 server, then then it will also work. But your problem is that your phones configs think that the Directories URL is http://cmhostname/xxx/xx instead of URL http://ipaddresscmserver/xxx/xx

  • Contacts added are not showing up on address book.

    I created new contact entries using certain apps, such as SimplyTweet, which did not appear on my Address Book. However, doing a spotlight search on my phone shows those entries exist, but cannot be edited. Anybody else having a similar issue?

    Hello everyone!
    For all of you out there who have received phone calls, text messages, etc, and have tried adding a contact by means other than directly via the contacts app only to have your contact not show up ANYWHERE (except maybe in a spotlight search), this quick troubleshooting guide is for you.
    Disclaimers: This can be performed on an Apple computer, I do not troubleshoot for PC's (however, anyone who knows their way around computers can easily modify the steps for a PC). This method can also be used if you sync your contacts via MobileMe like I do, and should work for the iPhone 3G, 3GS, and 4. I have the latest OS on my iPhone, but it should work with any recent OS. My iTunes has been updated to the most recent version.
    Step 1: Open Address Book on your mac. Make sure your address book view is extended to show your groups in the left column. Under groups, everyone will have a group labeled "All Contacts". If that's the only group you have, it's time to create another one. Click the "+" at the bottom of your group column and name your new group whatever you want. For my purposes (as this was an iPhone issue), I named my new group "iPhone Contacts". Do not add any contacts from "All Contacts" to your new group, as this will be unnecessarily redundant. Close Address Book, you're done with it.
    Step 2: Open iTunes and plug in your iPhone. Hopefully you have your settings to manually sync when you plug your iPhone into iTunes, otherwise wait until it's synced to continue. Click the "Info" tab in iTunes. The first option is Sync Address Book Contacts. Make sure this option is checked. Under the first subheading, make sure "All contacts" is checked. Below the groups box, there will be a line that says "Add contacts created outside of groups on this iPhone to:" and make sure this is checked as well. (Bonus info- Unless you created a contact directly via the contacts app on your iPhone, that contact ends up in another list. This is why you can't see it right now.) At this moment is where that new contact group you created in Address Book comes into play. Use the drop-down menu to the right of this option to select that group (remember mine was "iPhone Contacts"). Do not change anything else. Now click "Sync" in the bottom right corner of iTunes.
    Step 3: Once your iPhone is synced, open the Contacts app on your iPhone. If it opens to a contact list, tap the "Groups" button in the upper left corner of the screen. You should see two or three sections. The top section will simply be "All Contacts". The second section will be titled "From My Mac" and will display both "All from My Mac" and the new group you created in Address Book. If you use MobileMe, you will have a third section titled "[email protected]", under which your MobileMe contact group will fall. Make sure you tap the top group, "All Contacts". You will find those "missing" contacts now listed among all your other ones.
    Bonus: If you find you have duplicate contact names but neither contact has a full information card, you can edit the contact, scroll to the bottom and tap the "Link contacts" button, then link your duplicates to insure you have all the info you want.
    Success!! If you have any questions, let me know.
    Source: Freelance Nerd Herd
    Message was edited by: Rivka Elisheva

  • IPhone not syncing Contacts to Address Book

    I noticed that my iPhone (both original iPhone and iPhone 3G) was not syncing contacts with Address Book. I tried to Reset Sync History in iSync, and when I have tried to replace the contacts on iPhone under the Advanced options, I lose all my contacts on the iPhone!
    The only way to get some contacts back is restoring from backup, but unfortunately as iTunes performs a backup of the iPhone on sync, these backups also have no contacts! I have an old backup that fortunately has not been overwritten but the contact list is a bit out of date.
    Address Book on the Mac seems to be fine and this is backed up.
    It would appear that iTunes has somehow lost its "connection" to Address Book, which is why when I chose to replace the Contacts on the iPhone with the information on the computer I lost them all!
    iCal still seems to sync fine with Calendar.
    Can I re-link Address Book with iTunes?

    Jason L wrote:
    Hey lim_my,
    Are contacts syncing with MobileMe or any other applications?
    I don't have MobileMe.
    Now you mention it, Address Book did not appear to even update if I updated a contact in Mail.
    Can you sync contacts in another User account? to create another user account goto System Preferences> Accounts> click the lock to make changes> click the + button to add another user account.
    Yes I can! I only tried to sync Contacts, leaving all other options i.e Calendars Bookmarks Ringtones Music Videos Applications untouched, and now I have some test Contacts on the iPhone.
    You can try Resetting the SyncServices folder, Just follow the steps in this article to stop the service and then delete the SyncServices folder in your user library.
    http://support.apple.com/kb/TS1627
    I had tried this before, within iSync, which did not work. I then tried the command in Terminal as per the above link, then went and deleted the /user/Library/ Sync Services folder. Still no joy.
    So it looks as though I have a broken Address Book rather than iTunes. Should I post this in the OS X Leopard section of Discussions?

  • New users are not updated in Outlook address book (Offline)

    Hi All,
    We are having an Exchange 2010 environment. from few weeks we are experiencing this issue. When we create new user or change the name of a existing user, it is not updated in outlook address book. Can anyone help me to sort this issue?.
    Regs,
    Sachitha.

    What is the Outlook client you are using? Is it 2003 or 2007+
    You are right, you don;t have to update the OAB manually, the kind of issue you are facing is very know (As far as I experienced). After you update the OAB manually, check the issue and it should be fine.
    After that create a Test User and check in Outlook if you see it populated.
    Cheers,
    Gulab Prasad
    Technology Consultant
    Blog:
    http://www.exchangeranger.com    Twitter:
      LinkedIn:
       Check out CodeTwo’s tools for Exchange admins
    Note: Posts are provided “AS IS” without warranty of any kind, either expressed or implied, including but not limited to the implied warranties of merchantability and/or fitness for a particular purpose.

  • Custom attributes added to user objects not visible in OWA address book

    Hi,
    I am using Exchange 2013 and recently added a new custom attribute in the user object properties using the details template editor to be visible in the GAL  The new attribute is correctly getting displayed in the GAL from outlook clients but not visible
    in OWA address book. Is there a way to update the display of user objects in OWA address book to include the new custom attribute?
    Thanks!

    Hi Abu,
    Please see following link:
    Customize Details Templates
    http://technet.microsoft.com/en-us/library/ms.exch.toolbox.detailstemplate(v=exchg.150).aspx
    It says, Use the Details Templates Editor to customize the client-side graphical user interface (GUI) presentation of object properties that are accessed by using address lists in Microsoft Outlook.
    My understanding is this setting only visible in Outlook.
    Please correct me if there is any misunderstanding.
    Thanks
    Mavis
    Mavis Huang
    TechNet Community Support

  • Luxadm probe / Could not find the loop address for  the device at physical path

    Using EMC FibreChannel Disks on a Solaris 10
    # luxadm probe
    No Network Array enclosures found in /dev/es
    Error: Could not find the loop address for the device at physical path.
    # echo $?
    255
    Any ideas how to fix?
    Thank,
    Marcel

    Hi Marcel,
    Which Solaris 10 release is this?
    I found a very old bug that says this problem is already fixed in Solaris 10 although the bug description says
    its mostly seen on Solaris 8 and 9.
    https://bug.oraclecorp.com/pls/bug/webbug_print.showbug?c_rptno=15123550
    The bug says that these errors are displayed when StorADE 2.1 is running its rasagent cron job, which executes a luxadm display. 
    This process runs in the background so the user is not aware that another luxadm display process is running.
    Work-around: Do not run Storade rasagent cron job at same time as another luxadm display process.
    I hope this might help to debug this problem but I puzzled why this might be happening if its already fixed.
    Let me know if the workaround helps or so I can follow-up with the right support team.
    Thanks, Cindy

  • 'Notes' field within the Address Book is greyed out

    The 'Notes' field within the Address Book is greyed out. The resolution seems simple enough yet this does not work: "Select the person in the Name column in Address Book, then click the Note field in the card."
    It's still grey after doing so and data cannot be entered into the 'Notes' field.
    Any help much appreciated.
    Thanks!

    You'll want to post this in the Mail & Address Book forum. That link will take you to the Mail & Address Book forum for Tiger, and there is a link at the top of the page to the Mail & Address Book forum for Panther and earlier if you need to go there.

  • Iphone does not sync with Yahoo Address Book

    Hi My iPhone does not sync with Yahoo Address book. iTunes comes back with an error
    "iTunes could not sync with Yahoo Address Book.Because an Internet connection not available"
    This make no sense as I am conected to the internet. iTunes can acess the iTunes Store without a problem. I can also access the Web.
    Any ideas?

    I ran into this problem just within the past couple of weeks.  I found someting on another discussion group on the net about someone with the same problem.  They said that it was because one of their notes was too long.
    I looked at my notes and wouldn't you know it, I created a couple of extra long notes a couple of weeks ago!  I deleted them and I am able to sync without errors again.  I didn't know there was a size limit for a note on the iphone.
    PS.  I have an iPhone 3GS, iOS 5.1.1, iTunes 10.6.3.25

  • Help, I can not drag and drop address book contacts into numbers.

    i have read the manual. watched videos on youtube, but I can not drag and drop address book contacts into numbers or pages.  I upgraded to Numbers 09.  set up the fields as stipulated, but when I drag a contact to the numbers canvas it just bounces back to address book.  I tried reinstalling 09 thinking it was a faulty install.  no luck.  Have tried dragging to balnk part of canvas, to the table, and to a table with fields, no luck. 
    Thank you.

    Could be a preferences setting. See Jerry's post in this thread.
    Regards,
    Barry

Maybe you are looking for

  • 17" Studio Display connected to by PowerBook

    When I restarted my PowerBook I had the 17" Studio Display plugged in and started up the computer. It reached the system startup screen and then the computer just shut down abruptly. Every time the computer starts it makes to a that point and it shut

  • Can't enable WiFi in iOS 7

    My wife has an iPhone 4s and upgraded to iOS7 yesterday. Today, she's unable to turn on wifi. Even if we go into wifi in the system prefrences, it's like it's diabled. It won't toggle. If I go in via the drawer at the bottom, it allows me to turn on

  • Bridge "open with" issue Mac OS

    Hi & Thanks, I am using CS6 on a Mac and when I choose to open a file with the "open with" command from the edit menu or right clicking the file I get mutliple options of numorus editors. Photoshop, Nik apps, Color sync utility, Preview. They will al

  • Please help: Flash problem in IE9 in Vista

    I am hoping to get some help with Flash and IE9 on Vista. It had been working fine, but now I only get a grey screen where the video should play. Flash does, however, play in Safari and Chrome. I have uninstalled flash (using Adode's uninstaller) and

  • Printering over a network problem

    OK. My apologies if this is a dimwitted question and the answer is staring me in the face but I'm out of ideas. Here's the situation: I use my macbook pro over the school network where I teach at in Japan. The printers here are a Fuji-xerox DocuCentr