Package org.vfny.geoserver.wcs.requests

Examples of org.vfny.geoserver.wcs.requests.WCSCapabilitiesRequest


      throws WcsException {
    InputSource requestSource = new InputSource(reader);

    // instantiante parsers and content handlers
    CapabilitiesHandler currentRequest = new CapabilitiesHandler(
        new WCSCapabilitiesRequest((WCSInfo) getService()));

    // read in XML file and parse to content handler
    try {
      SAXParserFactory factory = SAXParserFactory.newInstance();
      SAXParser parser = factory.newSAXParser();
View Full Code Here


     *
     * @throws ServiceException DOCUMENT ME!
     */
    public Request getRequest(HttpServletRequest request)
        throws ServiceException {
        CapabilitiesRequest currentRequest = new WCSCapabilitiesRequest((WCSInfo) serviceConfig);
        currentRequest.setHttpServletRequest(request);
        currentRequest.setVersion(getValue("VERSION"));
        currentRequest.setUpdateSequence(getValue("UPDATESEQUENCE"));

        //service is set in the constructor
        //currentRequest.setService(getValue("SERVICE"));
        return currentRequest;
    }
View Full Code Here

TOP

Related Classes of org.vfny.geoserver.wcs.requests.WCSCapabilitiesRequest

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.