Qaiser Abbas
Qaiser Abbas

Reputation: 113

Error 500 in IBM Notes Client 9.0.1

I am facing issue (Error:500 Unexpected run time error ) in some cases when xpages based application is opened in Note 9.0.1 client. This issue is not reproduce because when you restart your client it automatically resolve the problem and its not come very often.

Initially we were using Server 8.5.3 but we have upgraded server to 9.0.1 FP4HF71. We have not observed this issue on 8.5.X clients.

Can anybody tell why this issue sometime occur on some machine and automatically issue is fixed when machine re-starts .

Anybody else facing same issue or not? Possible solution?

It works well other than xpages apps.

Thanks, Qaiser

Upvotes: 0

Views: 423

Answers (2)

pipalia
pipalia

Reputation: 911

Try changing the port under Preferences -> Domino Designer -> Web Preview Port to 8080 or something along those lines. Maybe port 80 is already in use.

Upvotes: 0

Paul Stephen Withers
Paul Stephen Withers

Reputation: 15739

Is this while you're developing? If you make a change in Domino Designer and want to see the change in XPiNC, you need to close Notes and re-open. It's to do with how the applications are loaded and how the XPages runtime differs in XPiNC vs server. (My guess is that the XPiNC XPages runtime uses the .class files for the application loaded in memory, but building the application recreates those - it has to - so the files are no longer available for the XPiNC runtime.)

There's no way round it and my recommendation (and what I've used for XPiNC development on other projects) is develop and test in Firefox, then do a final review in XPiNC when complete. Troubleshooting in Firefox is significantly easier than XPiNC, even with Firebug Lite plugin, so it will be an easier development experience.

The biggest single different with XPiNC look and feel / processing is if @DbLookup and @DbColumn are coded with "" as the first parameter, which works on browser but is bad practice. Following best practice of using @DbName() as the first parameter will yield consistent results on XPiNC and browser.

It won't occur for non-XPages applications, because they are the only applications using the XPages runtime built into the Notes Client for XPiNC.

Upvotes: 2

Related Questions