Focal Point
Hiding the report URL

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/6511019331

October 28, 2005, 07:56 PM
CHERI
Hiding the report URL
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 ??
October 28, 2005, 09:45 PM
Francis Mariani
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.<BR><br /><br />I have no experience with REFERRER URL.<br /><br /><pre class="ip-ubbcode-code-pre"><html><br /><head><br /><title>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)
}




onMouseover="window.status='Report 1';return true;"
onMouseout="window.status='';return true;">Report 1


onMouseover="window.status='Report 2';return true;"
onMouseout="window.status='';return true;">Report 2


This message has been edited. Last edited by: <Maryellen>,


Francis


Give me code, or give me retirement. In FOCUS since 1991

Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
November 03, 2005, 02:21 PM
Kerry
Hi Cheri,

Has this issue regarding hiding the report URL been resolved? Did Francis' suggestion help you?

Below are a few topics from Information Builders' online documents, which may be of interest:

Question: How to hide URL in status bar when mouse is over drill-down http://techsupport.informationbuilders.com/sps/62401058.html

MAINTAIN: How to control the displaying of a designated URL http://techsupport.informationbuilders.com/sps/61511014.html

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, Big Grin

Kerry
March 21, 2006, 01:41 PM
Kamesh
How to do this in PDF?


WFConsultant

WF 8105M on Win7/Tomcat
March 23, 2006, 03:34 PM
dhagen
CHERI,

What platform, app server, wf version etc?

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
March 29, 2006, 01:25 PM
Kerry
Hi Kamesh,

I ran a quick search on Information Builders' online documents and came across the following topic which may be of interest:

Can the DrillDown link in PDF be hidden?
http://techsupport.informationbuilders.com/sps/13122078.html

Basically, right now there is no way to hide the drilldown link in PDF document. This is an Adobe convention and not under the control of WebFOCUS.

Hope this helps.

Cheers, Big Grin

Kerry


Kerry Zhan
Focal Point Moderator
Information Builders, Inc.