Skip to content

Building Web Services on AWS: Exploring SOAP, REST, and More for Scalable and Robust Applications

Hey there! Ready to dive into the world of building web services on (Amazon Web Services) AWS? This article is your comprehensive guide to understanding why web services are crucial in modern software development and how AWS simplifies the process.

One of the biggest challenges I have faced over the years in looking at different customer solutions is the communication between services, components, layers, and external systems. The usual pattern is a complex system that requires messages send in synchronous or asynchronous ways over different services, using a clear contract that both, the sender and the receiver can fulfill in a secure and effective way. Sounds simple, but not an easy task when the scale and complexity increase.

In our previous post Exploring Web Services: Unraveling the SOAP and REST Protocols, we dived into the foundational understanding of Web Services, usages, and types. But in this blog post, we will explore the world of web services on AWS, covering various types of services and technologies available for building powerful and scalable applications. We will navigate into the details of each AWS service, providing sample code and detailed explanations for their implementation. So, let’s embark on this journey and discover the art of building web services on AWS.

With AWS, you get a reliable and scalable infrastructure to handle varying levels of traffic. Their specialized services for web development make it a breeze to focus on your business logic while leaving the infrastructure management to AWS. Plus, seamless integration between various AWS services opens up a world of comprehensive and interconnected solutions. And don’t worry about security, monitoring, or auto-scaling – AWS has got you covered!

So get ready, and let’s embark on this exciting adventure together – discovering the art of building web services on AWS!

Types of Web Services on AWS

AWS provides a wide range of services and technologies that can be utilized to build different types of web services. Let’s explore some of the popular options.

RESTful Web Services

REST (Representational State Transfer) is an architectural style that emphasizes simplicity, scalability, and the use of standard HTTP methods for communication. AWS offers Amazon API Gateway, a fully managed service, to build, deploy, and manage RESTful APIs. With API Gateway, you can create robust APIs that integrate seamlessly with other AWS services and external systems.

Serverless Web Services

Serverless architecture has gained significant popularity in recent years. AWS Lambda is a powerful service that allows you to run your code without provisioning or managing servers. It enables you to build serverless web services with event-driven architectures. One of the main benefits of using Lambda is its ability to automatically scale based on the incoming workload. You can trigger Lambda functions based on various events, such as API Gateway requests or changes in AWS services. This makes it an ideal choice for building serverless web services that are highly scalable and cost-effective.

Real-time Web Services

If your web service requires real-time communication and data streaming, AWS offers Amazon API Gateway WebSocket APIs and Amazon Kinesis. Amazon API Gateway WebSocket APIs allow you to establish persistent connections for bidirectional communication between clients and servers. This is particularly useful for applications that require real-time updates or chat functionality. On the other hand, Amazon Kinesis enables the processing of real-time streaming data at a massive scale. It can be used for applications that require real-time analytics or data processing, such as clickstream analysis or IoT data ingestion.

SOAP Web Services

In addition to RESTful web services, AWS also provides support for SOAP (Simple Object Access Protocol) web services. SOAP follows a strict set of rules and standards for message formatting and communication. To implement SOAP web services on AWS, you can leverage AWS Elastic Beanstalk. AWS Elastic Beanstalk simplifies the deployment and management of applications. It provides a platform for running a wide range of applications, including Java, .NET, PHP, and more. With Elastic Beanstalk, you can easily package and deploy your SOAP-based web services on AWS.

AWS Services for Web Service Creation

Now, let’s dive into the individual AWS services available for building web services. We will explore each service and provide sample code with detailed explanations of their technical implementations.

Amazon API Gateway

Amazon API Gateway is a fully managed service that makes it easy to create, publish, and manage APIs. It acts as a front door for your web services, providing features like request validation, authorization, caching, and rate limiting.

To create a RESTful API using API Gateway, you can use a serverless framework like AWS Serverless Application Model (SAM) or AWS CloudFormation. Here’s an example of a SAM template for creating an API Gateway REST API:

AWSTemplateFormatVersion: '2010-09-09'
Transform: AWS::Serverless-3.0.0

Resources:
  MyApi:
    Type: AWS::Serverless::Api
    Properties:
      StageName: prod
      DefinitionBody:
        swagger: "2.0"
        info:
          title: My API
          version: 1.0.0
        paths:
          /greeting:
            get:
              responses:
                '200':
                  description: OK
                  schema:
                    type: string
                  examples:
                    application/json: Hello, World!

