Resolved Questions regarding a project

Anonymous

Well-known member
Joined
Sep 29, 2020
Messages
84
Programming Experience
Beginner
Hello,
I have to develop an application where i have to access service now tickets. The application should access certain types of tickets and ignore the rest. Is it possible in c# to connect to service now tickets?

Secondly, how to connect to the database that resides on AWS or any other cloud platform? We have to use APIs or we can directly connect using ado.net like we do with the database that resides locally?

Thank you.
 
As I recall, Service Now has some web services. I think they are REST-ful APIs, but they maybe still SOAP web services. That all depends on the Service Now admins for your company to open up the web services though. (sadly the company I work for refused when we asked for it for our instance.) Web services are language agnostic so you should be able to access them using C#.

For connecting to a database hosted in the cloud, it should still be the same. Just provide the IP address of the server in the cloud, instead of the machine name unless your DNS infrastructure points to the correct IP address. As an aside, exposing database naked on the Internet is typically a bad idea, and it is better to have a web service sitting in front of the database.
 
Back
Top Bottom