Skip to content
This repository was archived by the owner on Apr 20, 2018. It is now read-only.
This repository was archived by the owner on Apr 20, 2018. It is now read-only.

IE 11 aborts Observable.ajax PUT cross-domain request #1529

Description

@MartinKristof

Hi,
IE 11 ver. 11.0.9600.18837 on Windows Server 2008 R2 Standard aborts PUT Ajax Observable request with cross-domain:

put$(url, body, headers = { 'Content-Type': 'application/json', 'X-Requested-With': 'XMLHttpRequest') {
        return Observable.ajax({ url, body, headers, method: 'PUT', responseType: 'json', crossDomain: true });
    }

snimek obrazovky 2017-11-30 v 14 33 16

Chrome, FF works ok.

Epic:

 action$.ofType(SAVE_STUDENT)
        .filter(() => isUserLoggedIn(getState().userState))
        .switchMap(() => api.saveStudent$(prepareStudentToSave(getState()), getState().userState.apiKey)
            .flatMap(() => [
                studentSaved(),
                addFlashMessage(
                    {
                        message: 'xxx',                          
                    }
                ),
            ])
            .catch(curry(handleFormError$)(null, null, studentSavedWithError))
        );

Thank you for help.

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions