SOAP::EncodingStyle::ASPDotNetHandler (Class)

In: soap/encodingstyle/aspDotNetHandler.rb
Parent: Handler

Constants

Namespace = 'http://tempuri.org/ASP.NET'

Public Class methods

[Source]

# File soap/encodingstyle/aspDotNetHandler.rb, line 20
  def initialize(charset = nil)
    super(charset)
    @textbuf = ''
    @decode_typemap = nil
  end

Public Instance methods

[Source]

# File soap/encodingstyle/aspDotNetHandler.rb, line 154
  def decode_epilogue
  end

[Source]

# File soap/encodingstyle/aspDotNetHandler.rb, line 157
  def decode_parent(parent, node)
    case parent.node
    when SOAPUnknown
      newparent = parent.node.as_struct
      node.parent = newparent
      parent.replace_node(newparent)
      decode_parent(parent, node)

    when SOAPStruct
      data = parent.node[node.elename.name]
      case data
      when nil
        parent.node.add(node.elename.name, node)
      when SOAPArray
        name, type_ns = node.elename.name, node.type.namespace
        data.add(node)
        node.elename, node.type.namespace = name, type_ns
      else
        parent.node[node.elename.name] = SOAPArray.new
        name, type_ns = data.elename.name, data.type.namespace
        parent.node[node.elename.name].add(data)
        data.elename.name, data.type.namespace = name, type_ns
        name, type_ns = node.elename.name, node.type.namespace
        parent.node[node.elename.name].add(node)
        node.elename.name, node.type.namespace = name, type_ns
      end

    when SOAPArray
      if node.position
        parent.node[*(decode_arypos(node.position))] = node
        parent.node.sparse = true
      else
        parent.node.add(node)
      end

    when SOAPBasetype
      raise EncodingStyleError.new("SOAP base type must not have a child.")

    else
      # SOAPUnknown does not have parent.

      # raise EncodingStyleError.new("Illegal parent: #{ parent }.")

    end
  end

[Source]

# File soap/encodingstyle/aspDotNetHandler.rb, line 151
  def decode_prologue
  end

[Source]

# File soap/encodingstyle/aspDotNetHandler.rb, line 121
  def decode_tag(ns, elename, attrs, parent)
    # ToDo: check if @textbuf is empty...

    @textbuf = ''
    o = SOAPUnknown.new(self, elename)
    o.parent = parent
    o
  end

[Source]

# File soap/encodingstyle/aspDotNetHandler.rb, line 129
  def decode_tag_end(ns, node)
    o = node.node
    if o.is_a?(SOAPUnknown)
      newnode = o.as_string
#       if /\A\s*\z/ =~ @textbuf

#         o.as_struct

#       else

#         o.as_string

#       end

      node.replace_node(newnode)
      o = node.node
    end

    decode_textbuf(o)
    @textbuf = ''
  end

[Source]

# File soap/encodingstyle/aspDotNetHandler.rb, line 146
  def decode_text(ns, text)
    # @textbuf is set at decode_tag_end.

    @textbuf << text
  end

encode interface.

[Source]

# File soap/encodingstyle/aspDotNetHandler.rb, line 30
  def encode_data(generator, ns, qualified, data, parent)
    attrs = {}
    name = if qualified and data.elename.namespace
        SOAPGenerator.assign_ns(attrs, ns, data.elename.namespace)
        ns.name(data.elename)
      else
        data.elename.name
      end

    case data
    when SOAPRawString
      generator.encode_tag(name, attrs)
      generator.encode_rawstring(data.to_s)
    when XSD::XSDString
      generator.encode_tag(name, attrs)
      generator.encode_string(@charset ? XSD::Charset.encoding_to_xml(data.to_s, @charset) : data.to_s)
    when XSD::XSDAnySimpleType
      generator.encode_tag(name, attrs)
      generator.encode_string(data.to_s)
    when SOAPStruct
      generator.encode_tag(name, attrs)
      data.each do |key, value|
        if !value.elename.namespace
          value.elename.namespace = data.elename.namespace 
        end
        yield(value, true)
      end
    when SOAPArray
      generator.encode_tag(name, attrs)
      data.traverse do |child, *rank|
        data.position = nil
        yield(child, true)
      end
    else
      raise EncodingStyleError.new("Unknown object:#{ data } in this encodingSt
yle.")
    end
  end

[Source]

# File soap/encodingstyle/aspDotNetHandler.rb, line 69
  def encode_data_end(generator, ns, qualified, data, parent)
    name = if qualified and data.elename.namespace
        ns.name(data.elename)
      else
        data.elename.name
      end
    cr = data.is_a?(SOAPCompoundtype)
    generator.encode_tag_end(name, cr)
  end

[Validate]