Reputation: 21
I developed a mobile app using Flash Builder 4.6, but when I connected it to the web using httpservice, this warning came up:
Detected duplicate HTTP-based FlexSessions, generally due to the remote host disabling session cookies. Session cookies must be enabled to manage the client connection correctly"
How can I solve this problem?
Upvotes: 1
Views: 308
Reputation: 11
Just add the following code
FlexClient.getInstance().id = UIDUtil.createUID();
Upvotes: 1