stephan@278: @echo off stephan@278: if "%1" == "setenv" goto setenv stephan@278: stephan@278: %comspec% /k RunExample.bat setenv %1 stephan@278: goto exit stephan@278: stephan@278: :setenv stephan@278: @echo Setting environment for using MXD2map based on gisinternals.com windows builds. stephan@278: @echo See http://mxd2map.org and http://gisinternals.com/sdk/ for details. stephan@278: stephan@278: if "%2"=="hideoci" goto hideoci stephan@278: stephan@278: set ocipath=0 stephan@278: set _path="%PATH:;=" "%" stephan@278: for %%p in (%_path%) do if not "%%~p"=="" if exist %%~p\oci.dll set ocipath=1 stephan@278: stephan@278: if "%ocipath%"=="0" goto hideoci stephan@278: @echo WARNING: If you encounter problems with missing oci libraries then type: stephan@278: @echo MXD2mapShell hideoci stephan@278: goto setenv2 stephan@278: stephan@278: :hideoci stephan@278: @echo Hiding the OCI plugin library. aheinecke@324: if not exist %CD%\mapserver\bin\gdal\plugins-optional mkdir %CD%\mapserver\bin\gdal\plugins-optional aheinecke@324: if exist %CD%\mapserver\bin\gdal\plugins\ogr_OCI.dll move %CD%\mapserver\bin\gdal\plugins\ogr_OCI.dll %CD%\mapserver\bin\gdal\plugins-optional\ogr_OCI.dll aheinecke@324: if exist %CD%\mapserver\bin\gdal\plugins\gdal_GEOR.dll move %CD%\mapserver\bin\gdal\plugins\gdal_GEOR.dll %CD%\mapserver\bin\gdal\plugins-optional\gdal_GEOR.dll stephan@278: stephan@278: REM SEE Details about the installation of arcobjects.jar!! stephan@278: REM http://forums.arcgis.com/threads/17398-Unable-to-initialize-ArcObjects-environment-%28Java-API%29 stephan@278: REM http://forums.arcgis.com/threads/12833-ArcGIS-Server-initialize-license-%28Java-version%29 stephan@278: REM SEE Details about the installation of arcobjects.jar!! stephan@278: :setenv2 aheinecke@324: SET PATH=C:\Program Files\ArcGIS\DeveloperKit10.0\java\jre\bin;C:\Program Files\Java\jdk1.6.0_26\bin;C:\Program Files\ArcGIS\Desktop10.0\bin;C:\Program Files\ArcGIS\Desktop10.0\java\lib;C:\Program Files\ArcGIS\DeveloperKit10.0\java\tools\ant\bin;%CD%\mapserver\bin;%CD%\mapserver\bin\gdal\python\osgeo;%CD%\mapserver\bin\proj\apps;%CD%\mapserver\bin\gdal\apps;%CD%\mapserver\bin\ms\apps;%CD%\mapserver\bin\gdal\csharp;%CD%\mapserver\bin\ms\csharp;%CD%\mapserver\bin\curl;%CD%\mapserver\bin\ms\java;%PATH% aheinecke@324: SET GDAL_DATA=%CD%\mapserver\bin\gdal-data aheinecke@324: SET GDAL_DRIVER_PATH=%CD%\mapserver\bin\gdal\plugins aheinecke@324: SET PYTHONPATH=%CD%\mapserver\bin\gdal\python\osgeo stephan@278: SET PROJ_LIB=%CD%\bin\proj\SHARE stephan@278: SET CURL_CA_BUNDLE=C:\ms4w\Apache\conf\ca-bundle\cacert.pem stephan@278: SET JAVA_HOME=C:\Program Files\Java\jdk1.6.0_26 stephan@278: stephan@278: java -jar mxd2map.jar -m example\example.mxd -t example\template.map -a "%HOMEDRIVE%%HOMEPATH%\MXD2map\example\output.map" stephan@278: stephan@278: :exit