0

Hello i have a phonegapp application that runs ajax call to a server that use IIS asmx application.

When i call ajax login from phonegap, it is successfully return logged in response but in Session in IIS application is not created.

I have read something about cookie based session but have not found any solutions.

Can anybody help?

Shen Shen
  • 72
  • 2
  • 12

1 Answers1

0

You can manually deal with the cookies required to maintain session state (see Handling cookies in PhoneGap/Cordova), unless your IIS page is requiring HTTP only cookies, which would require at least a plugin to send the correct headers as the browser won't let you set that value.

Kris Erickson
  • 33,454
  • 26
  • 120
  • 175
  • IIS page require cookies. So may you give me details of how to send it through phonegap? Thanks in advance – Shen Shen Jan 21 '19 at 08:51