In this example, we define a REST API with a single GET method for the /greeting endpoint. The API responds with a “Hello, World!” message in JSON format.

AWS Lambda

AWS Lambda allows you to run your code without provisioning or managing servers. It can be used to create serverless web services with event-driven architectures. Here’s an example of a Lambda function that handles an API Gateway request using Java:

import com.amazonaws.services.lambda.runtime.Context;
import com.amazonaws.services.lambda.runtime.RequestHandler;
import com.amazonaws.services.lambda.runtime.events.APIGatewayProxyRequestEvent;
import com.amazonaws.services.lambda.runtime.events.APIGatewayProxyResponseEvent;

public class GreetingHandler implements RequestHandler<APIGatewayProxyRequestEvent, APIGatewayProxyResponseEvent> {

    public APIGatewayProxyResponseEvent handleRequest(APIGatewayProxyRequestEvent event, Context context) {
        APIGatewayProxyResponseEvent response = new APIGatewayProxyResponseEvent();
        response.setStatusCode(200);
        response.setBody("Hello, World!");
        return response;
    }
}

In this code, the Lambda function is triggered by an API Gateway request. It responds with a simple “Hello, World!” message. You can deploy this Lambda function using the AWS Management Console, AWS CLI, or other deployment tools.

Amazon EC2

Amazon EC2 (Elastic Compute Cloud) is a web service that provides resizable compute capacity in the cloud. It allows you to create and manage virtual servers, known as instances, on the AWS cloud. EC2 instances can be used to host your web services, providing the flexibility to choose the operating system, networking configuration, and storage options. When using Amazon EC2 for web service development, consider the following steps:

First, choose the appropriate EC2 instance type based on your application’s requirements, such as CPU, memory, and storage capacity. Next, launch an EC2 instance and select the desired operating system and configuration options. Once the instance is running, you can connect to it via SSH and install any necessary software and dependencies.

To deploy your web service application on the EC2 instance, you can use popular frameworks like Express.js or Flask, depending on your preferred programming language. For example, in a Node.js environment using Express.js, you can create an API endpoint that responds with a greeting message:

const express = require('express');
const app = express();

app.get('/greeting', (req, res) => {
  res.send('Hello, World!');
});

app.listen(3000, () => {
  console.log('Web service running on port 3000');
});


In this example, we use Express.js to define a simple API endpoint (“/greeting”) that sends a “Hello, World!” message as the response.

AWS Elastic Beanstalk

AWS Elastic Beanstalk is a fully managed service that simplifies the deployment and management of applications, including SOAP web services. It automatically handles the underlying infrastructure and enables developers to focus on writing code. With Elastic Beanstalk, you can create a SOAP-based web service by providing your application code and a configuration file. Elastic Beanstalk takes care of provisioning the necessary resources and scaling the application based on demand.

Step-by-step guide on deploying a Java web service using Elastic Beanstalk

  1. Package your Java web service into a JAR file or a WAR file. Ensure that your application adheres to the required structure and dependencies.
  2. Create an Elastic Beanstalk environment. You can use the AWS Management Console or the AWS CLI to create an environment and specify the desired configuration, such as the platform, environment size, and availability zone.
  3. Upload your application package to Elastic Beanstalk. You can do this through the AWS Management Console or use the AWS CLI command aws elasticbeanstalk create-application-version to upload your package.
  4. Deploy your application to the Elastic Beanstalk environment. You can initiate the deployment through the AWS Management Console or use the AWS CLI command aws elasticbeanstalk create-environment to start the deployment process.
  5. Monitor the health and performance of your Java web service using the Elastic Beanstalk console or integrated monitoring tools like Amazon CloudWatch.

Here’s an example of how to deploy a Java-based SOAP web service using AWS Elastic Beanstalk:

// Example code for a Java-based SOAP web service deployment using AWS Elastic Beanstalk

public class GreetingService {
    public String getGreeting(String name) {
        return "Hello, " + name + "!";
    }
}

// Deployment configuration file (e.g., .ebextensions/soap-service.config)
option_settings:
  - namespace: aws:elasticbeanstalk:container:tomcat:jvmoptions
    option_name: JVM Options
    value: -Djavax.xml.soap.MessageFactory=com.sun.xml.internal.messaging.saaj.soap.ver1_1.SOAPMessageFactory1_1Impl

