I have an HTML form that calls a perl login script. I now need to capture the login data from an XML data stream (from an ASP.NET server to the current HTML form), thereby creating a uniform login process between the two servers. My goal is to accomplish this without changing or replacing the current perl script.
How do I change the current manual login process and implement a new login process whereby user data is passed from the XML data stream to my HTML form and automatically logins the user at the perl script via the passed data (I only need to pass the user's name and member number)?
The XML data stream looks like this:
<iBridge xmlns:xsd="xmlns:xsi=" ID="1"
TOKEN="7F1DEF6D-03C8-4387-A800-963ED61A8179" LAST_FIRST="MAXWELL,
KATHERINE" CO_ID="1164" MEMBER_NUMBER="989898"
MEMBER_TYPE_DESCRIPTION="NonProfit Stf NonMbr"
EMAIL="test@test.org" SECURITY_GROUP="5"
FORCE_CHANGE_DATE="2005-07-07T15:35:53.017" CO_MEMBER_TYPE="NASSO"
/></iBridge>
Many thanks for your input!!!
How do I change the current manual login process and implement a new login process whereby user data is passed from the XML data stream to my HTML form and automatically logins the user at the perl script via the passed data (I only need to pass the user's name and member number)?
The XML data stream looks like this:
<iBridge xmlns:xsd="xmlns:xsi=" ID="1"
TOKEN="7F1DEF6D-03C8-4387-A800-963ED61A8179" LAST_FIRST="MAXWELL,
KATHERINE" CO_ID="1164" MEMBER_NUMBER="989898"
MEMBER_TYPE_DESCRIPTION="NonProfit Stf NonMbr"
EMAIL="test@test.org" SECURITY_GROUP="5"
FORCE_CHANGE_DATE="2005-07-07T15:35:53.017" CO_MEMBER_TYPE="NASSO"
/></iBridge>
Many thanks for your input!!!