npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

handlebars-soap-request

v1.0.2

Published

SOAP XML request using a Handlebars template

Downloads

529

Readme

handlebars-soap-request

SOAP/XML request using a Handlebars template.

This code only exists because I needed to handle a bunch of varied SOAP/XML service responses (some with namespaces, some without, soap11, soap12, etc...) and had to fall back to basics to get it working consistently.

Generate a sample service request using SoapUI or something similar and then make a Handlebars template from it.

Example usage

var soapRequest = require('handlebars-soap-request'); 

var options = {
	handlebarsTemplate: '/path/to/my/template/file',
	handlebarsParams: jsonParams,
	url: 'http://my/service/endpoint'
};

soapRequest(options, function(err, response) {
	
});

Default behaviour

  • Sends a soap12 request.

    Specify a soapAction (see options below) to send a soap11 request.

  • Returns a JSON response using the basic-xml2json parser to parse the SOAP/XML.

    If you don't want any XML parsing, set options.xmlResponse = true (see options below).

  • Registers a "cdata" Handlebars helper that wraps the text with . You can use it something like this:

    <name>{{{cdata name}}}</name>
    	
  • Registers an "xmldatetime" Handlebars helper that formats a date in standard XML date/time format (YYYY-MM-DDTHH:mm:ss.SSSZ) or an alternate custom format. For example:

    <mytimestamp>{{{xmldatetime myDateTime}}}</mytimestamp>
    <mytimestamp>{{{xmldatetime myDateTime myAlternateFormat}}}</mytimestamp>
    	

    It uses moment to format the date/time.

  • Registers an "xmldatetimeoffset" Handlerbars helper that offsets the date/time to something equivalent in a specific timezone. Ridiculous right! You might only need this if you are unlucky enough to deal with legacy systems that don't deal with different timezones very well.

    It allows you to capture something like 2015-12-29 12:30 GMT+06 and convert it to 2015-12-29 12:30 GMT+10. I.e. something that looks the same when viewed in a different timezone. You can use it like this:

    <mytimestamp>{{{xmldatetimeoffset myDateTime}}}</mytimestamp>
    <mytimestamp>{{{xmldatetimeoffset myDateTime mySourceTimezoneOffset}}}</mytimestamp>
    <mytimestamp>{{{xmldatetimeoffset myDateTime mySourceTimezoneOffset myTargetTimezone}}}</mytimestamp>
    <mytimestamp>{{{xmldatetimeoffset myDateTime mySourceTimezoneOffset myTargetTimezone myAlternateFormat}}}</mytimestamp>
    	

    If you don't specify a source timezone offset (mySourceTimezoneOffset) then myDateTime.getTimezoneOffset() will be used.

    If you don't specify a target timezone (myTargetTimezone) then "Australia/Melbourne" will be used.

    If you don't specify an alternate custom format then the standard XML date/time format (YYYY-MM-DDTHH:mm:ss.SSSZ) will be used.

soapRequest:options
  • url

    Mandatory. String. The service endpoint url.

  • handlebarsTemplate

    Mandatory. String. The path to the Handlebars template file.

  • handlebarsParams

    Optional. Object. The JSON data to be provided to the Handlebars template

  • handlebarsPartials

    Optional. Array of { name: 'nameForPartial', filename: 'path/to/partial' }.

    Partial template files are loaded and registered under the specified name.

  • soapAction

    Optional. String. If specified, a soap11 request will be sent. The SOAPAction header will contain the value specified here.

  • requestHeaders

    Optional. Object. If specified, will be used in place of the default soap12 or soap11 headers.

  • xmlResponse

    Optional. Boolean. If true, the response will be the unaltered SOAP/XML body from the service.

  • errorLogger

    Optional. Function. The default error logging behaviour is to console.log the details. To override this you need to specify your own errorLogger like this:

    //The errorLogger function will be called before the service is invoked so that any initial setup can be done
    var myErrorLogger = function(serviceName) {
    	var st = Date.now(); //E.g. We may want to remember the current time so we can log the duration of the failed service call
    	return {
    		//The onError function is only called if an error is returned by the service (including unexpected SOAP Faults). This is where the error logging should happen
    		onError: function(soapReq, errorResponse) {
    			var duration = Date.now() - st;
    		}
    	};
    };
    
    var options = {
    	handlebarsTemplate: '/path/to/my/template/file',
    	handlebarsParams: jsonParams,
    	url: 'http://my/service/endpoint',
    	errorLogger: myErrorLogger
    };
  • serviceName

    Optional. String. If provided, will be passed to the start method of the error logger as the serviceName used to identify the service being invoked. If not provided, the url will be passed to the error logger instead.

  • isExpectedFault

    Optional. Function returning a boolean. If you need to recognise certain SOAP Faults as expected behaviour (not errors) then you can provide your own isExpectedFault function. Here is an example:

    function isExpectedFault(json) {
    	return !!xml2json.getChildNode(json.root, ['Body','Fault','Detail','SomeExpectedException']);
    }
    
    var options = {
    	handlebarsTemplate: '/path/to/my/template/file',
    	url: 'http://my/service/endpoint',
    	isExpectedFault: isExpectedFault
    };