Quantcast
Channel: Active questions tagged https - Stack Overflow
Viewing all articles
Browse latest Browse all 1854

Mule HTTPS POST request not working when deployed to Cloudhub

$
0
0

I have a Mule application that is calling an external API over HTTPS using the <http:request connector. When I build and deploy my application locally, the call works fine. When I make a Postman call to the same external API using the exact same payload my Mule app sends, the call works fine. However, when I deploy the Mule app to Cloudhub and make the request - I get a 400 response from the external API.

Here's my flow:

<http:request-config name="mambuRequestConfiguration" protocol="HTTPS" doc:name="HTTP Request Configuration"><http:basic-authentication username="${mambu.username}" password="${mambu.password}" preemptive="true" /><tls:context><tls:key-store type="jks" path="keystore.jks" alias="${keystore.alias}" keyPassword="${keystore.keypassword}" password="${keystore.password}" /></tls:context></http:request-config><flow name="createClientDepositAccount"><dw:transform-message metadata:id="412fd434-12bb-47a3-9605-9bfc1d9fec46" doc:name="Transform Message"><dw:set-payload><![CDATA[%dw 1.0%output application/json---{savingsAccount: {    accountHolderKey: payload.clientKey,    accountHolderType: "CLIENT",    productTypeKey: payload.productKey,    name: payload.clientProductName,    accountType: payload.accountType,    accountState: payload.accountState,    interestRate: payload.interestRate}}]]></dw:set-payload></dw:transform-message><http:request config-ref="mambuRequestConfiguration" path="${mambu.deposit.path}" method="POST" host="${mambu.host}" port="${mambu.port}" doc:name="Mambu: Create Client Deposit Account"><http:success-status-code-validator values="0..599"/></http:request><dw:transform-message metadata:id="49f1231f-485f-433c-82c4-3d83856ac442" doc:name="Transform Message"><dw:set-payload><![CDATA[%dw 1.0%output application/json---{message: "Account created successfully",key: payload.savingsAccount.encodedKey}]]></dw:set-payload></dw:transform-message></flow>

The external service I'm calling is Mambu, a cloud banking platform. I have a number of other flows in my application all making GET requests to various other Mambu APIs - all work fine (all GET requests are also over HTTPS). The response I'm getting from Mambu is a 400 with the payload:

{"returnCode":3,"returnStatus":"INVALID_API_OPERATION"}

Relevant links to the Mambu documentation are here and here.

I'm unable to replicate the behaviour I'm seeing in Cloudhub on my local instance. The only thing that differs about this call to the others I'm making is that it's a POST request.


Viewing all articles
Browse latest Browse all 1854

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>