Example #1
0
  /**
   * Main method for performing decoding, execution, and response
   *
   * @param object
   * @param output
   * @throws IllegalArgumentException
   */
  public ExecuteResponseType run(ExecuteType execute) {
    ResponseDocumentType responseDocument = null;
    OutputDefinitionType rawDataOutput = null;
    if (execute.getResponseForm() != null) {
      responseDocument = execute.getResponseForm().getResponseDocument();
      rawDataOutput = execute.getResponseForm().getRawDataOutput();
    }

    if (responseDocument != null && rawDataOutput != null) {
      throw new WPSException(
          "Invalid request, only one of the raw data output or the "
              + "response document should be specified in the request");
    }

    ExecuteRequest request = new ExecuteRequest(execute);

    // TODO: get the startup time from the execution status
    ExecuteResponseBuilder builder = new ExecuteResponseBuilder(execute, context, new Date());
    String executionId = executionManager.submit(request, !request.isAsynchronous());
    builder.setExecutionId(executionId);
    if (!request.isAsynchronous()) {
      try {
        Map<String, Object> outputs = executionManager.getOutput(executionId, -1);
        builder.setOutputs(outputs);
      } catch (Exception e) {
        LOGGER.log(Level.SEVERE, "Process execution failed", e);
        builder.setException(e);
      }
    }

    return builder.build();
  }
Example #2
0
  public void testParseCData() throws Exception {
    String body =
        "<wfs:GetFeature service=\"WFS\" version=\"1.0.0\"\n"
            + "  outputFormat=\"GML2\"\n"
            + "  xmlns:topp=\"http://www.openplans.org/topp\"\n"
            + "  xmlns:wfs=\"http://www.opengis.net/wfs\"\n"
            + "  xmlns:ogc=\"http://www.opengis.net/ogc\"\n"
            + "  xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n"
            + "  xsi:schemaLocation=\"http://www.opengis.net/wfs\n"
            + "                      http://schemas.opengis.net/wfs/1.0.0/WFS-basic.xsd\">\n"
            + "  <wfs:Query typeName=\"topp:states\">\n"
            + "    <ogc:Filter>\n"
            + "       <ogc:FeatureId fid=\"states.1\"/>\n"
            + "    </ogc:Filter>\n"
            + "    </wfs:Query>\n"
            + "</wfs:GetFeature>";

    String xml =
        "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
            + "<wps:Execute version=\"1.0.0\" service=\"WPS\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.opengis.net/wps/1.0.0\" xmlns:wfs=\"http://www.opengis.net/wfs\" xmlns:wps=\"http://www.opengis.net/wps/1.0.0\" xmlns:ows=\"http://www.opengis.net/ows/1.1\" xmlns:gml=\"http://www.opengis.net/gml\" xmlns:ogc=\"http://www.opengis.net/ogc\" xmlns:wcs=\"http://www.opengis.net/wcs/1.1.1\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" xsi:schemaLocation=\"http://www.opengis.net/wps/1.0.0 http://schemas.opengis.net/wps/1.0.0/wpsAll.xsd\">\n"
            + "  <ows:Identifier>orci:Bounds</ows:Identifier>\n"
            + "  <wps:DataInputs>\n"
            + "    <wps:Input>\n"
            + "      <ows:Identifier>features</ows:Identifier>\n"
            + "      <wps:Reference mimeType=\"text/xml; subtype=wfs-collection/1.0\" "
            + " xlink:href=\"http://demo.opengeo.org/geoserver/wfs\" method=\"POST\">\n"
            + "         <wps:Body>\n"
            + "<![CDATA["
            + body
            + "]]>"
            + "         </wps:Body>\n"
            + "      </wps:Reference>\n"
            + "    </wps:Input>\n"
            + "  </wps:DataInputs>\n"
            + "  <wps:ResponseForm>\n"
            + "    <wps:RawDataOutput>\n"
            + "      <ows:Identifier>bounds</ows:Identifier>\n"
            + "    </wps:RawDataOutput>\n"
            + "  </wps:ResponseForm>\n"
            + "</wps:Execute>";
    buildDocument(xml);

    ExecuteType execute = (ExecuteType) parse(WPS.Execute);

    assertEquals("orci:Bounds", execute.getIdentifier().getValue());
    InputType input = (InputType) execute.getDataInputs().getInput().get(0);
    assertEquals("features", input.getIdentifier().getValue());
    InputReferenceType ref = input.getReference();
    assertNotNull(ref);
    assertEquals("http://demo.opengeo.org/geoserver/wfs", ref.getHref());
    assertEquals(MethodType.POST_LITERAL, ref.getMethod());
    // we cannot do this still as the parser strips the white space out of CDATA sections
    // assertEquals(body, ref.getBody());
    // cannot run this either, could not find a way to extract the content element from the
    // parser...
    // assertNull(ref.getContentElement());
  }