In order to test from abrowser I created this web page
<Html>
<Head>
<Title> Test REST WS - POST </Title>
</Head>
<Body>
<H1> This is for the RestDemo Update Age function </H1>
<form method=POST action='http://informatserver:8080/RestDemo/services/update/test'>
<input type="text" size="5" name='Age'><BR>
<input type=submit value="Test"> <BR>
</form>
</Body>
</Html>
and it call the function fine but the function parameter: newAge, is always 0
What am I doing wrong?
A.