Tutorial - Create a blog reader Store app (C++) - Error:The name does not exist in the namespace!

I'm trying to create my first store app based on msdn's sample.
Link to the sample:
https://msdn.microsoft.com/pl-PL/library/windows/apps/hh465045.aspx
I have problem doing last step (number 3) of part 3.
In code below in file App.xaml the compiler get the error "The name 'FeedDataSource' does not exist in the namespace 'using:SimpleBlogReader'"
<Application
x:Class="SimpleBlogReader.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:SimpleBlogReader">
<Application.Resources>
<local:FeedDataSource x:Key="feedDataSource"/>
</Application.Resources>
</Application>
In the file App.xaml.h I added line #include "FeedData.h", and FeedData.h  looks like:
//feeddata.h
#pragma once
#include "pch.h"
namespace SimpleBlogReader
namespace WFC = Windows::Foundation::Collections;
namespace WF = Windows::Foundation;
namespace WUIXD = Windows::UI::Xaml::Documents;
namespace WWS = Windows::Web::Syndication;
/// <summary>
/// A FeedDataSource represents a collection of FeedData objects
/// and provides the methods to retrieve the stores URLs and download
/// the source data from which FeedData and FeedItem objects are constructed.
/// This class is instantiated at startup by this declaration in the
/// ResourceDictionary in app.xaml: <local:FeedDataSource x:Key="feedDataSource" />
/// </summary>
[Windows::UI::Xaml::Data::Bindable]
public ref class FeedDataSource sealed
private:
Platform::Collections::Vector<FeedData^>^ m_feeds;
FeedData^ GetFeedData(Platform::String^ feedUri, WWS::SyndicationFeed^ feed);
void DeleteBadFeedHandler(Windows::UI::Popups::UICommand^ command);
public:
FeedDataSource();
property Windows::Foundation::Collections::IObservableVector<FeedData^>^ Feeds
Windows::Foundation::Collections::IObservableVector<FeedData^>^ get()
return this->m_feeds;
property Platform::String^ CurrentFeedUri;
void InitDataSource();
void RetrieveFeedAndInitData(Platform::String^ url, WWS::SyndicationClient^ client);
How to solve this problem?

You're testing this too early. You haven't yet finished writing code that your current code depends on. Feeddata.cpp won't build, so you can't use the data object that hasn't yet been created.
In particular, feeddata.cpp doesn't build since it has many references to items which get added in later steps.
For example, TextHelper is added in part 5 and App::RemoveFeed is added in part 10.
You'll need to either wait until you've implemented those before you test or comment out the calls to the unimplemented features until they're done. TextHelper looks like it adds quite a bit and you're almost there, but you can probably get away with commenting
out the calls to RemoveFeed and GetTitlesFromUri for now.

