Github user robdouglas commented on a diff in the pull request:

    https://github.com/apache/incubator-streams/pull/206#discussion_r27483949
  
    --- Diff: 
streams-components/streams-http/src/main/java/org/apache/streams/components/http/processor/SimpleHTTPPostProcessor.java
 ---
    @@ -0,0 +1,278 @@
    +/*
    + * Licensed to the Apache Software Foundation (ASF) under one
    + * or more contributor license agreements.  See the NOTICE file
    + * distributed with this work for additional information
    + * regarding copyright ownership.  The ASF licenses this file
    + * to you under the Apache License, Version 2.0 (the
    + * "License"); you may not use this file except in compliance
    + *
    + *   http://www.apache.org/licenses/LICENSE-2.0
    + *
    + * Unless required by applicable law or agreed to in writing,
    + * software distributed under the License is distributed on an
    + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
    + * KIND, either express or implied.  See the License for the
    + * specific language governing permissions and limitations
    + * under the License.
    + */
    +
    +package org.apache.streams.components.http.processor;
    +
    +import com.fasterxml.jackson.core.JsonProcessingException;
    +import com.fasterxml.jackson.databind.ObjectMapper;
    +import com.fasterxml.jackson.databind.node.ObjectNode;
    +import com.google.common.base.Strings;
    +import com.google.common.collect.Lists;
    +import com.google.common.collect.Maps;
    +import org.apache.commons.codec.binary.Base64;
    +import org.apache.http.HttpEntity;
    +import org.apache.http.client.methods.CloseableHttpResponse;
    +import org.apache.http.client.methods.HttpGet;
    +import org.apache.http.client.methods.HttpPost;
    +import org.apache.http.client.utils.URIBuilder;
    +import org.apache.http.entity.ContentType;
    +import org.apache.http.entity.StringEntity;
    +import org.apache.http.impl.client.CloseableHttpClient;
    +import org.apache.http.impl.client.HttpClients;
    +import org.apache.http.util.EntityUtils;
    +import org.apache.streams.components.http.HttpConfigurator;
    +import org.apache.streams.components.http.HttpProcessorConfiguration;
    +import org.apache.streams.config.StreamsConfigurator;
    +import org.apache.streams.core.StreamsDatum;
    +import org.apache.streams.core.StreamsProcessor;
    +import org.apache.streams.jackson.StreamsJacksonMapper;
    +import org.apache.streams.pojo.extensions.ExtensionUtil;
    +import org.apache.streams.pojo.json.ActivityObject;
    +import org.slf4j.Logger;
    +import org.slf4j.LoggerFactory;
    +
    +import java.io.IOException;
    +import java.net.URI;
    +import java.net.URISyntaxException;
    +import java.util.List;
    +import java.util.Map;
    +
    +/**
    + * Processor retrieves contents from an known url and stores the resulting 
object in an extension field
    + */
    +public class SimpleHTTPPostProcessor implements StreamsProcessor {
    +
    +    private final static String STREAMS_ID = "SimpleHTTPPostProcessor";
    +
    +    private final static Logger LOGGER = 
LoggerFactory.getLogger(SimpleHTTPPostProcessor.class);
    +
    +    protected ObjectMapper mapper;
    +
    +    protected URIBuilder uriBuilder;
    +
    +    protected CloseableHttpClient httpclient;
    +
    +    protected HttpProcessorConfiguration configuration;
    +
    +    protected String authHeader;
    +
    +    public SimpleHTTPPostProcessor() {
    +        
this(HttpConfigurator.detectProcessorConfiguration(StreamsConfigurator.config.getConfig("http")));
    +    }
    +
    +    public SimpleHTTPPostProcessor(HttpProcessorConfiguration 
processorConfiguration) {
    +        LOGGER.info("creating SimpleHTTPPostProcessor");
    +        LOGGER.info(processorConfiguration.toString());
    +        this.configuration = processorConfiguration;
    +    }
    +
    +
    +    /**
    +     Override this to store a result other than exact json representation 
of response
    +     */
    +    protected ObjectNode prepareExtensionFragment(String entityString) {
    +
    +        try {
    +            return mapper.readValue(entityString, ObjectNode.class);
    +        } catch (IOException e) {
    +            LOGGER.warn(e.getMessage());
    --- End diff --
    
    Instead of just the message, can we log out the entire exception so we can 
get the stack trace as well?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

Reply via email to