Message Image  

Introducing the App Connect HTTP connector

 View Only
Fri July 10, 2020 07:20 AM

You can now call out from your IBM App Connect flow to any HTTP endpoint.

To use the HTTP connector, select its action, ‘Invoke method’, from the Applications panel. You can do this in both event-driven and API flows.

To call the endpoint, you’ll need to specify its URL and the HTTP method to invoke it with. App Connect currently supports GET, POST, PUT, PATCH, DELETE, and HEAD as methods. You can also optionally include request headers, and a request body, whose format is determined by the endpoint you’re calling.


You can call an endpoint that is secured with basic authentication by adding a user name and password to your HTTP account.

All the input fields, as well as the response headers and response body that the endpoint returns, are available for use later in your flow. You can also choose whether to continue the flow if an error occurs. This means that you can implement your own error handling within the flow.

The use of an HTTP node, as described in this blog, provides one way for you to integrate with APIs in your organization, as well as third-party APIs. App Connect also provides other ways for you to integrate with APIs; for more information, see here.

3 comments on"Introducing the App Connect HTTP connector"

  1. Mike July 28, 2017

    What is the endpoint is secured by Kerberos or is none JSON like Thrift

    Reply (Edit)
    • FeeDee July 31, 2017

      Hi Mike,
      At present, we do not support calling Kerberos-secured endpoints or Thrift endpoints with the HTTP connector. Could you give us more details of your requirement here so we could work with this and consider this as a future enhancement? Thanks

      Reply (Edit)
      • Mike August 02, 2017

        Sure, we have in house a bunch of JAX-RS (CRUD) Services which are Secured via Kerberos, that will send out a www-negotiate handshake.
        The Objects are java pojo generated from a Thrift schema, and we use Thrift Binary protocal for serialization
        application/vnd.apache.thrift.binary.

        Reply (Edit)

#AppConnect
#HTTP

Comments

Fri July 10, 2020 07:27 AM

Thanks for this