Problem with load 3D model

Hi guys, I have a problem with open gltf model.
My app is based to cesiumjs and C#, at this moment Visual Studio create virtual sever to acces the web site included to my project from where C# webview load cesium. My problem is in to load 3d model I can’t find file. 3dmodel.gltf is in directory where is my index.html, I load model in cesium with url:’./model.gltf’.
when I try to execute my program response this error :

RuntimeError: Failed to load external gltf: ./model.gltf
Error
at new t (http://localhost:7556/Build/Cesium/Cesium.js:379:6741)
at http://localhost:7556/Build/Cesium/Cesium.js:401:30029
at Object.then (http://localhost:7556/Build/Cesium/Cesium.js:378:3023)
at http://localhost:7556/Build/Cesium/Cesium.js:378:3501
at f (http://localhost:7556/Build/Cesium/Cesium.js:378:4883)
at m (http://localhost:7556/Build/Cesium/Cesium.js:378:3637)
at n (http://localhost:7556/Build/Cesium/Cesium.js:378:3161)
at Object.then (http://localhost:7556/Build/Cesium/Cesium.js:378:3023)
at http://localhost:7556/Build/Cesium/Cesium.js:378:3511
at f (http://localhost:7556/Build/Cesium/Cesium.js:378:4883)

Thank you

Rather than ‘./model.gltf’ perhaps ‘./3dmodel.gltf’ instead?

Problem is resolved. Thank you very much

You’re welcome. Unlike variable and function names, file names can start with a number. I suppose because they are strings rather than identifiers.

This was simple example real name is different :slight_smile:

This was simple example real name is different