cancel
Showing results for 
Search instead for 
Did you mean: 

how to validate SAP portal username and password with javascript from adobe form

0 Kudos

In my Adobe interactive form, on the click of a button, a pop up comes for User ID and Password inputs.

I am trying to send this user id and password to a HTTPS url of SAP Portal and get a response back (return code 200, I think).

How to achieve this?

I am using the following code but it is not returning any thing

var statustext;
var xmlhttp;
xmlhttp = new XMLHttpRequest();
xmlhttp.open("GET",cPortalUrl,true);
xmlhttp.send();

statustext = xmlhttp.responseTEXT;

Accepted Solutions (0)

Answers (1)

Answers (1)

0 Kudos

Just to reiterate:


I need to validate the URL and PASSWORD against SAP Portal URL - but the call has to be sent on clicking a button from Adobe Interactive Form.

Thanks