How to get the keywors inside the particular category using coreservice?
I am looking into the CategoryData class, but i dont see any methods or properties related to Keyword
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Getting the Keywords inside a Category is similar to getting the Components inside a Folder. So you will have to call
GetListXmlwith the category as the subject.Some background: the Core Service is a service-oriented API, so none of the
...Dataobjects have any methods to load additional information. Instead all data access goes through theCoreServiceClient, which then returns data objects that contain… data.For those with a Java background, these might be more familiar as DAO/DTO, Data Access Object and Data Transfer Object: the
CoreServiceClientis the DAO, the...Dataobjects are the DTOs.