<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Cannot load Arcobject java plugin to eclipse (64 bit) in ArcObjects SDK Questions</title>
    <link>https://community.esri.com/t5/arcobjects-sdk-questions/cannot-load-arcobject-java-plugin-to-eclipse-64/m-p/248251#M6438</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks to the comment now my java application is working on eclipse 64 bit system.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Just a follow up to th question , i have editor license and its working fine on eclipse , but when i export and run the jar file through command line , i am getting error ---&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;"Unable to initialize ArcObjects environment.&lt;BR /&gt;AutomationException: 0x800401f5 - The specified product or version does not exis&lt;BR /&gt;t on this machine. in 'ArcGISVersion.Version'"&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;P.S&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Following is the engine code that i am using ---&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
 EngineInitializer.initializeEngine();
&amp;nbsp;&amp;nbsp; //Initialize ArcGIS license
&amp;nbsp;&amp;nbsp; AoInitialize aoInit = new AoInitialize();
&amp;nbsp;&amp;nbsp; initializeArcGISLicenses(aoInit);
&amp;nbsp;&amp;nbsp; SdeOrPgdb accessFileGDB = new SdeOrPgdb(); 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; accessFileGDB.openFromFile_pGDB_Workspace();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; System.out.println("Done.");&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp; //Ensure any ESRI libraries are unloaded in the correct order
&amp;nbsp;&amp;nbsp; aoInit.shutdown();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }catch(Exception e){
&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp; System.out.println("Error: " + e.getMessage());
&amp;nbsp;&amp;nbsp; System.out.println("Sample failed.&amp;nbsp; Exiting...");
&amp;nbsp;&amp;nbsp; e.printStackTrace();
&amp;nbsp;&amp;nbsp; System.exit(-1);
&amp;nbsp; }

