Fernando Gabrieli
Fernando Gabrieli

Reputation: 1010

Javascript lib / jQuery plugin to interact with SOAP

  1. Do you know of a good Javascript library to interact with SOAP?
  2. Do you know of a good jQuery plugin to interact with SOAP?

This is for a production server, so i am looking for something which is tested and works good, among different browsers.

thanks in advance

best regards,

Fernando Gabrieli

Upvotes: 3

Views: 3786

Answers (4)

Ryan Shillington
Ryan Shillington

Reputation: 25167

Unfortunately, I think the correct answer is: don't do it. Instead, create a server side REST API that talks to your SOAP service and translates it to JSON. Then the client side is a joke.

Upvotes: 0

ZachOfAllTrades
ZachOfAllTrades

Reputation: 1103

there is a relatively new plugin available:

http://plugins.jquery.com/soap/

I forked the project, and have been working on some modifications (the plugin did not handle the service I was working with). I hope to get my updates merged at some point, but would be happy to have any feedback.

https://github.com/zachofalltrades/jquery.soap

Upvotes: 3

Nathan Feger
Nathan Feger

Reputation: 19506

I used apache cxf to generate javascript libraries specifically to call cxf annotated web services at one point. That might be a possibility.

Not sure how you are planning on deploying this but keep the cross domain browser limitations in mind.

Upvotes: 0

Femi
Femi

Reputation: 64700

There unfortunately is really not a lot available in that space: the only one I've seen in the past is http://plugins.jquery.com/project/jqSOAPClient, and it has not been updated for some time.

Let me know if that works for you.

Upvotes: 0

Related Questions