I am using the Velocity Client with a Web project loaded version: 1.2.0.2741.
I mapped my custom website and when I try to POST a login the page will just refresh. I verified from the server that there is no POST even attempted from this client device (Zebra WT6000).
I am curious what web browser behinds the scene is this Velocity application using to render the pages and does it support POST functionality? I havent tried any other REST methods, but this is concerning the page reloads everytime I attempt a login.
I tried digging through documentation on some guidelines/best practices, but I couldn't find anything related to the web portion of the software.
As a test I pointed the project to google.com and attempted a login and I got this "Connection Error" for checking a cookie, then the app crashes. The applications goes back to the "Host Profiles" screen. This might be something unrelated or it might correlate with my issue.
I also pointed the stock web browser on the device and I am able to login just fine without any issues, so something is telling me that the Velocity application is the culprit.
Any help on this would be greatly appreciated!
Here is a really simple example of the HTML code on the webpage.
<form action="/login" method="POST">
<input type="text" name="username">
<input type="text" name="password">
<input type="submit" value="Submit">
</form>