首页 > 解决方案 > 在 3party 页面中集成 JSF 页面

问题描述

我想做以下事情:

a) 我有一个第三方页面:[ https://www.example.com][1]

b) 我有一个 JSF 应用程序:[ https://www.myapplication.net][2]

My JSF application has also a customer portal and individual HTML forms. 

I want to have now to integration processes in the 3 party page

a) Customer Portal:

This customer portal I would like to integrate in the a) 3 party page. 
Example: User will open: [https://www.customerportal.example.org/][3]
-> The user is still his own page, but the content is from the application page.
-> My application has many users, so therefore I need a ID from the customerPortal page.
E.g. `ID = 123456789` belongs to user1 from my application. 
An idea would be to have a code snippet in the 3 party page to get an iframe.

b) Individual form:

The user from the 3 party page can send an individual url to his customer. Afterwards the HTML code will be showing in this page, but the content for this page is from my app.

Example:
User will send [https://www.example.com/form/123456789][4]
-> 123456789 is the ID from the FORM which I have in my database
-> Will call a Web service and will return the HTML from my application.

Any ideas how I can do this?


  [1]: https://www.example.com
  [2]: https://www.myapplication.net
  [3]: https://www.customerportal.example.org/
  [4]: https://www.example.com/form/123456789

标签: htmljsf

解决方案


推荐阅读