Hi Is there anyway we can share a login session between two apps one of which is developed in php and the other one in Ruby or Perl or Python? Thanks
If on the same domain you can use HTTP Cookies to store the session. If NOT on the same domain you could use some clever tricks (iframe... script that returns image) to create 2 HTTP Cookies (one on each domain) with the same Session ID. Then store any info server side using the SessionID as the Key.