Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

White Table #30

Closed
hervedumoulinarc opened this issue Dec 25, 2016 · 16 comments
Closed

White Table #30

hervedumoulinarc opened this issue Dec 25, 2016 · 16 comments

Comments

@hervedumoulinarc
Copy link

Hi, Your app is very interesting but it display only a white table...

@erikvullings
Copy link
Contributor

@hervedumoulinarc Hi, the reason is probably that you aren't running the tileserver. Basically, you need three things to get it running:

  1. Go to Mapzen and get a developer key: use that in world-explorer-server/config.json: it is needed to retrieve tiles from mapzen (which are subsequently cached)
  2. The WorldExplorer app starts by loading a config file, defined in Initialize.cs (in my case, it is from dropbox, but it can be any URL). You need to copy the file and replace this with your own URL if you want to make changes. The reason I placed it in a Dropbox folder is that, when changing location and network, and therefore IP addresses, I don't want to recompile the WorldExplorer app again.
    private string configUrl = "https://dl.dropboxusercontent.com/s/6p6xiulujj4j1bw/config_erik.json?dl=0";

The main parts are the reference (keys: tileServer, mqttServer: their value must be replaced with the (accessible) IP address from the PC that is hosting the tile and MQTT server. In addition, you can specify your views and the initial view (key: InitialView) that is loaded upon startup. You can use the voice commands to switch between views, e.g. 'Switch to Beach' will display The Hague.
BTW the tile server's IP address is also used in the SymbolTest layer: it demonstrates how to load a JSON file (based on point features).

  1. You need to run the world-explorer-server (transpile the typescript project)
npm i -g typings typescript
npm i
typings i
tsc
node dist/cli.js -s IP_ADDRESS_FROM_YOUR_SERVER

If you want to control the view from a leaflet map running locally on your server, you also need to install and start the MQTT server (mosca). By default, WorldExplorer joins session 'one', as does the local map, and by pressing the globe (menu on the left) in the leaflet map, the map will send its center coordinates and zoom level to WorldExplorer, which will switch its view (and vice versa).

npm i -g mosca
mosca -p 8026 --http-port 8028 # or on Windows, use mosca_start.bat

If multiple WorldExplorer's join the same session (one of them may be the Unity Editor), you will see their cursor too.

Hope this helps... feel free to ask further clarifications...

@hervedumoulinarc
Copy link
Author

Hi and thanks you very much, I will try this as soon as possible

@hervedumoulinarc
Copy link
Author

Hi I don't understand when you say ''transpile the typescript project'' I assume it is for running the server... but how can I do this ?
Thanks again

@erikvullings
Copy link
Contributor

No worries: The server is written in typescript, a superset of javascript. So we first transpile the typescript to javascript in order to run it. You do this with calling tsc from the world-explorer-server folder (it uses the tsconfig.json file for its settings), after which you should have a dist folder with the javascript code that node can run.

@hervedumoulinarc
Copy link
Author

Hello again. What do you mean by calling tsc ? I opened tsconfig.json file in visual studio... the dist folder doesn't appear in explorer after that...

@erikvullings
Copy link
Contributor

Assuming you have installed node.js, and you have run the following commands from the command line in the world-explorer-server folder

npm i -g typings typescript
npm i
typings i
tsc

the first line installes the typings and typescript compiler globally and adds them to your path,
the second line installs all node dependencies,
the third line installs all typings dependencies (kind of header files for typescript),
and the final line transpiles the typescript code to javascript,
you should end with a dist folder containing the javascript files, which you should be able to run using

node dist/cli.js -s IP_ADDRESS_FROM_YOUR_SERVER

@hervedumoulinarc
Copy link
Author

Hi thanks my server is running now...
About step 2; Should I create a new config file or use the config.json already in world-explorer-server because in your exemple of file https://dl.dropboxusercontent.com/s/6p6xiulujj4j1bw/config_erik.json?dl=0 there is no url to report my mapzen key, what should I do with this script ?
Again thanks you are great teacher.

@erikvullings
Copy link
Contributor

Hi, and I'm happy to help:

You should create your own config.json and point in the C# code to that, i.e. update the reference in initialize.cs, since I might change the config.json to suit my needs. For example, a reference to localhost will work in the Unity Editor, but not for the HoloLens device or emulator, since they need an IP address (their localhost is not the place where the server is running).

The mapzen key should go in the config.json in the world-explorer-server folder (they have the same name, so sorry about the confusion).

@hervedumoulinarc
Copy link
Author

'worldexplorer.exe' (CoreCLR: DefaultDomain): Loaded 'c:\data\Programs\WindowsApps\Microsoft.NET.CoreRuntime.1.1_1.1.24301.0_x86__8wekyb3d8bbwe\System.Private.CoreLib.ni.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\entrypoint\WorldExplorer.exe'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
Symbols for the module 'WorldExplorer.exe' were not loaded.

  1. Use a debug build configuration or disable the debug option 'Enable Just My Code'.
  2. Check the 'Symbols' settings under debugging options.'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\System.Runtime.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
    'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'c:\data\Programs\WindowsApps\Microsoft.NET.CoreRuntime.1.1_1.1.24301.0_x86__8wekyb3d8bbwe\mscorlib.ni.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
    'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\WinMetadata\Windows.winmd'. Module was built without symbols.
    'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\UnityPlayer.winmd'. Module was built without symbols.
    'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\System.Runtime.InteropServices.WindowsRuntime.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
    'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\System.Runtime.WindowsRuntime.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
    'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\WinRTBridge.winmd'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
    'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\BridgeInterface.winmd'. Module was built without symbols.
    'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\System.Collections.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
    'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\UnityEngine.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
    'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\Assembly-CSharp.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
    'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\UnityEngine.UI.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
    'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\System.Threading.Tasks.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
    'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\Assembly-UnityScript.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
    'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\M2Mqtt.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
    'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\UnityEngine.Networking.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
    'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\UnityEngine.HoloLens.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
    'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\System.IO.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
    'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\System.Net.Primitives.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
    'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\System.Private.Networking.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
    'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\Microsoft.Win32.Primitives.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
    'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\System.Net.Requests.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
    'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\System.Net.WebHeaderCollection.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
    'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\System.Collections.Specialized.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
    'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\System.Reflection.Primitives.dll'. Module was built without symbols.
    'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\System.Reflection.TypeExtensions.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
    'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\System.Reflection.dll'. Module was built without symbols.
    'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\System.Runtime.Extensions.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
    'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\System.Private.Uri.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
    'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\System.Text.Encoding.dll'. Module was built without symbols.
    'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\System.Threading.Timer.dll'. Module was built without symbols.
    'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\UnityEngine.VR.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
    'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\System.Runtime.InteropServices.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
    'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\System.Threading.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
    'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\System.Diagnostics.Debug.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
    Module information:
    Built with Compiler Ver '190023918'
    Built from '5.6/release' branch
    Version is '5.6.0b3 (358ff4ed3952)'
    Release build
    Application type 'D3D11'
    Used 'UWP'

OS 'Windows 10 (10.0.14393)'

PlayerConnection initialized from C:/Data/Users/DefaultAccount/AppData/Local/DevelopmentFiles/WorldExplorerVS.Release_x86.HerveDumoulin/Data (debug = 0)

PlayerConnection initialized network socket : 0.0.0.0 55176

Multi-casting "[IP] 192.168.1.15 [Port] 55176 [Flags] 2 [Guid] 1325798379 [EditorId] 4294967295 [Version] 1048832 [Id] MetroPlayerX86(HoloLens-1H6UH) [Debug] 0" to [225.0.0.222:54997]...

Started listening to [0.0.0.0:55176]

GfxDevice: creating device client; threaded=1

Direct3D:

Version:  Direct3D 11.0 [level 11.1]

Renderer: HoloLens Graphics (ID=0x22b0)

Vendor:   Intel

VRAM:     604 MB

Initialize engine version: 5.6.0b3 (358ff4ed3952)

'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\UnityEngineProxy.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\System.Linq.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\System.Reflection.Extensions.dll'. Module was built without symbols.
OnLevelWasLoaded was found on TypedMonoBehaviour
This message has been deprecated and will be removed in a later version of Unity.
Add a delegate to SceneManager.sceneLoaded instead to get notifications after scene loading has completed

(Filename: C:\buildslave\unity\build\Runtime/Mono/MonoScriptCache.cpp Line: 375)

OnLevelWasLoaded was found on ObservableMonoBehaviour
This message has been deprecated and will be removed in a later version of Unity.
Add a delegate to SceneManager.sceneLoaded instead to get notifications after scene loading has completed

(Filename: C:\buildslave\unity\build\Runtime/Mono/MonoScriptCache.cpp Line: 375)

Logical Screen DPI is 144.00.

If your machine has multiple graphics adapters, Unity may have created a WindowContext on the wrong adapter. If you experience a black screen when playing, please restart the Editor.

(Filename: C:/buildslave/unity/build/Runtime/VR/VRDevice.cpp Line: 179)

UnloadTime: 5.711945 ms

Waking up...

(Filename: C:/buildslave/unity/build/artifacts/generated/Metro/runtime/DebugBindings.gen.cpp Line: 51)

The referenced script on this Behaviour (Game Object 'Point light') is missing!

(Filename: C:/buildslave/unity/build/Runtime/Mono/MonoBehaviour.cpp Line: 1746)

The referenced script on this Behaviour (Game Object 'Point light') is missing!

(Filename: C:/buildslave/unity/build/Runtime/Mono/MonoBehaviour.cpp Line: 1746)

[Singleton] An instance of Assets.Scripts.SpeechManager is needed in the scene, so 'BaseObject: NotAvailableDuringDebugging' was created with DontDestroyOnLoad.

(Filename: C:/buildslave/unity/build/artifacts/generated/Metro/runtime/DebugBindings.gen.cpp Line: 51)

[Singleton] An instance of SelectionHandler is needed in the scene, so 'BaseObject: NotAvailableDuringDebugging' was created with DontDestroyOnLoad.

(Filename: C:/buildslave/unity/build/artifacts/generated/Metro/runtime/DebugBindings.gen.cpp Line: 51)

[Singleton] An instance of Assets.Scripts.AppState is needed in the scene, so 'BaseObject: NotAvailableDuringDebugging' was created with DontDestroyOnLoad.

(Filename: C:/buildslave/unity/build/artifacts/generated/Metro/runtime/DebugBindings.gen.cpp Line: 51)

'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\System.Text.RegularExpressions.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\System.Globalization.dll'. Module was built without symbols.
improper JSON formatting:

<script type="text/javascript">//</script><script type="text/javascript">//var $CJ={"p":"NHgd6aE5FKlC3B8S5b4FfG4\u002b3qtQqW8B\u002b7bXcDj\u002bkDQ\u003d0","c":null};document.domain="live.com";
//]]></script>

<script type="text/javascript">var Flight={"version":"odsp-next-prod_ship-2016-12-05_20161216.001","name":"ship-2016-12-05","manifest":"next","session":"76dfbe42-6c14-44bb-a2e4-e9134f825b69","cid":"0","xid":"4ae61a3b-72f2-4d95-b9a3-18eaa297d41f","contentBaseUrl":"https\u003a\u002f\u002fspoprod-a.akamaihd.net\u002ffiles\u002fodsp-next-prod_ship-2016-12-05_20161216.001\u002f","Ramps":{"UseWebOneDriveNext":1,"ApiEventLogging":1,"PLTLoggingSampling":1,"EnableMsJs":1,"EnableGetItemsPrefetch":1,"UseNewDownloadZipLimit":1,"UseNewDeleteAllApi":1,"EnableTeachingBubbles":1,"EnableFirstRunExperienceDialog":1,"EnableFirstRunExperienceRobot":1,"isAddToOneDriveBubbleEnabled":1,"PhotosSearchBubble":1,"EnablePersonalSearchSuggestions":1,"OptimizelyEnabled":1,"SuiteNavHeader":1,"UseCommonSharingDialog":1,"EnableNotificationSubscriptions":1,"UseNewAILogging":1,"UseNewResourcePreloader":1,"UseNewSmartBanner":1,"OneRmO365UpsellEnabled":1,"PlacesForAllLocalesEnabled":1,"EnableSkypeOnSuiteNavHeader":1,"EnableExchangeOnSuiteNavHeader":1,"EnableNewFlexPaneOnSuiteNavHeader":1,"EnableMeFlexPaneOnSuiteNavHeader":1,"PromotedPhotosContentEnabled":1,"UseWebPdfViewer":1,"UseNewAllPhotosLayout":1,"UseNewMobileListViewUX":1,"AutoAlbumBannerV2Enabled":1,"AlbumViewInFiles":1,"EnableOfficeLensCommand":1,"UseDragAndDropPageDecoration":1,"NewParatureDesignEnabled":1,"UseNewTextEditor":1,"EnableAriaLogging":1,"UseModernEmbedPanel":1,"EmptyMusicFolderGrooveStrings":1,"NewFeatureExperience":1,"EnablePushChannel":1,"NewQuotaInfo":1,"QuotaBundleEnabled":1,"UseNewFolderPickerFirstParty":1,"EnableMinBarPremiumMessaging":1},"UserGroup":"PROD","baseUrl":"https\u003a\u002f\u002fspoprod-a.akamaihd.net\u002ffiles\u002fodsp-next-prod_ship-2016-12-05_20161216.001\u002f","bundlePaths":{"Next":["odconedriveprefetch-dfc08411","en-us\u002fodconedriveprefetch.resx-c981d1c3","knockout-699241a9","odconedrive-4c17ad3b","odconedriveapp-a07279ec","en-us\u002fodconedrive.resx-d45d5857","en-us\u002fodconedriveapp.resx-5da1ef8b","odcfiles-3a3b102d","en-us\u002fodcbasepage.resx-2445800c","odcbasepage-4cf029b8","en-us\u002fodcfiles.resx-e0c17c48"],"NextOneUp":["odconedrive-4c17ad3b","odconedriveprefetch-dfc08411","odconedriveapp-a07279ec","knockout-699241a9","en-us\u002fodconedrive.resx-d45d5857","en-us\u002fodconedriveprefetch.resx-c981d1c3","en-us\u002fodconedriveapp.resx-5da1ef8b","odcfiles-3a3b102d","odcbasepage-4cf029b8","en-us\u002fodcfiles.resx-e0c17c48","en-us\u002fodcbasepage.resx-2445800c"],"NextPhotos":["odconedrive-4c17ad3b","odconedriveprefetch-dfc08411","odconedriveapp-a07279ec","knockout-699241a9","en-us\u002fodconedrive.resx-d45d5857","en-us\u002fodconedriveprefetch.resx-c981d1c3","en-us\u002fodconedriveapp.resx-5da1ef8b","odcphotos-2defaccf","odcfiles-3a3b102d","en-us\u002fodcbasepage.resx-2445800c","odcbasepage-4cf029b8","en-us\u002fodcfiles.resx-e0c17c48","en-us\u002fodcphotos.resx-e7b88f59"]}};</script><script type="text/javascript">//! Copyright (c) Microsoft Corporation. All rights reserved.

var __extends=this&&this.__extends||function(e,i){function t(){this.constructor=e}for(var s in i)i.hasOwnProperty(s)&&(e[s]=i[s]);t.protot
'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\System.Diagnostics.StackTrace.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
NullReferenceException: Object reference not set to an instance of an object.
at Assets.Scripts.Classes.AppConfig.FromJson(JSONObject json)
at Assets.Scripts.AppState.LoadConfig(String url)
at Initialize.Awake()
at Initialize.$Invoke1(Int64 instance, Int64* args)
at UnityEngine.Internal.$MethodUtility.InvokeMethod(Int64 instance, Int64* args, IntPtr method)
(Filename: Line: 0)

[Singleton] An instance of Assets.Scripts.Plugins.SessionManager is needed in the scene, so 'BaseObject: NotAvailableDuringDebugging' was created with DontDestroyOnLoad.

(Filename: C:/buildslave/unity/build/artifacts/generated/Metro/runtime/DebugBindings.gen.cpp Line: 51)

Setting up 1 worker threads for Enlighten.

Thread -> id: 13c -> priority: 1

Holographic Tracking State Lost. New State: 4

(Filename: C:/buildslave/unity/build/Runtime/VR/HoloLens/HoloLensWorldManager.cpp Line: 132)

The resource UnitySplash-HolographicTrackingLoss.png could not be loaded from the resource file!

(Filename: C:\buildslave\unity\build\Runtime/Misc/ResourceManager.cpp Line: 1102)

Holographic Tracking State Active.

(Filename: C:/buildslave/unity/build/Runtime/VR/HoloLens/HoloLensWorldManager.cpp Line: 128)

Holographic Tracking State Lost. New State: 4

(Filename: C:/buildslave/unity/build/Runtime/VR/HoloLens/HoloLensWorldManager.cpp Line: 132)

The resource UnitySplash-HolographicTrackingLoss.png could not be loaded from the resource file!

(Filename: C:\buildslave\unity\build\Runtime/Misc/ResourceManager.cpp Line: 1102)

Holographic Tracking State Active.

(Filename: C:/buildslave/unity/build/Runtime/VR/HoloLens/HoloLensWorldManager.cpp Line: 128)

Holographic Tracking State Lost. New State: 4

(Filename: C:/buildslave/unity/build/Runtime/VR/HoloLens/HoloLensWorldManager.cpp Line: 132)

The resource UnitySplash-HolographicTrackingLoss.png could not be loaded from the resource file!

(Filename: C:\buildslave\unity\build\Runtime/Misc/ResourceManager.cpp Line: 1102)

Holographic Tracking State Active.

(Filename: C:/buildslave/unity/build/Runtime/VR/HoloLens/HoloLensWorldManager.cpp Line: 128)

Failed to get camera pose from main camera - world management may

(Filename: C:/buildslave/unity/build/Runtime/VR/HoloLens/VRDeviceHoloLens.cpp Line: 371)

Trimming D3D resources.

The program '[5144] worldexplorer.exe' has exited with code 1 (0x1).

@hervedumoulinarc
Copy link
Author

I process deployment and that is the output of debugger, unfortunately nothing appear when I launch the app zzz .

@hervedumoulinarc
Copy link
Author

'worldexplorer.exe' (CoreCLR: DefaultDomain): Loaded 'c:\data\Programs\WindowsApps\Microsoft.NET.CoreRuntime.1.1_1.1.24301.0_x86__8wekyb3d8bbwe\System.Private.CoreLib.ni.dll'. Cannot find or open the PDB file.
'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\entrypoint\WorldExplorer.exe'. Symbols loaded.
'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\System.Runtime.dll'. Cannot find or open the PDB file.
'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'c:\data\Programs\WindowsApps\Microsoft.NET.CoreRuntime.1.1_1.1.24301.0_x86__8wekyb3d8bbwe\mscorlib.ni.dll'. Cannot find or open the PDB file.
'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\WinMetadata\Windows.winmd'. Module was built without symbols.
'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\UnityPlayer.winmd'. Module was built without symbols.
'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\System.Runtime.InteropServices.WindowsRuntime.dll'. Cannot find or open the PDB file.
'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\System.Runtime.WindowsRuntime.dll'. Cannot find or open the PDB file.
'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\WinRTBridge.winmd'. Cannot find or open the PDB file.
'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\BridgeInterface.winmd'. Module was built without symbols.
'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\System.Collections.dll'. Cannot find or open the PDB file.
'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\UnityEngine.dll'. Symbols loaded.
'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\Assembly-CSharp.dll'. Symbols loaded.
'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\UnityEngine.UI.dll'. Symbols loaded.
'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\System.Threading.Tasks.dll'. Cannot find or open the PDB file.
'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\Assembly-UnityScript.dll'. Symbols loaded.
'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\M2Mqtt.dll'. Symbols loaded.
'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\UnityEngine.Networking.dll'. Symbols loaded.
'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\UnityEngine.HoloLens.dll'. Symbols loaded.
'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\System.IO.dll'. Cannot find or open the PDB file.
'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\System.Net.Primitives.dll'. Cannot find or open the PDB file.
'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\System.Private.Networking.dll'. Cannot find or open the PDB file.
'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\Microsoft.Win32.Primitives.dll'. Cannot find or open the PDB file.
'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\System.Net.Requests.dll'. Cannot find or open the PDB file.
'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\System.Net.WebHeaderCollection.dll'. Cannot find or open the PDB file.
'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\System.Collections.Specialized.dll'. Cannot find or open the PDB file.
'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\System.Reflection.Primitives.dll'. Module was built without symbols.
'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\System.Reflection.TypeExtensions.dll'. Cannot find or open the PDB file.
'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\System.Reflection.dll'. Module was built without symbols.
'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\System.Runtime.Extensions.dll'. Cannot find or open the PDB file.
'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\System.Private.Uri.dll'. Cannot find or open the PDB file.
'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\System.Text.Encoding.dll'. Module was built without symbols.
'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\System.Threading.Timer.dll'. Module was built without symbols.
'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\UnityEngine.VR.dll'. Symbols loaded.
'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\System.Runtime.InteropServices.dll'. Cannot find or open the PDB file.
'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\System.Threading.dll'. Cannot find or open the PDB file.
'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\System.Diagnostics.Debug.dll'. Cannot find or open the PDB file.
Module information:
Built with Compiler Ver '190023918'
Built from '5.6/release' branch
Version is '5.6.0b3 (358ff4ed3952)'
Release build
Application type 'D3D11'
Used 'UWP'

OS 'Windows 10 (10.0.14393)'

PlayerConnection initialized from C:/Data/Users/DefaultAccount/AppData/Local/DevelopmentFiles/WorldExplorerVS.Release_x86.HerveDumoulin/Data (debug = 0)

PlayerConnection initialized network socket : 0.0.0.0 55044

Multi-casting "[IP] 192.168.1.15 [Port] 55044 [Flags] 2 [Guid] 1424380207 [EditorId] 4294967295 [Version] 1048832 [Id] MetroPlayerX86(HoloLens-1H6UH) [Debug] 0" to [225.0.0.222:54997]...

Started listening to [0.0.0.0:55044]

GfxDevice: creating device client; threaded=1

Direct3D:

Version:  Direct3D 11.0 [level 11.1]

Renderer: HoloLens Graphics (ID=0x22b0)

Vendor:   Intel

VRAM:     604 MB

Initialize engine version: 5.6.0b3 (358ff4ed3952)

'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\UnityEngineProxy.dll'. Cannot find or open the PDB file.
'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\System.Linq.dll'. Cannot find or open the PDB file.
'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\System.Reflection.Extensions.dll'. Module was built without symbols.
OnLevelWasLoaded was found on TypedMonoBehaviour
This message has been deprecated and will be removed in a later version of Unity.
Add a delegate to SceneManager.sceneLoaded instead to get notifications after scene loading has completed

(Filename: C:\buildslave\unity\build\Runtime/Mono/MonoScriptCache.cpp Line: 375)

OnLevelWasLoaded was found on ObservableMonoBehaviour
This message has been deprecated and will be removed in a later version of Unity.
Add a delegate to SceneManager.sceneLoaded instead to get notifications after scene loading has completed

(Filename: C:\buildslave\unity\build\Runtime/Mono/MonoScriptCache.cpp Line: 375)

Logical Screen DPI is 144.00.

If your machine has multiple graphics adapters, Unity may have created a WindowContext on the wrong adapter. If you experience a black screen when playing, please restart the Editor.

(Filename: C:/buildslave/unity/build/Runtime/VR/VRDevice.cpp Line: 179)

UnloadTime: 5.964999 ms

Waking up...

(Filename: C:/buildslave/unity/build/artifacts/generated/Metro/runtime/DebugBindings.gen.cpp Line: 51)

The referenced script on this Behaviour (Game Object 'Point light') is missing!

(Filename: C:/buildslave/unity/build/Runtime/Mono/MonoBehaviour.cpp Line: 1746)

The referenced script on this Behaviour (Game Object 'Point light') is missing!

(Filename: C:/buildslave/unity/build/Runtime/Mono/MonoBehaviour.cpp Line: 1746)

[Singleton] An instance of Assets.Scripts.SpeechManager is needed in the scene, so 'BaseObject: NotAvailableDuringDebugging' was created with DontDestroyOnLoad.

(Filename: C:/buildslave/unity/build/artifacts/generated/Metro/runtime/DebugBindings.gen.cpp Line: 51)

[Singleton] An instance of SelectionHandler is needed in the scene, so 'BaseObject: NotAvailableDuringDebugging' was created with DontDestroyOnLoad.

(Filename: C:/buildslave/unity/build/artifacts/generated/Metro/runtime/DebugBindings.gen.cpp Line: 51)

[Singleton] An instance of Assets.Scripts.AppState is needed in the scene, so 'BaseObject: NotAvailableDuringDebugging' was created with DontDestroyOnLoad.

(Filename: C:/buildslave/unity/build/artifacts/generated/Metro/runtime/DebugBindings.gen.cpp Line: 51)

'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\System.Text.RegularExpressions.dll'. Cannot find or open the PDB file.
'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\System.Globalization.dll'. Module was built without symbols.
improper JSON formatting:

<script type="text/javascript">//</script><script type="text/javascript">//var $CJ={"p":"d1b1XLvDlvyYneN9F6gNgHhJ3zrCoqghgjsFsDiVEpc\u003d0","c":null};document.domain="live.com";
//]]></script>

<script type="text/javascript">var Flight={"version":"odsp-next-prod_ship-2016-12-05_20161216.001","name":"ship-2016-12-05","manifest":"next","session":"834c8dc8-cf68-466c-aaee-387b8d045e28","cid":"0","xid":"b6349c6c-0a64-473c-9778-0215899a4e49","contentBaseUrl":"https\u003a\u002f\u002fspoprod-a.akamaihd.net\u002ffiles\u002fodsp-next-prod_ship-2016-12-05_20161216.001\u002f","Ramps":{"UseWebOneDriveNext":1,"ApiEventLogging":1,"PLTLoggingSampling":1,"EnableMsJs":1,"EnableGetItemsPrefetch":1,"UseNewDownloadZipLimit":1,"UseNewDeleteAllApi":1,"EnableTeachingBubbles":1,"EnableFirstRunExperienceDialog":1,"EnableFirstRunExperienceRobot":1,"isAddToOneDriveBubbleEnabled":1,"PhotosSearchBubble":1,"EnablePersonalSearchSuggestions":1,"OptimizelyEnabled":1,"SuiteNavHeader":1,"UseCommonSharingDialog":1,"EnableNotificationSubscriptions":1,"UseNewAILogging":1,"UseNewResourcePreloader":1,"UseNewSmartBanner":1,"OneRmO365UpsellEnabled":1,"PlacesForAllLocalesEnabled":1,"EnableSkypeOnSuiteNavHeader":1,"EnableExchangeOnSuiteNavHeader":1,"EnableNewFlexPaneOnSuiteNavHeader":1,"EnableMeFlexPaneOnSuiteNavHeader":1,"PromotedPhotosContentEnabled":1,"UseWebPdfViewer":1,"UseNewAllPhotosLayout":1,"UseNewMobileListViewUX":1,"AutoAlbumBannerV2Enabled":1,"AlbumViewInFiles":1,"EnableOfficeLensCommand":1,"UseDragAndDropPageDecoration":1,"NewParatureDesignEnabled":1,"UseNewTextEditor":1,"EnableAriaLogging":1,"UseModernEmbedPanel":1,"EmptyMusicFolderGrooveStrings":1,"NewFeatureExperience":1,"EnablePushChannel":1,"NewQuotaInfo":1,"QuotaBundleEnabled":1,"UseNewFolderPickerFirstParty":1,"EnableMinBarPremiumMessaging":1},"UserGroup":"PROD","baseUrl":"https\u003a\u002f\u002fspoprod-a.akamaihd.net\u002ffiles\u002fodsp-next-prod_ship-2016-12-05_20161216.001\u002f","bundlePaths":{"Next":["odconedriveprefetch-dfc08411","en-us\u002fodconedriveprefetch.resx-c981d1c3","knockout-699241a9","odconedrive-4c17ad3b","odconedriveapp-a07279ec","en-us\u002fodconedrive.resx-d45d5857","en-us\u002fodconedriveapp.resx-5da1ef8b","odcfiles-3a3b102d","en-us\u002fodcbasepage.resx-2445800c","odcbasepage-4cf029b8","en-us\u002fodcfiles.resx-e0c17c48"],"NextOneUp":["odconedrive-4c17ad3b","odconedriveprefetch-dfc08411","odconedriveapp-a07279ec","knockout-699241a9","en-us\u002fodconedrive.resx-d45d5857","en-us\u002fodconedriveprefetch.resx-c981d1c3","en-us\u002fodconedriveapp.resx-5da1ef8b","odcfiles-3a3b102d","odcbasepage-4cf029b8","en-us\u002fodcfiles.resx-e0c17c48","en-us\u002fodcbasepage.resx-2445800c"],"NextPhotos":["odconedrive-4c17ad3b","odconedriveprefetch-dfc08411","odconedriveapp-a07279ec","knockout-699241a9","en-us\u002fodconedrive.resx-d45d5857","en-us\u002fodconedriveprefetch.resx-c981d1c3","en-us\u002fodconedriveapp.resx-5da1ef8b","odcphotos-2defaccf","odcfiles-3a3b102d","en-us\u002fodcbasepage.resx-2445800c","odcbasepage-4cf029b8","en-us\u002fodcfiles.resx-e0c17c48","en-us\u002fodcphotos.resx-e7b88f59"]}};</script><script type="text/javascript">//! Copyright (c) Microsoft Corporation. All rights reserved.

var __extends=this&&this.__extends||function(e,i){function t(){this.constructor=e}for(var s in i)i.hasOwnProperty(s)&&(e[s]=i[s]);t.prototype=i.prototype
Exception thrown: 'System.NullReferenceException' in Assembly-CSharp.dll
'worldexplorer.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Data\Users\DefaultAccount\AppData\Local\DevelopmentFiles\WorldExplorerVS.Release_x86.HerveDumoulin\System.Diagnostics.StackTrace.dll'. Cannot find or open the PDB file.
NullReferenceException: Object reference not set to an instance of an object.
at Assets.Scripts.Classes.AppConfig.FromJson(JSONObject json)
at Assets.Scripts.AppState.LoadConfig(String url)
at Initialize.Awake()
at Initialize.$Invoke1(Int64 instance, Int64* args)
at UnityEngine.Internal.$MethodUtility.InvokeMethod(Int64 instance, Int64* args, IntPtr method)
(Filename: Line: 0)

[Singleton] An instance of Assets.Scripts.Plugins.SessionManager is needed in the scene, so 'BaseObject: NotAvailableDuringDebugging' was created with DontDestroyOnLoad.

(Filename: C:/buildslave/unity/build/artifacts/generated/Metro/runtime/DebugBindings.gen.cpp Line: 51)

Setting up 1 worker threads for Enlighten.

Thread -> id: 778 -> priority: 1

Holographic Tracking State Lost. New State: 4

(Filename: C:/buildslave/unity/build/Runtime/VR/HoloLens/HoloLensWorldManager.cpp Line: 132)

The resource UnitySplash-HolographicTrackingLoss.png could not be loaded from the resource file!

(Filename: C:\buildslave\unity\build\Runtime/Misc/ResourceManager.cpp Line: 1102)

Holographic Tracking State Active.

(Filename: C:/buildslave/unity/build/Runtime/VR/HoloLens/HoloLensWorldManager.cpp Line: 128)

Holographic Tracking State Lost. New State: 4

(Filename: C:/buildslave/unity/build/Runtime/VR/HoloLens/HoloLensWorldManager.cpp Line: 132)

The resource UnitySplash-HolographicTrackingLoss.png could not be loaded from the resource file!

(Filename: C:\buildslave\unity\build\Runtime/Misc/ResourceManager.cpp Line: 1102)

Holographic Tracking State Active.

(Filename: C:/buildslave/unity/build/Runtime/VR/HoloLens/HoloLensWorldManager.cpp Line: 128)

Trimming D3D resources.

The program '[2292] worldexplorer.exe' has exited with code 1 (0x1).

@hervedumoulinarc
Copy link
Author

Get this when I disable ''enable just my code'"

@hervedumoulinarc
Copy link
Author

How could I be sure I have the correct url of my config.json from my onedrive ?

@erikvullings
Copy link
Contributor

About your last question, you click on the link from VS, and it should open a json file. Most likely, as I see mention of a JavaScript tag in your error log, you open a html file from the link. If you look at my Dropbox link, you see that the start url is not referring to www.dropbox.com but rather to the download location. So please try that... Good luck!

@hervedumoulinarc
Copy link
Author

Yeah it work...!!!! Thanks a lot lot lot.

@erikvullings
Copy link
Contributor

:-)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants