Skip to main content

Posts

Showing posts with the label MuleSoft

Connect MuleSoft with Salesforce and Create Record in Salesforce With MuleSoft.

  In this blog, we are going to discuss about how we can connect MuleSoft with Salesforce Environment and creates the records on it. pre-requisite :- 1) Anypoint platform - (https://anypoint.mulesoft.com/login/signin) -> Sign in -> Anypoint studio(Download). 2) Java 8 -> (https://www.oracle.com/in/java/technologies/javase/javase8-archive-downloads.html) 3)Salesforce environment -> (https://login.salesforce.com) Steps :- 1) Go to AnyPoint platform -> File -> New -> Mule Project. 2) Give the mulesoft project name and click on Finish. 3)On the left hand side you can see your project under package explorer. 4)Now, you are seeing "To get started, drag an operation or scope from mule palette". Now to get started we have to pull one component from mule palette(Which is on the right hand side of the main screen) and drop into the main screen. 5)For us, you have to drag "Listner(HTTP)" component from the mule palette and drop into the main screen. 6)Now ...

URI parameter in RAML | MuleSoft | Anypoint platform

  In this blog we are going to learn about the URL parameter used in RAML(Restfull api modelling language).  A  Uniform Resource Identifier (URI) , as  the name suggests, is responsible for identifying a resource uniquely. For example, we can use it to search for Video based on the song ID –  /video/{videoId} : /video:   /{videoId}:     get:       description: To get all the video based in the video-box       displayName: Get all video.       responses:         200:           body:             application/json:               example: {                ...

Query parameter in RAML | Mulesoft | Anypoint platform

  In this blog we are going to learn about Query parameter in RAML(Restfull api modelling language). A query parameter is   used to query, filter, or sort data based on a particular condition. You can think of the query parameter as the   WHERE   clause used in SQL. It is passed at the end of the URL, followed by  ?  and separated by  & , if there is more than one query parameter. For example, we can use this to implement pagination and fetch a limited amount of songs per page that were released in a particular year. So, here,  year  and  limit  are the query parameters:  /videos?year=<year>&limit=<pageLimit> . This is what an actual request would look like:  http://<host>/songs?year=2020&limit=20 : /videos:     get:       queryParameters:         limit:         ...

Batch in Anypoint studio | MuleSoft

  The prime functionality of the   Batch   scope is to process   and synchronize   a large number of records with ease, which makes it one of the most popular and widely used components. Mule’s  batch processing strategy  divides a large number of records  into individual records and processes them asynchronously. By default, Mule’s  Batch  scope  processes 100 records per batch, which utilizes 16 threads – however, this is configurable. Features of the Batch scope A few prime features of the batch processing  strategy are listed here: The capability to process large records and files with less processing time The parallel processing of records helps us achieve near real-time transformation It has its own error-handling section It helps us to reprocess the failed records and hence, achieve the maximum throughput Now, we shall learn about the batch processing stages in the next section. The batch processing stages The batch proc...

Logger in AnyPoint platform | Mulesoft

  The   Logger   component helps you log important   messages, errors, and the status of an application. It’s helpful when debugging and monitoring your application. You can simply drag and drop the  Logger  component from the Mule palette into any flow or subflow, as shown in the following figure. To configure  Logger , you need to fill in  Message , which could be with a simple  String  or a DataWeave script. Make sure you do not log any sensitive information, as it’ll be retained. You can view the application logs here:  MULE_HOME/logs/<app-name>.log . You can also configure the path and customize the logging tools (Splunk or ELF, for example) explicitly in  log4j.xml . As you can  see in the following figure,  INFO (default)  is the default  Level  input – the other levels are  DEBUG ,  ERROR ,  TRACE , and  WARN . Setting log levels will help you to filter out certain logs...

Parse Template in AnyPoint Studio | MuleSoft

    This component   helps you to process an embedded Mule expression or an external file. To configure it, you need to provide content or an external file. As you can see, we’re getting the user information from Salesforce and later passing it through an HTML template: Figure  – The Parse Template component in Anypoint Studio Figure    shows the configuration  of the  Parse Template  component. Let’s go ahead with our next component, which is  Set Transaction Id .