log.debug("Entering");
Planet planet = null;
PlanetGroup group = null;
PlanetGroupOpmlRequest opmlRequest = null;
try {
// parse the incoming request and extract the relevant data
opmlRequest = new PlanetGroupOpmlRequest(request);
planet = opmlRequest.getPlanet();
if(planet == null) {
throw new PlanetException("unable to lookup planet: "+
opmlRequest.getPlanetHandle());
}
group = opmlRequest.getGroup();
if(group == null) {
throw new PlanetException("unable to lookup group: "+
opmlRequest.getGroupHandle());
}
} catch(Exception e) {
// invalid feed request format or weblog doesn't exist
log.debug("error creating planet page request", e);