Mercurial > dive4elements > river
view flys-client/src/main/java/de/intevation/flys/client/server/RiverServiceImpl.java @ 1260:3a4c14b4a8f1
DemDatacagePanel now returns the database ID of the selected DEM.
flys-client/trunk@2788 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Ingo Weinzierl <ingo.weinzierl@intevation.de> |
---|---|
date | Mon, 19 Sep 2011 15:04:08 +0000 |
parents | 924da6695800 |
children | ab8eb2f544f2 |
line wrap: on
line source
package de.intevation.flys.client.server; import java.util.ArrayList; import java.util.List; import javax.xml.xpath.XPathConstants; import org.w3c.dom.Document; import org.w3c.dom.NodeList; import org.w3c.dom.Node; import com.google.gwt.user.server.rpc.RemoteServiceServlet; import de.intevation.artifacts.common.ArtifactNamespaceContext; import de.intevation.artifacts.common.utils.XMLUtils; import de.intevation.artifacts.httpclient.exceptions.ConnectionException; import de.intevation.artifacts.httpclient.http.HttpClient; import de.intevation.artifacts.httpclient.http.HttpClientImpl; import de.intevation.flys.client.shared.exceptions.ServerException; import de.intevation.flys.client.shared.model.DefaultRiver; import de.intevation.flys.client.shared.model.River; import de.intevation.flys.client.client.services.RiverService; /** * This interface provides a method to list the supported rivers of the artifact * server. * * @author <a href="mailto:ingo.weinzierl@intevation.de">Ingo Weinzierl</a> */ public class RiverServiceImpl extends RemoteServiceServlet implements RiverService { /** The XPath string that points to the rivers in the resulting document.*/ public static final String XPATH_RIVERS = "/art:rivers/art:river"; /** The error message key that is thrown if an error occured while reading * the supported rivers from server.*/ public static final String ERROR_NO_RIVERS_FOUND = "error_no_rivers_found"; public River[] list(String serverUrl, String locale) throws ServerException { Document doc = XMLUtils.newDocument(); XMLUtils.ElementCreator ec = new XMLUtils.ElementCreator( doc, ArtifactNamespaceContext.NAMESPACE_URI, ArtifactNamespaceContext.NAMESPACE_PREFIX); doc.appendChild(ec.create("action")); HttpClient client = new HttpClientImpl(serverUrl, locale); try { Document res = client.callService(serverUrl, "rivers", doc); NodeList rivers = (NodeList) XMLUtils.xpath( res, XPATH_RIVERS, XPathConstants.NODESET, ArtifactNamespaceContext.INSTANCE); if (rivers == null || rivers.getLength() == 0) { throw new ServerException(ERROR_NO_RIVERS_FOUND); } int count = rivers.getLength(); List<River> theRivers = new ArrayList<River>(count); for (int i = 0; i < count; i++) { Node tmp = rivers.item(i); String name = XMLUtils.xpathString( tmp, "@art:name", ArtifactNamespaceContext.INSTANCE); theRivers.add(new DefaultRiver(name)); } return (River[]) theRivers.toArray(new River[count]); } catch (ConnectionException ce) { System.err.println(ce.getLocalizedMessage()); } throw new ServerException(ERROR_NO_RIVERS_FOUND); } } // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :