Community forum

Please note that VisualCron support is not actively monitoring this community forum. Please use our contact page for contacting the VisualCron support directly.


pmontoya
2010-08-11T20:05:46Z
I have a webpage has a login form. I would like to login into the page, and the get the output of a status webpage afterwards. Trying to get VisualCron to pass the login credentials, but I can't seem to get it to log in. Can anyone help me see what I am doing wrong? The web page form looks like this. I've tried the job with paramaters and with credential defined, but can't see to get it to log into the page. Your thoughts?

<form action="j_security_check" method="post" id="j_security_check" name="j_security_check">
<table class="loginTable">
<tr>
<td align="right">Username:</td>
<td align="left"><input type="text" id="j_username" name="j_username"/></td>
</tr>
<tr>
<td align="right">Password:</td>
<td align="left"><input type="password" id="j_password" name="j_password"/></td>
</tr>
</table>
</form>
pmontoya attached the following image(s):
Sponsor
Forum information
Support
2010-08-11T21:08:30Z
Try filling in a domain name.
Henrik
Support
http://www.visualcron.com 
Please like  VisualCron on facebook!
pmontoya
2010-08-11T21:53:57Z
No luck. It still does the same thing even when I add the domain. Just goes back to the login page...Hmm....
pmontoya attached the following image(s):
pmontoya
2010-08-11T21:58:19Z
Here is the output that I keep getting...

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">






















<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<link rel="stylesheet" type="text/css" href="/acopia/style/acopia.css"/>
<title>F5 ARX Manager Login</title>
</head>
<body>

<div class="loginBody">

<img class="loginTagLineBg"
src="/acopia/images/logo/login-top-right-small.gif"
alt="Simplifying File Storage &trade;" />

<div class="loginDialogTopWrap">
<form action="j_security_check" method="post" id="j_security_check" name="j_security_check">
<div class="loginDialog">
<h3 class="loginHeader">F5 ARX Manager Login</h3>
<p class="loginText">Welcome to ARX Manager wa05st2608.</p>
<p class="loginText">Please enter your username and password to log in.</p>
<div class="loginForm">
<table class="loginTable">
<tr>
<td align="right">Username:</td>
<td align="left"><input type="text" id="j_username" name="j_username"/></td>
</tr>
<tr>
<td align="right">Password:</td>
<td align="left"><input type="password" id="j_password" name="j_password"/></td>
</tr>
<tr>
<td align="center" colspan="2">


<input type="image" name="submit"
src="/acopia/images/buttons/login.gif"
alt="Log in"
value="Log in"
onmouseover="src='/acopia/images/buttons/login_ro.gif'"
onmouseout="src='/acopia/images/buttons/login.gif'"/>
</td>
</tr>
</table>
</div>
</div>
</form>
</div>


<a href="http://www.f5.com/solutions/storage/">
<img class="loginTagLine"
src="/acopia/images/logo/tag-line-new.gif"
width="238"
height="31"
alt="Simplifying File Storage &trade;"
/>
</a>

<div class="loginCopyright">&copy; 2006-2009 F5 Networks, Inc. All rights reserved.</div>
</div>

<script type="text/javascript">
var loginUserName = document.getElementById ("j_username");
if (loginUserName != null)
{
loginUserName.focus ();
}
</script>
</body>
</html>


Support
2010-08-12T15:11:03Z
Not sure, but the action on the page is: action="j_security_check"

Perhaps you should post directly to that page.
Henrik
Support
http://www.visualcron.com 
Please like  VisualCron on facebook!
pmontoya
2010-08-12T18:34:56Z
Looks like the site uses Sun Java System Web Server - JSESSIONID. If that helps. I tried posting directly to the action page, but that does not seem to work right.

I can probably write a .NET program to start the session and the go from there (as a workaround).

Paul M.
Support
2010-08-12T19:30:52Z
pmontoya wrote:

Looks like the site uses Sun Java System Web Server - JSESSIONID. If that helps. I tried posting directly to the action page, but that does not seem to work right.

I can probably write a .NET program to start the session and the go from there (as a workaround).

Paul M.



Lets do like this. If you write a .NET program that succeeds with what you want we can take a look at it to see if there is anything wrong in our implementation and change that. Would that be ok?
Henrik
Support
http://www.visualcron.com 
Please like  VisualCron on facebook!
Scroll to Top