1
vote
1answer
77 views

sqljdbc_auth.dll already loaded in another classloader in Mule standalone server

I have a Mule Standalone server, I have two Mule Deployable Archives that I created in MuleStudio, both connect to SQL Server and use integrated authentication. Whichever archive I deploy first ...
0
votes
1answer
206 views

Large dataset processing using Mule ESB from database: how to update the processed records based on certain batch size?

I have a large set of records to be processed eg: 100,000 records. My use case has 4 steps: pick the records from database table using jdbc inbound adapter convert the record to xml format post the ...
0
votes
2answers
720 views

Mule ESB 3 Transactional Flow Single Jdbc Resource Not Rolling Back (MSSQL & jtds)

EDIT: This only happens with MSSQL & jtds 1.2.6 Still investigating... **Duplicate of : Mule 3.3.0 Jdbc Transaction Undesired Commit **Mule Documentation sucks. I want to rollback everything ...
3
votes
1answer
483 views

Mule 3.3.0 Jdbc Transaction Undesired Commit

I'm trying to setup a dummy example of jdbc transaction to test commit and rollback. Here I've got : an http entrypoint to start flow, an insert on db a component that throw and exception an ...
0
votes
1answer
251 views

Mule ESB JDBC inbound endpoint: 'abstract-transformer'

I'm trying to add a transformer to a jdbc inbound endpoint, but I'm getting following error message: Caused by: org.xml.sax.SAXParseException: cvc-elt.2: The value of {abstract} in the element ...
2
votes
2answers
2k views

Mule 3 JDBC endpoint exception with sql server

I am trying to insert a String into a SQL Server database using Mule JDBC outbound endpoint. The query is: INSERT INTO ife VALUES (#[payload:java.lang.String], 0) The query works when the payload ...
0
votes
0answers
1k views

Very dynamic JDBC query in Mule

I'm trying to create a flow in Mule that allow queries in a table with a dynamic where-statement. The idea is to send a map of parameters with zero or more entries and then build a query string from ...
1
vote
1answer
1k views

Passing date parameter to jdbc query in Mule

I have a flow in Mule where I want to use a date parameter i get from one query as an input for another query. <jdbc:connector name="myConnector" transactionPerMessage="false" ...
3
votes
1answer
1k views

Get message payload attribute using Mule expression

I have set a default-service-exception-strategy which route and application error to various outbound endpoints. One of this endpoints is a jdbc connector endpoint which updates the database with the ...
2
votes
1answer
1k views

Mule jdbc connector xml parsing

I'm having problems to add a JDBC endpoint to my Mule project but I'm having problems during the initialization due to some XML parsing problems. The problems started after I've added the JDBC ...
2
votes
1answer
1k views

How to link a soap request and response in mule 3

I need to send a file to a external web service. When the response is 1, the file should be deleted, else the file should be kept. I use the file connector to send the file, and insert a record into ...