
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Error Connecting to SAP Server from Java Application
Note that SAP Java Connector should be configured as server library and not as application library.There are many issues in the way you are trying to use:
You shouldn’t change java.library.path programmatically as it is not recommended and this is cached at JVM start.
You are overwriting java.library.path instead of adding your directory so your application server requires native libraries.
Also note that our JVM root directory is different from your application root directory so /WEB-INF/lib path won’t be found by our JVM.
Advertisements