Programmatic Validation of APIM Policy XML

2024-10-02T10:56:11.0766667+00:00

Hi Team,

We would like to programmatically validate APIM Policy XML considering below use cases

  1. Schema Validation using XSD
  2. Server end Validation against a specific APIM Service

Regarding Schema Validation - of course will help us to validate the policy xml holds the right data format & enum validations etc.,. I figured out there is already a question raised on the same. However, could someone help to share the consolidated Policy XML's XSD considering 'Other Policies' involved?

Regarding Server end validation against a specific APIM Service

We require to validate the Policy XML in terms of acceptable set variable, set body, Named Value references in policies etc., We can see that Azure Portal does this validation. Pls could someone help us share the SDK details if any (or) any other alternatives to perform this validation programmatically. This will help us to validate the Policy XML being generated before applying the same to API.

Thanks in advance!

Regards,

Vijay

Azure API Management
Azure API Management
An Azure service that provides a hybrid, multi-cloud management platform for APIs.
2,111 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. LeelaRajeshSayana-MSFT 15,076 Reputation points Microsoft Employee
    2024-10-02T18:11:29.57+00:00

    Hi @Periasamy, Vijay Sundar (COGNIZANT) Greetings! Welcome to Microsoft Q&A forum. Thank you for posting this question here.

    Regarding Schema Validation

    I am not sure if I follow the question correctly. The schema validation will be performed based on the schema definition of the API and I don't think there is any consolidated policy we can refer that comprises of all the validations for different data formats. Please refer the article Common usage of validate-content policy in APIM which provides some use cases on how validation can be applied to data.

    regarding Server end validation against a specific APIM Service

    I could not find any SDK available by the platform to get the functionality supported by the Azure portal for validating the Schema. However, inspecting the network calls made by the platform, I see that the error messages are a result of calling the end point https://management.azure.com/subscriptions/<subscriptionID>/resourceGroups/<resourcegroup>providers/Microsoft.ApiManagement/service/<apimserviceName>/apis/<apiId>/policies/policy?api-version=2022-09-01-preview through a Put request

    The request accepts the policy template in the format of a raw XML. Below is the sample request I captured from the network call

    {"properties":{"format":"rawxml","value":"<!--\n    - Policies are applied in the order they appear.\n    - Position <base/> inside a section to inherit policies from the outer scope.\n    - Comments within policies are not preserved.\n-->\n<!-- Add policies as children to the <inbound>, <outbound>, <backend>, and <on-error> elements -->\n<policies>\n    <!-- Throttle, authorize, validate, cache, or transform the requests -->\n    <inbound>\n        <base />\n    </inbound>\n    <!-- Control if and how the requests are forwarded to services  -->\n    <backend>\n        <base />\n    </backend>\n    <!-- Customize the responses -->\n    <outbound>\n        <base />\n    </outbound>\n    <!-- Handle exceptions and customize error responses  -->\n    <on-error>\n        <base />\n    </on-error>\n    <set-variable name=\"IsMobile\" value=\"@(context.Request.Headers.GetValueOrDefault(\"User-Agent\",\"\").Contains(\"iPad\") || context.Request.Headers.GetValueOrDefault(\"User-Agent\",\"\").Contains(\"iPhone\"))\" />\n</policies>"}}
    
    
    

    The response of this request contains the error code message and details if the policy is not accurate, which are then presented on the portal. Here is a response generated from the above request

    {
        "error": {
            "code": "ValidationError",
            "message": "One or more fields contain incorrect values:",
            "details": [
                {
                    "code": "ValidationError",
                    "target": "set-variable",
                    "message": "Error in element 'set-variable' on line 24, column 6: Policy section is not allowed in the specified scope"
                }
            ]
        }
    }
    
    

    Please refer the end point documentation Api Policy - Create Or Update for more details on the endpoint.

    You can create a Service principal role and assign Contributor access to the APIM instance to access the end point programmatically. The document Azure REST API - Create a bearer token contains the steps needed on how to create a bearer token required by the API end point.

    Hope this helps! Please let us know if you have any additional questions.


    If the response helped, please do click Accept Answer and Yes for the answer provided. Doing so would help other community members with similar issue identify the solution. I highly appreciate your contribution to the community.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.