Package org.geotools.data.ows

Examples of org.geotools.data.ows.GetCapabilitiesRequest


    public void testGetVersion() {
        assertEquals(spec.getVersion(), "1.0.0");
    }
   
    public void testCreateGetCapabilitiesRequest() throws Exception {
        GetCapabilitiesRequest request = spec.createGetCapabilitiesRequest(server);
       
        Properties properties = new Properties();
       
        StringTokenizer tokenizer = new StringTokenizer(request.getFinalURL()
        .getQuery(), "&");
       
        while (tokenizer.hasMoreTokens()) {
            String token = tokenizer.nextToken();
            String[] param = token.split("=");
View Full Code Here

TOP

Related Classes of org.geotools.data.ows.GetCapabilitiesRequest

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.