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.
Join the TIBCO Community TIBCO Community is a collaborative space for users to share knowledge and support one another in making the best use of TIBCO products and services. There are several TIBCO WebFOCUS resources in the community.
From the Home page, select Predict: WebFOCUS to view articles, questions, and trending articles.
Select Products from the top navigation bar, scroll, and then select the TIBCO WebFOCUS product page to view product overview, articles, and discussions.
Request access to the private WebFOCUS User Group (login required) to network with fellow members.
Former myibi community members should have received an email on 8/3/22 to activate their user accounts to join the community. Check your Spam folder for the email. Please get in touch with us at community@tibco.com for further assistance. Reference the community FAQ to learn more about the community.
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