Questions tagged [mule-module-jpa]

Mule Module support for the Java Persistence API

Source at mulesoft

Configuration

To use the this module within a flow the namespace to the module must be included. The resulting flow will look similar to the following:

http://www.mulesoft.org/schema/mule/core http://www.mulesoft.org/schema/mule/core/current/mule.xsd http://www.mulesoft.org/schema/mule/jpa http://www.mulesoft.org/schema/mule/jpa/current/mule-jpa.xsd">

  <!-- here goes your flows and configuration elements -->

This module is configured using the config element. This element must be placed outside of your flows and at the root of your Mule application. You can create as many configurations as you deem necessary as long as each carries its own name.

Each message processor, message source or transformer carries a config-ref attribute that allows the invoker to specify which configuration to use.

Attributes Type Name Default Value Description xs:string name Optional. Give a name to this configuration so it can be later referenced. entityManagerFactory Reference to an EntityManagerFactory

30 questions
0
votes
6 answers

Mule: How to print the file name in logger?

I want to print the mule configuration file name, in the logger in the flow, how can I get it? Suppose the configuration file name in test.xml, inside that a flow is having logger, which prints test.xml, how can I get this?
Prasad
  • 33
  • 3
  • 11
0
votes
4 answers

How to read plain text file in mule 3.8

In mule 3.8, when I use file connector to process text file , I am getting exception as below, please help. Here is flow xml file:connector name="File" autoDelete="true" streaming="true" validateConnections="true" doc:name="File"/> flow…
Prasad
  • 33
  • 3
  • 11
0
votes
2 answers

Does Mule support MySQL database connection pooling with XA transaction?

Does Mule support MySQL database connection pooling with XA transaction? if yes could you please provide me the configuration?
Gopi
  • 105
  • 1
  • 7
  • 24
0
votes
1 answer

Mule returns oracle cursor issue

My requirement is to handle multiple cursors returned from the stored procedure. Here is my flow, can you suggest me how to do it in mule? Exception Root Exception stack trace: java.sql.SQLException: Invalid column index at…
user3157090
  • 517
  • 3
  • 12
  • 29
0
votes
2 answers

Configured jetty server in mule esb

I want to Configured embedded jetty server in mule esb. I have tried many thing but unable to get success. Please give me step how to configured. I want to make webinf folder in which I can host servlet file and jsp file. I have seen online book…
Manoj Singh
  • 1,329
  • 2
  • 13
  • 24
0
votes
1 answer

Making call to Rest services in mule ESB

I have made a web app which call mule server which is listening to http inbound point at 8081 for accessing the database.I am accessing the database successfully and getting a message. But I want to access the other rest services after I get the…
Manoj Singh
  • 1,329
  • 2
  • 13
  • 24
0
votes
1 answer

Installing Multiple Instances Mule ESB

I have gone through the mule doc. https://www.mulesoft.org/documentation-3.2/display/MULE2INTRO/Installing+Mule I am trying to understand how to make multiple instances from a single esb server. I have to make a cluster of the instance. But I havent…
Manoj Singh
  • 1,329
  • 2
  • 13
  • 24
0
votes
1 answer

Application turned yellow in Mule management console

I deployed 5 applications to my Mule server in mule management console. Among the 5 application one application status was suddenly changed into yellow remaining 4 application where in green status and running successfully. I redeployed that…
Mangoski
  • 2,058
  • 5
  • 25
  • 43
0
votes
1 answer

Title changed to: Issues with Mule JPA module

I am trying to integrate Hibernate with Mule. Does Mule support Hibernate Transport ? Hi @David, I have tried to work with Mule JPA module. But I am facing Below issues. Kindly help me. Here is my applicationContect.xml
Namus G
  • 25
  • 10
0
votes
1 answer

How to fetch specific value from RabbitMq using Mule

I am reading data from salesforce via streaming API. The value I retrieved from salesforce is in the following format({Name:abcd, id:21221321}). I like to store the above mentioned value in rabbitMQ using AMQP connector in Mule and I need to…
Mangoski
  • 2,058
  • 5
  • 25
  • 43
0
votes
1 answer

How can i use XPATH in mule for Getting the XML node values?

#[xpath://soapenv:Envelope/soapenv:Body/out:notifications/out:Notification/out:sObject/urn:Summary] I am using the above XPATH Code for fetching the XML node values. It's not Working. How can Correct this. But the following code Working fine.…
user3129532
  • 69
  • 3
  • 9
0
votes
2 answers

How can i get the XML values in mule?

In Mule I am using SOAP Component it is receiving the WSDL file in XML format. After that I want to get The XML data. but it show error. Here i am using #[message.InboundProperties['Subject']] It show the Null Value. This my XML…
user3129532
  • 69
  • 3
  • 9
0
votes
1 answer

How the Mule Listen other Web Application Data?

I Want to integrate Salesforce and JIRA by Using Mule. Both are Connecting Properly by using Hard Code. But i want when i am trigger the object in salesforce that time mule accept receive the data of object in salesforce. In Mule Not Listen my…
0
votes
1 answer

Mule: How to pass File from FTP to Java class in Mule ESB?

In Mule, I am downloading files from FTP server. I want to pass all the files in this directory to my java class which should be performing actions after Download_ZIP_File in my flow. I need to perform actions like reading text files and unzip the…
Rizwan Sohaib
  • 1,240
  • 17
  • 27
1
2