Systems | Development | Analytics | API | Testing

How to Turn Any SOAP Web Service into a REST API

There are two types of remote web services: REST APIs and SOAP APIs If you want to wrap a SOAP API and make it easier to work with through the use of REST endpoints, this simple tutorial will enable you to achieve that goal. With this process, you'll be able to make a request with JSON to the API and receive a response in JSON instead of a long-winded XML format.

WSO2Con 2024: A Recap

Highlights from WSO2's 2024 global user conference. The energy from WSO2Con 2024 is still electric. Over 350 attendees from around the world joined us at the Seminole Hard Rock Hotel & Casino in Hollywood, Florida, for three days of learning, inspiration, and connection. This year's theme, "platformless," took center stage. We explored how it empowers businesses to streamline development and focus on user-centric applications.

The Essential Guide to Understanding Every API Type

APIs, or application programming interfaces, allow different software systems to communicate. But different types of APIs exist. Each type serves a different purpose. And each type has its own pros, cons, and use cases. This article breaks down the main API categories—open, partner, internal, and composite. We also discuss the types of APIs based on the protocols they use. At the end of this article, you can confidently choose the right one for your needs.

Low Code Integration Tooling | WSO2Con USA 2024

We're thrilled to unveil the brand-new Micro Integrator extension for VSCode, crafted to revolutionize the development experience within the WSO2 Micro Integrator ecosystem. Explore the innovative features seamlessly integrated into this extension and discover how it can elevate your Micro Integrator development process. Join us as we delve into the boundless possibilities!

FI Transformation: T. Rowe Price's & State Street's Automation Journeys

Discover how Appian’s process automation platform has transformed technology procurement and legal departments, all aimed at catalyzing transformation within the organization. Our expert panel will delve into the adoption journey and share invaluable best practices for maximizing value across teams.

How to Fix the Array Index Out Of Bounds Exception in Java

The ArrayIndexOutOfBoundsException is a runtime exception in Java that occurs when an array is accessed with an illegal index. The index is either negative or greater than or equal to the size of the array. Let’s put that in simpler terms with an analogy. Imagine you have a row of five boxes lined up in front of you. Each box has a number on it. If you want to put a toy in one of these boxes, you have to say which box number you're putting it in. For example, "Put this toy in box number 2.".