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.
We are using WebFocus 5.2.3 Does anyone have any experience with the REFERRER URL ?? Currently, about 90% of our reports are on our company intranet. We want to either display a dummy URL when the user clicks on the report link, hide the URL, or use REFERRER to ensure the request is coming from a secured page. Our goal - we don't want the users copying the URLs or even knowing what they are. Any suggestions ??
Posts: 69 | Location: OH | Registered: November 09, 2004
This will hide the URL from the status area of the web browser and also suppress right-clicking to view the properties of the link. It will open the report link in a new window that does not have the address bar or menu bar. It will not suppress right-clicking on the newly opened report window, unless you add lines 6 to 13 in the HMTL reports on your intranet site. Also, if you have a tag in your HTML reports, the URL will not be displayed on the newly opened window.
I have no experience with REFERRER URL.
Report List <script language="JavaScript">
// Trap all Mouse-Down actions document.onmousedown = SuppressRightClick;
// Suppress Right-Click Mouse-Down Actions function SuppressRightClick() { if (event.button == 2) alert('Please left-click the report link'); }
// Open a new window with the selected report function OpenReport(ReportLoc) { vFeatures = "channelmode=no, directories=no, fullscreen=no, " + "location=no, menubar=no, resizable=yes, scrollbars=yes, " + "status=yes, titlebar=yes, toolbar=no, " "left=0, top=0, width=" + screen.availWidth + ", height=" + screen.availHeight; window.open(ReportLoc,"ReportWindow",vFeatures) }
As always, you can contact Information Builders' Customer Support Services at any time for assistance. The phone number is 1-800-736-6130, or access InfoResponse online at http://techsupport.ibi.com .
Hope this helps.
Cheers,
Kerry
Posts: 1948 | Location: New York | Registered: November 16, 2004
The easy way is to have the request go through an alternate server using AJP. The app server can then be instructed to only respond the the AJP request, thereby forcing the user to always go through the required webserver. In other words, they will never know the actual host name of the app server, just a web server in front of it.
This, however, doesn't imply that the user is always coming from a secured page or web site, as ALL requests originate from the client browser.
Could you give a brief run down of what you are doing, and then what you would like to do, and maybe we could advise.
"There is no limit to what you can achieve ... if you don’t care who gets the credit." Roger Abbott