cancel
Showing results for 
Search instead for 
Did you mean: 

Data Exchange between two different BSP-Applikation

Former Member
0 Kudos

Hello everybody,

trying to realise a data exchange between two different BSP-Applications, I notices the follwing problem. I failed when I tried to read the client-cookies or server-cookies on the second BSP, set on the first BSP . With the help of the debbugging I noticed, that the two different pages located on the same server, have hat different Session-Ids.

The exchange with POST and GET won't work because I want to user SSO and the default  BSP for the login won't submit the parameters.

How can I so exchange the data between these to BSP-Application.

Does anybody has an idea why the cookies are not working properly or why the session-id is changed between these two BSPs?

Thanky for your help,

Evelyn

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Evelyn,

Have you try to set the session-id value in your cookie with value 'DUMMY'  when you set or get them ?

I think that will solve your problem.

Best regards.

Bertrand.

Former Member
0 Kudos

Hello Bertrand,

thanks for your help!

Reading the cookie with an dummy-Session-Id  is working, but unfortunately it does not solve my problem, because all users on the site will get the same cookie and I want to submit user-related data.

Best regards,

Evelyn

Former Member
0 Kudos

Hello,

you could try to pass the sessin-Id via url-parameters or via SET/GET parameters to the second bsp.

Regards, Bernd

Former Member
0 Kudos

You could even user the EXPORT command in ABAP to save the data for each user (EXPORT [data] TO DATABASE(xx)...). This has been the ABAP way of "creating cookies" since way before this html/Javascript stuff arrived...

What's wrong with the good old ABAP techniques...

Former Member
0 Kudos

Hello,

thank you for your help!

I solved the problem with changing the properties of the error pages in the SICF to 'form field (base 64)'. After that, I was able to receive the POST and GET parameters on the BSP and so able to exchange data or cookie-names.

Evelyn