Hi Sasidhar,
There are many ways you can use to send data from BSP application to WD application:
But this depends on the amount of data that you want to send over to WD application.
- pass data as URL parameters (url?param1=value1¶m2=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
The simplest way could be to send data using Querystring the first option suggested above.
If want to pass any other parameter using Query String you can define receiver parameter in window's handeldefault method.
This is how you can get values from those Query String parameters.
Thanks-
Abhishek