As of December 1, 2020, Focal Point is retired and repurposed as a reference repository. We value the wealth of knowledge that's been shared here over the years. You'll continue to have access to this treasure trove of knowledge, for search purposes only.
New TIBCO Community Coming Soon
In early summer, TIBCO plans to launch a new community—with a new user experience, enhanced search, and expanded capabilities for member engagement with answers and discussions! In advance of that, the current myibi community will be retired on April 30. We will continue to provide updates here on both the retirement of myibi and the new community launch.
What You Need to Know about Our New Community
We value the wealth of knowledge and engagement shared by community members and hope the new community will continue cultivating networking, knowledge sharing, and discussion.
During the transition period, from April 20th until the new community is launched this summer, myibi users should access the TIBCO WebFOCUS page to engage.
I have an html file used for launching my mnt apps that contains the following code:
<HTML><HEAD>
<SCRIPT language=JavaScript>
function Launch()
{
randomNum = Math.random();
sURL = "/ibi_apps/WFServlet?IBIF_cmd=MNTCON+EX+startbookorder&IBIS_connect=on&IBIAPP_app=maintain_test&IBIC_server=EDASERVE&num=" + randomNum;
vFeatures ="menubar=yes,toolbar=no,status=yes,resizable=yes,scrollbars=1" +
"left=0, top=0, width=" + screen.availWidth + ", height=" + screen.availHeight;
vTarget = window.open(sURL, "vTarget", vFeatures);
vTarget.focus();
}
Launch();
</SCRIPT>
<META content="MSHTML 6.00.6000.16788" name=GENERATOR></HEAD>
<BODY>[IMG]HFCClogo.gif[/IMG]<BR><BR><BR>The Online Book Order Application should launch in a moment.
If it does not, <A href="javascript:Launch()">click here</A> to try again. </BODY></HTML>
I have used this exact same code to launch maintain apps in the past. The only thing I changed from a working version of this file is the app name, which is now maintain_test. The odd thing is when I run this file in the DS it works correctly and launches the program. When I type the url of the file directly into IE it works correctly, but if I copy that same url into firefox I receive the following errors:
(FOC03847) MntEX Compile failed for startbookorder (FOC03704) Cannot find the file : startbookorder.MNT :.
These errors also occur when I enter the url into any other machines besides my workstation. It produces errors in IE and firefox. I know the startbookorder.MNT is in the app maintain_test. I need to know why this html file is only launching the program correctly on my machine in IE and nowhere else.
Any ideas?This message has been edited. Last edited by: brjohnson,
Bryan Johnson WebFOCUS 7.7.03 Maintain Win 7 Excel, PDF, HTML
Ok, while messing around with this some more I decided to just try to launch the application with wfmstart.html(generic maintain launch page). Still doesn't work, same errors produced. So it probably has nothing to do with my html or js. The program deploys properly. No errors. When I click the "run current deployment scenario" everything works fine. So what could be producing this error?
Bryan Johnson WebFOCUS 7.7.03 Maintain Win 7 Excel, PDF, HTML
Can you run the Maintain application from inside the MDE? If you can, then it is not a syntax error. Make sure you have set the path correctly. I believe that path names are case sensitive in Firefox. When you run from the launch page, make sure you enter the Application Path as well as the procedure name.
Mark
Posts: 663 | Location: New York | Registered: May 08, 2003