While playing with Actions, I wrote a simple .Net code that invoked the execution of an Action:
1 2 3 4 5 6 7 8 |
slick_CustomActionsTestRequest request = new slick_CustomActionsTestRequest() { BoolInArgument = true, DateTimeInArgument = DateTime.Now, DecimalInArgument = decimal.Zero }; slick_CustomActionsTestResponse response = service.Execute(request) as slick_CustomActionsTestResponse; |
During testing, I got a really weird and unclear error – “Object reference not set to an instance of an object.”: