PHP 8.2.31
Preview: param.rb Size: 1.65 KB
//proc/thread-self/root/opt/alt/ruby18/lib64/ruby/1.8/wsdl/param.rb

# WSDL4R - WSDL param definition.
# Copyright (C) 2002, 2003  NAKAMURA, Hiroshi <nahi@ruby-lang.org>.

# This program is copyrighted free software by NAKAMURA, Hiroshi.  You can
# redistribute it and/or modify it under the same terms of Ruby's license;
# either the dual license version in 2003, or any later version.


require 'wsdl/info'


module WSDL


class Param < Info
  attr_reader :message	# required
  attr_reader :name	# optional but required for fault.
  attr_reader :soapbody
  attr_reader :soapheader
  attr_reader :soapfault

  def initialize
    super
    @message = nil
    @name = nil
    @soapbody = nil
    @soapheader = []
    @soapfault = nil
  end

  def targetnamespace
    parent.targetnamespace
  end

  def find_message
    root.message(@message) or raise RuntimeError.new("#{@message} not found")
  end

  def soapbody_use
    if @soapbody
      @soapbody.use || :literal
    else
      raise RuntimeError.new("soap:body not found")
    end
  end

  def parse_element(element)
    case element
    when SOAPBodyName
      o = WSDL::SOAP::Body.new
      @soapbody = o
      o
    when SOAPHeaderName
      o = WSDL::SOAP::Header.new
      @soapheader << o
      o
    when SOAPFaultName
      o = WSDL::SOAP::Fault.new
      @soap_fault = o
      o
    when DocumentationName
      o = Documentation.new
      o
    else
      nil
    end
  end

  def parse_attr(attr, value)
    case attr
    when MessageAttrName
      if value.namespace.nil?
        value = XSD::QName.new(targetnamespace, value.source)
      end
      @message = value
    when NameAttrName
      @name = XSD::QName.new(targetnamespace, value.source)
    else
      nil
    end
  end
end


end

Directory Contents

Dirs: 2 × Files: 18

Name Size Perms Modified Actions
soap DIR
- drwxr-xr-x 2024-03-03 22:48:14
Edit Download
xmlSchema DIR
- drwxr-xr-x 2024-03-03 22:48:14
Edit Download
1.21 KB lrw-r--r-- 2007-02-12 23:01:19
Edit Download
2.30 KB lrw-r--r-- 2007-02-12 23:01:19
Edit Download
5.21 KB lrw-r--r-- 2007-02-12 23:01:19
Edit Download
577 B lrw-r--r-- 2007-02-12 23:01:19
Edit Download
1.67 KB lrw-r--r-- 2007-02-12 23:01:19
Edit Download
825 B lrw-r--r-- 2007-02-12 23:01:19
Edit Download
816 B lrw-r--r-- 2007-02-12 23:01:19
Edit Download
936 B lrw-r--r-- 2007-02-12 23:01:19
Edit Download
2.55 KB lrw-r--r-- 2007-02-12 23:01:19
Edit Download
1.95 KB lrw-r--r-- 2007-02-12 23:01:19
Edit Download
1.65 KB lrw-r--r-- 2007-02-12 23:01:19
Edit Download
3.89 KB lrw-r--r-- 2007-02-12 23:01:19
Edit Download
924 B lrw-r--r-- 2007-02-12 23:01:19
Edit Download
1.60 KB lrw-r--r-- 2007-02-12 23:01:19
Edit Download
1.39 KB lrw-r--r-- 2007-02-12 23:01:19
Edit Download
1.09 KB lrw-r--r-- 2007-02-12 23:01:19
Edit Download
728 B lrw-r--r-- 2007-02-12 23:01:19
Edit Download
525 B lrw-r--r-- 2007-02-12 23:01:19
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).