-
Posts
278 -
Joined
-
Last visited
-
Days Won
25
Community Answers
-
Patrick Huebgen's post in Windows authentication SSO on tomcat port 8080 was marked as the answer
I wonder why you cannot use port 80
Usually most firewalls prefer those standard ports - but yes if the port is the problem you can reconfigure IIS to use a different port - just make sure to first change the Tomcat port to something outside 8080
for instructions on changing IIS just Google for iis change port
-
Patrick Huebgen's post in WebFOCUS Portals - Folders in Sub-Folders was marked as the answer
@rueben_ramirez levels are the same in 9.3 - the new capability is a portal editor on top of the existing portal capabilities.
-
Patrick Huebgen's post in Unable to authenticate to the WebFocus home page was marked as the answer
@Erin Trotter for urgent requests please open a ticket.
"I can log in there with my AD credentials and see everything I am supposed to see." the audit log shows that the user cannot login at all in the client as the user is not registered.
I guess you can logon to the server console (port 8121) - if this is the case this would indicated that you did not configured the trusted connection between server and client.
To get you into the client to be able to configure security you can add and IBI_ADMIN_NAME and IBI_ADMIN_PASS to webfocus.cfg
Some documentation here https://docs.tibco.com/pub/wf-wf/9.2.3/doc/pdf/IBI_wf-wf_9.2.3_security_administration.pdf
Having done so please restart and make sure to complete the security setup and use this user independent from the AD security to fix potential security issues.
-
Patrick Huebgen's post in Assemble a visualization page with a link within a report in one container opening html content on another container in the visualization page was marked as the answer
@Erin Trotter - created a short tutorial for you -
-
Patrick Huebgen's post in Adding Median line to Bar Chart was marked as the answer
@Kiran Kethineni Not built in feature but easy - just create a new computed field in Designer, Info Assist or Code like this and add it to the chart as line
PARTITION_AGGR( YOUR_MEASURE_HERE , TABLE , B , E , MEDIAN)
More details here
https://docs.tibco.com/pub/wf-wf/9.2.2/doc/pdf/IBI_wf-wf_9.2.2_functions.pdf?id=14
-
Patrick Huebgen's post in Globally referencing a Stylesheet in 8207.28 was marked as the answer
@Doug Monson Please try to put the command in a client profile instead of edasprof
all type of settings and other language commands are part of my universal profile
-
Patrick Huebgen's post in Is it possible to allow an InfoAssist user to access a mas file while preventing another InfoAssist user to use this mas file to generate new content? was marked as the answer
"Yes you can" - server security allows you to setup security based on folders or files "Directory/File Priviledges"
-
Patrick Huebgen's post in Changes required in cloned server to configure it as standalone environment. was marked as the answer
You can install an additional configuration and then migrate all settings.
To clone the config - you can clone your repository (using the repository tool or the database administration tool - depends on your database and preferences).
For the configuration you can manually cehcek the config on both systems or use a tool to compare and merge the config files (I usually use Winmerge - to merge those changes.
You need to do this for the config files in
WebFOCUS Client WebFOCUS Server Apache Tomcat ReportCaster config is stored in repository - so cloning the repository will take care - but you need to change some settings to make sure they fit for the new system.
-
Patrick Huebgen's post in Anyone else having an issue where selected theme in InfoAssist is not being applied to the report? was marked as the answer
I was able to reproduce this in my 9.11 release but in 9.21 it worked fine - please open a ticket to see which version will fix this - I have no 9.12 release to test
-
Patrick Huebgen's post in Is WAR files kept in webapps folder is required post installation? was marked as the answer
just for clarification - if you confirmed step 4 from above link
4 Open xxx:ibitomcatconfCatalinalocalhostibi_apps.xml. If docBase does not include .war, your testing is complete.
You are safe to delete the war files
-
Patrick Huebgen's post in How can I onclick on a container on a page and open a new page on a new tab? was marked as the answer
Did you looked into "Link Tile" instead of a regular container?
https://kb.informationbuilders.com/topic/linking-external-content-page-8207
-
Patrick Huebgen's post in [SOLVED] How can I execute custom javascript in WebFocus 9.1.1 to send an API call to Snowflake was marked as the answer
You can create a Snowflake procedure ike this sample with JavaScript
CREATE OR REPLACE PROCEDURE my_test_1(
VALUE1 double,
VALUE2 double
)
returns double
language javascript
strict
execute as caller
as $$
var result = VALUE1 + VALUE2;
return result;
$$;
and create a WebFOCUS Report like this:
-SET &value1 = 5;
-SET &value2 = 2;
ENGINE SQLSNO SET DEFAULT_CONNECTION <NAME_OF_YOUR_CONNECTION_HERE>
SQL SQLSNO EX <ADD_TABLE_SCHEMA_HERE>.my_test_1 &value1, &value2;
TABLE FILE SQLOUT
PRINT *
END
-RUN
Instead of sending the values via SET you can of course create a Designer form to send the parameters from a prompt.
Patrick
-
Patrick Huebgen's post in Anyone else dealing with a new vulnerability popping up in your scans relating to node.js? /CVE-2021-21315 was marked as the answer
Hi Toby - port 47001 is usually not used by WebFOCUS - as far as I know this port is used by "Windows Remote Management Service" not by WebFOCUS - WebFOCUS 9.1 has no log4shell vulnerability in 9.1
Have a great day
Patrick