cancel
Showing results for 
Search instead for 
Did you mean: 

Data transfer from a BSP application to Webdynpro

Timo_John
Active Participant
0 Kudos

Hello,

I am trying to implement two web applications that should exchange some data.

First a http POST request is send to a BSP application, where the POST data is read into an internal table.

This table should be displayed in an other WebDynpro ABAP application, where the BSP forwards to.

The issue is, that the two application do not share any data, such that I can not use static attributes of a class for example.

At the moment I only see the way using: Shared Object oder via the database to exchange he data.

Or is there a solution how I can access http POST within a WebDynpro application?

Thanks for your thoughts!

Kind Regards

Timo John from Hamburg!

Accepted Solutions (0)

Answers (1)

Answers (1)

daniel_humberg
Contributor
0 Kudos

Hi John,

your BSP and WebDynpro applications will run in different sessions, so they can not share any data that is in the memory.

Your only options are:

- pass data as URL parameters (url?param1=value1&param2=value2) and handle these parameters in the default inbound plug of your WD application

- store the data in server side cookies

- store the data in the database

- use shared objects

Best regards,

Daniel

Timo_John
Active Participant
0 Kudos

Hi,

thant you for you reply. Looks like there is no real good scenario for that.

So I think I will continue investigating with:

Shared Object and

Server Side Cookies.

URL Parameters do not work as I have quite a lot of data to transfer ...

Greetings