Question : LWAP are unable to join Cisco Wieeless Controller 4400

Dear all,

 I  have moved my WLC to my datacentre from branch office. after movement i have updated DHCP options with the new ip address but all of my access point are not joining  to WLC.Kindly check the attached cofiguration of WLC as well as LWAP logs and It will be a great help if somebody can help me to relsolve this issue.

Please note that  for datacenter -  Branch connectivity we are using L3  MPLS line and there is no firewall between the office  
 
 
 
LWAP logs while booting
 

Answer : LWAP are unable to join Cisco Wieeless Controller 4400

>> datepicker control picks the dates only in this format for example:  "MM/dd/yyyy"
and
>> textboxes in format "dd/MM/yyyy" then it works fine

I provided you the swap code, to make MM/dd/yyyy to dd/MM/yyyy

          textBox1.Text = ????? <---------------------- date from your control, then
          string[] temp = textBox1.Text.Split('/');
            string t = null;
           t = temp[1];
           temp[1] =  temp[0];
           temp[0] = t;
           textBox1.Text =  string.Join("/", temp); 'now it becomes dd/MM/yyyy format in textBox1and IF you have only dates in textbox1then this will
show you correct result:

           IFormatProvider culture = new CultureInfo("fr-FR", true);
           DateTime checkindate = DateTime.Parse(textBox1.Text, culture, DateTimeStyles.NoCurrentDateDefault);
           DateTime checkoutdate = DateTime.Parse(textBox2.Text, culture, DateTimeStyles.NoCurrentDateDefault);
           TimeSpan ts = checkoutdate.Subtract(checkindate);
           int daysOrTimeperiod = (int)Math.Abs(ts.Days);
           MessageBox.Show(daysOrTimeperiod.ToString());



Random Solutions  
 
programming4us programming4us