10

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

giannis christofakis
  • 8,201
  • 4
  • 54
  • 65
Cherif BOUCHELAGHEM
  • 1,126
  • 2
  • 14
  • 21

2 Answers2

8

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

Community
  • 1
  • 1
Ivan Dyachenko
  • 1,348
  • 9
  • 16
1

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.

Community
  • 1
  • 1