0

我正在尝试找到一种方法在下面的 smpp 路由中传递“destAddr =”,这是来自上述 sql 查询的值,以便在 sms 目标地址中导入发件人号码,但经过大量搜索,我找不到离开。如何从查询中保存我需要的值,然后在 smpp 选项中动态使用它?任何建议将不胜感激。

<from uri="sql:{{sql.selectRunRecList}}" />
<to uri="bean:smppBean?method=smsConstruct" />
<to uri="sql:{{sql.markSms}}"/>
<to uri="bean:smppBean?method=smsPrintText" />  
<to uri="file:C:/workspace/SMPP/outbox" />   
<to uri="smpp://smppclient@localhost:2775?password=password&amp;destAddr=  " />
4

1 回答 1

0

请参阅此常见问题解答如何在 Camel http://camel.apache.org/how-do-i-use-dynamic-uri-in-to.html中发送到端点时使用动态值

于 2013-07-29T15:51:29.013 回答