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 a html page, test.htm, with a link in it that points to a fex,test.fex When test.htm opens up, it asks for login/pwd authentication which is being done against a RACF database on MVS. test.htm resides on the webfocus client, on the webserver. test.fex resides on the reporting server - both on z/os
test.htm is protected and has a protect directive in httpd.conf file and therefore when it is opened, it requires login/pwd authentication.
httpd.conf file looks like this:
ServerRoot /xx/yy10.name.com/... Port 1111 #
Protection RACF_Logon { ServerId RACF_PROTECT UserID %%CLIENT%% PasswdFile %%zzz%%% Authtype Basic Mask All ACLOverride Off }
Protect /xx/* RACF_Logon %%CLIENT%% #
I am unable to determine how to capture the userid and pass it to the fex.
Thanks.This message has been edited. Last edited by: Kerry,
WF 7.1.1, WF Developer studio 7.1.1, Windows & Mainframe, HTML
go to your webfocus admin console look at diagnostics and then at http request info and see what varibles you're seeing passed. then ask whoever is in charge of whatever sec pkg your site uses and ask what to expect. (eg. site minder using active directory, etc etc)
In Focus since 1979///7706m/5 ;wintel 2008/64;OAM security; Oracle db, ///MRE/BID
Posts: 3811 | Location: Manhattan | Registered: October 28, 2003
2) Go to the following web page on your WebFOCUS Client: /ibi_apps/wfsysinf.jsp
It is typical for the userid to be passed in REMOTE_USER, I believe even in RACF. As a result its kind of odd you're getting that other userid if that is not what you're authenticating with.
Where are you seeing the userid EDASQL10?
Are you seeing that if you run a report: -TYPE &REMOTE_USER
and then in my report when I do -TYPE &&USER_ID I am seeing EDASQL10
in the site.wfs file, instead of REMOTE_USER, If I use HTTP_HOST, SERVER_NAME, REMOTE_HOST, REMOTE_ADDRESS,SERVER_SOFTWARE - all these information are coming through except REMOTE_USER.
WF 7.1.1, WF Developer studio 7.1.1, Windows & Mainframe, HTML
dlogan, I too feel that the webserver is not passing the userid. Any other way I can verify this?
Rhonda, I am doing the same thing. trying to set REMOTE_USER in IBI_REPORT_USER (instead of a hard coded id). The REMOTE_USER is not coming through.That's the problem.
WF 7.1.1, WF Developer studio 7.1.1, Windows & Mainframe, HTML
The wfsysinf.jsp page will reflect back all HTTP Header variables that are set.
As a result if you're not seeing the userid in there, then its not being passed by the Reporting Server.
An HTTP Header variable is pretty much the only way that a web server has to pass a variable like that. It can theoretically pass a session variable, but this is not really standard.