How can I implement domino data services within an xpinc application to display a notes view in a restful state

StackOverflow https://stackoverflow.com/questions/21868177

  •  13-10-2022
  •  | 
  •  

문제

I have an xPages application that I would like to get working in the Notes client via xpinc. I have a view that displays its information via domino data services as json. How can I make this available to my xpinc application?

도움이 되었습니까?

해결책

Yes, Patrick. You answered your own question in the comments section.

The full Domino data service does not run locally on the Notes client. Therefore, your xpinc application can't use a local instance of the data service. On the other hand, the XPages REST service control should work locally. The REST service control uses some of the same underlying code as the data service, so you should be able to make it return essentially the same JSON representation of view entries. It may take a bit more work, but it's the best option for xpinc.

Good luck.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top