Parameter parsing with Java Restlet

Posted by Leaf on Stack Overflow See other posts from Stack Overflow or by Leaf
Published on 2010-04-12T13:59:59Z Indexed on 2010/04/12 14:03 UTC
Read the original article Hit count: 595

I'm trying to make a calculator web service that has more than 10 parameters. Is there any function in the Java Restlet or in Java itself that allows you to see the parameter ids?

e.g. http://mywebsite.com/calculator?id1=value1&id2=value2&id3=value3 => I'm trying to access the values of id1, id2, and id3 so that I don't have to require people using the web service to input all parameters (some of them are likely to be 0).

© Stack Overflow or respective owner

Related posts about restlet

Related posts about java