Up Next

11.1  A simple service

The simplest example is to forward all calls (incoming and outgoing). It illustrates how a SPL program is formed. We must have at least one method or an included session in a session section.
   1 service simple {
       processing {
         registration {
           dialog {
   5         response incoming INVITE() {
               return forward;
             }
     
             response outgoing INVITE() {
  10           return forward;
             }
           }
         }
       }
  15 }

Up Next