com.atlassian.confluence.content.render.xhtml.migration.exceptions.UnknownMacroMigrationException: The macro 'next_previous_links' is unknown.

Changing the Endpoint of a Deployed Proxy Service

The below sections describe how you can change the endpoint reference of a deployed proxy service without changing its own configuration. For example, in this scenario, you have two endpoints to manage two environments (i.e., Dev and QA). The endpoint URLs for the services hosted in the Dev and QA environments respectively are as follows:

See the topics given below for instructions.

 

Creating the endpoint reference projects

Follow the steps below to create two ESB Config Projects containing the two endpoint values for the Dev and QA environments.

  1. Open WSO2 Integration Studio and click Miscelleneous → Create New Config Project in the Getting Started tab.

  2. In the New ESB Project dialog that opens, select New ESB Config Project and click Next.

  3. Enter HelloWorldDevResources as the project name and click Finish.

  4. Right-click the HelloWorldResources project in the Project Explorer and go toNew -> Endpoint
  5. Select Create a New Endpoint and click Next

  6. Fill in the information as in the table below and click Finish.

    FieldValue
    Endpoint NameHelloWorldEP
    Endpoint TypeAddress Endpoint
    Addresshttp://localhost:8280/services/echo
  7. Similarly, to create resources for the QA environment, create another ESB Config project named HelloWorldQAResources and create an endpoint named HelloWorldEP. Provide the following endpoint address:
    http://localhost:8280/services/echo

Creating the proxy service 

In this section, you will create an ESB Solutions Project containing the Proxy Service configuration.

  1. Open WSO2 Integration Studio and click ESB Project → Create New in the Getting Started tab as shown below.

  2. In the New ESB Solution Project dialog that opens, enter HelloWorldServices as the project name and click Finish.

  3. Right-click the HelloWorldServices project in the Project Explorer and go to New -> Proxy Service. 

  4. In the New Proxy Service dialog that opens, select Create a New Proxy Service and click Next. Fill in the details as specified in the table below:

    FieldValue
    Proxy Service NameHelloWorldProxy
    Proxy Service TypeSelect Pass Through Proxy
    EndpointSelect HelloWorldEP (You need to select Predefined Endpoint from the endpoint options listed.)

The projects setup is now complete. You now need to create CApp projects for each of the Composite Applications you want to generate. The ESB proxy service and the Dev endpoint must go in its own CApp, and you create a separate CApp for the ESB proxy service and the QA endpoint. 

Creating the composite application project

  1. Right-click the Project Exporer and go to File -> New -> Composite Application Project.
  2. Name the project HelloWorldDevCApp.
  3. Select the HelloWorldServices and HelloWorldDevResources projects from the list of dependancies, and click Finish.
  4. Similarly, create HelloWorldQACApp containing the projects HelloWorldServices and HelloWorldQAResources

Your CApp projects are now ready to be deployed to your ESB servers.

Deploying the Dev composite application

See Running the ESB profile via WSO2 Integration Studio for instructions on deploying the applications and starting the server.

Testing the Dev environment

  1. Log in to the management console using admin as the username and password.
  2. Click Services > List, and click on the Try This Service link for the HelloWorldProxy, which you just deployed using the CApp.
  3. Use the following request to invoke the service:

    <body>
      <p:echoInt xmlns:p="http://echo.services.core.carbon.wso2.org">
         <!--0 to 1 occurrence-->
         <in>50</in>
      </p:echoInt>
    </body>

  4. Click Send. You view the response from the HelloWorldProxy hosted in WSO2 EI as seen in the image below.

Changing the endpoint reference

Follow the steps below to change the endpoint reference of the HelloWorldProxy you deployed, to point it to the QA environment, without changing its configuration.

  1. Set a port offset by changing the following configuration in the <EI_HOME>/conf/carbon.xml file.

     <Ports>
            <Offset>1</Offset>
    ........
    
    
    </Ports>
  2. Undeploy the HelloWorldDevCApp, deploy the HelloWorldQACApp and re-start the ESB Profile of WSO2 EI. For instructions, see Running the ESB profile via WSO2 Integration Studio.

Testing the QA environment

  1. Log in to the Management Console using admin as the username and password.
  2. Click Services > List, and click on the Try This Service link for the HelloWorldProxy, which you just deployed using the CApp.

    If you click on the HelloWorldProxy in the Deployed Services list, you view that the port offset has been applied and the endpoint URL has been changed to point to the QA environment.


  3. Use the following request to invoke the service:

    <body>
      <p:echoInt xmlns:p="http://echo.services.core.carbon.wso2.org">
         <!--0 to 1 occurrence-->
         <in>100</in>
      </p:echoInt>
    </body>

  4. Click Send. You view the response from the HelloWorldProxy hosted in WSO2 EI as seen in the image below.

com.atlassian.confluence.content.render.xhtml.migration.exceptions.UnknownMacroMigrationException: The macro 'next_previous_links2' is unknown.