Hello,
i am trying to do an authentication test from Web by Postman Extension.
I had read everything about authentication from bonita documentation but is impossible do the log in.
Post Method: http://localhost:8080/bonita/loginservice
form-data: username,pass and redirect in headers or body but not working. This is the result:
Bonita BPM Portal</head>
<body id="LoginPage">
<div id="LoginHeader">
<h1>
<span>Welcome to</span> Bonita BPM Portal
</h1>
</div>
<div id="floater"></div>
<div id="LoginFormContainer" >
<div id="logo">
<img src="portal/themeResource?theme=portal&location=skin/images/login-logo.png"/>
</div>
<div class="body">
<form id="LoginForm" action="loginservice?" method="post">
<div class="header">
<h2>Login form</h2>
</div>
Unable to log in. Please check your username and password.
<div class="formentries">
<div class="formentry" title="Enter your login (username)">
<div class="label">
<label for="username">User</label>
</div>
<div class="input">
<input title="Username" id="username" name="username" value="" placeholder="User" type="text" tabindex="1" maxlength="255" />
</div>
</div>
<div class="formentry" title="Enter your password">
<div class="label">
<label for="password">Password</label>
</div>
<div class="input">
<input title="Password" id="password" name="password" type="password" tabindex="2" maxlength="50" placeholder="Password" />
</div>
<input name="_l" type="hidden" value="en_US" />
</div>
</div>
<div class="formactions">
<input type="submit" value="Login" />
</div>
</form>
</div>
</div>
</body>
Please someone has tested REST calls from Web browser?