After iTunes 11 I get error 15006, cannot connect to remote device

Since I've updated to iTunes 11 I get error code 15006. I can go into iTunes and re-select the remote device (an Airport Express) and it works fine. If I put my computer to sleep it generates the 15006 error. It happens at my work computer too which runs the same basic network.

Hello, Darktowerfan1. 
Thank you for visiting Apple Support Communities. 
Here are a couple articles that I would recommend going through when experiencing this issue. 
Troubleshoot issues on an iPhone, iPad, or iPod touch
If you haven't been able to connect to the iTunes Store:
Make sure your date, time, and time zone are correct in Settings > General > Date & Time.
Note: Time Zone may list another city in your time zone.
Make sure that your iOS software is up to date by tapping Settings > General > Software Update (iOS 5 or later) or connecting your iOS device to iTunes and clicking Check for Update on your device's Summary page.
Check and verify that you're in range of a Wi-Fi router or base station. If you're on a device with cellular service, make sure that cellular data is turned on from Settings > General > Cellular.
Note: If connected to cellular data, larger items may not download. You may need to connect to Wi-Fi to download apps, videos, and podcasts.
Make sure that you have an active Internet connection. You can check the user guide for your device for help with connecting to the Internet.
Make sure that other devices (portable computers, for example) are able to connect to the Wi-Fi network and access the Internet.
Try resetting (turning off and then on again) your Wi-Fi router.
If the issue persists, try troubleshooting your Wi-Fi networks and connections.
Can't connect to the iTunes Store
http://support.apple.com/kb/ts1368
iOS: Unable to use webpages or services that require cookies
http://support.apple.com/kb/TS4207
Cheers,
Jason H. 

Similar Messages

  • Not able to log in to itunes on ipad; getting error as 'Cannot connect to itunes'

    not able to log in to itunes on ipad; getting error as 'Cannot connect to itunes'

    Cannot connect to iTune Store
    http://support.apple.com/kb/ts1368
    http://support.apple.com/kb/ts3297

  • HT4623 My IPad will no longer connect to Itunes store. I get error message "cannot connect to Itunes store".

    When I try to connect my IPad to ITunes store, I get a message "cannot connect to ITunes store".

    Hello, Darktowerfan1. 
    Thank you for visiting Apple Support Communities. 
    Here are a couple articles that I would recommend going through when experiencing this issue. 
    Troubleshoot issues on an iPhone, iPad, or iPod touch
    If you haven't been able to connect to the iTunes Store:
    Make sure your date, time, and time zone are correct in Settings > General > Date & Time.
    Note: Time Zone may list another city in your time zone.
    Make sure that your iOS software is up to date by tapping Settings > General > Software Update (iOS 5 or later) or connecting your iOS device to iTunes and clicking Check for Update on your device's Summary page.
    Check and verify that you're in range of a Wi-Fi router or base station. If you're on a device with cellular service, make sure that cellular data is turned on from Settings > General > Cellular.
    Note: If connected to cellular data, larger items may not download. You may need to connect to Wi-Fi to download apps, videos, and podcasts.
    Make sure that you have an active Internet connection. You can check the user guide for your device for help with connecting to the Internet.
    Make sure that other devices (portable computers, for example) are able to connect to the Wi-Fi network and access the Internet.
    Try resetting (turning off and then on again) your Wi-Fi router.
    If the issue persists, try troubleshooting your Wi-Fi networks and connections.
    Can't connect to the iTunes Store
    http://support.apple.com/kb/ts1368
    iOS: Unable to use webpages or services that require cookies
    http://support.apple.com/kb/TS4207
    Cheers,
    Jason H. 

  • TS1368 My Iphone 4S connects to internet and Apple Store properly but it doesnt connect to ITunes. Whenever I try to connect to itunes I get a message "Cannot connect to iTunes Store". I have to connect my IPhone to a Laptop and then access iTunes

    I have followed almost every step mentioned on forumns. I have upgraded IOS to 6. But I just cannot connect to iTunes from my iphone 4s. Everything else like WiFi, 3G etc works perfectly. I can even connect to App Store to download applications.
    Does anyone have a magic trick to make it work?. I dont want to try Restore unless its a last resort..

    "is this just a scam by itunes not to engage with problems?"
    Of course not.
    http://www.apple.com/support/contact/

  • URGENT---Error regarding Cannot connect to Capture Device

    Hello Everyone, I am new to JMF and I am trying to build a project using JMF. In the project I need to capture images from webcam and display it on a window.
    I have written the following class for this:
    import java.awt.*;
    import java.awt.image.*;
    import javax.media.*;
    import javax.media.control.*;
    import javax.media.format.*;
    import javax.media.protocol.*;
    import javax.media.util.*;
    public class CameraController
         private Player player;
         * Initialises the video capture device.
         * @param name the name of the device (e.g. <code>vfw:Microsoft WDM Image Capture (Win32):0</code>).
         * @param locator the location of the device (e.g. <code>vfw://0</code>).
         * @param size
         * @throws Exception if there was a problem accessing the camera.
         public CameraController(String name, String locator, Dimension size) throws Exception
              // Create capture device
              System.out.println("Initialising video capture device: "+name);
              try
                   CaptureDeviceInfo captureDeviceInfo = CaptureDeviceManager.getDevice(name);
                   VideoFormat videoFormat = null;
                   Format[] formats = captureDeviceInfo.getFormats();
                   for (int i=0; i<formats.length; i++)
                        if (((VideoFormat)formats).getSize().equals(size))
                             videoFormat = (VideoFormat)formats[i];
                             break;
                   DataSource dataSource = Manager.createDataSource(new MediaLocator(locator));*
                   FormatControl[] formatControls = ((CaptureDevice)dataSource).getFormatControls();
                   for (int i=0; i<formatControls.length; i++)
                        if (formatControls[i]!=null)
                             Format supportedFormats[] = formatControls[i].getSupportedFormats();
                             if (supportedFormats!=null)     
                                  for (int j=0; j<supportedFormats.length; j++)
                                       if (supportedFormats[j].matches(videoFormat))
                                            formatControls[i].setFormat(videoFormat);                              
                   CaptureDeviceInfo deviceInfo = ((CaptureDevice)dataSource).getCaptureDeviceInfo();
                   ((CaptureDevice)dataSource).disconnect();
                   player = Manager.createRealizedPlayer(deviceInfo.getLocator());
                   player.start();
                   try { Thread.sleep(3000); }
                   catch (InterruptedException e) {}
              catch (Exception e)
                   System.out.println("Error Initialising video capture device!");
                   throw e;
         public void shutdown()
              player.close();
              player.deallocate();
         public BufferedImage getFrame()
              FrameGrabbingControl frameGrabber = (FrameGrabbingControl)player.getControl("javax.media.control.FrameGrabbingControl");
              Buffer buf = frameGrabber.grabFrame();
              Image img = (new BufferToImage((VideoFormat)buf.getFormat()).createImage(buf));
              if (img==null)
                   System.out.println("Error: Capture device doesnt appear to be initialised yet.");
                   return null;          // happens if video device isn't properly initialised yet
              BufferedImage buffImg = new BufferedImage(img.getWidth(null), img.getHeight(null), BufferedImage.TYPE_INT_RGB);
              Graphics2D g = buffImg.createGraphics();          
              g.drawImage(img, null, null);
              return buffImg;
         public Component getVisualComponent()
              return player.getVisualComponent();
    There is another class GUI which calls the shutdown() function on occurrence of WindowClosing event.
    When I try to run this, It does run for the first time but after that, the following exception occurs:
    java.io.IOException: Could not connect to capture device
    javax.media.NoDataSourceException: Error instantiating class: com.sun.media.protocol.vfw.Datasource: java.io.IOException: Could noy connect to capture device
    at javax.media.Manager.createDataSource(Manager.java.1012)
    at CamerController.<init>(CameraController.java:57) ------ line where datasource is declared
    It doesn't run until I restart my laptop and then again after restart it runs only for the first time..
    I don't understand where is the problem. I am using Windows7, JMF 2.1.1, NetBeans 6.7.
    Kindly help me to find out the problem in this. Its extremely URGENT..!!!!

    Anjani_Bansal wrote:
    2. I am not shouting at anyone.Actually, I think even 12-year old girls on MySpace understand that TYPING IN ALL CAPS IS TAKEN TO BE SHOUTING on the internetz... so when you say its URGENT, everyone who understands the internet is going to read that as you SHOUTING the word URGENT.
    Which is simply impolite.
    3. I didn't ask YOU to answer my query. I asked only those people who are there to help and who understand my situation.Actually, you said everyone. Andrew is a person. Therefore, you did ask him to answer your question...and further, you simply asked "Kindly help me to find out the problem in this". Apparently Andrew took "this" to mean forum etiquette, which he was quite kind to help you with.
    For others[ Not You] :-
    Sorry every one if you think I am shouting. I am kindly requesting you for help.
    Thanks for understanding..Telling people on a forum that you need help URGENTLY isn't particularly asking kindly. Ignoring the whole rudeness of typing in all-caps, there's also the whole urgent thing. Do you think that people are going to read your post and then go "Eh, this kid doesn't sound like he's in a hurry. I think I'll come back and answer his question in a few days, let him sweat it out".
    Seriously, people add urgent to their posts like somehow it's the emergency flag on a help desk.
    This isn't a helpdesk, and telling us how urgently you need help isn't going to positively affect the speed at which you get help... in fact, it's far more likely to get you completely ignored by the people with the answer than it is to get you help any faster...
    Speaking of being ignored, I'm pretty sure I "kindly" suggested something for you to try above, and you never reported back the results of my suggestion. Am I to take from the fact you decided to spend your time sparing with Andrew that (1) you don't really care about fixing your problem (2) you're not really paying attention to the people who're trying to help you (3) your problem isn't really all that URGENT to begin with? (4) you somehow think your time is more important than mine and I should ignore your thread entirely? [I'd seriously advise looking through a few threads on this forum to see where the help comes from before you think about answering this one... there are 2 people that regularly help people in here, and you've already pissed one of them off...]

  • HT1689 After upgrading my IPHONE 4 to iOS6 i get the message "cannot connect to ITunes store" How do I get connected?

    I upgraded my Iphone 4 to iOS6 yesterday. After upgrading I get the message "Cannot connect to ITunes store" when trying to access ther App store. Tried everything I can think of but still get same message.  Help!!

    I'm having the same problem iPhone 4 - upgraded to iOS6 and if i click on the app store it will open, but if i click on passbooks and click App Store button it says Cannot connec to App Store "
    PLEASE HELP APPLE!

  • TS3297 itunes 10.6.1 now asking for 3 security questions. After input I get "error in the itunes store -1202". I cannot purchase from the store.

    Running Vista Ultimate. Itunes 10.6.1 is now asking to answer 3 security questions before accessing the store. After entry I get "error in the itunes store -1202" I cannot purchase music at this point. Any help is appreciated.

    This problem is resolved. I deleted the old iTunes (with write permissions turned on for my account) and reinstalled successfully. Removing the deleted iTunes from Trash was troublesome even with root but after playing around with permissions and flags, I was able to remove it.

  • Keep getting the error message "cannot connect to iTunes..." error message (-3212)??, keep getting the error message "cannot connect to iTunes..." error message (-3212)??

    I keep trying to upgrade my iPad using iTunes..The error message "cannot attach to iTunes store...error message (-3212).  Suggestions?

    I get that problem once in a while and I will not be able to connect to the Internet with any of the 5 or 6 (or 7 or 8 ) web browsers that I use on my iPad. The one thing that I do that has never failed to work for me is to close all apps on my iPad and reset the device. I can't guarantee that it will work for you, but this works for me every time I get the server failed to load/can't connect to the Internet message.... Or whatever the exact message is.
    If you have a ton of apps in the multitasking display, it can take a while to close them all, so you could just trey resetting the iPad first and that might be all that you need to do.
    Closing apps in iOS 7 works like this. Drag the app up from the multitasking display. Double tap the home button and you will see apps lined up going left to right across the screen. Swipe to get to the app that you want to close and then swipe "up" on the app preview thumbnail to close it.
    Reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.

  • HT1491 Why do i keep getting the message 'Cannot connect to iTunes Store' when I have done every connection I can find? What does the error message (-1202) mean when I am on the iTunes site on my computer?

    Why do i keep getting the message 'Cannot connect to iTunes Store' when I have done every connection I can find? What does the error message (-1202) mean when I am on the iTunes site on my computer?

    Hi Velvalee,
    While there may not be specific information about that error, here is an article of steps for troubleshooting connectivity issues with the iTunes store:
    Can't connect to the iTunes Store
    http://support.apple.com/kb/ts1368
    If that article does not help, there is a link near the bottom for an additional article of advanced troubleshooting.
    Cheers!
    - Ari

  • TS1398 I set up my ipad through my windows XP PC, now when i try to access itunes on my Ipad 3, i get an error saying 'Cannot Connect to itunes'

    I set up my ipad through my windows XP PC, now when i try to access itunes on my Ipad 3, i get an error saying 'Cannot Connect to itunes'

    Try this:
    Go to Settings>General>Date & Time and change the date to a few months in the future and then re-try.

  • TS3297 I keep getting the error 306 cannot connect to the iTunes Network when downloading songs on iTunes. I've tried all the troubleshooting steps from the forums and my technical issues are still unresolved. I have Windows 7. Please help!!

    I keep getting the error 306 cannot connect to the iTunes Network when downloading songs on iTunes. I've tried all the troubleshooting steps from the forums and my technical issues are still unresolved. I have Windows 7. Please help!!

    iTunes Store loads partially or returns "Error 306" or "Error 10054"
    Proxies, parental control settings and software, security or filtering software, or a bad iTunes Store cache can cause this.
    To address proxies, Remove Internet Options proxy settings  ( http://support.apple.com/kb/TS1490 ) and connect to the Internet without a proxy.
    To reset iTunes Store cache:
    In iTunes, choose iTunes > Preferences (Mac) or Edit > Preferences (PC).
    Click the Advanced tab.
    Click the "Reset cache" button.
    Click OK and see if the issue is resolved.
    Adjust Parental Controls in iTunes:
    Open iTunes.
    Access iTunes preferences:
    On a Mac: From the iTunes menu, choose Preferences.
    On a Windows PC: From the Edit menu, choose Preferences.
    Click the Parental Controls tab.
    Remove restrictions on Parental Controls.
    For more information on parental controls or content filtering software, see iTunes 10.5 for Windows: May see performance issues and blank iTunes Store.
    http://support.apple.com/kb/TS4123?viewlocale=en_US

  • Sometimes when I'm trying to download an app from the app store when it is trying to load I get the error message cannot connect to iTunes store.   I am on the internet.  Any ideas?

    Sometimes when I'm trying to download an app from the app store when it is trying to load I get the error message cannot connect to iTunes store.   I am on the internet.  Any ideas?

    I have the same issue.  How did you solve it?

  • When i am in ibooks if i go to store i get an error message "Cannot connect to itunes".

    when i am in ibooks if i go to store i get an error message "Cannot connect to itunes".

    ps - only when I tap browse.  Everything else seems ok

  • I have the new iPad and I could not use I tunes , every time I get an error says "cannot connect to itunes store " please help

    I have the new iPad and I could not use I tunes , every time I get an error says "cannot connect to itunes store " please help

    Sorry, yes iTunes on your computer.
    When I updated my iPad 3 and iPod Touch 4th generation to iOS 6 a few months back, I was able to update the iPad effortlessly over WiFi. but I kept getting error messages when trying to update the iPod over WiFi, so I used iTunes on my MacBook Pro.
    Connect the iPad to the computer, launch iTunes. Select the iPad under the devices heading on the left, click on the Summary tab and then click on Check for Update
    If you are using iTunes 11, go to View>Show Sidebar at the top - so the sidebar is visible.

  • TS1843 i am using iphone 4 ios 6.1.3, after hotmail imap setup, error showing "CANNOT GET MAIL" tHE CONNECTION TO THE SERVER FAILED. its happening since 14 aug. plz help !

    i am using iphone 4 ios 6.1.3, after hotmail imap setup, error showing "CANNOT GET MAIL" tHE CONNECTION TO THE SERVER FAILED. its happening since 14 aug. plz help !

    I have trouble with sending e-mail and syncing e-mail. Try changing to 1 day sync under settings. It's sluggish but it works for me until they resolve the issue. MS claims all is normal. If you still have a problem you should report it here: https://status.live.com/report/hotmail

Maybe you are looking for

  • Problems with the report export in PDF format

    Hi All, I am new to this forum. I'm developing a web application that uses Java Reporting Component (JRC) to display crystal reports. I have three problem: 1) I want, after entering the filters in a jsp, to print a report in PDF format (WORD) without

  • Satellite Pro A200-18P - microphone / headphone jack not working with Vista

    Hi, I have installed Windows Vista onto this laptop which was originally an XP, but I have not got the headphone jack working. How do I turn it on or do I have to download it from toshiba website?

  • Problem posting pdf's in iWeb podcast...

    I have created an iWeb site to share lecture audio and video with my students. This has worked extremely well without any problems. But recently I tried to start adding pdf's to the podcast so they could see the lecture slides, notes, etc on their To

  • Output type - Access sequence

    Hi, I have created a output type for VF02 and my requirement is to restrict the output type to only certain company codes. I have created a access sequence with table 502 and assigned this to the output type and also maintained the condition records.

  • Premiere Pro sequence to Encore Settings

    I attempted to transcode using Encore for a dvd I want to create (all work done in Premiere Pro 5.5). 12 hours later, the transcode is not complete. I want to try using Media encoder to do this. In Premiere, I chose MPEG-2 DVD, however I am unsure of