cancel
Showing results for 
Search instead for 
Did you mean: 

WebDynPro and HTML...

david_fryda2
Participant
0 Kudos

Hi,

I want to create a simple HTML form.

When I click on the submit button of the form, I want to send the data to the WebDynPro application.

Is it possible ?

Thanks a lot for the help.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi David,

Yes it is possible.

On submit of the button, just call your webdynpro application with the url : http://<server ip>:<port>/webdynpro/dispatcher/local/<project name>/<Application name>

And you can post data to Webdynpro application using GET as well as POST method.

Then, you can retrieve this data in webdynpro application using following code:

WDWebContextAdapter.getWebContextAdapter().getRequestParameter("<parameter name>");

Regards,

Bhavik

david_fryda2
Participant
0 Kudos

Hi Bhavik,

Thanks for the quick answer.

I didn't know that WD behave like servlets.

Thanks!

Former Member
0 Kudos

The entry point into the Web Dynpro runtime <b>is </b>a servlet.

Armin

Former Member
0 Kudos

Hi,

I wolud like to make the opposite, I mean to send data from WebDynpro to HTML so I can build a report to show this data. Is it possible?.

Thanks,

Jesus

Former Member
0 Kudos

Hi,

You can use iFrame for this. on any action set the source property of an iFrame to the Html pages url that you want to call and u can pass the values into that page in that url itself and can retrieve.

(but its all control will be in webdynpro only.)

Regards,

Sirisha.R.S.

Answers (0)