lula / ngx-soap

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

How can I check the soap message sent to server ? #12

Closed yuvanesh10 closed 6 years ago

yuvanesh10 commented 6 years ago

I am using ngx-soap library. My function works but I would like to see SOAP request sent from client or in other words I would like to see the SOAP message sent from the client . I hope my question is understandable ?

lula commented 6 years ago

Hello @yuvanesh10! If I understood correctly:

client.operation('Add', operationBody).then(operation => {
    ....
    this.http.post(url, operation.xml, { headers: operation.headers })...

operation.xml contains the SOAP payload.

yuvanesh10 commented 6 years ago

oh yes..,i got that !!! console.log(operation);

got my the soap msg.!!!