I'm use node-rfc to connect SAP.
It looks like the rfc client use port 3300 as SAP service port, in my env, the SAP is using port 3350, can we change the default port when creating the rfc client?
var client = new rfc.Client({ 'user': 'user', 'passwd': 'password', 'ashost': '11.22.33.44', 'sysnr': 'ee', 'client': '100', 'lang': 'EN' });
User above code as example, has the field like 'port' or 'serviceport'
I'm use node-rfc to connect SAP. It looks like the rfc client use port 3300 as SAP service port, in my env, the SAP is using port 3350, can we change the default port when creating the rfc client?
var client = new rfc.Client({ 'user': 'user', 'passwd': 'password', 'ashost': '11.22.33.44', 'sysnr': 'ee', 'client': '100', 'lang': 'EN' });
User above code as example, has the field like 'port' or 'serviceport'
Thanks!