Replies: 1 comment 1 reply
-
This changed switched from using the old
It's probably as bug, though it will probably require changes in CEF to get working again. When are Once we've collected enough information, someone will need to raise at issue at https://github.com/chromiumembedded/cef/issues |
Beta Was this translation helpful? Give feedback.
-
I'm not sure whether this warranted an issue or not, so I thought I would ask here first. I'm having a problem after upgrading versions from 119 to 134 where the JS bindings break after a 302 redirect. I have been able to reproduce this with my fork: https://github.com/rsc092020/CefSharp. I only added 1 commit for now, where I just added some redirect logic to the class handling the file serving, so you can also just copy paste that instead of cloning/adding a remote.
Steps:
CefSharp.WinForms.Example
Javascript Binding Tests
?redirect=true
, and hit Enter=> Observe that the binding tests break
The first time it breaks is 7af16b9
I know from debugging that it is calling
OnBrowserCreated
, thenOnBrowserDestroyed
in the same process, which means that the bindings throwError: BindObjectAsyncHandler::Execute - Browser wrapper null, unable to bind objects
.I'm trying to figure out if this is an actual bug or intended behavior. Also, is there any workarounds other than avoiding redirects, or not using the
Chrome Runtime
.Beta Was this translation helpful? Give feedback.
All reactions