package installation issue
Hi,
I sucessfully packaged my extension but then the installation always fail and I can't see what I am doing wrong at this point.
Here is my manifest :
<?xml version="1.0"?>
<ExtensionManifest
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ExtensionBundleId="com.ozalto.someextension" ExtensionBundleVersion="1.0.0" Version="5.0">
<ExtensionList>
<Extension Id="com.ozalto.someextension.panel" Version="1.0.0"/>
</ExtensionList>
<ExecutionEnvironment>
<HostList>
<Host Name="IDSN" Version="[11.0,15.9]"/>
</HostList>
<LocaleList>
<Locale Code="All"/>
</LocaleList>
<RequiredRuntimeList>
<RequiredRuntime Name="CSXS" Version="6.0"/>
</RequiredRuntimeList>
</ExecutionEnvironment>
<DispatchInfoList>
<Extension Id="com.ozalto.someextension.panel">
<DispatchInfo>
<Resources>
<MainPath>./html/index.html</MainPath>
<ScriptPath>./jsx/main.jsx</ScriptPath>
<CEFCommandLine>
<Parameter>--enable-nodejs</Parameter>
<Parameter>--mixed-context</Parameter>
</CEFCommandLine>
</Resources>
<Lifecycle>
<AutoVisible>true</AutoVisible>
</Lifecycle>
<UI>
<Type>Panel</Type>
<Menu>Export PDF interactif</Menu>
<Geometry>
<Size>
<Height>160</Height>
<Width>600</Width>
</Size>
<MinSize>
<Height>160</Height>
<Width>505</Width>
</MinSize>
<MaxSize>
<Height>160</Height>
<Width>800</Width>
</MaxSize>
</Geometry>
<Icons>
<Icon Type="Normal">./assets/icon_light.png</Icon>
<Icon Type="RollOver">./assets/icon_light.png</Icon>
<Icon Type="DarkNormal">./assets/icon_dark.png</Icon>
<Icon Type="DarkRollOver">./assets/icon_dark.png</Icon>
</Icons>
</UI>
</DispatchInfo>
</Extension>
</DispatchInfoList>
</ExtensionManifest>
And there is also teh mxi file as I use host adapters :
<?xml version="1.0"?>
<macromedia-extension id="com.ozalto.someextension" name="someextension" requires-restart="true" version="1.0.0">
<author name="Ozalto SARL"/>
<description></description>
<license-agreement></license-agreement>
<products>
<product name="InDesign" version="10.0" primary="true"/>
</products>
<files>
<file destination="" file-type="CSXS" source="someextension.zxp"/>
<file destination="$indesign/Plug-Ins" minVersion="10.0" maxVersion="10.9" platform="win" products="InDesign" shared="true" source="host_adapters/ID/win32/IDHostAdapter.apln"/>
<file destination="$indesign/Plug-Ins" minVersion="10.0" maxVersion="10.9" platform="win" products="InDesign" shared="true" source="host_adapters/ID/win32/(IDHostAdapter Resources)"/>
<file destination="$indesign/Plug-Ins" minVersion="10.0" maxVersion="10.9" platform="win" products="InDesign64" shared="true" source="host_adapters/ID/win64/IDHostAdapter.apln"/>
<file destination="$indesign/Plug-Ins" minVersion="10.0" maxVersion="10.9" platform="win" products="InDesign64" shared="true" source="host_adapters/ID/win64/(IDHostAdapter Resources)"/>
<file destination="$indesign/Plug-Ins" minVersion="10.0" maxVersion="10.9" platform="mac" products="InDesign" shared="true" source="host_adapters/ID/mac/IDHostAdapter.InDesignPlugin"/>
</files>
</macromedia-extension>
And I compile this way :
'/url/to/ZXPSignCmd' -sign '/Url/to/someextensionfolder /Url/to/someextension.zxp' "/url/to/certificate.p12" password -tsa http://timestamp.globalsign.com/scripts/timestamp.dll
Then the installation fails claiming
Failed to parse the extension file: please assign a correct name to your extension and check that path doesn't contain international characters. Path to extension must contain English character only for installation to complete
Anything obvious ?
Thanks in advance for your hints,
Loic
