November Happy Hour will be moved to Thursday December 5th.
November Happy Hour will be moved to Thursday December 5th.
We're using it on some of our sites, but we had to disable server side rendering in ReactJs.NET to get it to work.
On a site note, our experience is that implementing sites as an SPA with ReactJS and Content Delivery API causes significantly less head aches down the road - especially if you have front-end developers that just develop the react components and are not .NET or Episerver developers.
Interesting, do you happen to remember what issues you had before disabling the server side rendering?
The stack trace that I get is below. And i've checked a million times that the files are in the folder. Server side rendering obviously looks better when loading the page, but if it doesn't work then I guess that client side is better than it not working at all. Thanks for the tip!
"EPiServer.Global : Unhandled exception in ASP.NET React.Exceptions.ReactNotInitialisedException: ReactJS.NET has not been initialised correctly. Please ensure you have called services.AddReact() and app.UseReact() in your Startup.cs file. ---> React.TinyIoC.TinyIoCResolutionException: Unable to resolve type: React.ReactEnvironment ---> React.TinyIoC.TinyIoCResolutionException: Unable to resolve type: React.JavaScriptEngineFactory ---> JavaScriptEngineSwitcher.Core.JsEngineLoadException: Failed to create instance of the V8JsEngine. Most likely it happened, because the 'v8-x64.dll' assembly or one of its dependencies was not found. See the original error message: “Cannot load V8 interface assembly. Load failure information for v8-x64.dll: D:\local\Temporary ASP.NET Files\root\9a14b61e\9ccbdb01\assembly\dl3\2fe57c72\0033a03b_7012d601\x64\v8-x64.dll: The specified module could not be found D:\home\site\wwwroot\x64\v8-x64.dll: The specified module could not be found D:\home\site\wwwroot\bin\x64\v8-x64.dll: The specified module could not be found”. ---> System.TypeLoadException: Cannot load V8 interface assembly. Load failure information for v8-x64.dll: D:\local\Temporary ASP.NET Files\root\9a14b61e\9ccbdb01\assembly\dl3\2fe57c72\0033a03b_7012d601\x64\v8-x64.dll: The specified module could not be found D:\home\site\wwwroot\x64\v8-x64.dll: The specified module could not be found D:\home\site\wwwroot\bin\x64\v8-x64.dll: The specified module could not be found at Microsoft.ClearScript.V8.V8Proxy.LoadNativeLibrary(String baseFileName) at Microsoft.ClearScript.V8.V8Proxy.LoadAssembly() at Microsoft.ClearScript.V8.V8Proxy.GetAssembly() at Microsoft.ClearScript.V8.V8Proxy.GetImplType(Type type) at Microsoft.ClearScript.V8.V8Proxy.CreateImpl[T](Object[] args) at Microsoft.ClearScript.V8.V8Runtime..ctor(String name, V8RuntimeConstraints constraints, V8RuntimeFlags flags, Int32 debugPort) at Microsoft.ClearScript.V8.V8ScriptEngine..ctor(V8Runtime runtime, String name, V8RuntimeConstraints constraints, V8ScriptEngineFlags flags, Int32 debugPort) at JavaScriptEngineSwitcher.V8.V8JsEngine..ctor(V8Settings settings)
ClearScript is the server side rendering engine, so this error definetly seems related to that. You can try including the dlls it is asking for in the deploy (in the correct folders), but as far as I remember, we couldn't get it to work in DXP until we turned it off.
Maybe it was a bit unclear, but I have checked that the file it's looking for is in that folder. Both in the .nupkg file that gets created in my build pipeline, and also in Kudo for my dxp app.
Yeah, I think this was the exact issue we were having now that it's starting to come back to me :)
Serverside-rendering is a problem in DXP, as the ReactJS.NET implementation of it isn't working, but if you start looking at other ways of accomplishing it, most of them require Node.js, which isn't included in the DXP environments.
Sadly I get the same error even though I set DisableServerSideRendering() when initializing React Js Net. What version of React Js Net are you using, is an older one or a more recent? If you could get it to work then it must something im missing here.
For anyone else running in to this, I got a good response from the authors of the library. The error message was appearently wrong, and the error was actually related to the package Microsoft Visual C++ Redistributable for Visual Studio 2019 missing on the app host. The package is required for the latest version of the V8 engine.
Now I've switched to using the ChakraCore VS engine which has no dependecy on Visual C++ Redistributable, and that works even with server side rendering for React.NET in DXP.
For reference: https://github.com/reactjs/React.NET/issues/1106
We've just released a new version Episerver Foundation, with a full React based frontend (SPA). Including Server Side Rendering. For this project, we've elected to not use ReactJS.NET, for the following reasons:
Our testing has shown we can run this solution, using the V8 engine on an Azure WebApp (e.g. CCDXP).
More information about the solution, what's inluded and the link to GitHub can be found in this blog post: Introducing Foundation SPA React
This may not directly be related to Episerver and DXP but I will give it a try.
I'm currently working on a new Episerver application and have an idea of building some parts/components of the site with React Js. I've stumbled over the library ReactJs.NET and I really wanted to use this lib to be able to render components server side and easy pass models and translations from the backend to the react components. This has been working excellent locally on my computer.
The other day we got access to our DXP environments, unfortunately it seems like the ReactJs.Net library doesn't run at all in Azure. The problem as far as I know is related to the visual c++ redistributable 2015 package not being installed. There is a lot of different information about this, and it's hard to filter out what is actually correct.
Does anyone have any experience of working with ReactJs.Net in DXP / Azure?