Remote Debugger Not Starting
I am playing around with CEP extension creation, and I'm having trouble getting the debug options to work. I have the correct entries in the registry (and even put them for previous CXSX versions just to be safe). The extension loads (finally), but I can't open the remote debugger, and by all accounts it can't find my .debug file.
Here is the contents of my .debug file:
<?xml version="1.0" encoding="UTF-8"?>
<ExtensionList>
<!-- 1 -->
<Extension Id="space.lahan.test.panel">
<HostList>
<!-- 2 -->
<Host Name="PHXS" Port="8088"/>
<Host Name="PHSP" Port="8089"/>
</HostList>
</Extension>
</ExtensionList>
And here's the contents of manifest.xml
<?xml version='1.0' encoding='UTF-8'?>
<ExtensionManifest ExtensionBundleId="space.lahan.test" ExtensionBundleVersion="1.0.0" Version="6.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<ExtensionList>
<Extension Id="space.lahan.test.panel" Version="1.0.0" />
</ExtensionList>
<ExecutionEnvironment>
<HostList>
<Host Name="PHSP" Version="16.0"/>
<Host Name="PHXS" Version="16.0"/>
</HostList>
<LocaleList>
<Locale Code="All" />
</LocaleList>
<RequiredRuntimeList>
<RequiredRuntime Name="CSXS" Version="6.0" />
</RequiredRuntimeList>
</ExecutionEnvironment>
<DispatchInfoList>
<Extension Id="space.lahan.test.panel">
<DispatchInfo>
<Resources>
<MainPath>./client/index.html</MainPath>
<ScriptPath>./host/index.jsx</ScriptPath>
<CEFCommandLine />
</Resources>
<Lifecycle>
<AutoVisible>true</AutoVisible>
</Lifecycle>
<UI>
<Type>Panel</Type>
<Menu>My First Panel</Menu>
<Geometry>
<Size>
<Height>500</Height>
<Width>350</Width>
</Size>
</Geometry>
<Icons />
</UI>
</DispatchInfo>
</Extension>
</DispatchInfoList>
</ExtensionManifest>
Finally, here's the start of my log file:
2018-07-25 23:54:28:170 : INFO GetProcessDpiAwareness succeeded with the value 2
2018-07-25 23:54:28:170 : INFO SetProcessDpiAwareness succeeded with the value 2
2018-07-25 23:54:28:172 : ERROR Error occurs while getting debug port. No such node (HostList)
[0725/235428.203:VERBOSE1:pref_proxy_config_tracker_impl.cc(151)] 00000201613AB010: set chrome proxy config service to 00000201613AA520
[0725/235428.203:VERBOSE1:pref_proxy_config_tracker_impl.cc(278)] 00000201613AB010: Done pushing proxy to UpdateProxyConfig
[0725/235428.204:VERBOSE1:multi_log_ct_verifier.cc(75)] Adding CT log: Google 'Pilot' log
Here is the directory structure and .debug file:
I would appreciate help.
