To forward to a different application, you need to:
1-Specify a forward. In the path, specify the full URL of the site including the "http://". Also specify redirect="true".
2-Simply find the forward using the ActionMapping object and return it from the execute() method of your Action class, just as you would with any other forward.
And also what will happen to the Current session objects. will it get retained or get destroyed?
Naturally, since you're moving to a completely different application, the new application knows nothing about your session or any other objects stored on your server. If after browsing the new application, the user navigates back to your site, the session and all other server-side objects will still be there.