15-Sep-2020 08:52
Hi,
I'm trying to PATCH a new VIP via F5 AS3.
However, the Default Persistence Profile is set to cookie, i'm not able to choose the 'None' value if i send this in the JSON body.
Is this a bug?
Thanks!
Solved! Go to Solution.
15-Sep-2020
12:12
- last edited on
04-Jun-2023
21:17
by
JimmyPackets
I found this in one of our AS3 docs:
Troubleshooting
I’m having trouble creating an application service without persistence.
In order to create (or update) a declaration for an application service that does include persistence, you use the persistenceMethod property with a value of [] (empty square brackets), on your application service. This sets the persistence method on the application service (BIG-IP virtual server) to none. The line should look like:
"persistenceMethods": []"
.
For example, a declaration snippet would look like the following:
"service": {
"class": "Service_HTTP",
"virtualAddresses": [
"10.0.1.10"],
"persistenceMethods": [],
"pool": "web_pool"
},
You can find the info here: https://clouddocs.f5.com/products/extensions/f5-appsvcs-extension/latest/userguide/troubleshooting.h...
15-Sep-2020
12:12
- last edited on
04-Jun-2023
21:17
by
JimmyPackets
I found this in one of our AS3 docs:
Troubleshooting
I’m having trouble creating an application service without persistence.
In order to create (or update) a declaration for an application service that does include persistence, you use the persistenceMethod property with a value of [] (empty square brackets), on your application service. This sets the persistence method on the application service (BIG-IP virtual server) to none. The line should look like:
"persistenceMethods": []"
.
For example, a declaration snippet would look like the following:
"service": {
"class": "Service_HTTP",
"virtualAddresses": [
"10.0.1.10"],
"persistenceMethods": [],
"pool": "web_pool"
},
You can find the info here: https://clouddocs.f5.com/products/extensions/f5-appsvcs-extension/latest/userguide/troubleshooting.h...
17-Sep-2020 05:30
Hi,
This works!
Thanks!