Information on where to download the SAP NWRFC SDK you may find at: https://support.sap.com/en/product/connectors/nwrfcsdk.html
The NodeJS RFC connector relies on SAP NWRFC SDK and must be able to find the library files at runtime. Therefore, you might either install the SAP NWRFC SDK in the standard library paths of your system or install it in any location and tell the NodeJS connector where to look.
Here are configuration examples for Windows, Linux and macOS operating systems.
- Create the SAP NWRFC SDK home directory, e.g.
c:\nwrfcsdk
- Set SAPNWRFC_HOME environment variable:
SAPNWRFC_HOME=c:\nwrfcsdk
- Unpack the SAP NW RFC SDK archive to it, e.g.
c:\nwrfcsdk\lib
shall exist. - Include the
lib
directory to the library search path on Windows, i.e. add toPATH
environment variable:
PS C:\> $env:Path += ";$env:SAPNWRFC_HOME\lib"
-
Create the SAP NW RFC SDK home directory, e.g.
/usr/local/sap/nwrfcsdk
. -
Set the SAPNWRFC_HOME environment variable:
SAPNWRFC_HOME=/usr/local/sap/nwrfcsdk
-
Unpack the SAP NW RFC SDK archive to it, e.g.
/usr/local/sap/nwrfcsdk/lib
shall exist. -
Include the
lib
directory in the library search path:-
As
root
, create a file/etc/ld.so.conf.d/nwrfcsdk.conf
nwrfcsdk.conf
# include nwrfcsdk /usr/local/sap/nwrfcsdk/lib
-
As
root
, run the commandldconfig
and check if libraries are installed:$ ldconfig -p | grep sap # should show something like: libsapucum.so (libc6,x86-64) => /usr/local/sap/nwrfcsdk/lib/libsapucum.so libsapnwrfc.so (libc6,x86-64) => /usr/local/sap/nwrfcsdk/lib/libsapnwrfc.so libicuuc.so.50 (libc6,x86-64) => /usr/local/sap/nwrfcsdk/lib/libicuuc.so.50 libicui18n.so.50 (libc6,x86-64) => /usr/local/sap/nwrfcsdk/lib/libicui18n.so.50 libicudecnumber.so (libc6,x86-64) => /usr/local/sap/nwrfcsdk/lib/libicudecnumber.so libicudata.so.50 (libc6,x86-64) => /usr/local/sap/nwrfcsdk/lib/libicudata.so.50 libgssapi_krb5.so.2 (libc6,x86-64) => /usr/lib/x86_64-linux-gnu/libgssapi_krb5.so.2 libgssapi.so.3 (libc6,x86-64) => /usr/lib/x86_64-linux-gnu/libgssapi.so.3 $
-
❗ Stay on SAP NWRFC SDK <= 7.55 until #143 closed.
The macOS firewall stealth mode is by default active, blocking the ICMP protocol based network access to Macbook. Applications like Ping do not work by default (Can’t ping a machine - why?) and the stealth mode must be disabled:
sudo /usr/libexec/ApplicationFirewall/socketfilterfw --setstealthmode off
- Create the SAP NWRFC SDK home directory /usr/local/sap/nwrfcsdk (this location is fixed, more info below)
- Set SAPNWRFC_HOME environment variable: SAPNWRFC_HOME=/usr/local/sap/nwrfcsdk
- Unpack the SAP NWRFC SDK archive to it, e.g. /usr/local/sap/nwrfcsdk/lib shall exist.
Set the remote paths in SAP NW RFC SDK by running paths_fix.sh script.
Custom SAP NWRFC SDK location
The default rpath /usr/local/sap/nwrfcsdk/lib
is embedded into node-rfc
package published on npm.
After moving SAP NWRFC SDK to different location on your system, the rpaths must be adjusted, in SAP NWRFC SDK and in sapnwrfc.node
binary lib:
-
Set the SAPNWRFC_HOME env variable to new SAP NWRFC SDK home directory and re-run the above script
-
Fix
sapnwrfc.node
install_name_tool -rpath /usr/local/sap/nwrfcsdk/lib /usr/local/sap/nwrfcsdk_new/lib sapnwrfc.node
The node-rfc
package can be installed from npm, or built from source: Installation.
ImportError: DLL load failed: The specified module could not be found
(Windows) This error indicates that the node-rfc connector was not able to find the SAP NWRFC SDK libraries on your system.
Verify:
SAPNWRFC_HOME\lib
directory is in your PATH environment variable- SAP NWRFC SDK for your platform is installed, not Linux SDK for example on Windows system
- SAP NWRFC SDK 32bit is installed when runnung 32bit NodeJS, not 64bit SDK
ImportError: DLL load failed: %1 is not a valid Win32 application
(Windows) This error occurs when SAP NWRFC Library 64bit version is installed on a system with 32bit version NodeJS.
Windows
@echo off
findstr Patch %SAPNWRFC_HOME%\lib\sapnwrfc.dll
Linux
echo `strings $SAPNWRFC_HOME/lib/libsapnwrfc.so | grep "Patch Level"`
macOS
echo `strings $SAPNWRFC_HOME/lib/libsapnwrfc.dylib | grep "Patch Level"`
cd $SAPNWRFC_HOME/bin
sudo chmod a+x rfcexec
./rfcexec # should show something like:
Error: Not all mandatory parameters specified
Please start the program in the following way:
rfcexec -t -a <program ID> -g <gateway host> -x <gateway service>
-f <file with list of allowed commands> -s <allowed Sys ID>
The options "-t" (trace), "-f" and "-s" are optional.
The output like below, shows that either 32 bit NWRFC SDK is installed on 64 bit system, or NWRFC SDK for another platform is installed:
./rfcexec
./rfcexec: error while loading shared libraries: libsapnwrfc.so:
cannot open shared object file: No such file or directory
node -p "require('node-rfc')" # should end w/o errors
You may use the npx envinfo
:
npx envinfo --system --binaries
npx: installed 1 in 1.399s
System:
OS: macOS 10.15.7
CPU: (8) x64 Intel(R) Core(TM) i7-7820HQ CPU @ 2.90GHz
Memory: 1.27 GB / 16.00 GB
Shell: 5.8 - /usr/local/bin/zsh
Binaries:
Node: 14.13.1 - ~/.NodeJS/nvm/versions/node/v14.13.1/bin/node
npm: 6.14.8 - ~/.NodeJS/nvm/versions/node/v14.13.1/bin/npm
and/or noderfc environment
object:
node -p "require('node-rfc')".environment
{
platform: { name: 'darwin', arch: 'x64', release: '19.5.0' },
env: { SAPNWRFC_HOME: '/usr/local/sap/nwrfcsdk', RFC_INI: '' },
noderfc: {
release: '1.2.0',
nwrfcsdk: { major: 7500, minor: 0, patchLevel: 5 }
},
versions: {
node: '14.4.0',
v8: '8.1.307.31-node.33',
uv: '1.37.0',
zlib: '1.2.11',
brotli: '1.0.7',
ares: '1.16.0',
modules: '83',
nghttp2: '1.41.0',
napi: '6',
llhttp: '2.0.4',
openssl: '1.1.1g',
cldr: '37.0',
icu: '67.1',
tz: '2019c',
unicode: '13.0'
}
}
# push to github
git tag -a v1.0.3 e585cb2 -m "v1.0.3"
git push origin --tags
# for each platform
git pull
npm run addon
prebuild -r napi -u $PAT --verbose
# push to npm
npm publish