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 have a few web applications that were written using ASP.NET and C# (yuck). I would like to be able to place these on my dashboards and have the ASP application use the managed reporting credentials. In other words, if you run the ASP app from the dashboard after already logging into managed reporting, no problem. If you try to run the ASP app stand-alone, I want the ASP application to bomb out and tell the user he needs to be in managed reporting first. Has anyone had any experience with this kind of thing? I'm a novice at ASP, so please don't use any big words. Thanks!This message has been edited. Last edited by: Kerry,
Right now the ASP applications use the windows credentials, but we would like to have it so that they could use the webfocus credentials instead. The apps are secure in that you have to be in a certain windows group to be able to use them. I would like to change that to use the managed reporting security (the user id and password that they use to log into the dashboard).
Sorry Mike, I forgot that I responded to this one.
This can get very tricky very quickly. Since your ASP apps use AD groups, you probably do not want to mess with that. If you want to create the illusion that they have to authenticate through MRE, then this is what you could do:
- Change ASP apps to allow SSO, therefore the user's would not be prompted for user/pass and they would be allowed in so long as they have been granted access to that application. - In WF, when a request is made to the ASP applications, write a record to a centrally located database with the user id, their WF user id, and the current time stamp before the request is forwarded to the ASP app. - In the ASP apps, change them to query the central database for the WF user id and time stamp based on their AD id. - If the user does not exist yet, or the latest time stamp is > 3 seconds old, then kick them out.
It is kind of a rip-off of a poor man multi-factor authentication, but it would get the job done without breaking a sweat.
There are other methods I can think of, but they would require a lot more work.
"There is no limit to what you can achieve ... if you don’t care who gets the credit." Roger Abbott