Mercurial > dive4elements > river
view flys-client/src/main/java/de/intevation/flys/client/server/MapOutputServiceImpl.java @ 1374:7fc8b2a81463
Let Datacage from toolbar show 'static' parts of data.
flys-client/trunk@3085 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Felix Wolfsteller <felix.wolfsteller@intevation.de> |
---|---|
date | Wed, 26 Oct 2011 12:32:17 +0000 |
parents | 9085cffbb7c4 |
children | 28eb4dfe2cbf |
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) throws ServerException { logger.info("MapOutputServiceImpl.doOut"); String url = getServletContext().getInitParameter("server-url"); String uuid = collection.identifier(); try { Document request = ClientProtocolUtils.newOutCollectionDocument( uuid, "floodmap", "floodmap"); HttpClient client = new HttpClientImpl(url); 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 :