Hi Kumar,
I'm officially retired now from IBM and don't have an API Connect or associated DataPower instance to assist, but in this case, I believe your Gateway Extension gwd type json is incorrect, You have
{
"apigw": {
"_global": {
"override": [
"proxy http://test-dev/* proxy.dev 443",
"parse-settings apic-default-parsesettings"
]
}
}
}
but the max doc size for the default apic-default-parsesettings object has not been changed. Please see https://www.ibm.com/docs/en/api-connect/10.0.5.x_lts?topic=manifest-gwd-extension-type which has an example of how to make a change to this object. I believe your proxy override to the API Gateway object is fine, but I don't believe the update to the API Gateway parse settings reference is required??? You do need to add the update to the parse settings object itself, something like
{
"parse-settings":{
"_global":{
"override":[
"document-size 4194304" <===== Make this whatever size you need as the maximum of apic-default-parsesettings.
]
}
},
"apigw": {
"_global": {
"override": [
"proxy http://test-dev/* proxy.dev 443",
"parse-settings apic-default-parsesettings"
]
}
}
}
Best Regards,
Steve Linn
------------------------------
Steve Linn
Senior Consulting I/T Specialist
IBM Retired
------------------------------
Original Message:
Sent: Tue December 31, 2024 04:46 PM
From: Kumar .
Subject: gateway extension for apic-default-parsesettings
Hello All,
We could able to create the extension for parse -settings.
https://www.ibm.com/docs/en/api-connect/10.0.5.x_lts?topic=manifest-gwd-extension-type
Thank you