&amp;nbsp; private static void initializeArcGISLicenses(AoInitialize aoInit) {
&amp;nbsp; try {
&amp;nbsp;&amp;nbsp; if (aoInit.isProductCodeAvailable(esriLicenseProductCode.esriLicenseProductCodeEngine) 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; == esriLicenseStatus.esriLicenseAvailable)
&amp;nbsp;&amp;nbsp;&amp;nbsp; aoInit.initialize(esriLicenseProductCode.esriLicenseProductCodeEngine);
&amp;nbsp;&amp;nbsp; else if (aoInit.isProductCodeAvailable(esriLicenseProductCode.esriLicenseProductCodeArcView) 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; == esriLicenseStatus.esriLicenseAvailable)
&amp;nbsp;&amp;nbsp;&amp;nbsp; aoInit.initialize(esriLicenseProductCode.esriLicenseProductCodeArcView);
&amp;nbsp;&amp;nbsp; else if (aoInit.isProductCodeAvailable(esriLicenseProductCode.esriLicenseProductCodeArcEditor) 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; == esriLicenseStatus.esriLicenseAvailable)
&amp;nbsp;&amp;nbsp;&amp;nbsp; aoInit.initialize(esriLicenseProductCode.esriLicenseProductCodeArcEditor);
&amp;nbsp;&amp;nbsp; else if (aoInit.isProductCodeAvailable(esriLicenseProductCode.esriLicenseProductCodeArcInfo) 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; == esriLicenseStatus.esriLicenseAvailable)
&amp;nbsp;&amp;nbsp;&amp;nbsp; aoInit.initialize(esriLicenseProductCode.esriLicenseProductCodeArcInfo);
&amp;nbsp;&amp;nbsp; else{
&amp;nbsp;&amp;nbsp;&amp;nbsp; System.err.println("Could not initialize an Engine or ArcView or ArcInfo or ArcEditor license. Exiting application.");
&amp;nbsp;&amp;nbsp;&amp;nbsp; System.exit(-1);
&amp;nbsp;&amp;nbsp; }
&amp;nbsp; } catch (Exception e) {e.printStackTrace();}
 

&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 11 Dec 2021 12:21:28 GMT</pubDate>
    <dc:creator>IshanKaushik</dc:creator>
    <dc:date>2021-12-11T12:21:28Z</dc:date>
    <item>
      <title>Cannot load Arcobject java plugin to eclipse (64 bit)</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/cannot-load-arcobject-java-plugin-to-eclipse-64/m-p/248240#M6427</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I installed following setup available in ArcGis Desktop installer&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1) ArcGis Desktop.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2) Under ArcGis Developer Resources --&amp;gt; ArcObject SDK for Java Platform.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This installlation was done on window 7 64 bit computer.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;My problem is i am not able to install the eclipse pluggin.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Do i am require to install java runtime SDK ?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;But that installation is not available in ArcGis Destop installation manager.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Can i develope java standalone application in eclipse with arcGis Destop evironment of 64 bit system?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Or is it because java arcObject 10 is not compatible with 64 bit system.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Jul 2013 15:33:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/cannot-load-arcobject-java-plugin-to-eclipse-64/m-p/248240#M6427</guid>
      <dc:creator>IshanKaushik</dc:creator>
      <dc:date>2013-07-16T15:33:03Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot load Arcobject java plugin to eclipse (64 bit)</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/cannot-load-arcobject-java-plugin-to-eclipse-64/m-p/248241#M6428</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Yes you need to use a 32 bit version of java. Here is the System requirement.&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://resources.arcgis.com/content/arcgissdks/10.0/system-requirements"&gt;http://resources.arcgis.com/content/arcgissdks/10.0/system-requirements&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you are developing some console based jobs etc then this should be sufficient but if there is something that requires a UI component then you need to use ArcGIS Engine.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Jul 2013 17:08:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/cannot-load-arcobject-java-plugin-to-eclipse-64/m-p/248241#M6428</guid>
      <dc:creator>SachinKanaujia</dc:creator>
      <dc:date>2013-07-16T17:08:42Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot load Arcobject java plugin to eclipse (64 bit)</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/cannot-load-arcobject-java-plugin-to-eclipse-64/m-p/248242#M6429</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks , for response but there it says that Windows Vista Ultimate, Enterprise, Business, Home Premium (32-bit and 64-bit (EM64T)) are supported for ArcObjects SDK for the Java Platform.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am using same comfrigration Window 7 and java sdk installed . There i can't see anything specific to engine and destop environment . Furthermore you said that engine environment is required if GUI is there , like a standalone application . But in documentation , at following link &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://help.arcgis.com/en/sdk/10.0/java_ao_adf/conceptualhelp/engine/index.html#//0001000003n1000000"&gt;http://help.arcgis.com/en/sdk/10.0/java_ao_adf/conceptualhelp/engine/index.html#//0001000003n1000000&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;, They have shown two bootsrap methord , one for "AGSENGINEJAVA" thats for Engine environment and other "AGSDESKTOPJAVA" for destop environment .&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am getting confused whats the dilema here , can you please clear it .&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The basic problem is i want to use ArcGis Destop License environment , and create an java standalone application on 64 bit system.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jul 2013 07:29:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/cannot-load-arcobject-java-plugin-to-eclipse-64/m-p/248242#M6429</guid>
      <dc:creator>IshanKaushik</dc:creator>
      <dc:date>2013-07-17T07:29:12Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot load Arcobject java plugin to eclipse (64 bit)</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/cannot-load-arcobject-java-plugin-to-eclipse-64/m-p/248243#M6430</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;OK , i somehow instal plugin to eclipse but the problem is not resolved yet .&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;While running my application following error comes in console of eclipse&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;"Could not load native libraries.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;java.lang.UnsatisfiedLinkError: C:\Program Files (x86)\ArcGIS\Desktop10.0\Bin\ntvinv.dll: Can't load IA 32-bit .dll on a AMD 64-bit platform"&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What does that mean ???&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jul 2013 13:15:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/cannot-load-arcobject-java-plugin-to-eclipse-64/m-p/248243#M6430</guid>
      <dc:creator>IshanKaushik</dc:creator>
      <dc:date>2013-07-17T13:15:29Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot load Arcobject java plugin to eclipse (64 bit)</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/cannot-load-arcobject-java-plugin-to-eclipse-64/m-p/248244#M6431</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Looks like it is still picking up the 64 bit JRE. Can you check and make sure you run it on a 32 bit JRE&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jul 2013 13:19:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/cannot-load-arcobject-java-plugin-to-eclipse-64/m-p/248244#M6431</guid>
      <dc:creator>SachinKanaujia</dc:creator>
      <dc:date>2013-07-17T13:19:35Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot load Arcobject java plugin to eclipse (64 bit)</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/cannot-load-arcobject-java-plugin-to-eclipse-64/m-p/248245#M6432</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;That mean i am require to have both 32 bit and 64 bit java jdk installed on my system ?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jul 2013 14:03:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/cannot-load-arcobject-java-plugin-to-eclipse-64/m-p/248245#M6432</guid>
      <dc:creator>IshanKaushik</dc:creator>
      <dc:date>2013-07-17T14:03:23Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot load Arcobject java plugin to eclipse (64 bit)</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/cannot-load-arcobject-java-plugin-to-eclipse-64/m-p/248246#M6433</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Ok , i installed the 32 bid jdk and provided eclipse to run through 32 bit jre in run configration . But the error is same as mentioned above.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Could not load native libraries.&lt;BR /&gt;java.lang.UnsatisfiedLinkError: C:\Program Files (x86)\ArcGIS\Desktop10.0\Bin\ntvinv.dll: Can't load IA 32-bit .dll on a AMD 64-bit platform&lt;/STRONG&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jul 2013 14:09:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/cannot-load-arcobject-java-plugin-to-eclipse-64/m-p/248246#M6433</guid>
      <dc:creator>IshanKaushik</dc:creator>
      <dc:date>2013-07-17T14:09:25Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot load Arcobject java plugin to eclipse (64 bit)</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/cannot-load-arcobject-java-plugin-to-eclipse-64/m-p/248247#M6434</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Can you verify if its taking the 32 bit JRE? To be absolutely sure I would recommend you to run in from command line. Set the java path, ArcGIS related path, "check the java -version" and then run some simple test program. Its clearly an issue where its not able to load a 32 bit dll&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jul 2013 15:09:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/cannot-load-arcobject-java-plugin-to-eclipse-64/m-p/248247#M6434</guid>
      <dc:creator>SachinKanaujia</dc:creator>
      <dc:date>2013-07-17T15:09:15Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot load Arcobject java plugin to eclipse (64 bit)</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/cannot-load-arcobject-java-plugin-to-eclipse-64/m-p/248248#M6435</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I tried to run via 32 bit sdk , it is compiling it but again in my code where i initialise the licence as&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;"EngineInitializer.initializeEngine();"&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It promts exception of "Unable to initialize ArcObjects environment.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;AutomationException: 0x800401f5 - The specified product or version does not exis&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;t on this machine. in 'ArcGISVersion.Version' ".&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Do i need to change my code to smthing initialising Desktop not Engine ?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Or as u said earlier standalone tool wont work without engine environment ?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jul 2013 03:42:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/cannot-load-arcobject-java-plugin-to-eclipse-64/m-p/248248#M6435</guid>
      <dc:creator>IshanKaushik</dc:creator>
      <dc:date>2013-07-18T03:42:44Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot load Arcobject java plugin to eclipse (64 bit)</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/cannot-load-arcobject-java-plugin-to-eclipse-64/m-p/248249#M6436</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Can you provide the Initialization code you are using? It appears you are not binding your Arcobjects environment correctly to the available product on your machine.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jul 2013 14:55:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/cannot-load-arcobject-java-plugin-to-eclipse-64/m-p/248249#M6436</guid>
      <dc:creator>SachinKanaujia</dc:creator>
      <dc:date>2013-07-18T14:55:38Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot load Arcobject java plugin to eclipse (64 bit)</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/cannot-load-arcobject-java-plugin-to-eclipse-64/m-p/248250#M6437</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Yes, the system requirements may be slightly confusing with respect to the 64-bit thing.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;ArcObjects can run on a 64-bit machine, but ONLY as a 32-bit application.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ArcObjects cannot be loaded into a 64-bit Java process.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Therefore, on a 64-bit machine, you will need to use 32-bit JDK/JVM for developing and running your ArcObjects Java-based applications.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The ArcGIS Runtime SDK for Java SE, which is what this forum is about, CAN run in pure 64-bit Java, and your applications built with this SDK CAN run as native 64-bit applications (or 32-bit if you want), because the libraries are not based on ArcObjects.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The ArcGIS Runtime SDK for Java SE is a completely different SDK product and toolset, a different technology, than the ArcObjects SDK for Java.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Does this help? &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I can understand the confusion, but I do hope this helps.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jul 2013 15:05:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/cannot-load-arcobject-java-plugin-to-eclipse-64/m-p/248250#M6437</guid>
      <dc:creator>EricBader</dc:creator>
      <dc:date>2013-07-18T15:05:19Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot load Arcobject java plugin to eclipse (64 bit)</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/cannot-load-arcobject-java-plugin-to-eclipse-64/m-p/248251#M6438</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks to the comment now my java application is working on eclipse 64 bit system.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Just a follow up to th question , i have editor license and its working fine on eclipse , but when i export and run the jar file through command line , i am getting error ---&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;"Unable to initialize ArcObjects environment.&lt;BR /&gt;AutomationException: 0x800401f5 - The specified product or version does not exis&lt;BR /&gt;t on this machine. in 'ArcGISVersion.Version'"&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;P.S&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Following is the engine code that i am using ---&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
 EngineInitializer.initializeEngine();
&amp;nbsp;&amp;nbsp; //Initialize ArcGIS license
&amp;nbsp;&amp;nbsp; AoInitialize aoInit = new AoInitialize();
&amp;nbsp;&amp;nbsp; initializeArcGISLicenses(aoInit);
&amp;nbsp;&amp;nbsp; SdeOrPgdb accessFileGDB = new SdeOrPgdb(); 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; accessFileGDB.openFromFile_pGDB_Workspace();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; System.out.println("Done.");&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp; //Ensure any ESRI libraries are unloaded in the correct order
&amp;nbsp;&amp;nbsp; aoInit.shutdown();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }catch(Exception e){
&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp; System.out.println("Error: " + e.getMessage());
&amp;nbsp;&amp;nbsp; System.out.println("Sample failed.&amp;nbsp; Exiting...");
&amp;nbsp;&amp;nbsp; e.printStackTrace();
&amp;nbsp;&amp;nbsp; System.exit(-1);
&amp;nbsp; }

