Systems | Development | Analytics | API | Testing

Latest posts

InsightSoftware: Connecting Your Data to Gain Collaborative Budgeting and Planning in 2022

Does the fear of a complex, risky planning data integration project hold you back and leave you tied to your current, spreadsheet-based planning models? With the Bizview interface for Oracle EBS, complications that arise from these "improvements" are solved, so your planning, budgeting, and forecasting process improvements are just that, improvements.

Kong: API Gateway vs. Service Mesh

As service mesh technology has emerged, the industry has often failed to recognize how this pattern played with the API gateway pattern. It's been commonly communicated that API gateways are for north-south traffic and service meshes are for east-west traffic. This is not accurate, and if anything, it underlines a fundamental misunderstanding of both patterns. In this webinar, Kong Field CTO Melissa van der Hecht and Kong Senior Solutions Engineer Ned Harris illustrate the differences between API gateways and service mesh - and when to use one or the other in a pragmatic and objective way.

The 4 main factors to consider as part of your test automation strategy

We recently talked to Angie Jones in a podcast episode dedicated to best practices in software testing. In this article, drawing on our previous discussion, we’ll share her thoughts about the main factors to consider to build a comprehensive test automation strategy.

How to Resolve the NoSuchFieldError in Java

The NoSuchFieldError is an error in Java that occurs when a specified field does not exist. It is thrown when an application attempts to access or modify a field of an object or a static field of a class but the object or class no longer contains that field. The NoSuchFieldError only occurs during runtime if the definition of a class has changed incompatibly. Since it is thrown at runtime, it does not need to be declared in the throws clause of a method or constructor.