MobileFirst HTTP Adapter: delete/update back-end cookie value
问题 I'm using WL.Server.invokeHttp(options) several times in my adapter. I need to have different values for a given cookie in different calls. If I call WL.Server.invokeHttp({cookies: { mycookie: 'firstValue' } ... the back-end gets this header "cookie": "mycookie=firstValue" , as expected. If I later want to make another call with a different cookie value, WL.Server.invokeHttp({cookies: { mycookie: 'secondValue' } ... the back-end gets this header "cookie": "mycookie=firtsValue; mycookie