Changeset 1634
- Timestamp:
- 09/23/05 23:06:42 (3 years ago)
- Files:
-
- trunk/lib/wsdl/soap/methodDefCreator.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lib/wsdl/soap/methodDefCreator.rb
r1618 r1634 32 32 @types.clear 33 33 result = "" 34 operations = @definitions.porttype(porttype).operations 35 binding = @definitions.porttype_binding(porttype) 36 operations.each do |operation| 37 op_bind = binding.operations[operation.name] 34 port = @definitions.porttype(porttype) 35 port.find_binding.operations.each do |op_bind| 36 op = op_bind.find_operation 38 37 next unless op_bind # no binding is defined 39 38 next unless op_bind.soapoperation # not a SOAP operation binding 40 39 result << ",\n" unless result.empty? 41 result << dump_method(op eration, op_bind).chomp40 result << dump_method(op, op_bind).chomp 42 41 end 43 42 return result, @types