Andrew McGivery

Results 27 comments of Andrew McGivery

I've started an early POC for component diagrams... needs a lot of work and haven't put in the relationships yet, but I've got a starting point which includes system components,...

Update... did some initial work on interfaces and relationships. Representing interface with `()` and relationships with dashes and arrows. ``` %% Interface ("my-interface-1") %% Relationship "my-awesome-api" -> "my-interface-1" %% Relationship...

Have you double checked Chrome Dev Tools to make sure it is sending the request as you expect it to?

Are you able to duplicate this with some kind of small demo that I could look at?

I'm assuming you need to send a custom header? Have you taken a look at the beta branch's custom headers? https://github.com/andrewmcgivery/angular-soap/tree/beta

You're never actually setting the `Access-Control-Allow-Origin` header, just allowing it. You're missing: ``` cors.allowOrigin * ``` and you might also need: ``` cors.supportedMethods GET, POST, HEAD, OPTIONS ```

Have you checked Browser DevTools to make sure your request is sending what you think it is?

I think that is definitely a logical step.

Currently it only supports BASIC auth. I may be able to implement it if you know what the header is that needs to be sent.

Appreciate the responses @prasek and @glasser!