Hi Adam,
There might be something in the way your main web page is including the Interactive HTML page that is seen as an uncaught exception.
There are many ways this can be done. Below is one of the simplest methods that usually works:
The main page would contain the following:
<!DOCTYPE html>
<html>
<head>
<title>iFrame Example</title>
</head>
<body>
<h1>iFrame Example</h1>
<p>Below is an example of an embedded Interactive HTML file using and iframe.</p>
<iframe src="./bivariate.html" height="900" width="500" title="iframe example"></iframe>
</body>
</html>
In this case, bivariate.html is an Interactive HTML file exported from JMP.
When this is done with a JMP 17 Interactive HTML file, there will be an network error displayed in the console,
"GET file:///C:/api/webjmp net::ERR_FILE_NOT_FOUND"
but it should not stop the page from loading.
If you would, please try this and let me know if it works.
If your main page uses JavaScript to load the Interactive HTML page, you may need have it use a try/catch block to handle/ignore the network failure so it can continue loading the page.
If you need help with this, please contact JMP technical support to provide more details, unless you are comfortable sharing in this forum.
~John