Netflix.ca catalog differences between Apple TV and Web

If I access my Netflix.ca account via my new Apple TV, I get completely different catalog items than when I access it via my iPhone or laptop. I am using the same account name and password, same location, same wifi connection at my home in Vancouver, BC.
One example: I can watch Leverage using my iPhone and laptop, but it's unavailable via my Apple TV.
Netflix guy, could you please weigh in on this?

Thanks Vazandrew. The problem was with Netflix -- their database had my IP Address identified as being in Dallas instead of Vancouver and therefore when I logged on via Apple TV or home wifi I was seeing the US catalog, not the Canadian one.

Similar Messages

  • HT1600 what's the difference between apple tv and apple tv2?

    What is the difference between apple tv and apple tv 2?
    How do I get videos on my Ipad to play on my Apple TV?  I tried Airplay and only vocal comes over. 

    Thanks!  Yea, I'm leaning that way and from everything I've read the 'biggest' benefit would be Airplay - and the 5:1 surround in my gameroom (or the 7:1 surround in my screening room).  I don't stream movies - I'm more of a blu ray collector and watch movies that way - so in all probability I wouldn't use Apple TV in the screening room - but there are several other locations where it could be a nice addition.
    I do watch some TV shows on my iPAD, and lots of music videos - so perhaps, with Airplay they'll look/sound even better if I push that content to one of the other big screens.
    For the most part - whenever I wanted to watch something from my iPad on the big screen, I just connected it to my A/V receiver - pressed play, and enjoyed.  Apple TV would now become that device that's connected to my A/V receiver, and the iPad more of a remote - uncabled.
    Again - thanks for the reply; it's proven very helpful.
    Cheers.

  • What is difference between Site template and web template

    What is difference between Site template and web template

    Both are almost same, are you referring to Site Definitions vs web template?, if so, refer to the following post
    http://blogs.msdn.com/b/vesku/archive/2011/07/22/site-definitions-vs-web-templates.aspx. 
    --Cheers

  • RE:difference between application server and web application server

    hi,
         i am a fresher to SAP.please tell me the difference between application server and web application server so that my doubt will be clarified.

    Hi,
    the SAP Web Application Server is the reliable, open standard-based application server from SAP. It supports both J2EE and ABAP, and serves as the underlying infrastructure for all new and upcoming SAP solutions, like SAP R/3 Enterprise, SAP Portal, SAP Exchange Infrastructure, and all other SAP components.
    The SAP Web Application Server is not a new product, it is the natural evolution of proven SAP application server technology formerly known as SAP Basis. It provides the platform to develop, execute, and operate Web applications and Web services as well as traditional SAP GUI based applications
    if it helpful rewards points are appreciated

  • Siri cannot tell difference between Apple playlist and Apple Station

    I have smart playlist with older but unplayed episodes from several Apple podcasts that I called "Apple", I also have an Apple Podcast station with those same Podcasts but only the latest ones, as I cannot get the Podcast station to pick up the older episodes that I'm catching up on.
    When I says "play Apple Station" or "Play Apple Playlist", it plays the Apple station, so I cannot get it to play the Apple Smart Playlist.
    Besides renaming my playlist or station to something non-descriptive, is there a way to make Siri tell the difference between a station and a playlist?  I know that they are very similar if you ignore the limitations of the Podcast Stations, but they are different things.

    If your AppleID is your MobileMe email address then the MobileMe account and AppleID are synonomous.
    You are getting the incorrect password prompt on which device? (e.g. apple computer, PC, iPad, IPhone etc)
    EE

  • HT204370 is there any difference between apple tv  and itunes PURCHASED movies

    is there any difference between apple tv purchase and itunes PURCHASED movies ?

    Welcome to Apple Support Communities
    Read > http://en.wikipedia.org/wiki/Mobile_DDR DDR is the RAM used in computers, and LPDDR is common in mobile computers

  • What is the difference between apple warranty and applecare and applecare plus

    I understand that apple warranty covers damage due to manufacture defects and applecare is the extended warranty and insurance. Then what is applecare+? What is the difference between applecare and applecare+?

    The AppleCare extended warranty extends the standard one year warranty by two years and includes free telephone support for two years.
    The Apple Plus extended warranty does the same and includes some insurance covering accidental damage with a two claim limit with a deductible over the two year period.

  • Difference between apple watch and apple watch sport

    Okay so that's pretty obvious from the features page on Apple's website, HOWEVER, which one is better for everyday use? How does the Apple Watch vs. Apple Watch Sport perform daily in terms of resistance (which scratches easier, etc.). It explained stuff on the page but I don't exactly understand it... Also which is more likely to cost more due to materials (again somewhat unaware of these things). Basically the Apple Watch and Apple Watch Sport explained in terms of day-to-day usage for the average user

    kaipro wrote:
    Oh okay. I was just hoping that based on knowing what the materials are made of you could get a "feel" of what would happen in day-to-day
    Your guess is as good as mine.

  • Difference between site.allowunsafeupdates and web.allowunsafeupdates

    What is the difference between web.allowunsafeupdates and site.allowunsafeupdates? I have seen that for some cases both are used and in other cases only web.allowunsafeupdates are used..Please tell me the exact difference ASAP.

    Yes.But see i tried this code also..working..
     string filePath = string.Empty;
                if (SPContext.Current != null && SPContext.Current.Web != null)
                    SPUser currentUserName = SPContext.Current.Web.CurrentUser;
                    SPSecurity.RunWithElevatedPrivileges(delegate
                                                                 using (SPSite spSite = new SPSite(GetRootSiteCollectionUrl()))
                                                                    // spSite.AllowUnsafeUpdates = true;
                                                                     using (SPWeb spWeb = spSite.OpenWeb())
                                                                         spWeb.AllowUnsafeUpdates
    = true;
                                                                         SPFolder list
    = spWeb.GetFolder(spWeb.Url + AppConstants.ListUrl.ELC_MASS_USER_UPLOAD);
                                                                         SPFile document
    = list.Files.Add(Guid.NewGuid().ToString() + bulkUserUploadDto.Name, bulkUserUploadDto.DocumentUploadedFileData, true);
                                                                         SPListItem listItem
    = document.Item;
                                                                         SPFieldUrlValue
    fieldUrl = new SPFieldUrlValue
                                  Description = bulkUserUploadDto.WebTitle,
                                  Url = bulkUserUploadDto.WebUrl
                                                                         listItem[AppConstants.Fields.AddUserToGroup.WEB_URL]
    = fieldUrl;
                                                                         listItem[AppConstants.Fields.TITLE]
    = bulkUserUploadDto.Name;
                                                                         listItem[AppConstants.Fields.AddUserToGroup.IS_REMOVE_EXISTING_USER]
    = bulkUserUploadDto.IsRemoveExistingUser;
                                                                         listItem[AppConstants.Fields.AddUserToGroup.GROUP_TYPE]
    = bulkUserUploadDto.DepartmentGroupType;
                                                                         listItem[AppConstants.Fields.AddUserToGroup.STATUS]
    = AppEnums.JobStatus.New;
                                                                         listItem[AppConstants.Fields.AddUserToGroup.SITE_URL]
    = bulkUserUploadDto.WebUrl;
                                                                         SPUser user =
    spWeb.SiteUsers[currentUserName.LoginName];
                                                                         listItem[AppConstants.Fields.AddUserToGroup.UploadedBy]
    = user;
                                                                         listItem.Update();
                                                                         filePath = document.Url;
                                                                         spWeb.AllowUnsafeUpdates
    = false;
                                                                        // spSite.AllowUnsafeUpdates
    = false;
                return filePath;
    Here i didnt use SPcontext and still it works without that.. :(
    Ankur garg

  • Differences between ITS based and web dynpro based ESS

    Hi all,
    What are the main differences between ( in functionality ) for ITS based and web dynpro based ESS.
    I know a few
    Underlying technology
    ITS ESS had inbox concept, where as web dynpro based ESS/MSS has UWL concept for approvals.
    The time statemment in ITS uses smart form while we can use Adobe document services for time statement in ESS 2004.
    Funcitonality
    There was not collective time approvals option In ITS ESS ( not even in ESS 2004 ) but ther is a collective time apporvals in ESS 2004s
    Am not pretty mich intrested in look and feel,  or the overview page concept but any additional functionality and a shift in the technology used.
    Please add.
    regards
    Sam
    Message was edited by:
            sameer chilama
    Message was edited by:
            sameer chilama
    Message was edited by:
            sameer chilama

    answered

  • Difference between BLOCK DATA and WEB ACCESS BLOCK?

    Currently my account shows I have both BLOCK DATA and WEB ACCESS BLOCK in place. I did this a couple of years to prevent data charges. Works perfectly. Now I'm trying to upgrade one of my lines to a Kin Onem because of the WiFi option and when I add the phone to my shopping cart and go to the Select Features & Services Page I see a message at the bottom that says: Features We Needed To Remove (Because they're incompatible with your phones or plan) - Block Web Access.
    It looks like I don't have a choice when ordering the phone, but what exactly will removing the Web Access block do? Maybe I have to turn it off anyway to use the WiFi anyway right? I just don't want to incur any data charges.
    Someone please help. Thank you!

    "Data block" actually blocks your phone's ability to connect to the 3g data network. What this means is your phone can't create an internet connection on a cellular network. Web Access block specifically blocks the browser/mobile web on your phone from making a connection. Unblocking mobile web will not cause your phone to be able to connect to the cellular data network (resulting in 1.99/mb charges), but will allow the browser on the kin to connect while you're using wifi.

  • What's the difference between Apple TV and direct-connecting an iPad?

    I'm thinking about getting Apple TV - but what does Apple TV give me that my iPad doesn't?  I've got an Apple cable that connects my iPad to my big screen already.  What do I gain by getting Apple TV instead?  Please advise - thanks!

    Thanks!  Yea, I'm leaning that way and from everything I've read the 'biggest' benefit would be Airplay - and the 5:1 surround in my gameroom (or the 7:1 surround in my screening room).  I don't stream movies - I'm more of a blu ray collector and watch movies that way - so in all probability I wouldn't use Apple TV in the screening room - but there are several other locations where it could be a nice addition.
    I do watch some TV shows on my iPAD, and lots of music videos - so perhaps, with Airplay they'll look/sound even better if I push that content to one of the other big screens.
    For the most part - whenever I wanted to watch something from my iPad on the big screen, I just connected it to my A/V receiver - pressed play, and enjoyed.  Apple TV would now become that device that's connected to my A/V receiver, and the iPad more of a remote - uncabled.
    Again - thanks for the reply; it's proven very helpful.
    Cheers.

  • Difference between apple ID and mobile me ID

    Updating Apps I was asked to reset my Apple ID Password, which U did but now get a message that I cannot access my mail because it has the wrong password?

    If your AppleID is your MobileMe email address then the MobileMe account and AppleID are synonomous.
    You are getting the incorrect password prompt on which device? (e.g. apple computer, PC, iPad, IPhone etc)
    EE

  • Differences between Apple Mail and Outlook using EWS

    I know that this issue has been beat to death, so I'm requesting some very specific information to help with troubleshooting. My work has an uncooperative IT department that has indicated if I do the research myself, they will see if they can fix whatever settings are off in Exchange.
    Details:
    I'm using 10.9.3 and trying to connect to an Exchange 2010 server. When using Outlook 2011, everything works perfectly, when using ActiveSync on iPhones and iPads, everything works perfectly, but everything fails when using Apple Mail.
    When using AutoDiscover with Apple Mail, it sets both internal and external servers to webmail.domain.edu, which ends up not working. After some looking around, I set the internal server to xxx-xxx-xxx-02.domain.edu and it starts working perfectly, as long as I'm accessing from within the network. Accessing outside the network results in errors.
    Connecting to the Exchange server from my school works perfectly.
    So my question boils to: What Exchange Server 2010 or EWS settings may make it possible for Outlook 2011 to easily access anywhere, but Apple Mail to fail when AutoDiscover is used anywhere and fail when manual server information is entered and attempted to access outside the network? Absolutely any leads would be appreciated.
    I've run Microsoft Remote Connectivity Analyzer and it's worked perfectly.
    Relevant log portions from failures (with certain information scrubbed)
    When AutoDiscover is used:
    <Autodiscover xmlns="http://schemas.microsoft.com/exchange/autodiscover/responseschema/2006>
        <Response>
            <Error Time="11:10:44.4955481" Id="1505556818">
                <ErrorCode>600</ErrorCode>
                <Message>Invalid Request</Message>
                <DebugData/>
            </Error>
        </Response>
    </Autodiscover>
    When internal server is manually entered and attempted to access outside the network (works inside the network)
    2014-06-02 11:08:29.641 Mail[8898:9303] EXCHANGE -[SOAPRequest:0x7fe52f462c10 connection:didFailWithError:] https://domain%[email protected]/EWS/Exchange.asmx//domain%[email protected]/EWS/Exchange.asmx ERROR
    NSURLErrorDomain -1003 A server with the specified hostname could not be found.
    I'd love any brainstorming thoughts. Anything that could help me would be much appreciated. Thank you.

    We are running Exchange 2013 here with auto discovery enabled.  We have checked all the MS documentation and our auto discovery is stop correctly, auto discovery does work as the internal server is discovered however as the first post describes email isn't working with outside the internal network without a VPN connected.  One of the guys is leaning towards it being a TLS issue but could just be a stab in the dark.  I've got 3 people from our IT department as well as myself looking into the issue and if we find out what is actually going on, I'll post. 

  • Difference between Apple TV and Front Row?

    Right now I have a Mac Mini with Front Row hooked up to our 1080p HDTV. With Front Row we can watch any movies we've downloaded from iTunes and all our home movies on the TV and they look great. I've never used or seen an Apple TV in action. What more does it do than Front Row? Will the HD versions of movies for rent on iTunes only be available for the Apple TV?

    So it looks like the the only advantage on having the Apple TV is the HD video rental through iTunes. The pros on the MacMini far outweigh the pros on the Apple TV. It's just a matter of how much I want to be able to rent HD movies from iTunes. The MacMini can totally handle the HD content playback (I shoot HD home movies all the time and play them back on Front Row on our MacMini to the HDTV and it has no problem) so I wonder why they are restricting the HD video rentals to the Apple TV.
    And, by the way, you can connect the MacMini via HDMI by getting a DVI to HDMI cable and then taking the audio from the digital audio out. It's the way I have it set up now and it looks and sounds great.

Maybe you are looking for

  • Itunes for window on an external hard disk

    I have my itunes library on an external hard disk and it is working fine but I am about to get a new computer. What is the easiset way to get my new installation of itunes to view the library on the external hard disk. If anybody knows the answer can

  • Thin vertical line running across my screen ...

    Out of nowhere I suddenly have a thin vertical line (yellow/blue - depending on background) running across my screen. Restarting didn't help, turning on the computer and pressing command, option, p, r didn't help either. Anyone got a clue? I would so

  • INVALID Objects after upgrade from 12.1.1 to 12.1.3

    Hi Recently I have applied 9239090, 13984450, 10627841 patches to upgrade from 12.1.1 to 12.1.3, but now there are a number of Invalid objects in the DB. I have tried to compile them through 'adadmin' utility, and even ran 'utlirp.sql' with 'utlrp.sq

  • Optimisation of reseved system on hard disc

    I am using windows 8.1 and system has now slowed down. I tried optimization but my reserved system on hard disc does not get optimized. It continues to show fragmented 34%. How to make my system run normally by optimizing or otherwise. 

  • Live Meeting on mac?

    Hello - I am considering using Live Meeting but I heard that it doesn't support Mac users well - specifically I heard the following are NOT available, but I am not sure if this has changed with any recent client updates. Does anyone know if the follo