Iphones, Ipads face problem while shifting between diffrent WLAN on WLC 2504

Dear All,
I just create second SSID for different WLAN on my WLC 2504, all client other then Apple devices are successfully able to connect  to new SSID a dnd can swap between two SSIDs but apple device unable to shift to new SSID, if any apple device is not connected to to any of SSID (Fresh connection) then that device is able to connect either of SSID but then unable to swap to other SSID. I enable Fast Transition on WLC as well but no improvement. can any one help me to sort out this issue
WLAN 10.10.10.0/24  SSID1
WLAN 10.10.20.0/24  SSID2
Thanks & Regards
Zohaib

Issue resolved :) by configuring fast SSID changing
got help on following link
https://supportforums.cisco.com/discussion/11527996/difficulty-apple-ios-devices

Similar Messages

  • I m having ipad 4 and after upgrading to ios7 I m facing continuously rebooting problem while switching between apps can any buddy help or facing same problem

    I m having ipad 4 and after upgrading to ios7 I m facing continuously rebooting problem while switching between apps can any buddy help or facing same problem

    Make sure you have the Latest Version of iTunes (v11) Installed on your computer
    iTunes free download from www.itunes.com/download
    1)  Connect to iTunes on the computer you usually Sync with and Restore
    http://support.apple.com/kb/HT1414
    2)  If necessary Place the Device into Recovery mode...
    http://support.apple.com/kb/ht4097
    Note on Recovery Mode.
    You may need to try this More than Once...
    Be sure to Follow ALL the Steps...
    Once you have Recovered your Device...
    Re-Sync your Content or Restore from the most Recent Backup...
    Restore from Backup  >  http://support.apple.com/kb/ht1766
    Note:
    Also consider Deleting any Apps you have Purchased / Downloaded but you now never use..

  • Bt hub 3, itunes, iphone, ipad syncing problems - not seen

    Im using the new infinity BT hub 3 and there are now issues with syncing the iphone, ipad and itunes.  iTunes does not see them as devices consistantly and when it does (looking for "device"), it says it is not available to sync (not found on the network) and promply they disappear from the upper right hand corner.  BT say it's an itunes issue.
    I have tried changing from WPA to WEP but this doesn't work, nor does plugging the computer into the ethernet. 
    The devices show as being on the network by the router, but are not available to sync in itunes
    What do we think people? Any ideas to fix this?

    As a fallback you could try using the usb cable rather than wifi.
    However to you main problem with the wifi. I to have BT infinity and not only was I having issues with not seeing the devices but also a slow speed of streaming to Apple TV3.
    Turns out my issue was interference on the wifi from other wifi networks on the same channel.
    Mountain Lion has a new wifi utility details here
    http://9to5mac.com/2012/07/31/use-mountain-lions-new-wi-fi-scan-utility-to-optim ize-your-home-wireless-network/
    Found thayt there seemed to be 3 or 4 houses on channel 6, Changed mine to channel 11, via the BT hub admin page. When everyting settled down again plugged in my devices via USB made sure they were wifi sync enabled and now all works as it should.
    If you do not run mountain lion then look for istumbler on google, does the same job and its free

  • Iphone/ipad sync problems

    We have all of our devices set to 'Manually manage music and videos'. M daughter's iPhone 5s is obviously very new but suffers from the same issue. We are running iTunes 11.1.1.11 on Windows 7. iTunes ignores the Manually manage setting. It syncs items back to our devices that we deleted from it last time we hooked it up. It even trys to sync e-mail (keeps popping up the login box for my work e-mail in Outlook). None of the individual checkboxes on the other tabs are checked either (Music, Movies, TV Shows). I just plugged the iPad in and it added back in a movie I deleted so I could update the iPad to iOS 7. My daughter is very frustrated because she will delete music and it will add it back the very next time she connects. This is obviously something with iTunes on our PC but we are baffled as to why iTunes is ignoring settings.

    Well, after hours of troubleshooting, I think I figured out the problem.
    First, the fix:
    Select all images in the "offending" album.
    While holding down the "Option" key, click right and select "Generate Previews".
    Then re-sync, and it works.
    My theory on why this works:
    I suspect there was no problem with the Aperture Library. I believe the problem was with the iTunes Optimized Image Cache - you know, when iTunes says "Optimizing xx of yy images for iPad". That cache, I believe, is only updated when there is a change to the image. I'm also guessing that deleting the image from the device (iPad or iPhone) does not delete the image from the cache, so if you then re-add it to the device, it pulls it from the cache. So the only way to re-generate the cached image is to make a change to the image. This can be accomplished by making additional adjustments to the image. But of course, no one wants to do that. So instead, another way to update the timestamp on the image is to regenerate the preview. When iTunes sees the update to the timestamp, it goes ahead and runs its "Optimizing..." task, recreating the cached image that gets dumped onto the iPad or iPhone.
    So, I believe this is actually a bug in iTunes.

  • MDIChildren flickering problem while switching between child form with dockstyle.fill and borderstyle.none

    I have an mdi applicaton in Visual studio 2010 (.Net framework 4.0). I'm having a flickering problem when user switch between an MDI Child form. I'm declaring the child form then setting the borderstyle.none at design time and dock property to fill
    through programming and make them a MDIChildren before I show them so that it takes up the entire space of the MDI Parent window without being maximized (client request). 
    i don't want to display control box(minimize, maximize,close) of child form in mdi parent form. (client request)
    The problem is that when the child form is being displayed it is briefly shown in it's default size with icon and control box before being resized to fill the available area on the MDI Parent form. When a Child Form loads, you can see it in it's original
    size (the size from Design-time) then all this flickering while maximizing .
    In other words, child form show up in the client area of the MDIForm, not maximized, with a caption, very shortly, before they are finally filling the client area. there is a short flicker when a new form is created and displayed. This process is most noticeable
    with a not-so-powerful PC or there are lots of control inside child form.
    below is my code to show child form 
       MyChild1 c1 = new MyChild1();
                                c1.MdiParent = MdiMainParent;
                                c1.Dock = DockStyle.Fill;
       c1.Show(); 
    how can i solved the problem of flickering issue?
    I tried many options which i have described below
    1.double buffering.
    2.set style property to child form
          this.SetStyle(ControlStyles.UserPaint, true);
          this.SetStyle(ControlStyles.AllPaintingInWmPaint, true);
          this.SetStyle(ControlStyles.DoubleBuffer, true); 
    3. override below method in each child form
    protected override CreateParams CreateParams
                get
                    CreateParams cp = base.CreateParams;
                    cp.ExStyle |= 0x02000000;
                    return cp;
    4. override below method in each child form
      const int WM_NCPAINT = 0x85;
            const int WM_SIZE = 0x05;
            protected override void WndProc(ref Message m)
                if (m.Msg == WM_NCPAINT)
                    if (this.WindowState == FormWindowState.Maximized)
                        return;
                if (m.Msg == WM_SIZE)
                    if (this.WindowState == FormWindowState.Maximized)
                        return;
                base.WndProc(ref m);
    but I didn't see any effects.  please someone help me to resolve flickering issue. thanks in advance.

    Hi hardikvaishnav,
    This is a known issue which has been reported to Microsoft Connect. Unfortunately, this issue will not fix due to stability issues around MDI. For more details, see 
    https://connect.microsoft.com/VisualStudio/feedback/details/97787/border-of-mdi-child-form-flashes-up-despite-formborderstyle-none.
    You might use a user control or panel instead.
    Best Regards,
    Bob Wu [MSFT]
    MSDN Community Support | Feedback to us

  • Iphone/Ipad Syncing Problems

    When I plug my iphone into the computer I keep getting the following message."Itunes was unable to load provider data from sync services. Reconnect or try again later." Can anyone tell me what this means and how to correct it?

    I have done this but the probelm persists. The issue only seems to be with my Iphone 4 as my ipad syncs fine.
    This article mentioned outlook which I don't use and unplugging all my USb devices. I can't do that as all my itunes data is on a portable HD connected to the computer via USB.
    Any other suggestions would be appreciated.
    Thanks

  • Iphone / ipad imessage problem

    I have an ipad and I'm using imessage on it receiving at my email, the same one used for the apple id. Today I got an iphone too, so when i was doing the configuration it asked me for my apple id so i put that email. Now imessage by default recieved message on the same email on the ipad and the iphone. That means that whenever i'm out using imesssage on the iphone someone could be watching the conversation as it happens on the ipad from home. This is annoying and i wantto change it so i can recieve imessages on the iphone only at my phone number.

    what robert say but at that point it isnt imessage it is just text messages

  • My iPhone had a problem while updating and it is now stuck on the connect to itunes screen. It will not connect to itunes and my laptop won't recognize that there's a phone connected. Help?

    While I was updating my phone, there was an error and it's stuck on the screen where it has the cable connecting to itunes. I tried to connect, but it's stuck. I've tried different cables and ports, but nothing works. Is there anything I can do without erasing my phone? I can't remember the last time I backed up my phone and I turned off iCloud because of the space it was taking up. I keep shutting it down and turning it back on, but the same screen appears. If you think you have a solution, please share!

    Turn your phone off and connect your cable to the computer, but not the device just yet. Start up iTunes. Now, hold down the home button on your phone and plug it in to the cable - don't let go of the button until iTunes tells you it's detected a phone in recovery mode. Now you can restore to factory settings.
    Unfortunately, the data on your phone is already gone if you're seeing the connect to iTunes logo.

  • IPhone/IPad notes problem

    My notes on my phone keep deleting on it own, but then it's goes to my iPad and it's gone. I was wondering if I get just keep my notes on my phone without it syncing to my iPad?

    So I just figured out where my notes has gone its goes to my email... Is there anyway way where I can make it not go to my email?

  • HT1476 iPhone/iPad charging problem

    Our iPhone5 USB charger (from wall socket) often either does not charge, or does so very slowly. Anyone else having this experience?

    Welcome to the Apple Discussions.
    If your iPad indicates the battery has dropped to the point of auto-shutdown (about 1% charge) do not power up and use the iPad...doing so can cause permanent damage to the Lithium-Ion battery. If the unit will not charge from the wall outlet, and the charger works with other iDevices, can you borrow an iPad charger from someone else? That will tell you if the charger is working for lower power iDevices and not the iPad. If another iPad charger does not work with your iPad there is not much you can do but take/send it to an Apple source to have it checked.
    Please do not force the iPad to run the battery below the point at which it shutsdown.
    Hope this helps.

  • My new iPhone 4s and my iPad 1 have the same problem: While working on one of them, the screen goes black and the right back to home screen. I've tried resetting the iPad with no chages to this problem. Need help, this is anoying.

    My new iPhone 4s and my iPad 1 have the same problem: While working on one of them, the screen goes black and the right back to home screen. I've tried resetting the iPad with no chages to this problem. Need help, this is anoying.

    I just did a reset all settings on both.
    Will see where this gets me.
    Thank you for your helpfull input.

  • I use tripit on both my iphone and ipad.  However, while tripit will sync with the gmail calendar on my iphone, it will not sync with the gmail calendar on my ipad, even though the setting are all in place, correctly for both.

    I use the "Tripit" travel app on both my iPhone and iPad2.  While I have no problem getting my Tripit info synced to the Gmail Calendar on my iPhone, I am unable to get Tripit to sync to the Gmail calendar on my iPad, even though the setup information (email address, settings, etc.) are exactly the same.  I know that Tripit is installed correctly on the iPad, as I am able to go to that app directly and correctly see all of my info.  However, even though I've set up the secondary "Tripit" calendar feed (to Gamil) on the iPad, it's not synchronizing and showing up.  Is anyone else having this problem?

    All I had to do was complain.  I synced my iPhone to the Windows machine, checked the other account at iTunes prompting (where no apps had shown up previously), reconnected the iPad, and 140 apps downloaded including the App Store.  I have no idea why.

  • Aperture 3 Syncing to iPhone/iPad Problem

    I'm trying to sync my photos in Aperture (3.0.3) to my iPhone 3GS (iOS 4) and iPad:
    I was able to sync projects, albums, faces, and places perfectly fine to my iPhone, but as of about a month ago, when I select Aperture as the source to sync photos in iTunes (9.2), it shows a very outdated version of my library and hasn't changed for over a month. I've tried rebuilding, and repairing the Aperture database, as well as repairing permissions, but nothing has changed in iTunes. I've also tried creating a new Aperture database, putting photos into that and syncing, but some photos don't sync (all standard JPEGs, and they've synced before so the photos aren't the issue). So far no update to iTunes or Aperture has fixed this.
    I don't do anything special in Aperture other than import photos from a CF card, directly from my Canon 40D, iPhone, iPad, etc. I did originally import all my photos from iPhoto, but I had no problems syncing or anything like that. I think one of the Aperture updates messed up iTunes ability to recognize the current library as it's stuck on this old version.
    Help is greatly appreciated,
    atshef

    I have been syncing from Aperture via iTunes to my iPad since I purchased it. It has had options such as: "Selected projects, albums, and faces and automatically include 'projects from the last 6 months'" and "include videos".
    Apart from videos, everything has worked. I got all the albums I selected including the photos, and all the events from the past 6 months (which appear as a separate tab - events - in Photo viewer on the iPad). Video has never worked though, I never see any of the videos transferred - I do suspect the format in that case though, perhaps Aperture sharing doesn't convert the format, even though they work in iMovie.
    However, yesterday, as I was syncing, I noticed iTunes say "deleting photos..." now all photos are gone, except one album - the "***" (5 star) one from Aperture. I have tried rebooting the iPad, restarting the Mac, checking other applications can see the thumbnails from Aperture, removing "Sync photos from Aperture" then re-enabling. And nothing. All I get is the one album and no events.
    It has been working for months. I have not updated iTunes in the last few days, nothing I can tell has changed, however none of my albums are now being installed. There is zero feedback. It says it works, no errors, nothing.
    Any ideas?

  • HT201263 hello guyz i m having problem while restoring my iphone 4.It is showing me the 1600 error before that it showed 3194 error i fixed that after that it showed me the error 1601 also i fixed it but now with 1600 plz plz help me guyz

    hello guyz i m having problem while restoring my iphone 4.It is showing me the 1600 error before that it showed 3194 error i fixed that after that it showed me the error 1601 also i fixed it but now with 1600 more then 20 times tried but no advantage plz guyz help me?

    iTunes: Specific update-and-restore error messages and advanced troubleshooting - http://support.apple.com/kb/TS3694 - relating to iPad, iPhone, iPod touch, iTunes

  • My iPhone is having problems and I have to send it into Apple to get a fixed but in the mean while I need a phone. Could my old env touch act as a temporary replacement with the data plan? And if so how to I activate it with going to Verizon and once I ge

    My iPhone is having problems and I have to send it into Apple to get a fixed but in the mean while I need a phone. Could my old env touch act as a temporary replacement with the data plan? And if so how to I activate it with going to Verizon and once I get my IPhone back will I be able to activate it without going to the Verizon store?!? Thanks:)

    Im sorry. Im on my ipad and i didnt read that.
    Sorry again

