lula / ngx-soap

Simple SOAP client for Angular
MIT License
66 stars 61 forks source link

Added MTOM support #70

Closed kverhoef closed 4 years ago

kverhoef commented 4 years ago

Attachments can now be added to a request in the options similiar to node-soap library.

Attachments should be of type FileList or File[]. Example:

const attachments: FileList | File[] = ... (this.client).Add(body, { attachments: attachments }).subscribe()

lula commented 4 years ago

Thanks @kverhoef for taking care of this functionality!