I have been having a problem with the post. When I click 'upload all' the progress bar moves but it never actually posts the file. I don't see any errors.
I stumbled across the problem on line 329 of file-uploader.ts.
xhr.withCredentials = item.withCredentials;
If I change this to xhr.withCredentials = false; it will work.
Is there a way to set this as a property from outside?
I am setting the authToken. When withCredentials is false I get the post on the server side and it is authenticated. My angular2 client is a different site than the webApi it calls. CORS is setup and I am getting the post when withCredential is false.
I'm not really sure what this is doing but I know if has something to do with cross-site scripting.
Can I set it to false from outside?
Is that the proper fix?
I have been having a problem with the post. When I click 'upload all' the progress bar moves but it never actually posts the file. I don't see any errors.
I stumbled across the problem on line 329 of file-uploader.ts.
xhr.withCredentials = item.withCredentials;
If I change this to xhr.withCredentials = false; it will work.
Is there a way to set this as a property from outside?
I am setting the authToken. When withCredentials is false I get the post on the server side and it is authenticated. My angular2 client is a different site than the webApi it calls. CORS is setup and I am getting the post when withCredential is false.
I'm not really sure what this is doing but I know if has something to do with cross-site scripting.
Can I set it to false from outside?
Is that the proper fix?