Are there any resources for using C# / Visual Studio for implementing the Coupa API? - coupa

We're trying to communicate with the Coupa API using a C# WebRequest object. Are there any resources or documentation on how to format calls in the C# / Visual Studio environment?

Related

Embedding a powershell script in JAX-RS / Jersey

I'm relatively new to the JAX-RS / Jersey and I am trying to execute a powershell script in my REST Web Service but I don't want to inline my script into my Java code. Is it possible to embed a powershell script into a Jersey Restful Web Service and read it as a stream during runtime like how it is done by embedding it as a text resource in Visual Studio project? I have tried search online but I'm able to find any reference on embedding resource in JAX-RS/Jersey
Thanks in advance.

Microsoft Bing Speecg Api in Windows Form C#

Hi I am trying to use my Microsoft Bing Speech Api in my C# windows form Project. But i cannot find any examples in C# Windows form project and all the examples are available only in the WPF.
Help me how to use Microsoft Bing Speech Api in C# Windows Project
Thanks in advance
The new speech service SDK support C# .NET 4.6.1 on Windows. Is this something you are looking for?

Any open source tools to integrate ServiceNow and VSTS

I am looking for some open source or free tools to integrate Service Now and VSTS?
is there any such tools available. please suggest.
Thanks.
Integrate them through REST API:
REST API Overview for Visual Studio Team Services and Team Foundation Server
ServiceNow REST API
There are some articles about integrating them:
Integrating ServiceNow and Visual Studio Team Services using Stamplay
Visual Studio Team Services Integration

How to update generated AutoRest code, after server REST API changed?

Context
I am writing client code to access Web API REST service. I am using typed client classes by using Visual Studio 2015 "Add"/"REST API client..."
Now the serverside API changed and I would like to update my generated client code accordingly.
Question
Besides of the obvious solution of deleting all the generated classes, then starting the Visual Studio 2015 "Add"/"REST API client..." from ground zero, is there any better way to do this?

Does Visual Studio Code support language servers written in C#

I've taken a look at the VS Code documentation on creating a language server but can only see reference to a nodejs implementation. Is there SDK support for creating a language server written in C#? Ultimately this would be a DNX or Core 1.0 library.
It doesn't matter which language is being used to create a language server. as long as you are able to communicate with it from within Visual Studio Code.
A common way to establish the communication is made by using the VSCode Language Server Protocol.
You can build your language service in C#, Java, C++, Delphi or whatever language as long as you create a command line server which is able to handle that protocol.
You can see how a language server in C# is implemented when you take a look at the OmniSharp project.