What I am looking for is a way I can pass anything to a specific url so I can parse it myself. Something like this :
[OperationContract]
[WebGet(UriTemplate = "/whatever/blabla/{query}", RequestFormat = WebMessageFormat.Xml)]
string AddRouteForUser(string query);
Afterwards I can parse query myself to have the values I need. Is it possible ? Is there a better way ?
Thanks
[Edit title]