Technical Forum
Ask questions. Discover Answers.
cancel
Showing results for 
Search instead for 
Did you mean: 
Custom Alert Banner

F5 AS3 - Default Persistence Profile

Neptune_01
Nimbostratus
Nimbostratus

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!

1 ACCEPTED SOLUTION

crodriguez
Legacy Employee
Legacy Employee

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...

View solution in original post

2 REPLIES 2

crodriguez
Legacy Employee
Legacy Employee

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...

Neptune_01
Nimbostratus
Nimbostratus

Hi,

 

This works!

 

Thanks!