UNPKG
strong-soap
Version:
latest (5.0.8)
5.0.8
5.0.7
5.0.6
5.0.5
5.0.4
5.0.3
5.0.2
5.0.1
5.0.0
4.1.14
4.1.13
4.1.12
4.1.11
4.1.10
4.1.9
4.1.8
4.1.7
4.1.6
4.1.5
4.1.4
4.1.3
4.1.2
4.1.0
4.0.6
4.0.5
4.0.4
4.0.3
4.0.2
4.0.1
4.0.0
3.5.7
3.5.6
3.5.5
3.5.4
3.5.3
3.5.2
3.5.1
3.5.0
3.4.3
3.4.2
3.4.1
3.4.0
3.3.1
3.3.0
3.2.1
3.2.0
3.0.1
3.0.0
2.0.0
1.22.1
1.22.0
1.21.0
1.20.0
1.19.1
1.19.0
1.18.0
1.17.0
1.16.0
1.15.0
1.14.0
1.13.2
1.13.1
1.13.0
1.12.1
1.12.0
1.11.0
1.10.0
1.9.0
1.8.0
1.7.0
1.6.2
1.6.1
1.6.0
1.5.0
1.4.2
1.4.1
1.4.0
1.3.0
1.2.6
1.2.5
1.2.3
1.2.2
1.2.0
1.1.0
1.0.2
1.0.1
1.0.0
A minimal node SOAP client
github.com/strongloop/strong-soap
strongloop/strong-soap
strong-soap
/
lib
/
parser
/
wsdl
/
import.js
14 lines
(10 loc)
•
256 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
'use strict'
;
var
WSDLElement
=
require
(
'./wsdlElement'
);
class
Import
extends
WSDLElement
{
constructor
(
nsName, attrs, options
) {
super
(nsName, attrs, options);
this
.
schemas
= {}; } }
Import
.
elementName
=
'import'
;
module
.
exports
=
Import
;