2014-03-31

ServiceNow JSONv2 vs "old" JSON Web Service interface

ServiceNow's JSONv2 WS interface vs the old JSON WS interface

As part of the Dublin release, ServiceNow is rolling out a brand spanking new JSON web service interface. Now how much is different? Turns out, "not so much", when it comes to interface but a lot of promises have been made regarding performance. For a three part immersion into the old JSON interface (Calgary release and older) check my old posts. Part 1 Part 2 Part 3


So what has changed? See below.

2013-08-18

Filling ServiceNow survey from external web page with MuleESB

The ServiceNow platform provides an easy and powerful tools for defining, requesting users to answer, and answering the surveys.

Some time ago a client of ours had an issue. They wanted to provide their end users a way to answer a survey anonymously, but due to Single Sign On setup (and network) the ServiceNow platform would always know who the survey taker was.

In this particular case the client decided to setup an external web server hosting a web page which would POST the survey data to a servlet which in turn would invoke ServiceNow's SOAP web services.

Since I currently have a thing going on with MuleESB, I decided to see how it could be used to solve the dilemma. Nothing fancy, just the bare bones implementation. See below.

2013-05-09

Creating entries to AD (or other LDAP server) from ServiceNow using MuleESB

So you would like to extend the capabilities of the out of the box "New Employee Hire" Order Guide, or your own catalog item's capabilities, to allow you to automatically create users to your AD based on an order from Service Catalog?

2013-04-28

ServiceNow SOAP interface via MuleESB proxy

In this blog post I will briefly entertain the idea of using MuleESB as a web service proxy between an unknown system and ServiceNow. Limiting the scope to scenario where System X is the party initiating the web service calls. If you need it to work the other way, just reverse the examples. You will have to setup inbound https endpoint which requires a bit more work. Like generating needed certificates and keys.

2013-04-22

ServiceNow’s JSON Web Service interface 3 / 3

Data modification functionality

In the first instalment of this blog series I briefly covered the JSON notation, compared it to SOAP and wrote about the overview of the ServiceNow platform’s JSON Web Service Interface.

In the second post I wrote about the JSON Web Service URL composition, action parameters and the Data retrieval functionality

In this blog post I will be covering the data modification functionality of the JSON Web Service interface.

2013-04-15

ServiceNow’s JSON Web Service interface 2 / 3

Data retrieval functionality

In the previous instalment of this blog series I briefly covered the JSON notation, compared it to SOAP and wrote about the overview of the ServiceNow platform’s JSON Web Service Interface.

In this blog post I will be covering the data retrieval functionality of the JSON Web Service interface. Namely the “get”, “getKeys” and “getRecords” actions. I will also cover the “action parameters” used to alter the behaviour of the JSON Web Service.

2013-03-25

ServiceNow’s JSON Web Service interface 1 / 3

Foreword

The ServiceNow platform provides a number of integration functionalities which can be used to glue a ServiceNow instance and any 3rd party software together. One of the less known, and certainly less used, integration interfaces provided by the ServiceNow platform is the JSON Web Service interface.

The reason for the low adoption rate can probably be attributed to popularity of the SOAP over HTTP in the enterprise software industry and to the fact that the “JSON Web Service” plugin is not active by default on Out-of-the-Box ServiceNow instances.