Sophie

Sophie

distrib > Mandriva > 2006.0 > x86_64 > by-pkgid > 4fb2bf23211d5f27ae943c283575a23a > files > 251

ruby-doc-1.8.2-7.5.20060mdk.x86_64.rpm

require 'soap/mapping'

SampleStructServiceNamespace = 'http://tempuri.org/sampleStructService'

class SampleStruct; include SOAP::Marshallable
  attr_accessor :sampleArray
  attr_accessor :date

  def initialize
    @sampleArray = SampleArray[ "cyclic", self ]
    @date = DateTime.now
  end

  def wrap( rhs )
    @sampleArray = SampleArray[ "wrap", rhs.dup ]
    @date = DateTime.now
    self
  end
end

class SampleArray < Array; include SOAP::Marshallable
end