In this code, we have the same Java-based SOAP web service implementation. Additionally, we include a deployment configuration file that specifies a JVM option for the SOAP message factory. This ensures compatibility with the SOAP 1.1 protocol.

By leveraging Amazon EC2, AWS Elastic Beanstalk, and other AWS services, you have the flexibility to choose between managing virtual servers directly or using a fully managed service for deployment and scalability.

Massive Storage Services for your Web Services

Within AWS there are several storage options that can provide optimal integration with your web services. The final choice of storage will depend on the design, technology and requirements of your application, however, I would like to introduce 2 alternatives that are commonly used together with web services: Amazon DynamoDB and Amazon S3.

Amazon DynamoDB

Amazon DynamoDB is a fully managed NoSQL database service that provides fast and predictable performance. It can be used to store and retrieve data for your web services. Here’s an example of using DynamoDB to store and retrieve user information:

// Example code for using Amazon DynamoDB

const AWS = require('aws-sdk');
const dynamodb = new AWS.DynamoDB();

// Store user information in DynamoDB
const createUser = async (userId, name, email) => {
  const params = {
    TableName: 'Users',
    Item: {
      UserId: { S: userId },
      Name: { S: name },
      Email: { S: email },
    },
  };
  await dynamodb.putItem(params).promise();
};

// Retrieve user information from DynamoDB
const getUser = async (userId) => {
  const params = {
    TableName: 'Users',
    Key: {
      UserId: { S: userId },
    },
  };
  const result = await dynamodb.getItem(params).promise();
  return result.Item;
};

// Usage example
createUser('123', 'John Doe', 'john@example.com');
const user = getUser('123');
console.log(user);

In this code, we use the AWS SDK to interact with DynamoDB. The createUser function stores user information and the getUser function retrieves the user data based on the provided user ID. You can execute this code in a Node.js environment with the AWS SDK installed.

Now let’s take a look at what the previous example of storing and retrieving user information would look like using Java.

import com.amazonaws.services.dynamodbv2.AmazonDynamoDB;
import com.amazonaws.services.dynamodbv2.AmazonDynamoDBClientBuilder;
import com.amazonaws.services.dynamodbv2.document.DynamoDB;
import com.amazonaws.services.dynamodbv2.document.Item;
import com.amazonaws.services.dynamodbv2.document.Table;

public class UserHandler {

    private static final String TABLE_NAME = "Users";

    private final AmazonDynamoDB dynamoDBClient;
    private final DynamoDB dynamoDB;
    private final Table table;

    public UserHandler() {
        dynamoDBClient = AmazonDynamoDBClientBuilder.defaultClient();
        dynamoDB = new DynamoDB(dynamoDBClient);
        table = dynamoDB.getTable(TABLE_NAME);
    }

    public void createUser(String userId, String name, String email) {
        Item item = new Item()
                .withPrimaryKey("UserId", userId)
                .withString("Name", name)
                .withString("Email", email);

        table.putItem(item);
    }

    public Item getUser(String userId) {
        return table.getItem("UserId", userId);
    }

    public static void main(String[] args) {
        UserHandler userHandler = new UserHandler();

        // Create a user
        userHandler.createUser("123", "John Doe", "john@example.com");

        // Retrieve user information
        Item user = userHandler.getUser("123");
        System.out.println(user.toJSON());
    }
}

In this example, we use the AWS SDK for Java to interact with DynamoDB. The UserHandler class provides methods for creating and retrieving user information. The createUser method stores user information in DynamoDB, and the getUser method retrieves the user data based on the provided user ID. The example demonstrates how to create a user with the ID “123” and retrieve their information from DynamoDB.

Amazon S3 for Web Service Development

Amazon S3 (Simple Storage Service) is a highly scalable and reliable object storage service provided by AWS. While primarily used for storing and retrieving data, it can also play a role in web service development. Here’s how you can leverage Amazon S3 for web service development:

Static Content Hosting: Amazon S3 can serve as a reliable platform for hosting static content, such as HTML, CSS, JavaScript, and image files, for your web services. By storing your web assets in Amazon S3, you can benefit from its high availability and low latency. Simply upload your files to an S3 bucket, configure the appropriate permissions, and use the generated S3 URLs to serve your content. This allows you to offload the content delivery aspect of your web service and focus on its dynamic functionalities.

