I create a web service RESTful, know i want to use one service from this webservice, with the RestSharp API
Works:
http://localhost:7895/.../Connexion/login/pass
If i put a breakpoint in the service, the service is called, and everything works great
Don’t works:
http://localhost:7895/.../Connexion/lo.gin/pass
If a put a breakpoint in the service, the service is never called.
EDIT
Here the url, if you want the exact url
http://192.168.56.1:1759/ConnexionService.svc/Connexion/jean.marc/HASHEDPASSWORD";
That works
http://192.168.56.1:1759/ConnexionService.svc/Connexion/jeanmarc/HASHEDPASSWORD";
jean.marc is the login.
Then i generate a oauth signature, wich is added to the url
Then I use the RestSharp API to do the request.
The problem is, when a do a request with the login jean.marc, my service is never called.
The dot, are there because the login is constructed with the first name “dot” the last name.
If it’s not possible to pass information with dot, i should change the login structure and just add an underscore.
Of course the second one doesn’t work; it’s a different URL.
You can’t just throw dots in wherever and expect it to work. Why do you want to add extra dots?