Closed GoogleCodeExporter closed 9 years ago
[deleted comment]
[deleted comment]
Window crashing when accessing page contents.
1. Windows 7 (x64) Enterprise Service Pack1
2. CEF Binary Version: 3.1750.1627
3. Java jdk1.7.0_55 (x64)
The window is fine when browsing or scrolling page contents, but when clicked
on some hyperlinks, the application crashes in win64 with the latest build of
r71 also, attached the logs for reference.
Original comment by arun.vc....@gmail.com
on 28 May 2014 at 7:21
Attachments:
#3 occurs when we set the user-agent, http headers and work.
Original comment by arun.vc....@gmail.com
on 6 Jun 2014 at 6:44
@#4: How are you setting those values?
Original comment by magreenb...@gmail.com
on 17 Jun 2014 at 5:49
Hi Marshall,
The useragent and http headers are set in the
@Override
public boolean onBeforeResourceLoad(CefBrowser browser, CefRequest request) {
Map<String, String> headerMap = new HashMap<String,String>();
request.getHeaderMap(headerMap);
headerMap.remove("User-Agent");
headerMap.put("User-Agent", "user-agent-value");
headerMap.put("Accept-Language", "jp");
request.setHeaderMap(headerMap);
}
The application is fine when we're accessing some hyperlinks's, but suddenly
crashes while clicking on few hyperlinks, not sure why.
Thanks for the help and suggestions.
Original comment by arun.vc....@gmail.com
on 17 Jun 2014 at 6:19
@#6: Does it reproduce consistently with certain hyperlinks? Are you using the
Debug or Release version of libcef.dll? Is there any related output in
debug.log?
Original comment by magreenb...@gmail.com
on 17 Jun 2014 at 6:24
Yes Marshall,
it reproduce consistently with certain hyperlinks. I am using the Release
version of the libcef.dll file. From the debug.log, its shown that the
following exceptions have been faced: ITSExceptionHandler message and Uncaught
ReferenceError. Also the first message in debug.log is
[0618/000058:ERROR:renderer_main.cc(226)] Running without renderer sandbox
Original comment by arun.vc....@gmail.com
on 17 Jun 2014 at 6:34
@#8: Can you share the URL that reproduces the problem consistently?
Original comment by magreenb...@gmail.com
on 17 Jun 2014 at 6:52
Yes Marshall,
I am using iTunes user-agent.(iTunes/9.1.1) with the following URL:
https://search.itunes.apple.com/WebObjects/MZSearch.woa/wa/advancedSearch
The issue is when I am clicking on the "All Results" hyperlink (button) beneath
the Power Search.
What I am trying to achieve:
To replicate useragent switcher equivalent in the java application.
Original comment by arun.vc....@gmail.com
on 17 Jun 2014 at 7:02
Hi Marshall,
This issue got fixed with the latest build, now we can resolve this issue, will
raise a new if something like this arises.
Thanks for the wonderful component and support.
Original comment by arun.vc....@gmail.com
on 18 Jun 2014 at 1:23
Original comment by magreenb...@gmail.com
on 18 Jun 2014 at 2:17
Original issue reported on code.google.com by
arnaud.b...@gmail.com
on 26 May 2014 at 8:22Attachments: