NODEJS - Publish and Monitor a SOAP service

compared with
Current by Bartolomeo Sorrentino
on Oct 22, 2014 13:38.

Key
This line was removed.
This word was removed. This word was added.
This line was added.

Changes (5)

View page history
open *index.js* (default main module) and copy the code below
{code:title=index.js}
{code:title=index.js}var http = require('http'),
httpProxy = require('http-proxy'),
soap = require('soap-server'),

{code}
 
{info:title=start}
{noformat}> node ./main.js

Proxy listening on port: 1337
Server running at 1338
wsdl: http://127.0.0.1:1337 /testService?wsdl
 
{noformat}
> node ./main.js
{noformat}
{info}