What is the most important thing that a mule developer needs? I think that well configured IDE is the answer. While you can have an appropriate set of skills, without a good toolkit you wouldn’t be as efficient as you could. Therefore in this article I explain how I configure my development environment. I hope that you would enjoy it :).
How to get months and years difference between the two dates?
Last Updated on 30/05/2021 by Patryk Bandurski Some time ago, I was asked to compute the difference between the two dates (Period). Sounds simple, isn’t it? However, I needed this difference presented in days, months, and years. It was not that obvious how to achieve that. Let’ see how I did it. Overview We want…
How to setup 2-way TLS on Dedicated Load Balancer?
Last Updated on 30/05/2021 by Patryk Bandurski So far, I have explained how to configure your Dedicated Load Balancer to use your domains. Now we will focus on configuring it more securely. We enforce mutual authentication. My goal is to show you how to configure it, what the options are, and, last but not least,…
JWT Validation policy and salesforce named credentials
Last Updated on 30/05/2021 by Patryk Bandurski In the last article, I described how to secure your services with the JWT Validation policy. To test it, I used Salesforce hands-on org from the trailhead. Imagine now that the Salesforce developer or admin reaches you and is asking you some questions about named credentials to set…
Secure calls from Salesforce to MuleSoft with JWT
Last Updated on 14/07/2020 by Patryk Bandurski A couple of my last articles focuses on connectivity between Salesforce and MuleSoft. This will be the next article in the series. In many cases, we would like to set up as secure communication as possible. We can start by enabling secure HTTP traffic, then sending a basic…
Why Salesforce can’t connect to my API over DLB?
Last Updated on 30/05/2021 by Patryk Bandurski Last time I described connectivity scenario when Salesforce was reaching MuleSoft API exposed via Shared Load Balancer. What do we need to take into consideration when we slightly change our infrastructure and purchase a Dedicated Load Balancer? There are some vital changes that we should be aware of….
Publish API via CloudHub for Salesforce – connectivity test
Last Updated on 30/05/2021 by Patryk Bandurski Once we develop and deploy our MuleSoft applications, it is a good idea to test the connectivity. Is the calling system able to reach our API and receive a response? In this article, I will focus on the case when I expose API to Salesforce. I will use…
How to enable dedicated load balancer under own domain
Last Updated on 30/05/2021 by Patryk Bandurski A Dedicated Load Balancer is an optional component of the Anypoint Platform. Unlike the Shared Load Balancer, this one gives greater flexibility and possibility to configure. In this article, you will find the answers to three questions: Why use a DLB? How does it work? And finally, how…
Design API in Anypoint Studio 7.5
Last Updated on 11/05/2020 by Patryk Bandurski New Anypoint Studio 7.5 came with an exiting feature. From now on, we can design our APIs in Studio instead of the Design Center. In this article, you will see how it works and how to use it. Let’s see if this can improve our day-to-day tasks. Create…
Setup quickly MUnits for your project with test recorder
Last Updated on 30/03/2020 by Patryk Bandurski Everyone knows someone that does not like writing unit tests for their code. Maybe you belong to that group. I, on the other hand, prefer to write a test to ensure that my code is as robust as possible. Of course, that does not mean that I have…