HTTP Post to Application Portal-WC
 Client -Web Interface FAQs 
 Client -Web Interface < BACK TO QUESTIONS 
question
I would like to use HTTP post method in order to automatically send the user`s credentials to WebConnect Application Portal. How do I do this?
  
answer

The following code demonstrates how to implement HTTP post method (sending username and password to WebConnect Application Portal). In order to use it please set "action" to your server`s IP address, and set the desired values for username and password:


<html>

<body>

<form method=post name=launchForm action=http://demos.ericom.com/webconnect/appportal/LoggedIn.asp>
<input type=hidden name=username value=rmv>
<input type=hidden name=password value=rmv>
</form>

<script language=javascript>document.launchForm.submit()</script>

</body>
</html>




Top