Favicon

How to configure mule client for JMS

Hi Devs,

 

I have a problem in initializing mule client to send JMS messages,

My code is as follows

 

MuleClient client = new MuleClient(true);

MuleMessage message = client.request("jms://jbpm.response", 1000);

 

I am getting an exception

 

org.mule.transport.service.TransportFactoryException: Unable to create connection factory. Either configure a connectionFactory-ref or a jndiInitialFactory. (org.mule.api.lifecycle.InitialisationException) (org.mule.api.registry.RegistrationException)

 

How can I configure connectionFactory-ref or jndiInitialFactory with Mule client. If you can provide me a code snippet, it is highly appreciated.

 

Thanks in advance

Harsha




----------------------
CONFIDENTIALITY NOTICE

This e-mail (including any attachments) may contain confidential and/or privileged information. If you are not the intended recipient or have received this e-mail in error, please inform the sender immediately and delete this e-mail (including any attachments) from your computer, and you must not use, disclose to anyone else or copy this e-mail (including any attachments), whether in whole or in part.

This e-mail and any reply to it may be monitored for security, legal, regulatory compliance and/or other appropriate reasons.


Mule vs JBoss ESB

Can anybody tell me which is best to use Mule or JBoss?.I have got  biased results from some posts and blogs.I
want the comparison with some recent and new research and analysis with some statistical values,since
new added features from JBoss and Mule latest releases.

Thanks.

Narayanan

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email

Customers of Mule

Hi,

I have seen the customers listing of  private and government concerns who are using Mule software from Mule
Website.Can anybody tell me the number of customers using Mule "*Enterprise*" and "*Community"*
edition seperately?

Thanks in advance.

Narayanan

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email

Mule customers request

Majority of customers of Mulesoft wants to add some services or support(example:new application
server)Mulesoft will consider and take action on that?

Is that flexibility is possible?

Can anybody tell me in which specific features Mule ESB is best comparing to all other OSS ESB's?both in
developers and business perspective

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email

Murli Pola | 8 Feb 14:13

MDI 3.0.6 with Mule 2.2.6 - customize MDI transformer

Hi TechHelp team,

I am using MDI 3.0.6 with Mule 2.2.6. I want to customize MDI transformer by extending
com.mulesoft.dataintegrator.DataIntegratorTransformer. I am using normal MDI tag in mule like
<data-int:transformer name="getShippingInfoRequest"
        mapPath="/ShippingServiceTransformers/Maps/request/GetShippingInfoRequestMap"
        resultType="JAVA">
        <data-int:project archive="ShippingServiceTransformers.zip"
            project="ShippingServiceTransformers" />
    </data-int:transformer>

Could you please let me know where I can place my customize class name to execute my map in mule or how to
configuration it?

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email

About the Enterprise and Community editions

Hi,

I want to use Mule product for a commercial purpose.
I have some doubts to clarify before using it.

1. I want to know the details of the code,documentation,cost,support,license differences for
Enterprise and community Editions.
2. How Enterprise edition is effective or valuable than community edition.
3. If i want to changeover from community to Enterprise edition in the half way,is it possible?How?
4. What about the dependency of Mule for third party components?less or more

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email

License Information

I want to use Mule Software for a commercial purpose.Do I need to get any license for this.If so how to get
it.Please tell in detail.As well as i want to know the difference between community and enterprise
editions in the code,cost,license,releases,24/7 support,subscription etc.

Thanks,
Narayanan

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email

Laurence Weil | 8 Feb 13:53

Transaction management & hibernate

Hi,

I've configured a flow that starts a transaction on receiving a message, the message is passed off to a
component which transforms & saves the message into a temporary store using hibernate.

Finally a webservice is called to run some business processes.

If the webservice fails I want the data that was saved in the component to be rolled back. However I'm not
finding a way of getting this to work yet.

My config is as follows:

<flow name="ProcessDDIRecordCreate">

        <inbound-endpoint ref="ddiRequest">
            <jms:transaction action="ALWAYS_BEGIN" />
        </inbound-endpoint>

        <component>
            <method-entry-point-resolver>
                <include-entry-point method="transformAndSave" />
            </method-entry-point-resolver>
            <spring-object bean="transformer" />
        </component>

        <outbound-endpoint ref="businessProcessWebservice" exchange-pattern="request-response">
            <cxf:jaxws-client serviceClass="an.other.BusinessProcess" operation="runUpdateProcess" />
        </outbound-endpoint>

        <default-exception-strategy>
            <rollback-transaction exception-pattern="*"/>
            <outbound-endpoint ref="error" />
        </default-exception-strategy>
    </flow>

The following error is printed out:

WARN  JmsTransaction - Transaction rollback attempted, but no resource bound to
org.mule.transport.jms.JmsTransaction <at> bc8fc985-524b-11e1-9c17-e51694736e2c[status=STATUS_MARKED_ROLLBACK,
key=null, resource=null]

Have tried this with the XA tx manager as well and no joy.

My hibernate transaction is marked up in the transformer class using the @Transactional annotation. 

How can I get my component class to take part in the transaction?

Thanks

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email

Ludvig Johansson | 8 Feb 11:35

Export from MuleStudio to Mule ESB

I'd like to share my experiences from following the Intermediate Tutorial for Mule Studio and publishing
to the Mule (community edition) server. Maybe this is only me having problems, but I share my sorrows
anyway. Shared sorrow is half burden?

First I think the tutorials are excellent! Thanks!

Exports from Studio are easy by chosing project root (right click) and chosing Export. After that export as
mule studio project..

But! 
In the resulting zip files all intermediate folders is saved in the zip-file, resulting in a non runnable
mule app.

To make the app run on the Mule esb, 
copy the expanded zip to the mule server.
change filename ajax_flow.xml to mule-config.xml (maybe not needed)
In the mule-config.xml replace the references to folders which does not exist to ${app.home}/
(for example: xsl-file="${app.home}/transform.xsl")

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email

Ratan Mishra | 7 Feb 21:29

Xpath routing for multiple namespace

Hi ,

I want to use XPATH routing to different outbound address on the basis of xml namespace in the SOAP request.

Please provide me some sample code.

Thanks
Ratan

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email

timothee | 7 Feb 03:06

How to route multi-part message based on content in Mule ESB?

Hello,

I have a flow that takes 'multi-part form' HTTP POST requests typically made of a json object (part 1) and an
image (part 2).
I would like to route the message according to the content of the first part (json) by using the "choice" router.

Can I do that without writing a custom expression evaluator to be used in the "choice" module?

Is there any way to do it by using the "attachment" evaluator already available in "choice". I could not find
documentation/examples about the latter.

Thanks much!

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email


Gmane