Page 1 of 1
App fails on my IBM Domino server
Posted: Sat Oct 19, 2013 1:46 am
by Andrew Barickman
Hello,
I have an app that runs perfectly on the appery server. When I export it as "Other Platform" and put it on my IBM Domino server it does not run properly. I have attached the failure that occurs when I load a page from another page. The source page is a list view and is storing a unid locally and then making a REST call on the second page to pull data. I realize that you cannot troubleshoot the Domino specific part but does the URL syntax of calling a js file like that make sense? I cannot determine where that URL is being generated from. If you can shed some light on what its doing I might be able to modify it so that it will work properly on my server.
Any help greatly appreciated.
App fails on my IBM Domino server
Posted: Sat Oct 19, 2013 2:28 am
by maxkatz
Check if you can load that URL directly in the browser.
App fails on my IBM Domino server
Posted: Sat Oct 19, 2013 3:07 pm
by Andrew Barickman
App fails on my IBM Domino server
Posted: Sat Oct 19, 2013 3:49 pm
by maxkatz
And if you remove everything after the ? mark?
App fails on my IBM Domino server
Posted: Mon Oct 21, 2013 3:50 pm
by Andrew Barickman
It displays the js file as expected. I believe it is the syntax the Domino server requires. For instance this format is not allowed "url?=123" but this is "url?open&=123". Can you tell me where this URL is being generated and I can try to fix the URL formation there?
App fails on my IBM Domino server
Posted: Mon Oct 21, 2013 4:38 pm
by maxkatz
The URL is being generated on the server. You could make the changes in the exported source files.
App fails on my IBM Domino server
Posted: Tue Oct 22, 2013 2:18 pm
by Andrew Barickman
Any idea where in the source files? I did a search through the files and do not find a URL being generated to that file.
App fails on my IBM Domino server
Posted: Tue Oct 22, 2013 2:38 pm
by Andrew Barickman
I figured out where the URL is being generated from and fixed the problem by adding "?open" to the name of the js file in the script tag. See the image