summaryrefslogtreecommitdiff
path: root/lib/wsdl/operation.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/wsdl/operation.rb')
-rw-r--r--lib/wsdl/operation.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/wsdl/operation.rb b/lib/wsdl/operation.rb
index be28446d34..3c1f66859f 100644
--- a/lib/wsdl/operation.rb
+++ b/lib/wsdl/operation.rb
@@ -95,11 +95,11 @@ class Operation < Info
def parse_attr(attr, value)
case attr
when NameAttrName
- @name = XSD::QName.new(targetnamespace, value)
+ @name = XSD::QName.new(targetnamespace, value.source)
when TypeAttrName
@type = value
when ParameterOrderAttrName
- @parameter_order = value.split(/\s+/)
+ @parameter_order = value.source.split(/\s+/)
else
nil
end