Skip to main content

#MuleSoft Training & Certification4 utenti parlano di questo argomento

Questions and answers about MuleSoft Training & Certification, best practices, and use cases.

I completed the "Prepare for Your Administrator Certification Exam (CRT101)" course on August 10–11, 2026, and I still haven't received my certification voucher via email. What should I do? 

 

#Certifications  #Trailhead  #Virtual Courses  #MuleSoft Training & Certification

2 risposte
0/9000

Hello,

I have a question: if I book an exam A using a voucher, but then I have to cancel the exam and would like to book an exam B using that voucher, can I do it? Or can I no longer use the voucher even if I canceled exam A?

Thanks.

2 risposte
0/9000

I am currently MCD-Integration and API Associate. My immediate goal is to take more certifications. I am eyeing MCD-Integration Professional, API Design Associate, or/and Architect Specifications.

 

The biggest challenge I face is the lack of documentation. The primary resource I find are instructor led courses that cost a decent amount of money.

 

Is there a way to study for these exams without going through instructors? Are there recommended books or materials?

12 risposte
  1. 11 gen 2019, 17:53

    @mulsoft "Mule in Action 2nd edition" is quite an old and not relevant after Mule 3.6 which has phenomenal changes in components like http, database, splitters, flows, processing-strategies,exception, message structure, mel expression and almost everything in Mule and ESB which is a API driven in today's world.

    It was one of the great book though in early 2012-2016 period of time covering almost everything and I would not suggest anyone to go through that with today's Mule 3.7+ to Mule 4 .

     

    It would have been great if the author would had brought a new edition of that book say part 3 to cover the latest Mule feature, but on a discussion with the author (who is also a good friend of mine), there is very less chance he could bring that :)

0/9000

Hi,

 

Currently doing the Mule.U ESB Developer Essentials online course.

 

I'm now on week 5 and everything is working perfectly except for the debug mode. I can't enter in debug mode.

 

Whenever I run the application in debug mode it loads but the "Mule Debugger" window says:

 

"Mule Debugger is nor running. Launch your Mule application in debug mode".

 

At first I thought it could be some sort of CE vs EE feature and that not even in the studio I could use this feature. However I recently confirmed that the Mule application is set to the Target Runtime Engine : "Mule Server 3.6.1 EE"

 

Can you please help me?

 

Br,

8 risposte
  1. 22 dic 2025, 21:41

    Was facing the same issue after upgrading to Version: 7.23.0 

     

    Right clicking the Project -> Properties -> On Mule Project changed Server Runtime from 4.9.11 to 4.10.1, accepted the dialogs (Anypoint crashed the first time, so I repeated the steps, second time worked).  

     

    After that right click the Project again -> Debug As... -> Debug Configurations on Target Server Runtime, select the same version 4.10.1. 

     

    Restarted Anypoint studio and debugger worked now.  

    They really need to up their support docs with better instructions, hope this helps.

0/9000

Hi All,

Hope all are doing Good!!!

 

I am new to Mule Soft i am getting this error: Component that caused exception is: DefaultJavaComponent{tranningFlow.component.380300722}. Message payload is of type: NullPayload

 

Please guide is in right path.

 

Thanks in advance..

Regards,

Seshubabu

7 risposte
  1. 10 set 2016, 17:52

    As per stack trace you are trying to call java component with ReflectionEntryPointResolver. But no arguments passed. For mapping arguments please refer

     

    http://blogs.mulesoft.com/dev/newbie/mule-school-invoking-component-methods-using-entry-point-resolvers/

     

    For more details refer -

    https://docs.mulesoft.com/mule-user-guide/v/3.8/entry-point-resolver-configuration-reference

     

    Cant comment more unless mule configuration is shared. Hope this helps.

0/9000

Hi,

 

I import another Mule application called templates into my local .m2

DIY Exercise 6-1: Troubleshoot and refactor a Mule application How to add template?

 

After that, could you please provide me the steps how the main mule flow(implementation) can refer to the flows in the template?

 

I googled, but failed.

 

Thanks

28 risposte
  1. 1 apr 2020, 02:25

    Can you please send me the jar that contains templates.xml. I can't find it.

0/9000
15 risposte
  1. 2 apr 2020, 19:27

    Because it says you need to import it, I thought it must have existed somewhere. Why did they not hint that you need to create it rather than import it. Oh well thanks.

0/9000

Postman call: http://localhost:8081/united

Response code 404 mapped as failure. Message payload is of type: BufferInputStream

 

HTTP Listener Configs:

Host: All Interfaces [0.0.0.0] (Default)

Port: 8081

Path: /united

 

HTTP Request Configs:

Host: mu.mulesoft-training.com

Port: 80

Base Path: /essentials/united/flights

URL Settings Path: /essentials/united/flights

 

In Postman the URL http://mu.mulesoft-training.com/essentials/united/flights returns all flight data as you would expect.

 

{

"flights": [

{

"airlineName": "United",

"price": 400,

"departureDate": "2015/03/20",

"planeType": "Boeing 737",

"origin": "MUA",

"code": "ER38sd",

"emptySeats": 0,

"destination": "SFO"

},

{

"airlineName": "United",

"price": 345.99,

"departureDate": "2015/02/11",

"planeType": "Boeing 737",

"origin": "MUA",

"code": "ER45if",

"emptySeats": 52,

"destination": "LAX"

},

{

"airlineName": "United",

"price": 346,

"departureDate": "2015/04/11",

"planeType": "Boeing 777",

"origin": "MUA",

"code": "ER45jd",

"emptySeats": 12,

"destination": "LAX"

},

 

I'm on a personal machine and not behind a firewall.

12 risposte
  1. 21 gen 2016, 14:18

    Try the following example here :-

     

    <http:listener-config name="HTTP_Listener_Configuration" host="0.0.0.0" port="8081" doc:name="HTTP Listener Configuration"/>

    <http:request-config name="HTTP_Request_Configuration" host="mu.mulesoft-training.com" port="80" basePath="/essentials/united/flights" doc:name="HTTP Request Configuration"/>

    <flow name="getUnitedFlightsFlow">

    <http:listener config-ref="HTTP_Listener_Configuration" path="/united" allowedMethods="GET" doc:name="HTTP"/>

    <http:request config-ref="HTTP_Request_Configuration" path="/" method="GET" doc:name="HTTP"/>

    </flow>

     

    Now, if you hit the url :- http://localhost:8081/united it will wok fine as you can see in the following screenshots :-

    Try the following example here :- <http:listener-config name=

     

0/9000

One of my colleagues downloaded the Anypoint Studio trial a couple of weeks before the course began, and now it has expired so he can't complete the course. The rest of us will face this problem in a couple of weeks time as well, as the course lasts longer than 30 days. Can we extend our trial periods?

25 risposte
0/9000

Can someone kindly help me, following the training video I get a deployment issue , file attached.

it saysCaused by: java.net.BindException: Address already in use: bind.

what should i do.lweek2-err.txt

 

6 risposte
  1. 27 nov 2016, 15:09

    This is an issue with your APIKIT plugins... Restart the studio and try again

0/9000