I am looping the components in a folder and searching a component whose one field of type DateTime lies in range current date to next 7 days on the basis of its published status.
But if any of the Components is checked out then IsPublished method throws an exception InvalidUriException. How can I handle this situation if I don't want to skip this checked out component by catching the exception and continue looping?
Edit:
The third line throws InvalidUriException for checked-out components.
componentUri = new TcmUri(node.Attributes[CommonConstants.Id].Value).GetVersionlessUri();
dummyComponent = engine.GetObject(componentUri) as Component;
bool isPublished = PublishEngine.IsPublished(dummyComponent , publicationTarget);
IsPublishedofPublishEnginethrows an exception? Please rephrase your requirement, I don't quite understand the case. – Arjen Stobbe Aug 4 '12 at 9:20