Maybe you are looking for

  • Digital ID used to encrypt a document, I think I lost my ID.

    Ill try to keep this short as possible, but I want to include the story as to what I think happened. We installed a new domain controller in our building and manually recreated all of the users. We used the same login names but the domain name change

  • Which is better for multimedia

    I am going to have a choice to make and would like some help. Which would be better for doing multimedia stuff such as making dvd's and stuff with itunes for my ipod? My choices are a dual 800mhz g4 or a g4 that has been upgraded to a 1.6 ghz?

  • The application does not have a card CREATIVE CLOUD [Android]

    I have a problem with App - Adobe Acrobat DC. I am a Polish citizen. I have a smartphone SAMSUNG SIII with App Adobe Acrobat DC. I have subscription plan Creative Cloud. I would like to testing the effect of pdf files in the cloud but on my device no

  • Copying control from Delivery to Billing

    Hi Experts, I created a new requirement for Copying control from Delivery to Billing. And it works in our develop server. But when I transport it to our test server, it dumps with message can not find the include which my new requirement in. But I go

  • PPro CS4 All Audio Disappeared after Adding WAV File

    I cannot hear audio in a video I am editing in Premiere Pro CS4 (Win 7 pc). Problem began after I tried to record my voiceover (wav file) using PPro CS4. I saved videos from a digital camera, converted to QuickTime format, imported and was able to li