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

root/trunk/test/wsdl/overload/expectedServant.rb

Revision 2003, 0.9 kB (checked in by nahi, 1 year ago)
  • wsdl2ruby.rb did not generate proper definitions for overloaded method in WSDL. (#446)
  • unnecessary 's' option for CRLF trimming regexp. Thanks Nobu.
Line 
1 require 'default.rb'
2
3 class OverloadServicePortType
4   # SYNOPSIS
5   #   methodAlpha(in0, in1, in2)
6   #
7   # ARGS
8   #   in0             C_String - {http://www.w3.org/2001/XMLSchema}string
9   #   in1             C_String - {http://www.w3.org/2001/XMLSchema}string
10   #   in2             C_String - {http://www.w3.org/2001/XMLSchema}string
11   #
12   # RETURNS
13   #   methodAlphaReturn Long - {http://www.w3.org/2001/XMLSchema}long
14   #
15   def methodAlpha(in0, in1, in2)
16     p [in0, in1, in2]
17     raise NotImplementedError.new
18   end
19
20   # SYNOPSIS
21   #   methodAlpha_2(in0, in1)
22   #
23   # ARGS
24   #   in0             C_String - {http://www.w3.org/2001/XMLSchema}string
25   #   in1             C_String - {http://www.w3.org/2001/XMLSchema}string
26   #
27   # RETURNS
28   #   methodAlphaReturn Long - {http://www.w3.org/2001/XMLSchema}long
29   #
30   def methodAlpha_2(in0, in1)
31     p [in0, in1]
32     raise NotImplementedError.new
33   end
34 end
35
Note: See TracBrowser for help on using the browser.