在此之前,我问了一个问题。我的服务配置是:
<proxy xmlns="http://ws.apache.org/ns/synapse"
name="UnpayBilling_Task"
transports="https,http"
statistics="disable"
trace="disable"
startOnLoad="true">
<target>
<inSequence>
<class name="com.coship.mediator.UnpayBillingMediator"></class>
<log level="full" />
</inSequence>
<outSequence>
<log level="full" />
<send />
</outSequence>
<endpoint>
<address uri="http://172.21.13.153:18080/aaa/services/receiveMsg" />
</endpoint>
</target>
</proxy>
我写了一个扩展调解UnpayBillingMediator
器交易文件。该类返回文件名并向服务发送请求http://172.21.13.153:18080/aaa/services/receiveMsg
。该服务没有输入消息。我希望每天 13:30 运行服务。我尝试添加新的计划任务。
soapAction:urn:mediate,to:http://localhost:8280/services/UnpayBilling?wsdl, Cron: 30 13 * * *.
但它不能工作吗?谁能告诉我如何设置这个计划任务?
SimpleQuartz Server name not in pinned servers list. Not starting Task
我也不知道如何设置“固定服务器”。