以下网址需要一个接一个地调用如何在Mule中配置?
Currently I am using HTTP requester where i am able to call first URL by
passing URI and query param.
My question is how to call another 2 URL one after other?
i have defined in property file as:
Myday.contextpath.getURL1 = Z+-+ISU/Z_-_All_Domains_-_All_Domains
Myday.contextpath.getURL2 = Z+-+ISU/Z_-_INT93-_All_Domains
Myday.contextpath.getURL3 = Z+-+ISU/Z_-_RPT_D_
答案 0 :(得分:0)
将数组存储为属性文件中的表达式,所以:
Myday.contextpath.getUrls [ "http://url1" , "http://url2" , "http://url3" ]
然后在每个范围的集合表达式中使用${Myday.contextpath.getUrls}
。