SOAP: The Power Of Simplicity 
O'Reilly P2P Conference 2001
<<< 20/52 >>>
Copyright (C) 2001 Paul Kulchenko, Tony Hong

SOAP::Lite, Basic concepts: Method dispatch

When incoming requests are received, the SOAP::Lite server must determine which package and method is actually being invoked, and then load and execute that code. This is method dispatching. Unless explicitly specified otherwise it's based on namespace URI and the name of method element. Call for <ns:method xmlns:ns="http://namespaces.soaplite.com/My/Class"> will be dispatched to My::Class::method.