Top Level Namespace

Defined Under Namespace

Modules: SOAP

Instance Method Summary collapse

Instance Method Details

#atsym(name) ⇒ Object



1
2
3
# File 'lib/soapex/error.rb', line 1

def atsym(name)
  ("@"+(name.to_s)).to_sym
end

#fix_case_up(name) ⇒ Object



9
10
11
12
# File 'lib/soapex/client.rb', line 9

def fix_case_up(name)
(newname = name.dup)[0] = name[0,1].upcase # upper first character
  newname
end

#needspatchObject



4
5
6
7
8
9
# File 'lib/soapex/mapping.rb', line 4

def needspatch
  SOAP::Mapping.set_attributes(a=[], :x=>10)
  a != [10]
rescue Exception => e
  true
end