summaryrefslogtreecommitdiff
path: root/lib/wsdl/soap/operation.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/wsdl/soap/operation.rb')
-rw-r--r--lib/wsdl/soap/operation.rb9
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/wsdl/soap/operation.rb b/lib/wsdl/soap/operation.rb
index bb49f2099c..51bb2e9403 100644
--- a/lib/wsdl/soap/operation.rb
+++ b/lib/wsdl/soap/operation.rb
@@ -50,13 +50,14 @@ class Operation < Info
def parse_attr(attr, value)
case attr
when StyleAttrName
- if ["document", "rpc"].include?(value)
- @style = value.intern
+ if ["document", "rpc"].include?(value.source)
+ @style = value.source.intern
else
- raise AttributeConstraintError.new("Unexpected value #{ value }.")
+ raise Parser::AttributeConstraintError.new(
+ "Unexpected value #{ value }.")
end
when SOAPActionAttrName
- @soapaction = value
+ @soapaction = value.source
else
nil
end