*/
public ForumReply createForumReply(String topicUuid, ForumReply reply) throws ClientServicesException {
if(StringUtil.isEmpty(reply.getTopicUuid())){
reply.setTopicUuid(topicUuid);
}
ForumSerializer serializer = new ForumSerializer(reply);
String url = ForumUrls.TOPIC_REPLIES.format(this, ForumUrls.topicPart(topicUuid));
Response response = createData(url, null, getAtomHeaders(), serializer.generateCreate());
checkResponseCode(response, HTTPCode.CREATED);
reply = getForumReplyFeedHandler(false).createEntity(response);
return reply;
}