*
* @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;
}