Hello,
A CGI calls a java serlvet via use LWP:

imple; it returns to the workflow via $cgi->iwcallback("InsertLog_Success", "Success");
With the Profesisional UI it returns to {server}/iw-bin/iwcallback.cgi which is a blank browser window. The user closes it and no problem.
With the Standard UI it return to {server}/iw-bin/iwcallback.cgi which is a browser blank window, and the user no longer can get to the "TeamSite"
This is the view source of the blank browser window.
<HTML><HEAD>
<SCRIPT LANGUAGE="Javascript">
if (opener && (typeof opener.closed != "unknown") && (!opener.closed )) {
if (opener.top && opener.top.Ctl) {
opener.top.Ctl.goto_tasktodo();top.close();} else {
window.close();
}}</SCRIPT>
</HEAD></HTML>
Looking at another post, I have tried
print 'document.location.href="{server}/iw-cc/command/iw.ui"';
before the callback, but I still get a blank browser window.
What is the "correct" method to return from a CGI External Task using the Standard UI?
Thanks for your time