REQUEST A DEMO

Tag: Web Services

Workday Integration via web services: Dealing with deep object graphs

July 2, 2014 We're wrapping up a Workday integration via their web services. The objects we're dealing with in the web services calls to Workday contain a lot of information in very deep object graphs that are not necessarily initialized. I learned a couple of new tricks this time around with web services that makes the consumption and related testing of these objects relatively painless. To be clear, you'll likely run into this scenario working with any web services in .NET. I just happened to be working with Workday web services when I decided to write this post. The first thing I need to do is get the Workday web services response object mapped to a type for all of my code to consume. I don't have any interest at all in writing a ton of left / right code that looks like this: public…

Getting Started with Workday Web Services using C#

June 13, 2014 Dovetail is proud to be Workday Certified. To learn more about this partnership and how working with a Workday Certified Partner benefits your HR practice and your organization, click here. request a demo   Connecting to Workday’s web services shouldn’t be a trivial event. At least at first one would feel this way. There are a few areas one needs to know in order to get this working correctly as well as achieving authentication on the Workday side. By now you should have been given your tenant ID from Workday, this will be needed later. To get started we need to create the web service client. Using Visual Studio there are two ways this can be done svcutil or right click the project and select Add Service Reference, I prefer to use svcutil as I felt it created a cleaner codebase than…