&amp;nbsp; private static void initializeArcGISLicenses(AoInitialize aoInit) {
&amp;nbsp; try {
&amp;nbsp;&amp;nbsp; if (aoInit.isProductCodeAvailable(esriLicenseProductCode.esriLicenseProductCodeEngine) 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; == esriLicenseStatus.esriLicenseAvailable)
&amp;nbsp;&amp;nbsp;&amp;nbsp; aoInit.initialize(esriLicenseProductCode.esriLicenseProductCodeEngine);
&amp;nbsp;&amp;nbsp; else if (aoInit.isProductCodeAvailable(esriLicenseProductCode.esriLicenseProductCodeArcView) 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; == esriLicenseStatus.esriLicenseAvailable)
&amp;nbsp;&amp;nbsp;&amp;nbsp; aoInit.initialize(esriLicenseProductCode.esriLicenseProductCodeArcView);
&amp;nbsp;&amp;nbsp; else if (aoInit.isProductCodeAvailable(esriLicenseProductCode.esriLicenseProductCodeArcEditor) 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; == esriLicenseStatus.esriLicenseAvailable)
&amp;nbsp;&amp;nbsp;&amp;nbsp; aoInit.initialize(esriLicenseProductCode.esriLicenseProductCodeArcEditor);
&amp;nbsp;&amp;nbsp; else if (aoInit.isProductCodeAvailable(esriLicenseProductCode.esriLicenseProductCodeArcInfo) 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; == esriLicenseStatus.esriLicenseAvailable)
&amp;nbsp;&amp;nbsp;&amp;nbsp; aoInit.initialize(esriLicenseProductCode.esriLicenseProductCodeArcInfo);
&amp;nbsp;&amp;nbsp; else{
&amp;nbsp;&amp;nbsp;&amp;nbsp; System.err.println("Could not initialize an Engine or ArcView or ArcInfo or ArcEditor license. Exiting application.");
&amp;nbsp;&amp;nbsp;&amp;nbsp; System.exit(-1);
&amp;nbsp;&amp;nbsp; }
&amp;nbsp; } catch (Exception e) {e.printStackTrace();}
 

&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 12:21:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/cannot-load-arcobject-java-plugin-to-eclipse-64/m-p/248251#M6438</guid>
      <dc:creator>IshanKaushik</dc:creator>
      <dc:date>2021-12-11T12:21:28Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot load Arcobject java plugin to eclipse (64 bit)</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/cannot-load-arcobject-java-plugin-to-eclipse-64/m-p/248252#M6439</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Make sure that the required environment variables are set correctly before launching the jar. Also &amp;lt;Arcgishome&amp;gt;/bin is in your PATH&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jul 2013 14:43:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/cannot-load-arcobject-java-plugin-to-eclipse-64/m-p/248252#M6439</guid>
      <dc:creator>SachinKanaujia</dc:creator>
      <dc:date>2013-07-22T14:43:38Z</dc:date>
    </item>
  </channel>
</rss>

