I have an existing Web service that supports a number of mobile users in another environment. For a number of reasons i need to use that Web service in this new "stuff" I have a test asp page that uses the following code:
<form method="POST" action="http://myaddress.com/HHQuickSync/QuickSync.aspx">
Login Test
<input type="submit" id="cmd" name="cmd" value="LIN"/>
<input type="text" id="user" name="user" value="alis.tejeda"/>
<input type="text" id="pwd" name="pwd" value="BobSpecialPWD"/>
<span id="spanIn" name="spanIn">Login</span>
</
I have tried dozens of variations of this:
myaddress.com/HHQuickSync/QuickSync.aspx?cmd=LIN&user=alis.tejeda&pwd=BobSpecialPWD
I get an error page page back from the server (it always returns a result code). What am I missing?