smily
smily

Reputation: 1

Pass session from jsp to asp.net

My website login page is in jsp & some of modules in .net , So i want pass the session to .aspx page so that access those module

Thanks in advance

Upvotes: 0

Views: 937

Answers (1)

BalusC
BalusC

Reputation: 1108722

You cannot do that. Your best bet is passing it as request parameter. If the data is too large to pass as request parameter, then let them share a datasource which JSP and ASP both understands (a SQL database?) so that you can store the session data there along an unique key and finally just pass that unique key around as request parameter so that the one or other can select the data based on the key.

Upvotes: 1

Related Questions