HTTP requester to call Graphql APIs There is no MuleSoft certified connector available to call Graphql APIs in MuleSoft. In case if we come across a requirement to call Graphql endpoint in MuleSoft then we can leverage the existing HTTP Requestor to call Graphql APIs. Graphql calls are internally a POST call over HTTP.…
Read MoreModify The Http Status In Mule 4 In this tutorial we will demonstrate how can we modify the Http status In Mule 4 To modify the status we have created a sample Rest API in mulesoft and deploy the same on local environment Please visit how to create Rest API Sample Mulesoft application:…
Read MoreConsume SSL service Consuming a HTTPS SSL service need a different HTTP requester configuration Most of the time we have seen below error while calling the SSL service This happen when we doesn’t add the endpoint’s SSL certificates to our MuleSoft trusted store For this use case we will call our earlier SSL service https://localhost/ssl-service…
Read MoreCreate SSL based service SSL certificates are used for securing the transport layer and creating a secure communication between the service caller and the server. SSL channel authenticate the identity of the caller with server and encrypt the data exchanged between caller and server. In Organization it’s a standard to have only SSL based…
Read MoreCall multipart/form-data service To call a multipart/form-data service we will first deploy the sample service which we created in earlier tutorial – Create multipart/form-data service Upload the below zip file to Anypoint runtime manager or cloudhub and we will call the service through form upload html Create multipart/form-data service jar – form-upload-sample-jar Form upload html…
Read MoreCreate multipart/form-data service A multipart/form-data service can accept input from HTML form tag. It’s generally a POST call from HTML page but the payload will consist of form elements which are defined in HTML form tag. Elements are mainly of type – text or file. lets see how we can Create multipart/form-data service. Below…
Read More