Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to pass data between two servers ?

Status
Not open for further replies.

Lulli

Programmer
Dec 11, 2005
14
SE
Hi

I have an web login application on a server_A and would like to pass the userID and password to server_B(each time someone logs in on server_A). So basically, every user can have access to both, server_A and server_B using the same userID and password. In my web aplication on the server_A I use the "POST" method to gather data, such as userID and password. The next step would be to pass this data further to server_B.
I'm quite new to Perl programming and the most methods for passing data that I'v found are client/server applicable.
Any good ideas ?

Thanks
 
Are you using cookies for authentication, if so an iframe calling serverB with the same credentials might work
 
Hi

No, I'm not using cookies for authentication. I wonder if you have any good code examples of how to implement an IFrame. (Is an IFrame a tool used to refresh server ? )

Thanks
 
Google for iframe, it's part of the HTML specification afaik

Spend an hour a week on CPAN, helps cure all known programming ailments ;-)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top