Just looking to clarify a few things I read here

I currently have a 5508 WLC ver 6.0.202.0.  My WCS is at version 6.0.132.0,  I am using 1142's, 1131's and 1231's.  At the current software levels, are there any other access point models that would be supported?  I am looking particularly at 3500 and 3600's.  If they are not supported at current levels, what should be the minimum software version for the WLC and the WCS?
Thanks,
Gene

Gene,
The 3600's will require the 7.2 code and that is only supported on the 2504, 5508, and WiSM2. Your WCS version should also be equal or a higher version than the WLC firmware.
The 3502 requires a minimum of the 7.0.98.0 wlc
http://www.cisco.com/en/US/products/ps10315/products_tech_note09186a0080b4bdc1.shtml
Thanks,
Scott Fella
Sent from my iPhone

Similar Messages

  • How do I play an individual folder of photos from itunes or iphone on tv? I am getting my whole library and I just want to show a few things.

    What I really want to do is just have a few images on my screen during the course of an hour. How do I do this?

    It would be much simpler as a screensaver, but could be done as either.
    In your photo folder, you can have one level of sub folders, when you add the main folder to the Apple TV (via the advanced menu in itunes) each sub folder will show as an album. When you select which photos to use for the screensaver, make sure you choose a sub folder (album) and not the main folder.
    You'll also need to select the type of screensaver you want. i.e. floating pictures, dissolve etc etc.

  • Clarifying a few things

    Hello,
    I'm soon to start university and i need to purchase a laptop. I also like to play World of warcraft and i also need Wi-Fi on my comp.
    I was thinking of buying the following comp:
    MacBook 2.0GHz Intel Core 2 Duo - Black
    - 2.0GHz Intel Core 2 Duo
    - 120GB Serial ATA drive @ 5400 rpm
    - Apple Mini-DVI to VGA Adapter
    - Apple Mini-DVI to Video Adapter
    - Keyboard/Mac OS - U.S. English
    - Accessory kit
    - 2GB 667 DDR2 SDRAM - 2x1GB
    - Superdrive 6x (DVD+R DL/DVD±RW/CD-RW
    I have the following questions:
    1. Do i have to buy extra wireless internet cards of any sort? if so which ones?
    1.5. if i have a normal network at home with extreme speed internet and just buy the express airport base and plug my internet wire in there will it give my laptop slower internet speed? Whether it slows it down or not will i even get internet?
    2. What kind of Graphics card does it have does it play World of Warcraft properly?
    3. how do i get Both Windows/MacOsX on my computer?
    4. How long does the battery last, does it make it last less long if i keep it plugged in most of the time?
    Thanks for your dedication and time
    Can you also email me the answers? thank you

    1.5. if i have a normal network at home with extreme
    speed internet and just buy the express airport base
    and plug my internet wire in there will it give my
    laptop slower internet speed? Whether it slows it
    down or not will i even get internet?
    I guess you mean ''AirPort Express Base Station'' ? It has 10/100BASE-T Ethernet
    so,unless you have more than 100 Mb/s Internet speed,which I'm doubtful
    about,it won't slow down. Otherwise you'll be fine.
    4. How long does the battery last, does it make it
    last less long if i keep it plugged in most of the
    time?
    Check it here.

  • How do I copy a few lines from a pdf document to a Word document?  I'm not looking to convert the whole document, just need to copy a few lines here and there.

    How do I copy a few lines from a pdf document to a Word document?
    I'm not looking to convert the whole document, just need to copy a few lines here and there.
    ps.  Wow, what a user UNFRIENDLY site this is!

    In most cases you can just select the text and copy/paste. You can do that unless the file is a picture/scan.

  • HT3964 MacBook 2007 won't start up all of the way it gets the loading circle thing then it just keeps going and a bar thing pops up to load but doesn't and about a few minutes and it shut off. I don't have a disk for the computer or another Mac so what do

    need help MacBook 2007 won't start up all of the way it gets the loading circle thing then it just keeps going and a bar thing pops up to load but doesn't and about a few minutes and it shut off. I don't have a disk for the computer or another Mac so what do I do?

    I don't have the disk and i tried the shift key and it didn't do anything, i have tried like everything but it won't work and i was givin this computer with a charger and that is all nothing came with it and i don't think that it had the lion thing on it either i never got to that it just won't turn on and i have another mac that was a family members but it won't turn on either at all it won't load anything the screen stays black. so i don't really know at all what to do is there anything else? i don't want to take it anywhere because i have no money for that, and i need this computer for school. Any sugestions?

  • Web Browser.....Code is inside...but clarify few things!

    HI All,
    this is pilot ..sorry to bother u again but this time its kinda important
    here is my program for a web browser--
    now i wanna know a few things HyperlinkListener just not support javascript nor does it support flash ...thats 2 and i wanna know wht else restrictions that are in this simple browser....
    and can u tell me how can i make this browser more faster and i wanna add a JProgressBar to it and i have no clue...please help/
    import javax.swing.JFrame;
    import javax.swing.JTextField;
    import javax.swing.JButton;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    import javax.swing.JEditorPane;
    import javax.swing.JLabel;
    import java.io.IOException;
    import java.awt.GridBagLayout;
    import java.awt.GridBagConstraints;
    import java.awt.BorderLayout;
    import java.awt.event.ActionListener;
    import java.awt.event.ActionEvent;
    import javax.swing.UIManager;
    import javax.swing.JEditorPane;
    import javax.swing.event.HyperlinkListener;
    import javax.swing.event.HyperlinkEvent;
    import javax.swing.JOptionPane;
    public class Browser implements ActionListener
         JTextField t1;
         JLabel l1;
         JButton b1;
         GridBagLayout gbl;
         GridBagConstraints gbc;
         JPanel p;
         JFrame frame;
         JScrollPane scrollPane;
         JEditorPane jep;
         static String initialPage;
    public Browser()
         //JFrame.setDefaultLookAndFeelDecorated(true);
         /*try
            UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
         catch(Exception e)
             e.printStackTrace();
         frame=new JFrame("Simple Web Browser");
         gbl=new GridBagLayout();
         gbc=new GridBagConstraints();
         p=new JPanel();
         p.setLayout(gbl);
         jep = new JEditorPane();
         t1=new JTextField();
         b1=new JButton("Check it out!");
         b1.addActionListener(this);
         frame.getRootPane().setDefaultButton(b1);
         l1=new JLabel("Address");
         gbc.anchor=GridBagConstraints.NORTHEAST;
         gbc.fill=GridBagConstraints.HORIZONTAL;
         gbc.gridx=0;
         gbc.gridy=0;
         gbc.weightx=0.0;
         gbl.setConstraints(l1,gbc);
         p.add(l1);
         gbc.anchor=GridBagConstraints.NORTHEAST;
         gbc.gridx=1;
         gbc.gridy=0;
         gbc.weightx=1.0;
         gbl.setConstraints(t1,gbc);
         p.add(t1);
         gbc.anchor=GridBagConstraints.NORTHWEST;
         gbc.gridx=2;
         gbc.gridy=0;
         gbc.weightx=0.0;
         gbl.setConstraints(b1,gbc);
         p.add(b1);
        scrollPane = new JScrollPane(jep);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.getContentPane().add(p,BorderLayout.NORTH);
         frame.getContentPane().add(scrollPane);
        frame.setSize(1000,700);
        frame.setVisible(true);
    public void actionPerformed(ActionEvent e)
              initialPage=t1.getText();
              char a=initialPage.charAt(0);
              char b=initialPage.charAt(1);
              char c=initialPage.charAt(2);
              char d=initialPage.charAt(3);
              char ea=initialPage.charAt(4);
              char f=initialPage.charAt(5);
              char g=initialPage.charAt(6);
              if((a=='h')&&(b=='t')&&(c=='t')&&(d=='p')&&(ea==':')&&(f=='/')&&(g=='/'))
                   initialPage=t1.getText();
              else
                   initialPage="http://"+initialPage;
              jep.setEditable(false);
              jep.addHyperlinkListener(new second(jep));
             try
               jep.setPage(initialPage);
             catch (IOException ae)
                JOptionPane.showMessageDialog(frame,new String("Error: "+ae));
    public static void main(String[] args)
              new SimpleWebBrowser();
    class second implements HyperlinkListener
      private JEditorPane pane;
      public second(JEditorPane pane)
        this.pane = pane;
    public void hyperlinkUpdate(HyperlinkEvent evt)
       if (evt.getEventType() == HyperlinkEvent.EventType.ACTIVATED)
          try
           pane.setPage(evt.getURL());
         catch (Exception e){}
      }}}

    Broken Browser excuse me/...check this out ---> run it and tell me if the code is broken...
    import javax.swing.JFrame;
    import javax.swing.JTextField;
    import javax.swing.JButton;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    import javax.swing.JEditorPane;
    import javax.swing.JLabel;
    import java.io.IOException;
    import java.awt.GridBagLayout;
    import java.awt.GridBagConstraints;
    import java.awt.BorderLayout;
    import java.awt.event.ActionListener;
    import java.awt.event.ActionEvent;
    import javax.swing.UIManager;
    import javax.swing.JEditorPane;
    import javax.swing.event.HyperlinkListener;
    import javax.swing.event.HyperlinkEvent;
    import javax.swing.JOptionPane;
    public class Browser implements ActionListener
         JTextField t1;
         JLabel l1;
         JButton b1;
         GridBagLayout gbl;
         GridBagConstraints gbc;
         JPanel p;
         JFrame frame;
         JScrollPane scrollPane;
         JEditorPane jep;
         static String initialPage;
    public Browser()
         //JFrame.setDefaultLookAndFeelDecorated(true);
         /*try
            UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
         catch(Exception e)
             e.printStackTrace();
         frame=new JFrame("Simple Web Browser");
         gbl=new GridBagLayout();
         gbc=new GridBagConstraints();
         p=new JPanel();
         p.setLayout(gbl);
         jep = new JEditorPane();
         t1=new JTextField();
         b1=new JButton("Check it out!");
         b1.addActionListener(this);
         frame.getRootPane().setDefaultButton(b1);
         l1=new JLabel("Address");
         gbc.anchor=GridBagConstraints.NORTHEAST;
         gbc.fill=GridBagConstraints.HORIZONTAL;
         gbc.gridx=0;
         gbc.gridy=0;
         gbc.weightx=0.0;
         gbl.setConstraints(l1,gbc);
         p.add(l1);
         gbc.anchor=GridBagConstraints.NORTHEAST;
         gbc.gridx=1;
         gbc.gridy=0;
         gbc.weightx=1.0;
         gbl.setConstraints(t1,gbc);
         p.add(t1);
         gbc.anchor=GridBagConstraints.NORTHWEST;
         gbc.gridx=2;
         gbc.gridy=0;
         gbc.weightx=0.0;
         gbl.setConstraints(b1,gbc);
         p.add(b1);
        scrollPane = new JScrollPane(jep);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.getContentPane().add(p,BorderLayout.NORTH);
         frame.getContentPane().add(scrollPane);
        frame.setSize(1000,700);
        frame.setVisible(true);
    public void actionPerformed(ActionEvent e)
              initialPage=t1.getText();
              char a=initialPage.charAt(0);
              char b=initialPage.charAt(1);
              char c=initialPage.charAt(2);
              char d=initialPage.charAt(3);
              char ea=initialPage.charAt(4);
              char f=initialPage.charAt(5);
              char g=initialPage.charAt(6);
              if((a=='h')&&(b=='t')&&(c=='t')&&(d=='p')&&(ea==':')&&(f=='/')&&(g=='/'))
                   initialPage=t1.getText();
              else
                   initialPage="http://"+initialPage;
              jep.setEditable(false);
              jep.addHyperlinkListener(new second(jep));
             try
               jep.setPage(initialPage);
             catch (IOException ae)
                JOptionPane.showMessageDialog(frame,new String("Error: "+ae));
    public static void main(String[] args)
              new Browser();
    class second implements HyperlinkListener
      private JEditorPane pane;
      public second(JEditorPane pane)
        this.pane = pane;
    public void hyperlinkUpdate(HyperlinkEvent evt)
       if (evt.getEventType() == HyperlinkEvent.EventType.ACTIVATED)
          try
           pane.setPage(evt.getURL());
         catch (Exception e){}
      }}}

  • How can I change the insert SWF File, I need to add a few things and make it better?

    How can I change the insert SWF File, I need to add a few things and make it better? Is there an option inside of the dreamweaver menu that I am not looking at. It would make it easier on me if I changed some things around and didn't have to do it all myself each time I used it. Just incase you was needing to remember what swf flash was, It is not a swf video either.
      <object id="FlashID" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="640" height="480">
        <param name="movie" value="Sonic Kaboom.swf">
        <param name="quality" value="high">
        <param name="wmode" value="opaque">
        <param name="swfversion" value="9.0.115.0">
        <!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
        <param name="expressinstall" value="../Scripts/expressInstall.swf">
        <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
        <!--[if !IE]>-->
        <object type="application/x-shockwave-flash" data="Sonic Kaboom.swf" width="640" height="480">
          <!--<![endif]-->
          <param name="quality" value="high">
          <param name="wmode" value="opaque">
          <param name="swfversion" value="9.0.115.0">
          <param name="expressinstall" value="../Scripts/expressInstall.swf">
          <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
          <div>
            <h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
            <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>
          </div>
          <!--[if !IE]>-->
        </object>
        <!--<![endif]-->
      </object>
    </div>

    If I understand correctly, Sonic Kaboom.swf needs to be edited in a separate Flash authoring program and then reinserted into your HTML document. 
    As Murray said, Flash is dead.  Nobody uses it anymore.   We use HTML5, CSS3 and JavaScript animations which have universal support from Smartphones, Tablets and other web devices that can't support Flash.   Look at Edge Animate.
    HTML animation | Download free Adobe Edge Animate CC trial
    Nancy O.

  • After upgraded to version 5 few things missing..

    Hi,
    I am using blackberry curve 8520.. I have been using this for almost a year already. I noticed, there are few things missing and some problems occurred when I upgraded to version 5. Eg. Memopad, No column in option for alarm tones, my BB getting slower during browsing, everytime I try to connect to wi-fi, it will be intermittent or not connected.
    For unable to connect to wifi, I suspected it is browser issue but then I set to default setting it is still the same.
    Can somebody help me to rectify this please?
    Tq.
    Solved!
    Go to Solution.

    Memopad: 1. On your homescreen, press the Menu key > SHOW ALL, so that SHOW ALL is checked.
    2. Look in EACH folder on your device... Applications, Instant Messengers, Downloads, etc.
    If you still don't see it, look at Options > Advanced > Applications. Do you see it listed there?
    If still can't be found, read this link.
    Alarms tones? Can you elaborate?
    Slow or lagging device, please see below.
    i don't know about your WiFi issue, you would also need to elaborate your problem.
    To prevent freezing or lagging/slow response on any BlackBerry, the most important practice you can adopt is to be sure to CLOSE applications when you are finished using them.
    If you just hit the red "end call" key to go back to the home screen the application actually stays open and running in the background. If you do this repeatedly you will have lots of apps open and consequently your memory will get used up. Lack of memory is the biggest reason your BlackBerry slows to a crawl or locks up. If you get into the habit of actually using the menu key to close the applications this will at least slow down this memory-clogging process. You still may have to do a battery pull or use the "Quickpull" app once in a while when things get slow.
    To check what applications are running on your device in the background, press the Menu key then choose Switch Applications. You will see the icons of each application there.
    So now, check your applications running in the background. There are commonly four or five applications that will always be running (Messages, Call Logs/Phone, BlackBerry Messenger, Homescreen, and the Browser; there are other third party applications such as BeeJive, and BlackBerry Alerts which will also run in the background which you cannot close if you want them to operate). Make certain that the browser is NOT on an active webpage (open the browser and choose Menu > Close). Close any other applications that do not need to be running (the camera or a game you were playing or Google Maps).
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Just looking for some advice at this stage

    Hello all, been a while since I posted here... That's cause it's been a while since I've upgraded :D
    Anyway, I'm just planning my build now and I want to check up on a few things... I'm going Conroe obviously (E6600) but I'm not decided on which flavour of board I'll go for just yet. Depending on what AMD/ATi pull out of the bag it'll either be the 975X or a P6N SLI (in some form or other). At this point three things are on my mind:
    1. I want to go for 4Gb of (matched) RAM on two sticks... anything I need to be aware of regarding 2Gb module compatibility? Any makes to avoid (OCZ seem to be unpopular in that regard).
    2. I'd like to move to a SATA optical drive, and issues there? Makes to avoid etc. especially in the case of the 975X as the tested hardware list only seems to include PATA drives.
    3. What the recommended Amperage on the 12V line these days? I'm currently looking at the 620W Corsair PSU as a safe bet, other recommendations are welcome though.
    Thanks for any advice/opinions offered in advance... hopefully with a bit more info this time I'll be able to avoid trouble shooting posts :D
    Gift.

    Right so I've done it, two PCs at the spec posted in my sig...
    They seem to be working fine, nice and stable but a few little niggles I'd like to sort:
    1. Updating the Mobo drivers, live update doesn't seem to like Vista so should I just DL the ones on the mobo main page?
    2. Vista seems to behave strangely when it greys out the screen to indicate a UAC box needs attention. It fades in ok on both PCs but seems to flicker off once I'm done with the box in a way that seems to render the graphics weirdly. I wouldn't go so far to describe it as graphical corruption more like a kind of rendering lag... Anyone else noticed this, I've an idea uptodate mobo/gfx drivers might be the problem (I've just gone with the stuff vista DL'ed installed, for me) but otherwise all good games run stably so far (touch wood).
    I'm off for a night of installing software :D Deep joy.
    Gift.
    PS sorry this was late, parts got delayed in the post :D And I had no probs with my RAM if peeps are interested.

  • HT1296 i have a load of stuff on my ipad but I can't get it onto my conputer, pressing sync comes up with a message saying it will all be deleted. I've transferred all purchases but this only does the few things I've got from apple (apps and a few itunes)

    I own an ipad2 and have loads of music and vids/photos etc on it from an old pc.
    I just bought a new pc and wanted to transfer everything to the new pc
    I've transferred purchases but this only transfers things bought in the itunes store like apps and a few songs
    The rest of the content is still on my ipad.
    When I press sync, it warns that it will delete all the content on my ipad and replace with the few things I've managed to import.
    How do I transfer all the content to the new pc?

    Similar issues here.
    I purchased five movies for download and having nothing but problems getting them downloaded. I keep receiving error messages and the download stops and I have to restart it, just to get another minute worth of download with each restart. Now Apple has my money and I have nothing.

  • I am getting a security code invalid error? everytime I try to download a app or update my current apps? I looked online and a few people are having the same issues anyone been able to get this resolved? Thanks

    I am getting a security code invalid error everytime I try to download a app or update my current apps? I looked online and a few people are having the same issues anyone been able to get this resolved? It's not just on Iphones either it's on all apple devices. I've called Apple customer service. I've wrote a complaint online as well so far no good.
    Any help would be much appreciated Love to all and thanks!

    I have done that thousands of times for my security code. Doesn't work and I have called the bank and they say no problem with my card. I have also tried useing different cards all together with no luck idk what else to do? Help!

  • Why wont my Tv Show Download? it only says "download error. tap to retry" and tapping doesnt work it just keeps on saying the same thing.

    Why wont my Tv Show Download? it only says "download error. tap to retry" and tapping doesnt work it just keeps on saying the same thing.

    It appears in the download section of my itunes.
    I downloaded a season of Iron Man Anime and all of the episodes except episode 1 was downloaded. I looked at the error and it says "error = -50" and when I try to resume downloading, it continues to tell me that there is a download error and it wont resume.
    It also says to check my network connection, but I'm connected. So....I'm not sure what to do...this kind of ticks me off.

  • Sometimes my back button is greyed out and does not show the previous page i was just looking at!?

    This randomly happens and i can not tell exactly what i do or why.
    All i know is that every time you visit a page,site, picture etc... the back button remembers every page you have just been too in that session.
    However some times the back button goes grey and i can not click on it and it loses all the previous pages i have been to.
    I can reopen the last pages by going to my history but it's really annoying as it takes time and as i surf and look at a lot of things, the back button is crucial for me.

    I am experiencing the same problem with the back button randomly being greyed out and not functional. If I navigate to the same page a second time, the back button is usually functional again... have not been able to associate this behavior with any particular site

  • HT1657 there is a Black rectangle on the middle of the screen on the film I've just rented. is this a new thing?

    there is a Black rectangle on the middle of the screen on the film I've just rented. is this a new thing?

    I had the same thing when renting Gatsby last night. I have the original Apple tv, I'm wondering if that has anything to do with it (like a memory thing). I reported the problem and Apple said they will refund.
    I also had trouble a few movie rentals ago with a movie, the closed caption would not turn off and wouldn't continue either it just stayed on the same few words for the whole movie.

  • My iphone 4s will not allow me to open any apps that I have downloaded. I have tried a few things but still will not allow me to open. Shows they are open once pushing the home button twice. Please help!

    My iphone 4s will not allow me to open applcations that I have downloaded. I have tried a few things but still will not allow me to open. Shows they are open once pushing the home button twice. Please help!

    Pressing the Home button twice does not show you what apps are running. It shows you what apps were recently used.
    Download a free app from the App Store. Once it downloads, your other apps should work properly again.

Maybe you are looking for

  • I can no longer access my Time Capsule Data

    I have a 2TB TimeCapsule connected wirelessly to my home Network via an Airport Express. I have an iMac and a MacBook Pro.  I keep my documents on there, so I can access them from either device.  Today when I tried to access my documents frm the iMac

  • Dual Boot Windows 8 & 7 Help On HP Pavillion G9-1178CA

    Hello Guys I Just Need Some Help From You Guys So when I Try To Dual Boot Windows 7 & 8 it says that this partion is dynamic or something like that And i do not have ubuntu Dual booted so please help me thank -Sam

  • How can I add a header to a text file without mapping? [Using only ID]

    Hi Experts, I am doing a scenario in which I want to add a dynamic header to a text file, due to the complications related to the structure, I dont want to create a message type, data type etc so I cant use mapping. I want to do all the manipuations

  • Box Shuts Down and Dl appears

    Recently, my box has been shutting down and then on the screen e602 appears and then Dl.  A squiggly line on the left of the Dl goes in a circle as if it's downloading.  Afterwards, it will reset and the television will turn on, however, I can't get

  • Problem with Reports Server and invalid DB packages when release code

    Hello, I'm not certain that this is a Reports issue or not, but wondered if anyone had encountered similar. We've recently upgraded from Forms and Reports 6i to 10.1.2.0.2. A couple of times now, after doing a release of code to our environment, we f