Info
may be nil if not defined
# File lib/wsdl/portType.rb, line 31 def find_binding root.bindings.find { |item| item.type == @name } end
# File lib/wsdl/portType.rb, line 35 def locations binding = find_binding return [] if binding.nil? bind_name = binding.name result = [] root.services.each do |service| service.ports.each do |port| if port.binding == bind_name result << port.soap_address.location if port.soap_address end end end result end
# File lib/wsdl/portType.rb, line 64 def parse_attr(attr, value) case attr when NameAttrName @name = XSD::QName.new(targetnamespace, value.source) else nil end end
Generated with the Darkfish Rdoc Generator 2.