I'm using Sap Jco to connect to SAP database with the front end being Java(JSF), When I connect to SAP with:

try {
 mConnection =JCO.createClient("400", // SAP client
  "c3026902", // userid
  "********", // password
  "EN", // language
  "iwdf5020", // host name
  "00"); // system number
 mConnection.connect();
}
catch (Exception ex) {
 ex.printStackTrace();
 System.exit(1);
}

Problem I'm facing is when run the application for the first time, data is displayed but when I re-run it says "Could not load middleware layer 'com.sap.mw.jco.rfc.MiddlewareRFC' "

Can any one help me in resolving the issue?????

link|improve this question

77% accept rate
feedback

2 Answers

This sounds like the API cannot load the native driver files. The SAP Java Connector consists of a native runtime part, that does the actuall communication and a Java API that wraps this functionality with a java api. The Java API is inside the sapjco.jar and the native drivers are e.g on windows inside librfc32.dll and sapjcorfc.dll. Place these dll's into your system path (e.g. windows: C:\WiNDOWS\system32) and it should run.

Cheers Sebastian

link|improve this answer
Thanks for the reply Sebastian..I've tried doing this but its still the same. – Mango Mar 21 '11 at 5:09
feedback

Are your DLLs located in the Windows system32 folder? If so, are you probably using the wrong architecture? (x64 DLL on 32 bit or vice versa) Also, are the DLLs the same version as the java api? If you have SAP GUI installed there could be older DLLs around.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.