pub fn build_dispatch_table_for_service(
service_name: &str,
resolved: &ResolvedWsdl,
handlers: HashMap<String, Arc<dyn SoapHandler>>,
auth_bypass: &HashSet<String>,
default_handler: Option<Arc<dyn SoapHandler>>,
) -> Result<DispatchTable, DispatchError>Expand description
Build a dispatch table for a single named service.
Only operations reachable through service_name’s ports and bindings are included.
Useful when a WSDL defines multiple services and each service mounts on a distinct path.
Semantics are otherwise identical to build_dispatch_table.