Tagged Questions
0
votes
2answers
139 views
How to run a flow once, automatically when starting mule?
I have a java class that creates a clean MongoDB database with seeded collections. It automatically identifies if the database is missing and creates it. I would like to run this when I start ...
2
votes
1answer
81 views
Mule flow execution unexpectedly splits on error in SMTP sendout
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 ...
2
votes
1answer
104 views
mule facebook - flow variable
I have a mule flow with facebook connector(authorize); Before calling it I try to set some flow and session variables; When facebook authorize returns back to flow - these previously set variables do ...
0
votes
0answers
42 views
Mule flow trigger another flow
I have 2 data sources I am building an integration for. I have a workflow that needs to do the following in this exact order:
1) Get records from datasource1
2) Post records into datasource2
3) Get ...
0
votes
1answer
85 views
Getting java.lang.IllegalArgumentException when trying to make a dynamic HTTP endpoint in Mule
I got an HTTP outbound-endpoint that does a GET method to an specific URL, thing is that if i add a variable in the path URL it will throw an exception... i believe this is not being supported.
This ...
0
votes
0answers
136 views
Working with SOAP attachments using Mule’s CXF module
I'm working with MULE 3.3.0 CE
This is AddAttachmentMessageProcessor class:
import java.io.IOException;
import java.util.ArrayList;
import java.util.Collection;
import javax.activation.DataSource;
...
0
votes
1answer
276 views
Call a CXF Client through a Java Bean with Mule
Im trying to consume this webservice: http://wsf.cdyne.com/WeatherWS/Weather.asmx?wsdl from another wsdl... Dont worry for that, im just tryng to make some kind of bridge to test the webservice call ...
0
votes
0answers
75 views
mule log files into DB
In mule CE version 3.3.0, I have a mule project, and the URL for calling it is http://localhost:8086/mule?msg=Hello-World!!!.
Every time that I call it, in a log file in mule server that it has as a ...
2
votes
0answers
186 views
Mule Flow - Inserting BLOB attachment types into an Oracle database field
I am new to the Mule ESB and I am trying to find a solution to what is hopefully a common business requirement.
I have a payload where one of its elements will be inserted into an Oracle database as ...
0
votes
1answer
480 views
How to catch any exception in the mule flow
I have a mule flow that could throw an exception (unable to connect to connector, component throws exception etc). When this happens, the mule flow stops where the exception happenned. I need to catch ...
0
votes
1answer
199 views
Starting a mule flow programmatically using groovy
I need to control the execution of a flow manually through a HTTP call. I have been told I can disable the flow from executing during startup using the initialState="stopped" attribute on the flow. ...
0
votes
1answer
559 views
Use an SQL result variable in a Mule flow
I got a Mule flow with 2 queries.
The first simply validates if a username is duplicated.
Does something like this:
SELECT count(*) AS TOTAL FROM user_tests WHERE username = #[json:username] AND ...
0
votes
1answer
99 views
flow control choice router
In mule 3.3.0 CE, I add these lines in my configuration XML file:
<flow name="muleService" doc:name="muleService">
<http:inbound-endpoint exchange-pattern="request-response" host="localhost" ...
0
votes
2answers
215 views
mule versioning on web service
I have the same mule webservice application with 2 different versions deployed on the same mule server. Let's call it MuleApp.1.0 and MuleApp.1.1. The flow is as simple as the example of webservice ...
0
votes
2answers
172 views
do Injecting Resources into JAX-WS Services in mule stdiuo
i am doing Injecting Resources into JAX-WS Services in mule stdiuo from page: here
but i heve error in xml file :
<spring:bean class="org.apache.cxf.bus.spring.Jsr250BeanPostProcessor" />
...