Tagged Questions
1
vote
1answer
33 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
29 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
44 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
76 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
81 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
43 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
147 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
164 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
132 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
201 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
58 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
110 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
122 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" />
...
1
vote
1answer
98 views
add a java class as a bean in MULE
In MULE 3.3.0 CE, I wrote a simple java class with constructor and two methods, I copied them at below:
public class Book {
private String title;
public Book(String theTitle) {
...
0
votes
1answer
124 views
How to access exceptionPayload in Flow
I have been looking for this on Google but couldn't find a solution.
How can I access the exceptionPayload in the the mule flow
like I can access the payload #[message.payload]. In the same way is ...
0
votes
1answer
54 views
Mule 3.2 Flow Initialization in a specific order
I have two flows in mule. I want to make one of them start , only after the other has been up and running for a while. how can I do that? Thanks
<flow name="newHttpClientRequestProcessor" ...
1
vote
2answers
259 views
Testing sub-flows in Mule
I have started writing test cases to my Mule project.
I have written the functional test case for my Main Flows as follows.
public void testMainFlow_1() throws Exception{
MuleClient client = ...
0
votes
3answers
71 views
Achieving Fail-safe behaviour in flow
I am trying to create a fail-safe scenario in my flow.
My flow looks like below. It involves some sub-flows which intern have call to web-services.
In any scenario if one of the web-service is not ...
1
vote
2answers
306 views
Config <set-variable> with xpath gives empty string while extracting from xml payload
I am working on a service which add the detials sent in the request to to two different queues.
For this I use to extract part of the XML without disturbing the payload.
But it is giving blank.
My ...
2
votes
2answers
183 views
Looking at the SOAP message before it is sent to the consuming service
I am using CXF JAX-WS in mule flow to access a service.
I am able to access it successfully.
Is there any way I can see the message that is being sent to the service just before it is sent?
0
votes
1answer
129 views
Sub-Flow with reuse and concurrency
I am working with preparing a solution for one of my uscases.
My solution is something that might look like this in abstract.
My question here is, when the two main flows are calling the same ...
0
votes
2answers
148 views
MULE 3.2 - How to get the RequiredValueException string value?
If I have the following block in my default-exception-strategy how do I return the actual text of the error message.
<when evaluator="groovy" expression='payload.getException() instanceof ...
2
votes
1answer
424 views
How to make parallel outbound calls
My use case requires to enrich my input with smne data and send it to an outbound endpoint.
The data for enriching is obtained by making calls to two web-services and then extract the data from the ...
1
vote
1answer
783 views
How to kick off a mule flow to read messages from a JMS queue using an HTTP endpoint
I basically have two flows :
HTTP Inbound endpoint receives batch XML, splits to individual pieces and stages it to a JMS queue.
Reads the staged XMLs from the JMS queue and processes the ...
0
votes
0answers
42 views
Emulate chaining-router behaviour in flow
Since a chaining-router can only be used in within a service element, how can I emulate the chaining-router behaviour in a flow?
I need to send a message through two outbound endpoints, but if the ...
1
vote
1answer
289 views
Mule logging: Interceptors or Logger component?
I am trying to implement logging in mule and have a basic question.
My services are all configured to run on a tomcat server and not on Mule. I am only using Mule for orchestration.
Should I use ...
0
votes
1answer
449 views
Exception handling in Mule ESB Flows: Multiple exception strategies
I want to add exception handling in Mule ESB using custom-exception-strategy. However, I have multiple service calls in one flow, and I want to handle exceptions from each service call separately.
Is ...
0
votes
1answer
654 views
Aggregate messages from an <all> flow in Mule
The story so far
I have a SOAP service that sends its response (say Response_A) to an <all> flow. Inside the flow, there are three SOAP services (say B, C and D) that take inputs from ...
0
votes
2answers
1k views
Consuming a SOAP based web service in a Mule flow
I am using Mule Studio to create a flow which will consume public webservice http://wsf.cdyne.com/WeatherWS/Weather.asmx?WSDL&method=GetCityForecastByZIP. To achieve the same I have created the ...
0
votes
1answer
120 views
How to run MULE on local IP?
I have a MULE application. It consist of a Flow like below:
<flow name="article_list">
<http:inbound-endpoint address="http://localhost:8000/jcore/article/list" />
<component ...
0
votes
1answer
243 views
How to break into middle of Flow in MULE and return the message to client..?
I have a Flow in MULE like below :
<flow name="MetaService">
<http:inbound-endpoint address="http://localhost:8000/jcore/meta"
transformer-refs="HttpParams" ...
0
votes
1answer
438 views
Dynamic variable in Flow in MULE..?
I have a Flow in MULE which contains a HTTP inbound and component class like below :
<flow name="MetaService">
<http:inbound-endpoint address="http://localhost:8000/jcore/meta/user"
...
0
votes
2answers
520 views
How to check for valid URL's and route it to VM at the end of Flow in MULE..?
I have a flow in Mule. It contains an HTTP Inbound listening to a Port number and an Address. Now according to the address of the HTTP Inbound i have to route it to another VM.
This part i have done ...

