Welcome to the "trac"-ing site of soap4r!
[soap4r] [httpclient] [openpgp4u] [pkcs1] [logger] [csv] [vtr]

Changeset 1991

Show
Ignore:
Timestamp:
10/01/07 20:27:03 (1 year ago)
Author:
nahi
Message:
  • parsing empty element for enumeration type caused NameError?. closes #440.
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/1_5/lib/soap/mapping/literalregistry.rb

    r1982 r1991  
    244244    if obj_class == ::String 
    245245      obj = node.text 
    246     elsif obj_class < ::String 
     246    elsif obj_class < ::String and node.respond_to?(:text) 
    247247      obj = obj_class.new(node.text) 
    248248    else