mule-studio

MuleESB flow, why do I get two files outputted?

不打扰是莪最后的温柔 提交于 2019-12-11 08:23:37
问题 I'm trying to get one record from MongoDB and put it into a file, but I get two files, why is that? I thought that these would execute in a sequence and each step in the flow would take the data from the previous step, am I wrong? <flow name="test1Flow2" doc:name="test1Flow2"> <http:inbound-endpoint exchange-pattern="request-response" host="localhost" port="8081" doc:name="HTTP"/> <mongo:find-one-object config-ref="Mongo_DB" collection="my_collection" doc:name="Mongo DB" query-ref="#[string:{

WebMQ with SSL in Mulesoft

拜拜、爱过 提交于 2019-12-11 06:59:44
问题 I am new to Mulesoft Anypoint Studio and have just started exploring it. My flow starts with reading messages from MQ and ends with putting it at the destination, to begin with just my local machine and would evolve later. I have run into an issue where the Queue has TSL which involves keystores and truststores. Now, in Anypoint I see WMQ and HTTPS/TSL connectors. I've setup a TSL context as global element but how do I set it as part of WMQ connector? The same queue &/or channel can be

How to get more information about dataweave exception in muleosft

不想你离开。 提交于 2019-12-11 05:29:23
问题 I am getting below dataweave exception while executing a mule flow : " INFO 2016-11-06 09:02:42,097 [[abc].HTTP_Listener_Configuration.worker.01] com.mulesoft.weave.mule.utils.MuleWeaveFactory$: MimeType was not resolved '*/*' delegating to Java. ERROR 2016-11-06 09:02:42,290 [[abc].HTTP_Listener_Configuration.worker.01] org.mule.exception.CatchMessagingExceptionStrategy: Message : Exception while executing: "Response": { ^ Unexpected character '\u000a' at index 25 (line 2, position 24),

Looking for download of previous version (v1.3.1) of Mule Studio [closed]

自作多情 提交于 2019-12-11 02:17:41
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 4 years ago . I recently got added to a project team which is using the following version of Mule Studio: Version 1.3.1 Build 201209041237 I would like to download and install this version on my Mac but I cannot find the download location anywhere. Can someone tell me where I can find it? I can of course download 3.4 but that

Profiling a Mule ESB application

陌路散爱 提交于 2019-12-11 01:11:50
问题 The documentation that Mulesoft provides to help install the YourKit and use it to profile a Mule application is not very helpful. I went as far to install YourKit and integrate it into MuleStudio. When trying to set up a profile configuration, it asks for me an entry point for the Java Application (Main class). I am not quiet sure what is the entry point, as I simply just right click the flow diagram and click 'Run As -> Mule Application' Is there any better manual to help figure out how to

Set Inbound Properties for MUnit Flow Reference in Mulesoft for APIKit

ぃ、小莉子 提交于 2019-12-11 00:08:10
问题 I'm trying to test APIKit in MUnit. Originally I was using an http request within MUnit to call my flow and then APIKit would route the request to the proper subflow where my logic lives. Now I want to mock one of the elements of the subflow, so I'm trying to replace the http request with a reference to the APIKit flow. This works, but the APIKit router throws an error: Cannot resolve request base path Because none of the inbound properties are set. And this is my problem, how do I mimic the

How to schedule a service using Quartz component that will invoke a file uploader on a periodic basis?

▼魔方 西西 提交于 2019-12-10 21:16:55
问题 This is an extension of my previous question How to upload multiple files via REST over HTTP using Mule?. The requirement say that, on every Wednesday at 10AM the files has to be uploaded. Henceforth I need a scheduler for accomplishing this. And I found that the solution is "Quartz" inbound component with Cron Expression. But how can I do so? Because I cannot have two "inbound-endpoint".(quartz and file) e.g. <flow name="fileUploader" doc:name="fileUploader"> <quartz:inbound-endpoint jobName

Mule flow execution unexpectedly splits on error in SMTP sendout

谁都会走 提交于 2019-12-10 20:43:37
问题 I would like to catch errors from SMTP endpoint (for example in case it's misconfigured or the server is down) and when this happens, prevent messages from proceeding the normal path and rather go into an exception flow. An exception handler works and messages are routed into an exception flow. What is unexpected is that the message is duplicated and also proceeds with the "normal" flow as well. I would expect it to go only in one direction: if an email was sent successfully go into a normal

Mule 3.4: java.lang.ClassNotFoundException: com.ibm.mq.jms.MQConnectionFactory

十年热恋 提交于 2019-12-10 17:23:25
问题 I am trying to use WMQ as inbound endpoint, I have imported the sample from the sample catalog. When I run the flow, I am getting the error as class not found. I added the required jar files to the build path, but still getting the error. Please let me know, what is the issue. nested exception is java.lang.NoClassDefFoundError: com/ibm/mq/jms/MQConnectionFactory at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.doLoadBeanDefinitions(XmlBeanDefinitionReader.java:412) at org

How to parse inbound e-mail when using Mule's IMAP transport?

别等时光非礼了梦想. 提交于 2019-12-10 11:42:50
问题 I am just starting to learn mule so please forgive me if this is a very basic question. I have successfully configured mule to monitor my mail box so whenever a mail comes in I write the mail to text file (just for testing). Now I need to parse this mail and get the message / From / To from the mail. <flow name="testFlow" doc:name="testFlow"> <imap:inbound-endpoint host="ip" port="143" user="username" password="pwd" doc:name="IMAP" responseTimeout="10000" transformer-refs="Message_Properties"