Error while calling Java MVC View method in Lotus Notes Xpages button Click [closed]
I have MVC code pattern written in java build in Lotus Notes. Wanted to call the java view in Lotus Notes Xpages to authenticate the app using oauth2.0 in lotus notes xpages. The same SDK provided for .net i am able to execute need help in java xpages. Method in JavaMVC @RequestMapping("/connectToABC") public View connectToABC(Session session) throws NotesException { return new RedirectView(oauth2Config.prepareUrl(scopes, redirectUri, csrf), true, true, false); } XPAGES importPackage(com.abc.developer.sampleapp.oauth2.controller); var obj = new OAuth2Controller(); obj.connectToABC(session);