Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

AngularJS as SOAP client

Is there a way to use angularJS as SOAP client or develop ng SOAP client service?

like image 455
Cherif BOUCHELAGHEM Avatar asked Oct 02 '12 22:10

Cherif BOUCHELAGHEM


2 Answers

In addition to that SO article from the main answer, you can probably use the $http service instead of using the XmlHttpRequest web API. The reason I would use $http instead is that it gives you promises and easier HTTP method handling out of the box.

Otherwise, this custom Angular $soap service posted on this SO, might give you what you want, which is also on Github.

like image 136
Colin Hartwig Avatar answered Sep 21 '22 19:09

Colin Hartwig


Sure. All what you need this is implement SOAP call on JavaScript. For example Simplest SOAP example using Javascript

like image 26
Ivan Dyachenko Avatar answered Sep 20 '22 19:09

Ivan Dyachenko