Thanks again for your support. I think things get working now.
I have written a Debug-Page which helps to test the wopi integration. And I can see now that OnlyOffice is now loading
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width" />
<title>ONLYOFFICE Document Editors</title>
<link href="images/favicon.ico" rel="shortcut icon" type="image/x-icon" />
<style type="text/css">
body {
margin: 0;
padding: 0;
overflow: hidden;
-ms-content-zooming: none;
}
#office_frame {
width: 100%;
height: 500px;
position: absolute;
top: 70;
left: 0;
right: 0;
bottom: 0;
margin: 0;
border: none;
display: block;
}
</style>
</head>
<body>
<h3>OnlyOffice Debug Page</h3>
<form id="office_form" name="office_form" target="office_frame" action="<%= actionUrl %>" method="post">
<input name="wopi_uri" id="wopi_uri_input" value="<%= wopi uri %>" type="text" />
<input name="access_token" value="<%= token %>" type="text" />
<input name="access_token_ttl" value="<%= tokenTtl %>" type="text" />
<button onclick="loadWopi();">load</button>
</form>
<span id="frameholder"></span>
<script type="text/javascript">
var frameholder = document.getElementById('frameholder');
var office_frame = document.createElement('iframe');
office_frame.name = 'office_frame';
office_frame.id = 'office_frame';
office_frame.title = 'Office Frame';
office_frame.setAttribute('allowfullscreen', 'true');
office_frame.setAttribute('sandbox', 'allow-scripts allow-same-origin allow-forms allow-popups allow-top-navigation allow-popups-to-escape-sandbox allow-downloads allow-modals');
office_frame.setAttribute('allow', 'autoplay camera microphone display-capture');
frameholder.appendChild(office_frame);
function loadWopi() {
var uri=document.getElementById("wopi_uri_input").value;
console.log('set action uri='+uri);
document.getElementById("office_form").action = uri;
console.log('submit page...');
document.getElementById('office_form').submit();
}
</script>
</body>
</html>