Similar Messages

  • Error when trying to install the adobe creative suite exit code 39.I get the following error message Directory does not exist : /Applications/Utilities/Adobe Application Manager/DECore/DE6/resources/uninstall/Uninstall Product.app

    i have run the adobe cleaner , repaired disk permission and also tried to download and install several times.
    this is a mac osx running the yoshmite
    please help
    this is the error
    Exit Code: 39
    Please see specific errors below for troubleshooting. For example,  ERROR: DW042 ...
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 2 error(s)
    ERROR: Directory does not exist : /Applications/Utilities/Adobe Application Manager/DECore/DE6/resources/uninstall/Uninstall Product.app
    ERROR: DW042: ARP Entry couldn't be created for language : en_US

    Oliviat14nov does /Applications/Utilities/Adobe Application Manager/DECore/DE6/resources/uninstall exist on your computer? 

  • Getting error 'Item 00000 does not exist' while creating a salse order

    Hi All,
    We are facing an issue, we get an error message saying 'Item 00000 does not exist' while creating a sales order for a particular order type, we do not get this problem with all the materials, only a few of them and the materials which give a problem are part of the supersession chain. The problem is not even coming for all the superseded materials.
    This problem is occuring with none of the other order types but just one. We have compared the configuration for the order types for which this error is not coming and the order type which is giving the problem, and its exactly the same.
    When creating the sales order through VA01 even though the error message comes, but on hitting the enter button the processing goes further. But when creating the sales order through the background program the processing stops the moment the error message comes and the Sales Order does not get created.
    Your valuable suggestions for helping us resolving this issue will be highly appreciated.
    Regards,
    Geeta

    HI Geeta
    As per your post "Problem is when you are executing VA01 in background sales orders are not generating due to error message".
    Apart from configuration check alternative is "Take ABAPer's help and change this error message type to warning/information message type in the system". With warning/information message type you could be able to create sales orders in background also.
    try and revert

  • Error message BP does not exist while creating service order in WEB UI

    Hi Experts,
    i have an issue while creating a service order in WEB UI the system is automatically taking the BP ""created By"" but while saving the document Error message showing "BP does not exist"
    we have already completed set up integration with HR .created the user as  BP Role "employee"
    Kindly suggest what are the other configuration that need to be checked.
    Regards,
    D Panda

    Hi,
    Have you made the assignment of the user (defaulting in created by) to the employee (under the identification tab in employee)?
    Regards,
    Parul

  • Error "Trip Country does not exist" in Create Expense Report ESS

    When I try and create an Expense Report after selecting the Trip Schema a critical error appears Trip Country  does not exist in the system (T005). The application was working one day agoa and now it doesn't work giving this error all the time...
    Can someone help ?
    Regards,
    Paulo Poinha

    Hi Paulo,
    Have a look at this SAP Note 861554.
    Regards,
    Raj

  • Import app to svn when run app package weblogic.xml.process does not exist

    Hi,
    i am versioning my adf application to a server with subversion, the initial import of the application works ok, but when i tried to run it, it does not found all weblogic classes.....
    Error(16,28): package weblogic.xml.process does not exist
    Error(6,25): package weblogic.security does not exist
    Error(8,34): package weblogic.security.services does not exist
    Error(9,33): package weblogic.servlet.security does not exist
    Error(39,36): cannot find class SimpleCallbackHandler
    Error(41,26): cannot find variable Authentication
    Error(42,6): cannot find variable ServletAuthentication
    any ideas??
    thanks.

    Hi,
    i am versioning my adf application to a server with subversion, the initial import of the application works ok, but when i tried to run it, it does not found all weblogic classes.....
    Error(16,28): package weblogic.xml.process does not exist
    Error(6,25): package weblogic.security does not exist
    Error(8,34): package weblogic.security.services does not exist
    Error(9,33): package weblogic.servlet.security does not exist
    Error(39,36): cannot find class SimpleCallbackHandler
    Error(41,26): cannot find variable Authentication
    Error(42,6): cannot find variable ServletAuthentication
    any ideas??
    thanks.

  • While creating Update rules -"Error Info source does not exist"

    While creating an update rule I am getting an error that Info source doesnot exist though the inf source is active.
    here is error:
    No communication structure exists in version  abc...   A
    Message no. RSAU251
    Diagnosis
    In order to be able to maintain the update rules an active communication structure must be available.
    Procedure
    This error message can have two causes.
    No active communication structure exists.
    Activate the communication structure in the Data Warehousing Workbench.
    No communication structure exists for the InfoSource.
    Create a communication structure in the Data Warehousing Workbench for the InfoSource.
    <<text removed>>
    Thanks,
    Vasu
    Edited by: Matt on Apr 26, 2010 9:31 AM

    Hi Vasu,
    as it clearly shows below message
    No communication structure exists for the InfoSource.
    Create a communication structure in the Data Warehousing Workbench for the InfoSource.
    Create an info source first and assign it to your datasource and map the fileds in transfer rules and activate it.
    Then try to create the update rules between your target and info source.
    Hope this helps.
    Regards,
    Reddy

  • Error "Item 000010 does not exist" while creating sales order in VA01

    Dear All,
    As per customer requirement we are trying to validate shipping data( item level) and unloading point( item level)  by customer enhancement.
    Enhancement:       V45A0003
    Function Module:    EXIT_SAPMV45A_003
    INCLUDE:                ZXVVAU05
    Inside include we have written validation code that if user enters any wrong value for shipping data or unloading data
    system will throw error message accordingly.
    It is working fine and we are getting error message if wrong shipping data or unloading data is entered.
    But after the error message is displayed if we try to save the sales order  again system throws a STOP message as a POPUP
    saying "Item 000010 does not exist".
    Now,if we enter proper shipping data or unloading data and try to save the salesorder it is throwing error "Item 000010 does not exist"..
    Please let me know your valuable input on this.
    Regards
    Arindam
    Edited by: Arindam Ganguly on Mar 11, 2010 1:55 PM

    It sounds like your error routine has prevented the insertion of the data in VBAP or XVBAP internal tables.  Therefore, upon return to the screen and SAVE, SAP is examining the VBAP or XVBAP table, comparing to the 'I' index table probably, and finding that there is supposed to be an item 10, but it's not in the necessary table(s).    This may be resulting because your internal tables are now inconsistent.
    Look at where your inserted error coding is occurring...you may want to move that to the SAVE_DOCUMENT_PREPARE routine in MV45AFZZ, so that everything will have been built, and a final check of the content will stop the sales order save until the data is corrected.
    Edited by: Breakpoint on Mar 11, 2010 3:29 PM

  • Creating BADI for Virtual Key fig: Error: RSR_OLAP_BADI does not exist

    Hi,
    I am following some instructions to test the implementation of virtual key figure and came to the point to create the BADI.
    Intructions on page 5:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/e051fda8-71a9-2a10-ac9e-8d17414a8c8c
    SE19
    Create Implementation; New BADI; Enhancement Spot:    RSR_OLAP_BADI
    At this point I get an error that RSR_OLAP_BADI does not exist.
    I then chose at random APB_LAUNCHPAD but this works in the sense that it took me to the next screen
    1. What does it mean by RSR_OLAP_BADI not existing?
    2. I know the instructions points to choose RSR_OLAP_BADI, but why that particular program and how does one gets to know that it is the one to use for virtual key figure/char implementation?
    3. When I tested with APB_LAUNCHPAD, I did not get the same screen on page 5 of the link, is it different for BI 7? Or, am I missing a point?
    Thanks

    Hi,
    thanks for the guidance.
    Yes, I tried to implement exactly as in the article.
    Yes, I defined the filter for the Infoprovider, as ZV*
    Are you suggesting that at this point, if in the method  if_ex_rsr_olap_badi~define, I change the value of
    "ZV_ZIPER" to my DSO or Cube, I should now see the virtual key figure in my query?
    Based on this understanding, I modified the method as follows, (my cube name is 2LIS_11_VASCL):
    method IF_EX_RSR_OLAP_BADI~DEFINE.
      DATA: l_s_chanm TYPE rrke_s_chanm,
      l_kyfnm TYPE rsd_kyfnm.
      FIELD-SYMBOLS:
      <l_s_chanm> TYPE rrke_s_chanm.
    Insert Code
      CASE i_s_rkb1d-infocube.
    CASE i_s_rkb1d-2LIS_11_VASCL.
          WHEN '2LIS_11_VASCL'.
          l_s_chanm-chanm = 'ZVAR_SHPR'.
          l_s_chanm-mode = rrke_c_mode-read.
          APPEND l_s_chanm TO c_t_chanm.
          l_s_chanm-chanm = 'ZVARDT'.
          l_s_chanm-mode = rrke_c_mode-read.
          APPEND l_s_chanm TO c_t_chanm.
          APPEND 'ZV_20DV' TO c_t_kyfnm.
      ENDCASE.
    endmethod. "if_ex_rsr_olap_badi~define
    After activation, I checked the query and still I am not seeing the virtual key figure in the query for selection.
    Any more ideas?
    Thanks
    Edited by: Amanda Baah on May 24, 2009 8:01 AM

  • Attempt to create a transformation results in error "transf. does not exist

    Hello,
    We're using BI 7.0 in my dept. I have a Data Store Object that I want to connect with a transformation to my DataSource. All objects are BI 7.0 objects, not 3.x. I right click my DataSource and select "create transformation" - as described in the BI documentation. I enter my DSO object as destination in the pop-up. As soon as I click on "execute" to confirm all entries in the pop-up, I get the error message "transformation does not exist, see long text". In the long text I find "The transformation specified by transformation ID , source  and target , does not exist.". Well - of course my transformation doesn't exist yet, I wanted to create it! Does anyone share my unfortunate experience and found a way out?
    Thanks for any tips you can give me! Annette

    hi annette,
    this is 1 of the possibility. i replicated the issue in my system and this is what i found out...
    when you or whoever replicated the system (r/3 system connected with bw) he/she must have replicated the datasource as a 3x version and NOT as a 7x version. if that's the case, then you must have infosource inbetween (as 3x object you can't connect directly with datasource) and update rules (no transformation works). if that's what happened... then system will not allow you to create a transformation and will give you that error message. so please check if the datasource from r/3 got replicated properly (you have 2 options... replicate as 3x object OR replicate as datasource object 7x)
    hope this helps...
    regards,
    sameer

  • Process group R001 does not exist Error in MSS in Create Requisition Reques

    Hi All
    In MSS Under Recruiting we have a link called Requisition Request under this we haveCreate Requisition Request.
    On clicking on this link Create Requisition Request link
    i am getting "Process group R001 does not exist "
    Pls provide me your input
    Regards
    Karthi D.

    Hi
    Any updates on this
    Regards
    Karthi D.

  • Process group R001 does not exist in MSS for Create Requisition Request.

    Hi All
    In MSS Under Recruiting we have a link called Requisition Request under this we have Create Requisition Request.
    On clicking on this link Create Requisition Request link
    i am getting "Process group R001 does not exist "
    Pls provide me your input
    Regards
    Karthi D.

    A "Process Group" is part of HCM Processes and Forms....it is how you define which processes can be started/initiated by which Processor Roles. This is done under the configuration under HCM Processes and Forms which is within "HR Administrative Services" (HRAS). In your case, the "manager" processor role would have that process available as part of their process group. Check there.

  • APP-FND-01702 An assignment does not exit for these parameters

    Hi,
    I am facing this below error in AP,AR,CM,GL Modules. If any one knows the solution plz revert back ASAP,
    I encountered the error message when I created an invoice in AP module:
    APP-FND-01702:An assignment does not exist for these parameters and one is mandatory.
    Cause:The profile option Sequential Numbering is defined to have
    sequential numbering always used. The current set of parameters does not have a sequence assigned.
    Acction: Go to the Assign Sequqnces screen and assign a sequenct to the current set of parameters.
    Regards,
    senthil

    Hi Senthil,
    this is an issue with the configuration only, when the profile option is Always used system is referring to your Sequential numbering configuration, which seems to be not right / incomplete...Hence verify whether you have defined assignment for all the categories in the modules and re-test the same again ....
    You can change the profile option value to Partially used, which will not throw an error, it would only give you a warning ..
    Regards,
    Ivruksha

  • Cluvfy returns Path "/tmp/" does not exist and cannot be created on nodes

    Hi,
    I'm installing Oracle RAC for SAP in AIX 5L.
    After run Pre-check for cluster services setup it returns the next message:
    Path "/tmp/" does not exist and cannot be created on nodes
    This meessage is happening after Checking node reachability and Checking user equivalence phases.
    This is my complete log:
    pr_bd01/oramedia/clusterware/Disk1/cluvfy/> ./runcluvfy.sh stage -pre crsinst -n pr_bd01,pr_bd02
    Performing pre-checks for cluster services setup
    Checking node reachability...
    Node reachability check passed from node "pr_bd01".
    Checking user equivalence...
    User equivalence check passed for user "oracle".
    ERROR:
    Path "/tmp/" does not exist and cannot be created on nodes:
    pr_bd01
    Verification will proceed with nodes:
    pr_bd02
    Pre-check for cluster services setup was unsuccessful on all the nodes.
    The /tmp is a shared filesystem and oracle user can write and read it
    Oracle user id is the same in both nodes
    Group dba id is the same in both nodes
    Group oinstall id is the same in both nodes
    The primary group for Oracle user is oinstall
    Where can my problem be ?
    Thank you
    Edited by: user8114467 on 27/02/2009 07:17 AM

    Hi,
    Even if this is not resolved from above stuff then do the following
    [oracle@node1] ssh node1 date
    [oracle@node2] ssh node2 date
    Note that it is doing the ssh to itself rather than the remaining node(s). Usually people do forget to do atleast once the ssh to itself.
    Talok Khatri

  • While creating the user getting iPlanetAMUserService does not exist error.

    Hi,
    I was trying to create a user in access manger 7.1 console . I am getting error like iPlanetAMUserService does not exist.
    path: Access control>Realm>Subjects.
    can anyone please help me to give the suggestions.
    Thanks
    GV

    And why do you think those jars are required? Guess work? Glassfish already provides them, remove them from the application deployment and try again.

Maybe you are looking for