view flys-client/src/main/java/de/intevation/flys/client/server/MapOutputServiceImpl.java @ 1368:ec0c81f2c7a4

Replaced stdout and stderr logging with log4j loggers in server classes. flys-client/trunk@3071 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Tue, 25 Oct 2011 12:41:16 +0000
parents ab8eb2f544f2
children 9085cffbb7c4
line wrap: on
line source
package de.intevation.flys.client.server;

import java.io.InputStream;
import java.io.IOException;

import org.w3c.dom.Document;

import org.apache.log4j.Logger;

import com.google.gwt.user.server.rpc.RemoteServiceServlet;

import de.intevation.artifacts.common.utils.ClientProtocolUtils;
import de.intevation.artifacts.common.utils.XMLUtils;

import de.intevation.artifacts.httpclient.http.HttpClient;
import de.intevation.artifacts.httpclient.http.HttpClientImpl;
import de.intevation.artifacts.httpclient.exceptions.ConnectionException;

import de.intevation.flys.client.shared.exceptions.ServerException;
import de.intevation.flys.client.shared.model.Collection;

import de.intevation.flys.client.client.services.MapOutputService;


public class MapOutputServiceImpl
extends      RemoteServiceServlet
implements   MapOutputService
{

    private static final Logger logger =
        Logger.getLogger(MapOutputServiceImpl.class);


    public void doOut(Collection collection, String serverUrl)
    throws ServerException
    {
        String url = (String) getServletContext().getAttribute("server-url");

        logger.info("MapOutputServiceImpl.doOut");

        String uuid = collection.identifier();

        try {
            Document request = ClientProtocolUtils.newOutCollectionDocument(
                uuid, "floodmap", "floodmap");

            HttpClient client = new HttpClientImpl(serverUrl);
            InputStream    is = client.collectionOut(request, uuid, "floodmap");

            Document response = XMLUtils.parseDocument(is);

            logger.debug(XMLUtils.toString(response));

            // TODO parse response document and return a MapConfig object
        }
        catch (ConnectionException e) {
            logger.error(e, e);
        }
        catch (IOException ioe) {
            logger.error(ioe, ioe);
        }
    }
}
// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org