I'm trying to connect to a web service that has the following setup:
- Send credentials to
domain.com/logincheck
- Server redirects request to either
domain.com/loginOk.xml
ordomain.com/loginBad.xml
which contains the details of the login attempt (successful = token, error = error string)
When excuting the request, I see the request (POST) in the "Network" tab (Chrome Dev Tools) which shows the 302 redirect, and than an attempt to access the loginOk.xml
(GET) but the status of the request in the "Status Text" column is shown as (canceled)
as if it just initiated a request but dropped it as soon as it's started.
Any idea what could be wrong?