cancel
Showing results for 
Search instead for 
Did you mean: 

ABAP WebDynpro: Call a URL with POST-parameters?

alexander_maetzing
Active Participant
0 Kudos

Hi all,

I want to call a URL from an ABAP WD method with additional data. I know that this is simply possible via the Window Manager, passing a URL. Adding additional parameters inside the URL is of course also possible using "&" and "?" separators.

Is it somehow possible to call such a URL out of WebDynpro with additional POST data (e.g. an XML datastream)?

Best regards.

Alexander

Accepted Solutions (1)

Accepted Solutions (1)

thomas_jung
Developer Advocate
Developer Advocate
0 Kudos

No. You can not perform a POST into a Web Dynpro ABAP application.

alexander_maetzing
Active Participant
0 Kudos

Hi Thomas,

just for clarification: I want to call from my WD just another Website/Webservice, not another WD Application. I want to convince the window manager in my source application somehow that he should not only accept this external URL (e.g. www.spiegel.de) but also additional POST data. Is this possible?

Best regards, Alexander

thomas_jung
Developer Advocate
Developer Advocate
0 Kudos

No, that isn't supported either. Just URL Parameters.

Former Member
0 Kudos

Hi!

This might not be the neatest solution, but...

You can use a BSP application as a redirect page. Your WDA calls the url of the BSP application, which renders a html page with an appropriate FORM-tag and hidden INPUT-fields. You submit the form via javascript when the body-onload event is raised.

Sincerely,

Stefan

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

Please check this... it might helps.

Cheers,

Kris.