mule-studio

Anypoint studio/Mule hangs during startup

孤人 提交于 2019-12-22 10:56:39
问题 I am new to Mule and Anypoint studio. I worked with Mule before. After a while I came back to work with it again. I upgrade to Anypoint Studio March 2015 Release Version: 5.1.0 Build Id: 201503171252 (sorry but I do not remember my old version and it over wrote by new version now) After upgrading it hangs during start-up. It hangs during process of My system : Linux Mint 17 Qiana Java -varsion : java version "1.7.0_67" Java(TM) SE Runtime Environment (build 1.7.0_67-b01) Java HotSpot(TM) 64

MuleStudio studio:studio goal failed to execute

一曲冷凌霜 提交于 2019-12-22 10:38:09
问题 I copied/pasted a working project in my Mule Studio workspace (from within Mule Studio) to create a new project. After that, I could do a mvn clean install on the new project and everything worked fine. Then, after any modification on the pom (i.e. add a blank line), I'm getting the following error (On an exclamation mark over the project name). I can still execute mvn clean install without errors and obtain a jar that I can deploy. However, I'd like to eliminate the error. Build problem on

How to invoke Mule's file-inbound endpoint from Command Line Interface (CLI) using curl?

情到浓时终转凉″ 提交于 2019-12-22 09:31:19
问题 I am trying to move/upload multiple files from source to destination (can be anything e.g. FTP or File outbound etc..) by using the below flow <flow name="flow1" doc:name="f1"> <file:inbound-endpoint path="C:\input" responseTimeout="10000" doc:name="File"/> </flow> <flow name="flow2" doc:name="f2"> <http:inbound-endpoint address="http://localhost:8080" doc:name="HTTP" exchange-pattern="request-response"/> <flow-ref name="flow1" doc:name="Flow Reference"/> <file:outbound-endpoint path="C:

How to catch exceptions in the Mule foreach scope but keep the process going?

女生的网名这么多〃 提交于 2019-12-22 08:44:02
问题 I am new to Mule ESB. I have created a simple flow that loops through a list of orders and calls the Magento API to update the order statuses one by one. My problem is that if there are any exception occurs in the foreach scope, the whole process tops. I tried to use the Exception Strategy to capture the exception and it did capture the exception. But how to resume the process? I didn't find much info with google search. Maybe I was doing something wrong with the flow. How do we normally

Anypoint Studio 7.1 start-up error

我与影子孤独终老i 提交于 2019-12-22 06:43:34
问题 I am trying to experiment with Mule Runtime 4 & Anypoint Studio 7.1. I got the downloadable from - https://mule-studio.s3.amazonaws.com/7.1.1-GA/AnypointStudio-for-win-64bit-7.1.1-201803182216.zip while starting up AnypointStudio.exe, I keep getting the error message - A JDK must be installed in order to run Anypoint Studio. Please install a JDK and try again. But I do the required version of JDK installed in my machine, as per https://docs.mulesoft.com/anypoint-studio/v/7.1/faq-jdk

Spring3 Dependency Injection not working with mule

余生颓废 提交于 2019-12-21 20:17:05
问题 I am unable to inject customerDao object in reference variable inside CustomerServiceImpl service class. Here is my mule_flow.mflow file <?xml version="1.0" encoding="UTF-8"?> <mule xmlns:http="http://www.mulesoft.org/schema/mule/http" xmlns:cxf="http://www.mulesoft.org/schema/mule/cxf" xmlns="http://www.mulesoft.org/schema/mule/core" xmlns:doc="http://www.mulesoft.org/schema/mule/documentation" xmlns:spring="http://www.springframework.org/schema/beans" version="CE-3.3.0" xmlns:xsi="http:/

how to make until successful as synchronous to retry mechanism for FTP Outbound in mule 3.4.2

谁说我不能喝 提交于 2019-12-20 06:39:09
问题 I used retry mechanism for outbound FTP by using Untill successful. It is working fine but it is working as asynchronously in mule 3.4.2.I have seen synchronous option is avaliable in 3.5. is it possible to make untill successful scope working as synchronous in 3.4.2 version? if possible could u please provide me the solution? or else any other solution to use retry mechanism for outbound FTP? <until-successful objectStore-ref="objectStore" maxRetries="3" secondsBetweenRetries="1" doc:name=

Mule method cannot be cast to string

六眼飞鱼酱① 提交于 2019-12-20 06:27:23
问题 i'm very new to mule studio. This is the environements setup. VM1 = Windows 7, Visual Studio 2012, IIS 7. A .net 4.5 WCF webservice hosted in IIS7 that has an operation that accepts a string and returns a string. VM2 = Ubuntu 13.4 OpenJDK 1.7.0_25 Mule Studio 3.5 Community Edition. I created a JAXWS-Client with an outbound endpoint, I did this by clicking the generate from WSDL and entering the url of the .net WCF webservice hosted in IIS on VM1 . That was fine. I then created an inbound

NoClassDefFoundError: javax/validation/Validation occurs even validation-api 1.1.0.Final in the POM

醉酒当歌 提交于 2019-12-20 06:26:06
问题 Looks strange... I have exception trace: org.apache.cxf.interceptor.Fault at org.mule.module.cxf.MuleInvoker.invoke(MuleInvoker.java:117) at org.mule.module.cxf.MuleJAXWSInvoker.invoke(MuleJAXWSInvoker.java:47) at org.apache.cxf.service.invoker.AbstractInvoker.invoke(AbstractInvoker.java:75) at org.apache.cxf.interceptor.ServiceInvokerInterceptor$1.run(ServiceInvokerInterceptor.java:58) at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source) at java.util.concurrent.FutureTask

Mule ESB - How to create a HTTP request with POST method (sending parameters along)

依然范特西╮ 提交于 2019-12-19 10:41:53
问题 Short: I want to post a couple of parameters (like user=admin, key=12345678) using the POST method to a PHP page (like localhost/post-debug.php). The script would read the $_POST values and do whatever. My questions are: 1. How can I get the example below to work? 2. How can I create the Map Payload with POST parameters from a JSON encoded payload and send it to the PHP script? Below is an isolated case I am trying to get running (the parameters are "read" from the HTTP endpoint). I am