Search found 2 matches

by adriano
Sun Mar 01, 2020 6:35 pm
Forum: Using OpenEMM
Topic: Invoking Web Service
Replies: 2
Views: 708

Re: Invoking Web Service

Thanks, it works!

This is a simple example using node and node-soap (https://github.com/vpulim/node-soap).


var soap = require('soap');
var url = '<wsdl url>';

var options = {
hasNonce: true,
passwordType:'PasswordDigest',
hasTimeStamp:false
};
var wsSecurity = new soap.WSSecurity ...
by adriano
Sun Mar 01, 2020 4:06 pm
Forum: Using OpenEMM
Topic: Invoking Web Service
Replies: 2
Views: 708

Invoking Web Service

Hello,
I downloaded and installed the latest version of OpenEmm 2019 (19.10.000.133) and I am testing the web services.
As specified in the manual, I have created one new web service user using the web gui and specifyied its username and password.

Now I am trying to invoke the web service (for ...