Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
javascriptでSOAPWebサービスを利用する方法を教えてもらえますか。phonegapでこのWebサービスを使用したい(または)phonegapでWebサービスを利用する方法。
サービス URL への AJAX 呼び出しを行い、コールバックで応答を管理します。
簡単にするために jQuery を使用します。
$.ajax({ url: yourSoapServiceUrl, success: function (soapResponse) { //Do whatever you need with soapResponse } });
編集:サンプルコードを追加しました。