We're in the process of developing our first model using SAS, and we know we'll want to score it via a web service, presumably done RESTfully, utilizing json for the calls. Another team will be consuming the webservice using clients developed in C#. They were asking if we could generate a Swagger contract based on our eventual web service. Thus I was wondering if anyone else has implemented C# clients of RESTful services with lots of (100 - 200'ish) parameters involved. Reason for asking: for instance, a C# client can target a SOAP/XML web service, and during development in Visual Studio, it's pretty much "right-click, point at the URL", and it generates base classes automatically, which is pretty handy to say the least. We'd like to acheive the same sort of easy implementation with our SAS REST service. Swagger preferred, but any comments appreciated.
... View more