Vigor
Vigor

Reputation: 21

flex mobile application detected duplicate HTTP-based FlexSessions

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

Answers (1)

user1696495
user1696495

Reputation: 11

Just add the following code

FlexClient.getInstance().id = UIDUtil.createUID();

Upvotes: 1

Related Questions