Jump to content

Getting Requested Resource was not found in this application /ibi_apps/ibi_html/publish/text/ error


Bajr Prakash Singh
Go to solution Solved by Bajr Prakash Singh,

Recommended Posts

Hi All,
 
We have migrated from WF 8105 to WF 9.1.2.

Previously the onmousehover function for text having path for an html, was working fine when user hover overed the text and it showed the HTML.
But the same text when user hover overs in WF 9.1.2 shows
"Requested Resource was not found in this application /ibi_apps/ibi_html/publish/text/filename.htm error". 

JS function where report is being called:
"function text56_onmouseover(ctrl) {
my_window=window.open('ibi_html/publish/text/filename.htm','my_window','width=400,height=200,toolbar=0,menubar=0,location=0,status=0,scrollbars=0,resizable=1,left=60,top=500');"


I believe there was a setting in Admin Console->Application Settings which would have fixed the issue. But I don't remember the setting and not sure if that feature has changed in WF 9.
Does anyone know about this issue?

Thanks in Advance.

Link to comment
Share on other sites

Hi @David Beagan , based on your response I tried to add the forward slash in front of ibi_html, but instead of showing the html file, it took me to my login page of application and the URL was changed as below:

https://company.com/ibi_html/publish/text/filename.htm

When forward slash is removed and we get the 404 error, the URL changes as below:

https://company.com/ibi_apps/ibi_html/publish/text/filename.htm - this is same URL which correctly showed the requested HTML file in our 8105 version of WF.

Link to comment
Share on other sites

@Bajr Prakash Singh ibi_html is now a .jar file not a folder anymore. You can extract the .war add the file and repackage it but for any custom file I would rather recommend to use a folder mapped in Tomcat. The jar file trick is not recommended and would require you to repeat this step after any update.

You can create your own folder mapping in in Tomcat and continue to use this or you can put the file into WebFOCUS repository and create a link for this file.

The URL depends on the solution you choose .  

Link to comment
Share on other sites

  • 2 weeks later...
  • Solution

Hi @Patrick Huebgen, Thanks for you response. I was able to fix the issue without making any config change.
I just called relevant file using below URL:

my_window=window.open('/ibi_apps/run.bip?BIP_REQUEST_TYPE=BIP_RUN&BIP_folder=IBFS:/WFC/Repository/Template&BIP_item=filename.htm','my_window','width=400,height=200,toolbar=0,menubar=0,location=0,status=0,scrollbars=0,resizable=1,left=60,top=500');

  • Like 3
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
  • Create New...