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 Webfocus report that runs from a Sharepoint portal using Webfocus 7.1.3
We are upgrading to Webfocus to 7.7 and when testing from sharepoint the report fails. I noticed that on our current Webfocus version(which works fine) the encoded post reponse is showing the full link:
function getrep() { if(parseInt(window.navigator.appVersion,10)<4) location.assign("http://Server.domain.com/ibi_apps/WFServletPG_REQTYPE=REDIRECT&PG_MRsaved=false&PG_Func=GETBINARY&PG_File=pinqmcqc.htm");
But when I change the server to point to the new server where we have Webfocus 7.7 , the encoded web response is missing the server and domain information as follows:
This might have something to do with the SharePoint server: "when I change the server to point to the new server" - do you mean changing settings on the SharePoint server?
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
I was comparing the html result coming from Webfocus environment 713 to the result when running the same report but in the Webfocus 7701 environment. The current version was returning an absolute path http://Server.domain.com/ibi_a...PG_File=pinqmcqc.htm
The new version was failing to run from the web application because it was trying to find the report using a relative path: "/ibi_apps/WFServlet?PG_REQTYPE=REDIRECT&PG_MRsaved=false&PG_Func=GETBINARY&PG_File=ohylumta.xmh");
I had to add the server and domain information to the path as well as get rid of some characters at the end of the path.