First check if your host system platform is supported and install prerequisites, if needed: SAP/node-rfc#requirements
Information on where to download the SAP NWRFC SDK you may find at: https://support.sap.com/en/product/connectors/nwrfcsdk.html
The Node.js 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 Node.js 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\libshall exist. - Include the
libdirectory to the library search path on Windows, i.e. add toPATHenvironment 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/libshall exist. -
Include the
libdirectory in the library search path:-
As
root, create a file/etc/ld.so.conf.d/nwrfcsdk.confnwrfcsdk.conf
# include nwrfcsdk /usr/local/sap/nwrfcsdk/lib -
As
root, run the commandldconfigand 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.nodeinstall_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.
The most frequent installation issues are:
- SAP NW RFC SDK is not the one for your platform, when Linux version is installed on Windows system for example
- User does not have read permissions for SAP NW RFC SDK
libfolder - The 32 bit version of SAP NW RFC SDK is installed and fails with 64 bit nodejs
- (Windows) Required version of Microsoft Visual C++ redistributable is not installed, see dependencies
Here are some of the most frequent error codes, related to 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 NW RFC SDK on your system, or Microsoft Visual C++ redistributable is not installed
ImportError: DLL load failed: %1 is not a valid Win32 application
(Windows) This error occurs when SAP NW RFC SDK 64bit version is installed on a system with 32bit version Node.js.
ERR_DLOPEN_FAILED usually means that required version of Microsoft Visual C++ redistributable is not installed
To verify the SAP NW RFC SDK installation, before investigating possible issue with node-rfc, first check if SAPNWRFC_HOME\lib directory is in your PATH environment variable (Windows) or LD_LIBRARY_PATH (Linux)
Then verify SAP NW RFC SDK release
# 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"`Finally, verify SAP NW RFC SDK installation using startrfc -v command in SAP NW RFC SDK bin folder. The output should be like:
cd $SAPNWRFC_HOME/bin
./startrfc -v
RfcLogWrite: could not open /usr/local/sap/nwrfcsdk/./dev_rfc_17149.log. Trace directory set to ./NW RFC Library Version: 750 Patch Level 12
Compiler Version:
Version not available.
Startrfc Version: 2018-08-15Another test, using rfcexec command, will fail if 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 directoryIf all looks good and node-rfc still fails to load
- Try with installation in another folder, or
- Capture Process Monitor output for the command
node -p "require('node-rfc')", to find out which DLL is not loaded. More info are in issues/284#comment and issues/115#comment
node -p "require('node-rfc')" # should end w/o errorsYou 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 - ~/.Node.js/nvm/versions/node/v14.13.1/bin/node
npm: 6.14.8 - ~/.Node.js/nvm/versions/node/v14.13.1/bin/npmand/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