#ICYDK: Employers will have to wait until early next year to use the federal government’s fast-track processing option for most H-1B visa petitions. https://goo.gl/f9MF7s #GlobalHR #HRTech
Does This Law Apply to My Organization in Nebraska?
#ICYMI: Nebraska: does this law apply? https://goo.gl/BHp8CZ #GlobalHR #HRTech
Mule 3: Execute PHP Script in Mule ESB
#ICYDK: In this article, I will explain how to execute a PHP Script within the Mule Flow. First, we need to include the mule-module-php.jar file on our project. Mule needs this library to be able to execute the PHP script at runtime. You can download the jar file here: https://github.com/jdeoliveira/mule-module-php/downloads. info(“Hello, ” . $h->getName(). “! You are ”. $h->isAdult()); $h = new User(“Jose”,39); $log->info(“Hello, ” . $h->getName(). “! You are ”. $h->isAdult()); return “Hi From PHP To ” . $payload ?>]]>
The above Mule flow runs every 5 seconds to execute the Script Component that contains our PHP code. Inside that component, it is simple to initialize the PHP class User located in /src/main/resources/ and invoke its methods or functions. Also, note that the Script Component engine should be set to php. https://goo.gl/D3AEaG #DataIntegration #ML
Using Mule Notifications to Calculate Total Execution Time of a Mule Component
#ICYMI: In this article, I will show you how to use the Mule Notifications functionality of Mule 3.x to calculate the total execution time of a Sub-Flow, HTTP Request Connector, Script Component, and the Transform Message (Dataweave). For more details regarding this functionality, you can check the documentation https://docs.mulesoft.com/mule-user-guide/v/3.9/mule-server-notifications.
Mule Configuration: In this configuration, I’m creating a bean for my custom listener class and referencing it to my Notification Configuration. Also note that the event MESSAGE-PROCESSOR allows the notification to be sent before and after a Mule component is invoked. https://goo.gl/6NWnwQ #DataIntegration #ML