Back to Fuji EIP Wire Tap, or Fuji EIP Wire Tap Info
| At line 1 added 1 line. |
| [{Image src='fuji-logo8.gif' link='https://fuji.dev.java.net/' alt='Fuji Home' align='left'}] |
| At line 4 added 2 lines. |
| [{TableOfContents}] |
| At line 20 changed 1 line. |
| ! Syntax |
| !! Syntax |
| At line 22 changed 1 line. |
| tee [route-name | embedded-route] |
| tee to [ route-name | service-name ] |
| At line 27 added 1 line. |
| service-name := name identifying a service |
| At line 26 changed 12 lines. |
| ! Examples |
| Tee with embedded route |
| \\ |
| {{{ |
| route do |
| from "inbound" |
| tee do |
| route to "log-service" |
| end |
| to "po-process" |
| end |
| }}} |
| !! Example |
| At line 39 removed 1 line. |
| Tee with a route name |
| At line 33 added 2 lines. |
| file "logger-process" |
| At line 43 changed 1 line. |
| tee "log" |
| tee to "log-service" |
| tee to "logger-process" |
| At line 47 changed 2 lines. |
| route "log" do |
| to "po-process" |
| route "log-service" do |
| to "logger-process" |
| At line 52 removed 2 lines. |
| __Note:__ ''Check if route w/o a from is processed correctly'' |