private void loadComboData()
        {
            try
            {
                MiscService.MiscAPIService local = new MiscService.MiscAPIService();
                local.Url = serviceUtil.getPpolURL() + "/cxf/MiscAPI";

                contactOptions = local.getContactOptions(serviceUtil.getPpolAccount(), serviceUtil.getUserName(), serviceUtil.getPassword());
                if (contactOptions != null)
                {
                    contactCategory    = contactOptions.categoryList;
                    contactPhoneType   = contactOptions.phoneTypeList;
                    contactAddressType = contactOptions.addressTypeList;



                    if (contactCategory != null)
                    {
                        for (int i = 0; i < contactCategory.Length; i++)
                        {
                            MiscService.contactCategory category = contactCategory[i];
                            this.cbClassification.Items.Add(category.name);
                        }
                        cbClassification.SelectedIndex = 0;
                    }
                    if (contactPhoneType != null)
                    {
                        for (int i = 0; i < contactPhoneType.Length; i++)
                        {
                            MiscService.contactPhoneType phone = contactPhoneType[i];
                            this.cbPhone1.Items.Add(phone.name);
                            this.cbPhone2.Items.Add(phone.name);
                            this.cbPhone3.Items.Add(phone.name);
                        }
                        cbPhone1.SelectedIndex = 0;
                        cbPhone2.SelectedIndex = 0;
                        cbPhone3.SelectedIndex = 0;
                    }
                    if (contactAddressType != null)
                    {
                        for (int i = 0; i < contactAddressType.Length; i++)
                        {
                            MiscService.contactAddressType address = contactAddressType[i];
                            this.cbAddress.Items.Add(address.name);
                        }
                        cbAddress.SelectedIndex = 0;
                    }
                }
            }
            catch (Exception ex)
            {
                ClassFactory.Instance.ConnectionProblem(ex);
            }
        }