Data Storage and Retrieval: Amazon S3 can be utilized as a storage repository for data used by your web services. Whether it’s user-generated content, media files, or any other form of data, you can store and retrieve it efficiently using the Amazon S3 APIs. With its durable and scalable architecture, Amazon S3 ensures the reliable storage and availability of your data. Integration with other AWS services, such as Lambda or EC2, allows you to seamlessly incorporate S3 data into your web service workflows.

How to use Amazon S3 to deploy Web Services

Set up the S3 Bucket:

  • Create an S3 bucket in the AWS Management Console and enable static website hosting.
  • Upload your HTML, CSS, and JavaScript files to the bucket.

Create an HTML file:

  • Create an HTML file, for example, “index.html”, in your local development environment.
  • Add the following code to the HTML file:
<!DOCTYPE html>
<html>
<head>
  <title>My Web Service</title>
</head>
<body>
  <h1>Welcome to My Web Service</h1>
  <button id="getDataButton">Get Data</button>
  <p id="dataDisplay"></p>

  <script src="script.js"></script>
</body>
</html>

Create a JavaScript file:

  • Create a JavaScript file, for example, “script.js”, in your local development environment.
  • Add the following code to the JavaScript file:
document.addEventListener('DOMContentLoaded', () => {
  const getDataButton = document.getElementById('getDataButton');
  const dataDisplay = document.getElementById('dataDisplay');

  getDataButton.addEventListener('click', () => {
    // Perform a GET request to retrieve data from your web service
    fetch('https://your-s3-bucket-url/data')
      .then(response => response.json())
      .then(data => {
        // Display the retrieved data on the web page
        dataDisplay.textContent = `Data: ${data}`;
      })
      .catch(error => {
        console.error('Error:', error);
      });
  });
});

Upload the files to the S3 bucket:

  • Upload the “index.html” and “script.js” files to your S3 bucket using the AWS Management Console or the AWS CLI.

Access the web service:

  • Once the files are uploaded, you can access your web service by navigating to the URL of your S3 bucket.
  • The HTML file will be served, and you’ll see the “Welcome to My Web Service” heading and a button labeled “Get Data”.
  • When you click the “Get Data” button, a GET request will be sent to the specified URL (“/data” in this example) to retrieve data from your web service. The retrieved data will be displayed below the button.

Remember to replace “your-s3-bucket-url” with the actual URL of your S3 bucket hosting the web service files.

This example demonstrates a basic implementation of a web service deployed on Amazon S3 using JavaScript. You can extend the functionality by adding more API endpoints, performing different types of requests (POST, PUT, DELETE), and integrating with other AWS services as needed.

Last thoughts

In summary, building web services on AWS for web service development offers significant advantages in modern software development. With a wide range of services and technologies, AWS simplifies the design, deployment, and scalability of web services. From RESTful APIs with Amazon API Gateway to serverless architectures with AWS Lambda, AWS provides powerful solutions to meet diverse requirements. Real-time communication and data streaming can be achieved using Amazon API Gateway WebSocket APIs and Amazon Kinesis. Additionally, AWS supports SOAP web services through AWS Elastic Beanstalk.

When it comes to web service creation, AWS offers a range of services. Amazon API Gateway serves as a fully managed service, providing essential features like request validation, authorization, caching, and rate limiting. AWS Lambda allows developers to build serverless web services with event-driven architectures. For data storage and retrieval, Amazon DynamoDB offers a fast and predictable NoSQL database solution.

Amazon EC2 provides a flexible option for web service hosting, allowing developers to choose the operating system, networking configuration, and storage preferences. Alternatively, AWS Elastic Beanstalk simplifies deployment and management, handling the underlying infrastructure for applications, including Java-based SOAP web services.

Lastly, Amazon S3 proves valuable for web service development, enabling the hosting of static content and efficient data storage and retrieval. By harnessing the power of AWS, developers can create robust, scalable, and reliable web services while benefiting from AWS’s comprehensive suite of services and its reliable infrastructure.

Oh but wait a minute, remember, this is synchronous communication. What if you would like to send a message and let the service do its job without waiting for a response? Keep tuned for asynchronous communication strategies!