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 tried by creating ibi_apps and deleted ibi_apps also. The problem we have is, we have two versions in the same machine. We have two websites, 1 website will point to the old version and this new website will point to the new version. When I install the new version, I stopped all the websites including default but except the one I created for the new version. When I install the WFClient, I specified the hostname as the new website name but after my installation is done all the virtual directories created on default website. I didn't understand why that happens.
Hope I didn't confuse you guys,
WFConsultant
WF 8105M on Win7/Tomcat
Posts: 780 | Location: Florida | Registered: January 09, 2005
AJP is the Tomcat listener on port 8009 (default). That is the port that the Jakarta redirector sends requests to from a web server such as IIS. My guess is that you still have a virtual directory on IIS for "/ibi_apps". IIS cannot serve a jsp page, so you need to remove it! The jakarta redirector has two configuration files that identify: 1 - what context paths are going to be redirected, and 2 - where it will redirect the request.
For Example: the workers.properties.minimal file contains something like: worker.list=ajp13w worker.ajp13w.type=ajp13 worker.ajp13w.host=localhost worker.ajp13w.port=8009
The above identifies where to send an identified context. Notice the 8009 port (ensure that it is up and listening).
The uriworkermap.properties file identifies what is suppose to be forwarded, for example: /ibi_apps/*=ajp13w /ibi_apps=ajp13w /rcaster/*=ajp13w /rcaster=ajp13w
You will also need to verify that the Jakarta redirector is active for the web server you are trying to access. Check the properties for the server and see if the Filter is running. If not, you will have to manually add the redirector for your web server. You should be able to get the doc for that from your install manuals.
"There is no limit to what you can achieve ... if you don’t care who gets the credit." Roger Abbott
Finally it worked fine. The issue was, we can't run one version on IIS with ServletExec and other version on IIS with Tomcat on the same machine. Either we can use IIS with ServletExec and Tomcat as standalone or IIS with Tomcat with 2 instances.
After I removed the ServletExec, it worked fine.
WFConsultant
WF 8105M on Win7/Tomcat
Posts: 780 | Location: Florida | Registered: January 09, 2005