tukarambande / xmlrpcnet

Automatically exported from code.google.com/p/xmlrpcnet
0 stars 0 forks source link

Throw exception if dup method names #8

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
For example, two methods in this interface have been assigned the same
XML-RPC method name:

  interface IDupXmlRpcNames
  {
    [XmlRpcMethod("bad.Foo")]
    int Foo1(int x);
    [XmlRpcMethod("bad.Foo")]
    int Foo2(int x);
  }

Original issue reported on code.google.com by ChasC...@gmail.com on 24 Nov 2007 at 12:36

GoogleCodeExporter commented 8 years ago
Fixed in revision 12.

Original comment by ChasC...@gmail.com on 24 Nov 2007 at 12:42

GoogleCodeExporter commented 8 years ago

Original comment by ChasC...@gmail.com on 24 Nov 2007 at 12:42

GoogleCodeExporter commented 8 years ago

Original comment by ChasC...@gmail.com on 4 Dec 2007 at 8:33