Invoking integration server service using basic authentication http

1. Description

In this article, we are going to create user, Group, Custom ACL, HTTP port and invoke a Flow Service from Designer and External client, wherein Integration Server uses Basic Authentication mechanism.

2. Actors

  • webMethods Administrators – who perform Administrative tasks like start / shutdown / restart of servers, deployments, etc.
  • Application Users – who wants to consume the services
  • webMethods Developers – who perform development tasks like creation of services etc.

3. Before you begin

Ensure that Integration Server is up and running.

4. Invoking Integration Server Service using Basic Authentication

Invoking Integration Server service using basic authentication for clients or application user involves the following steps:

  1. Create associated user group and ACLs
  2. Create a HTTP port
  3. Invoke the service using a client
  4. Test the service

4.1 Create Associated User Group and ACL’s

  1. Login to the Integration Server and go to Security->ACL’s and click on Add and Remove ACL’s.

  1. Provide ACL Name and click Create ACLs. ACL will be created.

  1. Now go to Security->User Management and click on Add and Remove Groups.

  1. Provide a group name and click on Create Group. It will be created.

  1. Now go to Security->User Management and click on Add and Remove Users.

  1. Provide a Username and Password and click on Create User. It will be created.

  1. Now Under User Management select your Group and Click on Arrow towards left button to bring the user into the group.

  1. Note User will be added to the Group, also select the user from the list. You will notice that User belongs to the group. Click on Save Changes.

  1. Now go to Security->ACL’s, select your ACL, click on Add under Add Group and select your group. After adding group, associated users with ACL will also appear. Click on Save changes.
    ACL will be updated.

  1. Now you can use this ACL to grant Permissions for Integration Server Assets.

4.2 Create HTTP Port

  1. Launch SoftwareAG Designer and go to Windows > Perspective > Open Perspective > Other .

  1. Select Service Development.

  1. Create a Package and a folder inside the package.
  2. Create a Flow Service that takes inputs and provides an output Or use the attached “Accounts” package and import it to Integration Server.
  3. Login to Integration Server Administrator and go to Security > Ports .
  4. Click Add Port.

  1. Select HTTP port and click Submit .

  1. In the Edit HTTP Ports page, select the following values for these fields:
  • Enable - Yes
  • Port:
  • Alias:
  • Package Name - Accounts
  • Client Authentication - Username/Password
  1. Click Save Changes .

  1. In Ports page, click Deny+ link for the new port.

  1. Go to Security > Ports > Edit Access Mode, select the new port.
  2. Click Add Folders and Services to Allow List.

  1. Select Accounts ACL and select and append the flow service that you want to invoke.
    Example: Accounts.services: additionOfInt.
  2. Click Save additions.

  1. Switch to Designer, right click the flow service and select Properties .

4.3 Invoke the service using pub.client:http and Postman

1. Now select AccountsACL or Default (inherited) in the Execute ACL field. 2. Select When Top- level service only as the enforcing mechanism.

  1. To test the service from Designer, select pub.client:http under the WmPublic package.
  2. Right click the service and select Run as > Run Service .

  1. In the Enter Input for ‘http’ screen, enter the following details:
Url http://< Integration Server Host >:< Integration Server Port >/invoke/< ServiceName >?< Input Parametr1 >=1&< Input Parametr2 >=2.
For example: http://localhost:5556/invoke/Accounts.services:additionOfInt?num1=1&num2=2
Note: If you do not provide input data in url, then specify the same under data->args
Method Post
Authentication Basic

  1. Click OK to execute the service.

4.4 Test service from external client like Postman

1. Launch Postman and create an HTTP Post call. 2. Provide the HTTP url as:

http://< Integration Server Host >:< Integration Server Post >/invoke/< ServiceName >

For example, http://localhost:5556/invoke/Accounts.services:additionOfInt

add the input parameter’s it will add the data in the url automatically.

  1. Go to Authorization Section and select Basic as the Authentication Mechanism.
  2. Specify the username and password and click Send.
    Service gets executed.
  3. Click on the message body to see the response.

  1. References

Refer the Integration Server Administrators Guide for more details.