0
votes
1answer
33 views

Mule - choice component issue

When I run my flow, I get the following error ` <org.apache.cxf.staxutils.DepthXMLStreamReader> <reader class="org.mule.module.cxf.support.StreamClosingInterceptor$1"> <reader ...
0
votes
2answers
30 views

Mule - test an http get request with choice component

I have the following flow : <flow name="SOAPWebService" doc:name="SOAPWebService"> <http:inbound-endpoint address="http://localhost:8088/esb/" exchange-pattern="request-response" ...
0
votes
1answer
22 views

Mule - variable not found

I'm trying to retrieve some variables from a GET http request like http://localhost:8088/?id=xxx&type=yyyy using this flow <flow name="SOAPWebService" > <http:inbound-endpoint ...
0
votes
1answer
24 views

is mule session variable thread safe?

Hi I have a complex flow where my payload is getting modified along with original payload. In order to get the original payload I am storing the initial payload in a mule session variable so that I ...
0
votes
1answer
46 views

Mule - wrap http parameters with a fixed soap request

What transformer should I use to extract parameters from an http message like http://localhost:8088/?id=xxx&type=yyyy ans put the values of the id and the type parameters into a fixed soap ...
0
votes
1answer
43 views

Consume a web service method with multiple args in Mule esb

Hello what I want to apply seems very simple but I don't know how, need some clarifications. here is the scenario: I want to call a web service method, this method name is find() and accept as ...
0
votes
1answer
34 views

java.lang.Object over a MULE SOAP Component

I need to pass to soap component an object of a known class which is composed from two strings. the soap request should be like: <soapenv:Envelope ...
0
votes
1answer
24 views

how to send same payload to multiple component in mule?

I have a problem where one mule component transform the payload object into some other value. Ex: Suppose my payload contain student object. Initial value of Student name=a; My first mule component ...
1
vote
1answer
34 views

Mule ESB choice flow control route

In Mule I have the following flow : there is a choice flow control which test the input and verify if the input String equals 'ctr1'. <flow name="mediationFlow1" doc:name="mediationFlow1"> ...
0
votes
1answer
33 views

Consuming a JAX-WS in a Mule ESB flow

I want to consume a JAX-WS service method. the methode is named find and accept a String as argument. this the Mule flow : <flow name="InvokeAWebServiceFlow1" ...
0
votes
1answer
48 views

Deploying mule project on public network

deployed the mule project in a mule stand alone under our organization domain. I could connect to it from anywhere under the domain through the system and the the Project works fine. The problem is ...
0
votes
0answers
26 views

Mule EJB endpoint for dynamic method call

I am doing an integration poc to invoke a remote EJB servcie by ejb:connector and ejb:outbound-endpoint in component binding. It works perfectly fine if I define methodArgumentTypes and method ...
-3
votes
0answers
20 views

Does anyone have any experience configuring the Mule Management Console for use with a db other than PostgreSQL and Oracle? [closed]

According to the following links, the only two databases supported for use with the MMC are PostgreSQL and Oracle. Does anyone have any experience configuring the MMC for use with any other database? ...
0
votes
2answers
31 views

Mule ESB - NetSuite Integration for a file based interface?

I have a situation where in need to integrate a system which creates general ledger files with NetSuite. The "Source" System basically dumps the General Ledger feed in a file at a defined location ...
1
vote
1answer
48 views

Mule Studio - pass set variable to Java Transformer

I've got a flow in mule, and part of it requires two "payload" objects to be passed - one payload is Customer, and the other is Store. The current payload of the flow is set to the Store, and that ...
1
vote
0answers
23 views

Mule best practice?

I would like to build a component that other developers can plugin in to MuleStudio and use to process files. It will expose a variety of methods which process the incoming file and return a new file. ...
0
votes
0answers
37 views

content storing and re-accessing in mule

I am accepting number of parameters as a REST web service, like - @Path("/store") public class RESTService { @POST @Path("/data") @Consumes(MediaType.MULTIPART_FORM_DATA) ...
2
votes
2answers
107 views

How to read huge CSV file in Mule

I'am using Mule Studio 3.4.0 Community Edition. I have a big problem about how to parse a large CSV file incoming with File Endpoint. The scenario is that I have 3 CSV files and I would putting the ...
2
votes
1answer
33 views

Profiling a Mule ESB application

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. ...
0
votes
1answer
30 views

Getting access tokens from Mule 3

I have a few simple flows in Mule: Database to Object to XML to HTTP, and vice versa. I set them up by configuring standard components, no problem there. But to access the HTTP service, I need to ...
1
vote
0answers
25 views

Google Task/Calendar

I am playing with Google Task connector and ended up with following error The content of element 'google-tasks:config-with-oauth' is not complete. One of ...
0
votes
3answers
162 views

Why do Mule Studio 3.4 Builds with Maven Fail or Hangs Indefinitely

I'm running into the following problem attempting to build or a Mule app using Maven (using Mule 3.4). Similarly when I update dependencies, Eclipse will hang indefinitely when trying to download ...
0
votes
1answer
39 views

Mule collection aggregator does not return the right sequence of List

I am using collection splitter and collection aggregator on a List. I can see my request List is splitted in the right sequence, and then sent to the subsequent components, however, after using ...
0
votes
2answers
92 views

i want to save all records from database in a file (read from database a)

i did a example Using Mule Studio to read Data from database i have not any problem or errors but i want to change this program. this program create a lot of files and read one record and save in to ...
0
votes
1answer
37 views

mule object using multiple times

i created a mule flow as: http --> rest --> Connector1 --> Connector2 --> ResponseBack Here in rest web service, it is accepting number of parameters, store it in object and return that object to ...
0
votes
2answers
41 views

How mule invoke the component?

After go through some guides about Mule, I have a question about the component, as it is said in mule documentation, A simple POJO (Plain Old Java Object) component that will be invoked by Mule ...
0
votes
0answers
85 views

Mule ESB - http:outbound-endpoint no effect

I have problem with flow defined like: <mule xmlns:scripting="http://www.mulesoft.org/schema/mule/scripting" xmlns:http="http://www.mulesoft.org/schema/mule/http" ...
2
votes
1answer
49 views

Mule ESB - two files as input (wait for both)

I want to make a flow where: waiting for two files: file_name.xdf and file_name.dff : if both files (I want to process two files in the same time (waiting for both), the file name of those files ...
0
votes
1answer
63 views

Using Mule Studio to read CSV

i try this example : Using Mule Studio to read CSV step by step but but content of csv donot copy to database . i have not any errors i left my console and myflow : <?xml version="1.0" ...
0
votes
2answers
56 views

using org.mule.expression.DefaultExpressionManager class in Java

I am trying to use MEL functions inside my java class. I found that I can use org.mule.expression.DefaultExpressionManager classe' evaluate method to accomplish this. I tried to implement this inside ...
0
votes
0answers
60 views

Why does Mule ESB Standalone (Enterprise Evaluation) hang when I try to deploy or redeploy apps?

I'm running Mule ESB Standalone (EE) on a windows 7 box. Almost every time I try to deploy or re-deploy a mule app to a standalone mule server on my laptop, the IDE hangs and the mmc lists the ...
0
votes
1answer
34 views

Fetching Error Code in mule

I want to create a custom exception message in case exception is thrown by my mule service. In order to do that, i want to separately capture mule generated ErrorCode. Is there any property using ...
0
votes
2answers
39 views

app.home used in mule ajax connector is not working when mule project is converted to web application

In mule, the studio flight reservation example is working when I convert it in web application by using web.xml <?xml version="1.0" encoding="UTF-8"?> <web-app id="WebApp_ID"> ...
0
votes
1answer
68 views

how can taking advantage of Mule Lifecycle

i am exercising Mule i read here i want to try this sample and i create a project and create a java class in Mule Studio after that i copied this code: package org.mule.module.twilio; import ...
0
votes
1answer
56 views

Importing Maven Project in MuleStudio POM error

I am following the tutorial regarding Creating a Cloud Connector. When importing in MuleStudio, I am getting two errors which I don't completely understand. Project build error: Unknown packaging: ...
0
votes
1answer
60 views

Why won't a REST component not receive a call made internal to an app when multiple Global HTTP Connectors are Configured?

I'm struggling to configure and deploy to CloudHub an app with multiple Global HTTP Connectors and a REST component. My application has two flows: one polls an RSS feed for news and posts a json ...
0
votes
1answer
42 views

I want to use a common set of functions used in Mule such as a counter, UUID generator, date and timestamps

I want to use a common set of functions used in Mule such as a counter, UUID generator, date and timestamps. I found only this page about it. but i have not any information about @Function ...
0
votes
0answers
18 views

How do I grab ONLY the status_updates of those accounts I'm following using the Mule Twitter Streaming Connector?

I'm trying to consume status updates from a those accounts that I'm following with a twitter account. I've configured a Twitter (streaming) inbound endpoint (operation = User Stream) along with a ...
0
votes
1answer
29 views

What version of Java is CloudHub using?

Can anyone tell me what version of Java the various versions of CloudHub are running? I'm guessing there's a document somewhere that details as much, but I haven't been able to find it.
0
votes
1answer
55 views

mule custom transformer works in studio, but not deployed to standalone server

I have a flow with a custom transformer. This flow works when I run it under Mule Studio, but fails when run by the mule standalone server. The error message is "No class for element ...
0
votes
1answer
35 views

Using MuleStudio to create/deploy user jar (not a flow)

I have a class I want to deploy to Mule as a user jar. It contains a class that extends AbstractTransformer. I created a simple Java project in Mule, and added my class. It has errors because ...
1
vote
0answers
57 views

Why can't I override a javax.validation.ValidationFactory when deploying mule app to CloudHub?

I'm trying to load javax.validation.ValidationFactory from a library containing the javax.validation package (retrieved from jboss.org). I see that the library is included when I export the Mule ...
0
votes
1answer
138 views

Mule how to make jms outbound endpoint to use ObjectMessage instead of StreamMessage

I have a Mule flow, with a custom interceptor, which constructs an Object and forwards it to a JMS outboud endpoint. The JMS endpoint throws an exception trying to convert the Object to a JMS ...
0
votes
1answer
45 views

Does Mule CloudHub use Java SE or EE by default?

I'm uploading an application to CloudHub and getting ClassNotFound errors for javax.validation.ValidatorFactory. I believe the javax.validation package is found only in EE and not SE, which is ...
0
votes
0answers
40 views

Issue extending an existing message processor

I am trying to extend and override the behaviour of the router in Mule 3.3 using the devkit. I have done it without the devkit way using the maven org.mule.tools with ...
0
votes
1answer
65 views

Mule 3 Quartz timer alignment for near real-time processing

I have a processing chain that needs to output data at the top of the second, i.e. System.currentTimeMillis() % 1000 == 0 within +/- 100 milliseconds. So, I set a Quartz timer as follows; ...
0
votes
2answers
108 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
1answer
130 views

How to access Payload and MuleMessage in @Processor method

I have been working with implementing my custom processors using the Mule Devkit. I have created the project with "mule-devkit-archetype-generic" archetype. It has given me the calss with annotations ...
0
votes
1answer
35 views

How to configure an “initialise” method for Custom Processor

I have been working with Mule DevKit to create a custom message processor. I have created the project with "mule-devkit-archetype-generic" archetype. It has given me the calss with annotations ...
1
vote
2answers
73 views

How do you insert a newline in message body of mule logger component

Can anyone tell me how to insert a new line in the message of a mule logger component? For example, I have the following in the message for the logger: Payload is: #[payload] Inbound Headers: ...

1 2