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

Changeset 1935

Show
Ignore:
Timestamp:
09/06/07 11:54:52 (1 year ago)
Author:
nahi
Message:
  • Type simpleType and simpleContent was unmarshalled as a String, not as an instance of the subclass which is generated by wsdl2ruby.rb. closes #412.
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lib/soap/mapping/literalregistry.rb

    r1925 r1935  
    247247    obj = nil 
    248248    if obj_class < ::String 
    249       obj = node.text 
     249      obj = obj_class.new(node.text) 
    250250    else 
    251251      obj = Mapping.create_empty_object(obj_class)