How can I disable/enable SOAP multi-ref serialization?
By default, SOAP encoded messages are constructed using the serialized named SstSoapOutputSerializer. This serializer causes all complex SOAP messages to be encoded as SOAP multi-refs. Notice that the serialization configuration is referenced using the SOAP encoding namespace. 
  
  | container config |
  container := SstWSContainer containerNamed: 'MyContainer'.
  config := container serializationManager serializationConfigurationNamed: 
    SstSoapConstants::SstSoapDefaultEncodingNamespace.
  config serializer: AbtXmlSchemaOutputSerializer current.
------------------------------- 
Last modified date: 04/08/2023