mule - Application data Not visible in cloudhub -
i have used objectstore in application , app deploy on cloudhub. cloudhub not showing objectstore in application data. code:
<flow name="testflow1" doc:name="testflow1"> <http:inbound-endpoint exchange-pattern="request-response" host="localhost" port="8081" path="test" doc:name="http"/> <objectstore:store config-ref="objectstore" key="new" value-ref="#['kalpesh']" doc:name="objectstore"/> <objectstore:retrieve config-ref="objectstore" key="new" doc:name="objectstore"/> <logger message="#[payload]" level="info" doc:name="logger"/> </flow>
you have use cloudhub default store _defaultuserobjectstore
for appear in 'application data':
object-store-ref="_defaultuserobjectstore"
Comments
Post a Comment