I have a requirement to pass an object to an HTTP connector (Not sure if I can use any other connector). The next step is convert an object to a CXML and make an outbound end point call to another API, get the response and convert it another java object. I am very new to Mule and need some inputs on this. Any pointers would be very helpful.
Can someone give me some good points where we have good links for mule implementation examples (apart from Mule in Action)
EDIT: code from OP's comment below
<flow name="object_serialization.mflowFlow1" doc:name="object_serialization.mflowFlow1">
<http:inbound-endpoint exchange-pattern="request-response" host="localhost" port="8081" doc:name="HTTP"/>
<component class="SerializeObject" doc:name="Java"/>
<serializable-to-byte-array-transformer doc:name="Serializable to Byte Array"/>
<http:outbound-endpoint exchange-pattern="request-response" host="localhost" port="8081" method="POST" doc:name="HTTP"/>
</flow>