Calendar References in directory and Orpan cals

OK, running 5.1.1 and directory 5.1sp2. We are having problems when users are deleted via delegated admin, and are purged, references still exist in other peoples directory entries that point to their calendar and these references cause errors in the calendar server logs.
Also, want to know if there is a simple way to weed out orphan calendars of users that have been deleted with delegated admin or command line and not using csuser.

OK, running 5.1.1 and directory 5.1sp2. We are having problems when users are deleted via delegated admin, and are purged, references still exist in other peoples directory entries that point to their calendar and these references cause errors in the calendar server logs.
Also, want to know if there is a simple way to weed out orphan calendars of users that have been deleted with delegated admin or command line and not using csuser.

Similar Messages

  • How do I get info from Active Directory and use it in my web-applications?

    I borrowed a nice piece of code for JNDI hits against Active Directory from this website: http://www.sbfsbo.com/mike/JndiTutorial/
    I have altered it and am trying to use it to retrieve info from our Active Directory Server.
    I altered it to point to my domain, and I want to retrieve a person's full name(CN), e-mail address and their work location.
    I've looked at lots of examples, I've tried lots of things, but I'm really missing something. I'm new to Java, new to JNDI, new to LDAP, new to AD and new to Tomcat. Any help would be so appreciated.
    Thanks,
    To show you the code, and the error message, I've changed the actual names I used for connection.
    What am I not coding right? I get an error message like this:
    javax.naming.NameNotFoundException[LDAP error code 32 - 0000208D: nameErr DSID:03101c9 problem 2001 (no Object), data 0,best match of DC=mycomp, DC=isd, remaining name dc=mycomp, dc=isd
    [code]
    import java.util.Hashtable;
    import java.util.Enumeration;
    import javax.naming.*;
    import javax.naming.directory.*;
    public class JNDISearch2 {
    // initial context implementation
    public static String INITCTX = "com.sun.jndi.ldap.LdapCtxFactory";
    public static String MY_HOST = "ldap://99.999.9.9:389/dc=mycomp,dc=isd";
    public static String MGR_DN = "CN=connectionID,OU=CO,dc=mycomp,dc=isd";
    public static String MGR_PW = "connectionPassword";
    public static String MY_SEARCHBASE = "dc=mycomp,dc=isd";
    public static String MY_FILTER =
    "(&(objectClass=user)(sAMAccountName=usersignonname))";
    // Specify which attributes we are looking for
    public static String MY_ATTRS[] =
    { "cn", "telephoneNumber", "postalAddress", "mail" };
    public static void main(String args[]) {
    try { //----------------------------------------------------------        
    // Binding
    // Hashtable for environmental information
    Hashtable env = new Hashtable();
    // Specify which class to use for our JNDI Provider
    env.put(Context.INITIAL_CONTEXT_FACTORY, INITCTX);
    // Specify the host and port to use for directory service
    env.put(Context.PROVIDER_URL, MY_HOST);
    // Security Information
    env.put(Context.SECURITY_AUTHENTICATION, "simple");
    env.put(Context.SECURITY_PRINCIPAL, MGR_DN);
    env.put(Context.SECURITY_CREDENTIALS, MGR_PW);
    // Get a reference toa directory context
    DirContext ctx = new InitialDirContext(env);
    // Begin search
    // Specify the scope of the search
    SearchControls constraints = new SearchControls();
    constraints.setSearchScope(SearchControls.SUBTREE_SCOPE);
    // Perform the actual search
    // We give it a searchbase, a filter and the constraints
    // containing the scope of the search
    NamingEnumeration results = ctx.search(MY_SEARCHBASE, MY_FILTER, constraints);
    // Now step through the search results
    while (results != null && results.hasMore()) {
    SearchResult sr = (SearchResult) results.next();
    String dn = sr.getName() + ", " + MY_SEARCHBASE;
    System.out.println("Distinguished Name is " + dn);
    // Code for displaying attribute list
    Attributes ar = ctx.getAttributes(dn, MY_ATTRS);
    if (ar == null)
    // Has no attributes
    System.out.println("Entry " + dn);
    System.out.println(" has none of the specified attributes\n");
    else // Has some attributes
    // Determine the attributes in this record.
    for (int i = 0; i < MY_ATTRS.length; i++) {
    Attribute attr = ar.get(MY_ATTRS);
    if (attr != null) {
    System.out.println(MY_ATTRS[i] + ":");
    // Gather all values for the specified attribute.
    for (Enumeration vals = attr.getAll(); vals.hasMoreElements();) {
    System.out.println("\t" + vals.nextElement());
    // System.out.println ("\n");
    // End search
    } // end try
    catch (Exception e) {
    e.printStackTrace();
    System.exit(1);
    My JNDIRealm in Tomcat which actually does the initial authentication looks like this:(again, for security purposes, I've changed the access names and passwords, etc.)
    <Realm className="org.apache.catalina.realm.JNDIRealm" debug="99"
    connectionURL="ldap://99.999.9.9:389"
    connectionName="CN=connectionId,OU=CO,dc=mycomp,dc=isd"
    connectionPassword="connectionPassword"
    referrals="follow"
    userBase="dc=mycomp,dc=isd"
    userSearch="(&(sAMAccountName={0})(objectClass=user))"
    userSubtree="true"
    roleBase="dc=mycomp, dc=isd"
    roleSearch="(uniqueMember={0})"
    rolename="cn"
    />
    I'd be so grateful for any help.
    Any suggestions about using the data from Active directory in web-application.
    Thanks.
    R.Vaughn

    By this time you probably have already solved this, but I think the problem is that the Search Base is relative to the attachment point specified with the PROVIDER_URL. Since you already specified "DC=mycomp,DC=isd" in that location, you merely want to set the search base to "". The error message is trying to tell you that it could only find half of the "DC=mycomp, DC=isd, DC=mycomp, DC=isd" that you specified for the search base.
    Hope that helps someone.
    Ken Gartner
    Quadrasis, Inc (We Unify Security, www -dot- quadrasis -dot- com)

  • Source of Multiple Calendars in Outlook 2007 and iCloud (iOS7.0.4)

    Source of Multiple Calendars in Outlook 2007 and iCloud (iOS7.0.4)
    My  iPhones (2) and iPad list the following color-coded calendar names when the word "Calendar" is pressed at the bottom of the calendar screen:  All iCloud (no colored dot), Calendar (Blue Dot),  Home (orange Dot), Saved emails (red dot), and Saved emails (2)( green dot).
    Calendar items created on both iPhones are coded with a blue dot and appear on a blue background in iCloud and on the phones.  Calendar items created  on my iPad appear on a green background (saved emails 2)  on my iPad and my iphones. Why isn't the color "Blue"? It appears that entries made on Outlook appear in Saved Emails (red).
    I have not imported or connected with any external calendars.
    This behavior raises the following questions:
    1)  Should entries created  on each device appear in a different color?
    2)  Does the color associated with an entry designate a specific device or a specific type of device?
    3)  Which device is the "Home" device referred to in paragraph 1 above? 
    4)  Why would a Calendar be named with a reference to "saved emails"? From where would it come.
    My understanding about synching with iCloud was that any entry from any iDevice (phone or pad)  or iCloud would appear in both iCloud and  in the calendars of all devices on the same  Apple Account.  Please confirm my understanding or correct it.
    With iCloud as the hub, must I still utilize Microsoft Outlook?  I am retired and no longer need Outlook for work.
    Can I edit any calendar entry in I cloud had have it change it in all the devices, or must it be edited in the device in which the entry was originally made?
    Any help would be greatly appreciated.

    I would ditch Outlook like a bad habit.
    Now to answer your questions starting at the bottom.  yes, you can edit any and all iCloud Calendars on iCloud.com.  You can rename your calendars, re-color them, create, edit or delete events, etc.
    So you asked a question on why your calendars are named 'saved emails'.  This sounds like something that would be created from Outlook since you can send email to the calendar in Outlook.  If you quit using outlook, you can simply rename the calendars to something more sensible or delete them entirely.
    About calendar colors.  Each calendar you (or your mail program on your behalf) has created gets assigned a name and color.  Each color helps your identify which calendar and event belongs to.  When you create a new event from your iOS device or iCloud.com, you will find a handy little section that says 'calendar' where you can specify to which calendar (or color) you want that event to be on.  You will also find this option when tapping and editing and event on the iOS devices or icloud.com.  If you want all of your devices to default to the same calendar when creating a new event, on your iOS devices go to Settings > Mail, Contacts, Calendars > Scroll to the section that says 'Calendar' in gray (its at the very bottom) and change the 'default calendar' to whatever you want the defualt to be.  You can also change the default in iCloud.com by clicking the gear icon.
    My recommendation: 1) Ditch Outlook. Go to your Control Panel > iCloud and uncheck Outlook. 2) Move all of your events to one or two calendars.  if you don't have a need for multiple calendars, just simplify your life and move them all to one calendar.  You can edit the event and change the calendar, then go back and delete the other calendars that are confusing you with all the different colors.  You can rename, recolor, create and delete calendars form your iOS device by tapping calendar in the bottom of the screen when in the calendars app then tap edit in the top left.  You can also do these same things on iCloud.com  Where ever is easiest for you will work.

  • Problems with a shared calendar using Outlook 2007 and Exchange 2010

    Hello all,
    We are having a problem with sharing a calendar using Outlook 2007 and Exchange 2010.
    I will start with some background. I have just started my position with this company. I have been working with networks for awhile at the small business level. I have not had much production experience with exchange. There is only myself and my supervisor
    who has inherited a midsized network which was built by five previous techs that are no longer with the company. Of course, the previous techs did not leave much documentation, so the original hows and whys for our system setup has been lost.
    One of the managers has a calendar she shares with some of our users. I believe this calendar has been in use since sometime in 2006. A mailbox was created to hold this calendar to keep it separate from the managers calendar. I am not sure what version
    of exchange they were using at that time, but I assume there was one or two migrations of it getting to its current state on our exchange 2010 server. At some point it was observed that the other workers she was sharing with were not able to access it correctly.
    I am not fully sure what the original problem was (possibly some people not being able to see or connect to the calendar), but it was decided to give everyone who needed access to this calendar full access permissions through exchange. Correct me if I
    am wrong, but I believe that gave everyone connected the ability to do anything with the calendar. Of course the manager was not happy about that. This is where I started working on the problem.
    I removed everyone, except the manager who wants to control the calendar, from having "Full Access Permissions". This did have the effect of making some people just able to see the calendar and not make changes. Though there were others that were
    able to connect to the calendar who I thought would not be able to. The manager that originally created the calendar did try to manage access to it through the Outlook interface, though it currently does not seem to be fully in effect.
    So, to get to the point of what we are trying to do, is there a way to get the original manager back into control of the calendar though Outlook? It would be preferred to be able to keep the history of what they tracked of this calendar, so starting a new
    one would be something we would rather avoid. After that, getting all of the users that need to connect to the calendar reconnected with the correct access permissions and making sure they are all synchronized.
    I realize this is a big mess, and your help would be greatly appreciated.

    Hi Nigel,
    How is the impact, just one user or all users, Outlook or OWA?
    If just one user, it seems like an issue on the Outlook Client side.
    Please trying to re-create new profile to fresh the caches.
    Please runing Outlook under safe mode to avoid some AVs, add-ins and firewall.
    Found a similar thread for your reference:
    Calendar Sharing not available error message
    http://social.technet.microsoft.com/Forums/exchange/en-US/d9b33281-d7bb-4608-8025-16fb26643d0d/calendar-sharing-not-available-error-message?forum=exchangesvrclientslegacy
    Hope it is helpful
    Thanks
    Mavis
    Mavis Huang
    TechNet Community Support

  • URGENT ! Forms (jar file vs directory and classes)

    Hi,
    Our java developper has made an applet that we have to integrate with Forms.
    I said that I need a jar file that I will put in the forms90/java directory.
    The java developper want's to deploy instead of a jar file the whole directory and sub directory and all classes under the forms90/java.
    My question is, are both deployement giving the same result in term of performance on the client side when downloading the classes or the jar file.
    I always tought that jar file was better in performance.
    What is the best way to deploy our applet?
    Thanks for quick answer.
    Jean-Yves

    If you choose jar file client JVM will probably cache your jar. This will increase speed of application loading.
    Another benefit is that when you use jar file there is lazy/on demand loading option available (in my experience on demand loading doesn't work out of the box - jar file and all referenced jar files must be indexed). In other words: users that don't use forms that use your applet will not download that jar file (I have used this for FormsGraph example and some custom java application) and they don't have to download all of the jars your jar file references.

  • Error opening file/URL reference by alias and Administrative limit exceeded

    Hello All,
    Problem:
    SMTP Error: 4.5.0 error opening file/URL reference by alias
    and
    Search failed with: netscape.ldap.LDAPException: error result (11); Administrative limit exceeded
    Here is my configuration:
    Windows 2000 server (without Active Directory)
    SP4
    Iplanet Messaging Server 5.2
    Netscape Directory Server 4.16
    IPlanet Messaging Server 5.2 Hotfix 1.09 (built Jan 7 2003)
    We have a group which we use to flash messages to all the users of the mail server. Till last week it was working fine but now I am not able to send messages to this group <group-name>.
    There are around 800 (Eight Hundred) E-mail id the messaging server and the flashed message is supposed to go to all 800 + users.
    Note: I have another group of 300 users and I am able to send an E-mail to this group of 300 users.
    I am using Dynamic Group for Members list.
    The error message I get while trying to send message to this group is
    SMTP Error: 4.5.0 error opening file/URL reference by alias.
    The corresponding error in mail.log file is
    30-Jan-2004 10:55:21.40 41c.7e4.1098 tcp_intranet J 0 <group-name>@domain rfc822; <group-name>@domain domain (localhost [127.0.0.1]) 452 4.5.0 error opening file/URL referenced by alias: <group-name>@domain
    Now when I construct and Test the LDAP URL from Console, the error I get is:
    Search failed with: netscape.ldap.LDAPException: error result (11); Administrative limit exceeded
    I have increased the various limits but I still get the same error when I send mail to that group or do a LDAP Test:
    The deafult and new limits are:
    Sizelimit: Default 2000 New 10000
    Timelimit Default 3600 New 3600
    Lookthroughlimit Default 5000 New 6000
    The corresponding error entry in access log of slapd is:
    30/Jan/2004:12:19:26 +051800] conn=34 op=213 RESULT err=11 tag=101 nentries=0 etime=2 notes=U
    My search for Administrative limit problem and error opening file/URL error in Sun forum and other groups did get some hits but that did not solve my problem.
    I will appreciate any suggestion/comments.
    Thanks and Regards,
    Maneesh Bisht

    Thanks Jay.
    My problem has been fixed.
    Your suggestion was to increase the lookthrough limit. As you would have noticed in my posting that I had increased this limit to 6000 but that did not solve my problem. Today I increased this limit to 10000. And after that I did not get "administrative limit exceeded" error. Also I do not get "error opening file/URL reference by alias" error while sending E-mail to a particular group of 800+ ids.
    Regards,
    Maneesh Bisht

  • Sync ical to google and outlook cal.

    Hi, if  I create a event, appt, or anything in ical, can i sync it to google and outlook cal's.   or if i create an event in outlook  or google cal first can i sync it to all other calenders.  If possible how do I co-exsist all 3 calenders.

    Hia.
    The only way i got this to work (not flawless) was to make a new callendar in Googlecal and then add it to iCal. This way it autosync when adding/removing nodes.
    Edit:
    Like described here: http://discussions.apple.com/thread.jspa?threadID=2365828&tstart=30
    James Easton wrote:
    I found out the following method. Highlight a specific calendar in iCal and go to Edit/export and save it on your desktop. Then go to Gmail calendar and choose import and choose the .isc calendar from your desktop and it will load into Gmail. At least it did for me. I think that the trick is to choose one calendar not the whole list. Let me know.
    Message was edited by: Demonised

  • How can i get also the files in the root directory and how can i for testing add items of IEnumerable FTPListDetail to List string ?

    What i get is only the directories and files that in other nodes. But i have also files on the root directory and i never
    get them. This is a screenshot of my program after i got the content of my ftp. I'm using treeView to display my ftp content:
    You can see two directories from the root but no files on the root it self. And in my ftp server host i have files in the root direcory.
    This is the method i'm using to get the directory listing:
    public IEnumerable<FTPListDetail> GetDirectoryListing(string rootUri)
    var CurrentRemoteDirectory = rootUri;
    var result = new StringBuilder();
    var request = GetWebRequest(WebRequestMethods.Ftp.ListDirectoryDetails, CurrentRemoteDirectory);
    using (var response = request.GetResponse())
    using (var reader = new StreamReader(response.GetResponseStream()))
    string line = reader.ReadLine();
    while (line != null)
    result.Append(line);
    result.Append("\n");
    line = reader.ReadLine();
    if (string.IsNullOrEmpty(result.ToString()))
    return new List<FTPListDetail>();
    result.Remove(result.ToString().LastIndexOf("\n"), 1);
    var results = result.ToString().Split('\n');
    string regex =
    @"^" + //# Start of line
    @"(?<dir>[\-ld])" + //# File size
    @"(?<permission>[\-rwx]{9})" + //# Whitespace \n
    @"\s+" + //# Whitespace \n
    @"(?<filecode>\d+)" +
    @"\s+" + //# Whitespace \n
    @"(?<owner>\w+)" +
    @"\s+" + //# Whitespace \n
    @"(?<group>\w+)" +
    @"\s+" + //# Whitespace \n
    @"(?<size>\d+)" +
    @"\s+" + //# Whitespace \n
    @"(?<month>\w{3})" + //# Month (3 letters) \n
    @"\s+" + //# Whitespace \n
    @"(?<day>\d{1,2})" + //# Day (1 or 2 digits) \n
    @"\s+" + //# Whitespace \n
    @"(?<timeyear>[\d:]{4,5})" + //# Time or year \n
    @"\s+" + //# Whitespace \n
    @"(?<filename>(.*))" + //# Filename \n
    @"$"; //# End of line
    var myresult = new List<FTPListDetail>();
    foreach (var parsed in results)
    var split = new Regex(regex)
    .Match(parsed);
    var dir = split.Groups["dir"].ToString();
    var permission = split.Groups["permission"].ToString();
    var filecode = split.Groups["filecode"].ToString();
    var owner = split.Groups["owner"].ToString();
    var group = split.Groups["group"].ToString();
    var filename = split.Groups["filename"].ToString();
    var size = split.Groups["size"].Length;
    myresult.Add(new FTPListDetail()
    Dir = dir,
    Filecode = filecode,
    Group = group,
    FullPath = CurrentRemoteDirectory + "/" + filename,
    Name = filename,
    Owner = owner,
    Permission = permission,
    return myresult;
    And then this method to loop over and listing :
    private int total_dirs;
    private int searched_until_now_dirs;
    private int max_percentage;
    private TreeNode directories_real_time;
    private string SummaryText;
    private TreeNode CreateDirectoryNode(string path, string name , int recursive_levl )
    var directoryNode = new TreeNode(name);
    var directoryListing = GetDirectoryListing(path);
    var directories = directoryListing.Where(d => d.IsDirectory);
    var files = directoryListing.Where(d => !d.IsDirectory);
    total_dirs += directories.Count<FTPListDetail>();
    searched_until_now_dirs++;
    int percentage = 0;
    foreach (var dir in directories)
    directoryNode.Nodes.Add(CreateDirectoryNode(dir.FullPath, dir.Name, recursive_levl+1));
    if (recursive_levl == 1)
    TreeNode temp_tn = (TreeNode)directoryNode.Clone();
    this.BeginInvoke(new MethodInvoker( delegate
    UpdateList(temp_tn);
    percentage = (searched_until_now_dirs * 100) / total_dirs;
    if (percentage > max_percentage)
    SummaryText = String.Format("Searched dirs {0} / Total dirs {1}", searched_until_now_dirs, total_dirs);
    max_percentage = percentage;
    backgroundWorker1.ReportProgress(percentage, SummaryText);
    percentage = (searched_until_now_dirs * 100) / total_dirs;
    if (percentage > max_percentage)
    SummaryText = String.Format("Searched dirs {0} / Total dirs {1}", searched_until_now_dirs, total_dirs);
    max_percentage = percentage;
    backgroundWorker1.ReportProgress(percentage, SummaryText);
    foreach (var file in files)
    TreeNode file_tree_node = new TreeNode(file.Name);
    file_tree_node.Tag = "file" ;
    directoryNode.Nodes.Add(file_tree_node);
    numberOfFiles.Add(file.FullPath);
    return directoryNode;
    Then updating the treeView:
    DateTime last_update;
    private void UpdateList(TreeNode tn_rt)
    TimeSpan ts = DateTime.Now - last_update;
    if (ts.TotalMilliseconds > 200)
    last_update = DateTime.Now;
    treeViewMS1.BeginUpdate();
    treeViewMS1.Nodes.Clear();
    treeViewMS1.Nodes.Add(tn_rt);
    ExpandToLevel(treeViewMS1.Nodes, 1);
    treeViewMS1.EndUpdate();
    And inside a backgroundworker do work how i'm using it:
    var root = Convert.ToString(e.Argument);
    var dirNode = CreateDirectoryNode(root, "root", 1);
    e.Result = dirNode;
    And last the FTPListDetail class:
    public class FTPListDetail
    public bool IsDirectory
    get
    return !string.IsNullOrWhiteSpace(Dir) && Dir.ToLower().Equals("d");
    internal string Dir { get; set; }
    public string Permission { get; set; }
    public string Filecode { get; set; }
    public string Owner { get; set; }
    public string Group { get; set; }
    public string Name { get; set; }
    public string FullPath { get; set; }
    Now the main problem is that when i list the files and directories and display them in the treeView it dosen't get/display
    the files in the root directory. Only in the sub nodes.
    I will see the files inside hello and stats but i need also to see the files in the root directory.
    1. How can i get and list/display the files of the root directory ?
    2. For the test i tried to add to a List<string> the items in var files to see if i get the root files at all.
       This is what i tried in the CreateDirectoryNode before it i added:
    private List<string> testfiles = new List<string>();
    Then after var files i did:
    testfiles.Add(files.ToList()
    But this is wrong. I just wanted to see in testfiles what items i'm getting in var files in the end of the process.
    Both var files and directoryListing are IEnumerable<FTPListDetail> type.
    The most important is to make the number 1 i mentioned and then to do number 2.

    Risa no.
    What i mean is this. This is a screenshot of my ftp server at my host(ipage.com).
    Now this is a screenshot of my program and you can see that in my program i have only the directories hello stats test but i don't have the files in the root: htaccess.config swp txt 1.txt 2.png....all this files i don't have it on my treeView.
    What i want it to be is that on my program on the treeView i will also display the files like in my ftp server.
    I see in my program only the directories and the files in the directories but i don't see the files on the root directory/node.
    I need it to be like in my ftp server i need to see in my program the htaccess 1.txt 2.png and so on.
    So what i wrote in my main question is that in the var files i see this files of the root directory i just don't know to add and display them in my treeView(my treeView is treeViewMS1).
    I know i checked in my program in the method CreateDirectoryNode i see in the first iteration of the recursive that var files contain this root files i just dont know how to add and display them in my treeView.
    On the next iterations when it does the recursive it's adding the directories hello stats test and the files in this directories but i need it to first add the root files.

  • Can I sync my iPhone calendar with exchange server AND ical on my mac ?

    I have been happily using my iPhone synced with my Macbook over usb via iTunes.
    I have contacts and iCal syncing. I have a number of 'calendars' set up in iCal which allow me to view separate aspects of home and work but they all exist within iCal. iPhone just treats these as colour coded appointments (different colour for each ical calendar)
    I really like this set up.
    However, I just changed jobs to a firm where they have a hosted outlook exchange set up and I need to use the exchange calendar for work appointments and showing my availability.
    I have managed to setup my iPhone to work with the Exchange server for email as well as in apple Mail on my mac. This has all worked fine. However, I hesitated when iPhone asked if i wanted to sync my contacts and calendar. I said no as I was unsure if my private calendar/contacts would be uploaded to the public work area.
    In fact it seems that this is the least of my worries:
    As I have read on apple support for iPhone:
    "Note that after configuring an Exchange ActiveSync account, all existing contact and calendar information on the iPhone or iPod touch is overwritten. Additionally, iTunes no longer syncs contacts and calendars with your desktop computer. You can still sync your iPhone or iPod touch wirelessly with MobileMe services."
    So I am really pleased that I didn't let it sync those and wipe out my personal data if that is really true.
    But now I am unsure how best to enable myself to view and update the work calendar on exchange.
    Also it would be nice to see work contacts on my iPhone.
    Contacts
    - although i have said no to sync contacts with Exchange in fact it looks like I can get contacts ok - when i send email from the Exchange account on the phone , it searches Exchange contacts on the server as i type in the TO box.
    - also in Contacts on the iPhone I have a new group that has been created with the name of my Exchange account. The group appears to be blank when you go into it on the phone, but you can type in the search box and get contact details from the server just fine.
    This seems workable for now for my purposes, although updating contacts is not going to be possible that way.
    I'd like more info on that if poss but more importantly..
    Calendar
    - Unlike Contacts, no Calendar has been auto created for Exchange
    - Unlike contacts, I can't see how I can view or search or create an appointment in my Exchange calendar on the iPhone
    What is the best solution to this problem - I presume lots of people face the same dilemma. My initial research suggests that there are multiple ways round this but all of them look like workarounds with various disavantages.
    Questions are
    - Can't I just set up Exchange as one of my calendars in ical?
    - Is it really true that I have to choose between syncing Exchange with work server OR syncing iCal with personal Macbook?
    - What is the best work around for this?
    At the moment I am seriously considering getting a separate iPhone for work and have that sync with Exchange fully although that seems a bit drastic and does not solve the problem of seeing work and home appointments on the same calendar.

    Can't I just set up Exchange as one of my calendars in ical?
    Only if you're running Snow Leopard and your employer will allow access (different than iPhone/mobile device access, so most likely not), but not needed - keep reading.
    Is it really true that I have to choose between syncing Exchange with work server OR syncing iCal with personal Macbook?
    No. It was true, but with the v3.0 software that changed - you can now sync your Exchange contacts and calendar over the air, and your Address Book and iCal via iTunes over the docking cable.
    What is the best work around for this?
    None needed. When you set up the exchange account, and choose to turn on syncing of contacts and calendars, you will be prompted to remove all other data, or keep it on the iPhone. Choose the keep option. Note that in that case, your personal data will not be uploaded to the Exchange server - the iPhone keeps them separate (although you can choose to view them in a merged fashion).
    I have this set up on my phone (Exchange calendar along side personal and other calendars from iCal). Same for contacts. Works great.

  • Reference to database and/or server name in '' is not supported in this version of SQL Server

    Hello all
    I am using C# and ADO.NET (native) - Visual Studio 2013.
    I am always using full qualified queries like "SELECT * FROM [database].[schema].[table]"
    Obviously there is a problem when doing this against SQL Azure,
    I get the following error: "Reference to database and/or server name in '' is not supported in this version of SQL Server"
    Interesting fact: With SQL Management Studio, the same query works.
    I need to know if this error is really a true one or not.
    If yes, I can quit using SQL Azure. I would need a SQL Server and not a partial SQL Server :-)
    Thanks and best regards
    Frank

    Hi,
    Here are my suggestions:
    1. Use partially qualified queries, because:
    a. from a security standpoint, you'd want to limit your login's access across the server instance
    b. in order to achieve a even better, you should specify your database as the Initial Catalog directly in the SQL Connection.
    If you take into account these practices, SQL Database doesn't come with any limitation from that point of view.
    However, in regard to 'With SQL Management Studio, the same query works', this is actually only partially true because if you run that query agains ADO.NET, you'll actually end up in switching databases along the query which is obviously not permitted in
    SQL Database since you're running in a hosted black-box version of SQL you're not managing. It's just like running the USE <dbname> command which obviously doesn't work.
    Alex

  • Confusion with DX80 directory and contacts

    We just received two new Cisco DX80.
    I have to say I am a bit confused by many thing, one being the directory/contact. When the endpoint is registered on the CUCM (9.1.2), synched with Exchange and Jabber CUP server, a "Cisco UCM account" and "Cisco Directory Credential" are setup on the DX80... which directory and contact list is it using? and can we control it?
    When I am in Jabber and search for people, I can only find people in my Jabber contacts. When I am trying to add contact I can't find any
    When I'm on the "phone", the contacts seems to be my Exchange contacts. So depending on when I'm on the DX80 phone or on Jabber application, the contact list are different which is confusion. Consitency accross application would be nice. If the mail contact is using Exchange contact I would find it normal but that two Cisco UC applications are using different contact lists, I find it very confusing.
    When I'm on the "phone" and use Directory, which directory is it looking into?
    I have to say that overall the first DX80 experience is quite confusing

    Hello Matthieu,
    yes, I agree with you, it is not ideal, its multiple applications which seem to behave different them selfs,
    have different localization (the phone part is here for example localized, where the jabber part is not)
    and then in addition they behave different depending on the deployment, configuration, services and status, ....
    We are looking into a bigger roll out and these are definitely things we are investigating about how to deply
    especially to improve usability and limit the need for support requests

  • I'm too old to learn iCal.  How do I tell iTunes to synch with Outlook for Mac for all of the Contacts and the Calendar on my iPhone and iPad??  Thanks

    I'm too old to learn iCal.  How do I tell iTunes to synch with Outlook for Mac for all of the Contacts and the Calendar on my iPhone and iPad?? 
    Also, once I figure out how to replace iCal with Outlook/Mac on iTunes, how do I synch the phone and pad so that the information on those devices over-writes onto Outlook as a backup, rather than having a blank Calendar on Outlook wipe out all of the information on the phone and pad???
    Thanks

    If you haven't tried already, plug your devices into iTunes, and on each device next to the "Summary" tab at the top is another tab called "Info." Click that and scroll down to Contacts, Calendars, etc. There should be a pull down bar under each category for "Sync contacts from..." and you should be able to select from that pull down list Outlook.  Hit Apply at the bottom and see if that does it.

  • Multiple instances of the same calendar events using Oulook and Desktop Manager

    BB Curve 8310
    OS 4.5
    Desktop Manager 5.0
    Theme = Dimension Today
     Outlook 2007 “full version”
    Using two POP3 email accounts. One is a personal gmail and the other is most important a business email. I do not use gmails calendar.
     12 Months or so back I would sometimes get duplicate appointments in my BB calendar after a sync but Outlook showed a single appointment. I had read that it was intermittent with the theme “Today” and the advice was “do not accept appointment invites in Outlook”.
     I forgot and accepted several I the past week. Now almost all my appointments are doubled up in my BB and again, my Outlook seems fine. I just noticed that I can now select which calendar to “show” in my BB.
     Is this caused by getting an email invite to an appointment?  
     1)   Does anyone know what is causing this?
    2)   Could you suggest a quick fix?
    3)   Could you suggest a permanent fix?
     Thanks
    Patrick
    Solved!
    Go to Solution.

    PatS wrote:
    Thanks Bifocals ,,,,, I'm blushing just a bit. I'd put one of those red smiley faces but I would have to post another question to find out how!
    BB Calendar CICAL = personal email
    BB Messaging CMIME = work email
    This is not correct the default services values need both reflect the main email associated account.
    They need to both be your work address. This could very well explain the duplicates
     Outlook has/uses only the work email address show it has to be the default one - I have long ago deleted my personal one from Outlook.
    Outlooks Calendar Data File recurrence (none) 339, in Outlook 2007 I had to find them a different way but I think it's what your looking for.
    My BB shows a "default" = 217, "personal" = 185, and "work" = 309
    The records in the device default calendar will not synchronize. The are in effect "orphaned"
    records that at one time belonged to an email address. Usually caused by deleting the email account or losing the service books for the email account. We need to remove them
    can you tell what email account they were created from? And where they would logically be moved?
    A couple of notes - now that you have had me flipping through different areas I have noticed a few interesting things that maybe would be beneficial. While using Outlook 2003, I used several email addresses. Don't know if Outlook updates to 2007 or installs a new 2007 program using data from 2003. There was a time that I was sending emails in Outlook from my personal account, there was a slight hiccup and every so often it would revert back, hence I simply deleted it.
    I would need to verify it, but I'm pretty sure that the email addresses would have to be installed again.
    I'll split that one with you. I'll take the Blackberry knowledgebase. You take the Microsoft outlook support site
    I'm now wondering if I delete all the calendars on my BB and do the one way sync? That seems simple enough.
    We are gong to do just that, to repair what happened. It will not prevent another recurrence.
     You  asked for three things:
    You wanted a a reason this happened, I think we found it in the default services setup.
    You wanted a quick fix, It will be done in with an  hour's work.
    You also wanted a permanent fix,  Want to go for all three?
    If you have multiple calendars you will have problems. It's just the nature of the beast.
    It's not an "if " but just a matter of "when" deal!
    Personally I can't find any logic in the concept of multiple calendars.
    People explain they use one for work appointments and one for personal appointments.
    I always want to ask why they don't use two watches one for personal and one for work?
    I do see the need for separating personal and work email accounts.
    Here is I think the best of both worlds answer.
    Leave your work email configured and use the work calendar as you would normally.
    For your personal email install the Gmail for mobile application. You have access to your
    personal and work emails, they are kept separate due to the nature of the Gmail app.
    Here is the the cherry on the top. The Gmail app doesn't install a calendar.
    So two email addresses one calendar, ain't life grand!
    So here is the plan Stan, let me know what you think.
    1) On the Blackberry options advanced options, default services. Match both options to your work email.
    2) Decide what needs to happen with the 217 device default "orphans".
    Also 185 personal records. Are they worth keeping, can they be sent to the work calendar, do they need to be on Outlook.
    3) Read this article you can see your options and  help you make the best decision.
     KB19240 How to merge multiple calendars into one calendar on the BlackBerry smartphone
    Read about the Gmail for mobile app see if you think it will work for you: Gmail mobile app
    If you don't like it or don't think it's a good fit just let me know and we can go a different way.
    Let me know what you want to do,
    Thanks,
    Bifocals
    Click Accept as Solution for posts that have solved your issue(s)!
    Be sure to click Like! for those who have helped you.
    Install BlackBerry Protect it's a free application designed to help find your lost BlackBerry smartphone, and keep the information on it secure.

  • How do I get Calendar to suggest name and address from Contacts on my iPhone 5 in iOS 8?

    How do I get Calendar to suggest name and address from Contacts on my iPhone 5 in iOS 8?

    Restore it from your backup.

  • [svn] 3120: When you point Flex Builder at a local sandbox trunk build, it couldn' t generate the html-templates folder correctly for new projects so we moved all the html templates up one level and removed the html-templates directory and adjusted build

    Revision: 3120
    Author: [email protected]
    Date: 2008-09-05 10:44:10 -0700 (Fri, 05 Sep 2008)
    Log Message:
    When you point Flex Builder at a local sandbox trunk build, it couldn't generate the html-templates folder correctly for new projects so we moved all the html templates up one level and removed the html-templates directory and adjusted build.xml's to accommodate the directory change
    Modified Paths:
    flex/sdk/trunk/build.xml
    flex/sdk/trunk/webapps/webtier/build.xml
    Added Paths:
    flex/sdk/trunk/templates/client-side-detection/
    flex/sdk/trunk/templates/client-side-detection/AC_OETags.js
    flex/sdk/trunk/templates/client-side-detection/index.template.html
    flex/sdk/trunk/templates/client-side-detection-with-history/
    flex/sdk/trunk/templates/client-side-detection-with-history/AC_OETags.js
    flex/sdk/trunk/templates/client-side-detection-with-history/history/
    flex/sdk/trunk/templates/client-side-detection-with-history/history/history.css
    flex/sdk/trunk/templates/client-side-detection-with-history/history/history.js
    flex/sdk/trunk/templates/client-side-detection-with-history/history/historyFrame.html
    flex/sdk/trunk/templates/client-side-detection-with-history/index.template.html
    flex/sdk/trunk/templates/express-installation/
    flex/sdk/trunk/templates/express-installation/AC_OETags.js
    flex/sdk/trunk/templates/express-installation/index.template.html
    flex/sdk/trunk/templates/express-installation/playerProductInstall.swf
    flex/sdk/trunk/templates/express-installation-with-history/
    flex/sdk/trunk/templates/express-installation-with-history/AC_OETags.js
    flex/sdk/trunk/templates/express-installation-with-history/history/
    flex/sdk/trunk/templates/express-installation-with-history/history/history.css
    flex/sdk/trunk/templates/express-installation-with-history/history/history.js
    flex/sdk/trunk/templates/express-installation-with-history/history/historyFrame.html
    flex/sdk/trunk/templates/express-installation-with-history/index.template.html
    flex/sdk/trunk/templates/express-installation-with-history/playerProductInstall.swf
    flex/sdk/trunk/templates/metadata/
    flex/sdk/trunk/templates/metadata/AC_OETags.js
    flex/sdk/trunk/templates/metadata/readme.txt
    flex/sdk/trunk/templates/no-player-detection/
    flex/sdk/trunk/templates/no-player-detection/AC_OETags.js
    flex/sdk/trunk/templates/no-player-detection/index.template.html
    flex/sdk/trunk/templates/no-player-detection-with-history/
    flex/sdk/trunk/templates/no-player-detection-with-history/AC_OETags.js
    flex/sdk/trunk/templates/no-player-detection-with-history/history/
    flex/sdk/trunk/templates/no-player-detection-with-history/history/history.css
    flex/sdk/trunk/templates/no-player-detection-with-history/history/history.js
    flex/sdk/trunk/templates/no-player-detection-with-history/history/historyFrame.html
    flex/sdk/trunk/templates/no-player-detection-with-history/index.template.html
    Removed Paths:
    flex/sdk/trunk/templates/html-templates/

    Remember that Arch Arm is a different distribution, but we try to bend the rules and provide limited support for them.  This may or may not be unique to Arch Arm, so you might try asking on their forums as well.

Maybe you are looking for

  • Multiple WL instances on same machine with multiple clusters

    Hi,           I am wondering if it is possible to run two separate instances of WL on a           single machine, with each instance belonging to a separate cluster? The           machines are not multi-homed, so each instance must listen on a separa

  • Zen Touch help with Mediaorgani

    Hi, I love my Zen and I have gotten many of my friends to turn down the short living ipods and my Zen is finally starting to have a problem. My MediaOrganizer and Nomad Explorer can't read my Zen anymore. I have downloaded the firmware, driver, and a

  • HT201317 import pics from photo stream

    help i dont know how to import photo streaming pics from my i phone to i tunes  how do i do this

  • Publishing Webgallery with aperture or iweb

    With iweb i publish photo's at internet. A few days ago I bougth Aperture. Publishing photo's at the internet with Aperture gives less quality. Is there someone with an explanation? Please look at these links for an example: Published with Aperture:

  • Youtube HD won't work after downloading the latest version of Flashplayer (11.9.900.117)

    I have a windows Vista, system: 32 bit, and I downloaded the latest version of adobe flash player (11.9.900.117) But since I did this I can no longer watch youtube vids on HD with internet explorer. They open with a low quality like 360 and when I wa