java.library.path is something you define as an argument when you run java.
http://www.coderanch.com/t/377174/java/java/java-library-path <http://www.coderanch.com/t/377174/java/java/java-library-path>The easiest (and sloppiest) way to get this working is to place the .dll files included with the remedy api in the system32 directory. You can do this differently as well by placing the native libs somewhere and updating the PATH env var on windows to include that path. You can also set the java.library.path parameter for your jvm. Axton On Fri, Aug 13, 2010 at 6:39 AM, Ravi-RG <[email protected]> wrote: > Hi Axton, > Thanks for providing the info. > > Can you please tell one morthng, > is the java.library.path is a environment variable? > > Regards, > Gopal > > > Axton Grams wrote: > > > > java.lang.UnsatisfiedLinkError means that the native libraries are not > > being > > found. You need to set up your environment properly: > > - LD_LIBRARY_PATH > > - java.library.path > > > > Axton Grams > > > > On Thu, Aug 12, 2010 at 11:02 AM, Ravi-RG <[email protected]> wrote: > > > >> Hi John/LJ, > >> Thanks for sharing the information. > >> But the thing is we hav already wriiten a code with ARS 7.1 API on ARS > >> 7.1 > >> server. > >> The same code we need to implement on ARS 7.0.01 server. > >> > >> When we tried to run the connectivity test using 7.1 JAVA Api in ARS > >> 7.0.01, > >> it throwed the follwoing exception > >> > >> java.lang.UnsatisfiedLinkError: ARInitialization > >> com.bmc.arsys.api.Proxy.ARInitialization(Native Method) > >> com.bmc.arsys.api.Proxy.<init>(Unknown Source) > >> com.bmc.arsys.api.ProxyJRpcBase.<init>(Unknown Source) > >> com.bmc.arsys.api.ProxyJRpc.<init>(Unknown Source) > >> com.bmc.arsys.api.ProxyManager.createProxy(Unknown Source) > >> com.bmc.arsys.api.ProxyPool.get(Unknown Source) > >> com.bmc.arsys.api.PoolingProxyManager.getProxy(Unknown Source) > >> com.bmc.arsys.api.ARServerUser.verifyUser(Unknown Source) > >> > >> Since my ARS Server 7.0.01 is on top of LINUX OS, took the <ARS 7.1 > >> Server>/lib(got it from different ARS 7.1system LINUX) folder contents > >> and > >> placed in my local lib folder(includes arapi71.jar and so files). > >> > >> Have set the CLASSPATH and PATH variable also to point to this folder. > >> > >> Please guide in resolving this issue. > >> > >> > >> LJ LongWing (Head) wrote: > >> > > >> > Gopal, > >> > The API is backwards compatible...the only thing is that you will > still > >> > need > >> > your native libraries because it's a 7.0 server....even if you go with > >> the > >> > 7.5 API...the 7.5 is only pure java when you are connecting to a 7.5 > >> > server...maybe a 7.1...but most certainly not a 7.0.... > >> > > >> > -----Original Message----- > >> > From: Action Request System discussion list(ARSList) > >> > [mailto:[email protected]] On Behalf Of Ravi-RG > >> > Sent: Thursday, August 12, 2010 6:49 AM > >> > To: [email protected] > >> > Subject: Java 7.1 API with ARS 7.0.01 > >> > > >> > Hi list, > >> > If i want to connect to the ARS 7.0.01 patch 009 using ARS 7.1 JAVA > >> API's > >> > what are the modifications i have to do? > >> > > >> > I am using ECLIPSE IDE to write the java program(ARS 7.1 Java API) > >> which > >> > will be executed on Windows OS > >> > > >> > Need to connec to ARS 7.0.01 patch 009 - LINUX OS using > >> > > >> > DB - Oracle 9.2 > >> > > >> > regards, > >> > Gopal > >> > > >> > -- > >> > View this message in context: > >> > > >> > http://old.nabble.com/Java-7.1-API-with-ARS-7.0.01-tp29416861p29416861.html > >> > Sent from the ARS (Action Request System) mailing list archive at > >> > Nabble.com. > >> > > >> > > >> > ____________________________________________________________________________ > >> > ___ > >> > UNSUBSCRIBE or access ARSlist Archives at www.arslist.org > >> > attend wwrug10 www.wwrug.com ARSlist: "Where the Answers Are" > >> > > >> > > >> > _______________________________________________________________________________ > >> > UNSUBSCRIBE or access ARSlist Archives at www.arslist.org > >> > attend wwrug10 www.wwrug.com ARSlist: "Where the Answers Are" > >> > > >> > > >> > >> -- > >> View this message in context: > >> > http://old.nabble.com/Java-7.1-API-with-ARS-7.0.01-tp29416861p29420306.html > >> Sent from the ARS (Action Request System) mailing list archive at > >> Nabble.com. > >> > >> > >> > _______________________________________________________________________________ > >> UNSUBSCRIBE or access ARSlist Archives at www.arslist.org > >> attend wwrug10 www.wwrug.com ARSlist: "Where the Answers Are" > >> > > > > > _______________________________________________________________________________ > > UNSUBSCRIBE or access ARSlist Archives at www.arslist.org > > attend wwrug10 www.wwrug.com ARSlist: "Where the Answers Are" > > > > > > -- > View this message in context: > http://old.nabble.com/Java-7.1-API-with-ARS-7.0.01-tp29416861p29427830.html > Sent from the ARS (Action Request System) mailing list archive at > Nabble.com. > > > _______________________________________________________________________________ > UNSUBSCRIBE or access ARSlist Archives at www.arslist.org > attend wwrug10 www.wwrug.com ARSlist: "Where the Answers Are" > _______________________________________________________________________________ UNSUBSCRIBE or access ARSlist Archives at www.arslist.org attend wwrug10 www.wwrug.com ARSlist: "Where the Answers Are"

