DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports Events Over 2 million developers have joined DZone. Join Today! Thanks for visiting DZone today,
Edit Profile Manage Email Subscriptions Moderation Admin Console How to Post to DZone Article Submission Guidelines
View Profile
Sign Out
Refcards
Trend Reports
Events
Zones
Culture and Methodologies Agile Career Development Methodologies Team Management
Data Engineering AI/ML Big Data Data Databases IoT
Software Design and Architecture Cloud Architecture Containers Integration Microservices Performance Security
Coding Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Culture and Methodologies
Agile Career Development Methodologies Team Management
Data Engineering
AI/ML Big Data Data Databases IoT
Software Design and Architecture
Cloud Architecture Containers Integration Microservices Performance Security
Coding
Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance
Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
  1. DZone
  2. Software Design and Architecture
  3. Integration
  4. Calling SOAP Web Service From (JavaScript) Jaggery

Calling SOAP Web Service From (JavaScript) Jaggery

Madhuka  Udantha user avatar by
Madhuka Udantha
CORE ·
Feb. 20, 13 · Interview
Like (0)
Save
Tweet
Share
11.86K Views

Join the DZone community and get the full member experience.

Join For Free
Here I am going to call web services in http://localhost:9765/services/BAMToolboxDepolyerService?wsdl from jaggery (javascripte code). This sample is testing web services runnning in WSO2 BAM.

Thinks that i have know about the services before I am calling that from jaggery.

  • My end point URL http://localhost:9765/services/BAMToolboxDepolyerService
  • Action name to invoke "getBasicToolBoxes"
  • And it is pay load. (This sample there is no pay load)

image

EXAMPLE CODE

<%
function invokeBasicToolBoxes() {
    var log = new Log();
     var ws = require("ws");

     var bam = new ws.WSRequest();
     var options = new Array();
     options.useSOAP = 1.2;
     options.action = "urn:getBasicToolBoxes";
     var payload =null;
     var result;

     try {
         bam.open(options,"https://10.100.3.27:9445/services/BAMToolboxDepolyerService", false);
         bam.send(payload);
         result = bam;
     } catch (e) {
         log.error(e.toString());
         return e.toString();
    }
     return result.responseText;
}

print(invokeBasicToolBoxes());
%>



Web Service SOAP Web Protocols

Published at DZone with permission of Madhuka Udantha, DZone MVB. See the original article here.

Opinions expressed by DZone contributors are their own.

Popular on DZone

  • Utilize OpenAI API to Extract Information From PDF Files
  • Continuous Development: Building the Thing Right, to Build the Right Thing
  • Why It Is Important To Have an Ownership as a DevOps Engineer
  • API Design Patterns Review

Comments

Partner Resources

X

ABOUT US

  • About DZone
  • Send feedback
  • Careers
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 600 Park Offices Drive
  • Suite 300
  • Durham, NC 27709
  • support@dzone.com
  • +1 (919) 678-0300

Let's be friends: