HMT
HMT

Reputation: 2261

How to pass Java object to a Java function in mule

enter image description here

I am trying to invoke a java function in mule.I converted the payload into the Object and passed it in the function. The name of the Java object created is req. The method validate accepts a Java Object Of type Example

public HashMap<String, String> validate(Example req) {.......}

Example class looks like this:

Class Example{
String key1;
String key2;
String key3;
}

XML configuration looks like this :

<java:new constructor="Example(java.lang.String,java.lang.String,java.lang.String)" doc:name="New Example" doc:id="6a1d5c8c-a1f0-446e-ab49-99a21fbbf4b9" class="Entities.Example" target="req">
                <java:args ><![CDATA[#[{key1 :payload.key1,key2: payload.key2, key3:payload.key3}]]]></java:args>
            </java:new>
            <java:invoke doc:name="Invoke" doc:id="dd5f6534-06c8-4f4d-b3aa-c634a629898e" class="Implementations.ValidationServiceImpl" instance="#[vars.validator]" method="validate(Entities.Example)">
        <java:args ><![CDATA[#[vars.req]]]></java:args>
    </java:invoke>

I get the following error: enter image description here

I don't know why is it not passing the java object as a whole.

Upvotes: 1

Views: 1291

Answers (1)

Alan M
Alan M

Reputation: 612

Please try with this and see. If it works for you please let me know. We need to improve the mule documentation in this case

<java:args >#[{req: vars.req}]</java:args>

Upvotes: 5

Related Questions