2008/3/25, James Strachan <[EMAIL PROTECTED]>:
> I guess the biggest issue right now is if we did...
>
>
> from("quartz://myGroup/myTimerName/0/0/12/*/*/$").to("http://foo.com/bar.xml").to("file://myDirectory/someName.xml");
>
> then the HTTP endpoint would tend to do a POST not a GET as it would
> be receiving a payload of the quartz event. I guess thats just a
> limitation of the HTTP endpoint; we maybe need some way to enforce the
> GET operation or something?
but this should work OK:
from("quartz://myGroup/myTimerName/0/0/12/*/*/$")
.setBody(constant(null))
.to("http://foo.com/bar.xml")
.to("file://myDirectory/someName.xml");
Romek