so the SOAP message looks smarter.
from soap4r-ml
> > module XSD
> > class NS
> > class Assigner
> > Known_namespaces={
> > 'http://schemas.xmlsoap.org/ws/2002/12/secext/' => 'wsse'
> > }
> >
> > def initialize
> > @count = 0
> > end
> >
> > def assign(ns)
> > known_tag=Known_namespaces[ns]
> > return known_tag unless known_tag.nil?
> > @count += 1
> > "n#{@count}"
> > end
> > end
> > end
> > end
Good. SOAP::NS (derived from XSD::NS) should be added then soap
implementation can use it. Does somebody know what's the 'known
namespace' in WS world?