tags:

views:

94

answers:

1

Is it possible to embed / integrate SAP Webdynpro pages / applications into nomral websites / web-applications (for example html, asp.net php, ...) ?

+1  A: 

Im not sure if its possible out of the box but im guessing you could capture all the generated HTML and feed it a div in a page? So create the webDynpro page you want to show then using server side or client side code call the URI and dump the content into a div. The hard part would be stripping out unwanted HTML (just getting whats between the body tags). You could, use an iframe if this is to diffucult though.

StarSignLeo