Rest Service Post
Problem Similar to
https://getsatisfaction.com/tiggzi/topics/what_does_rest_service_only_make_get_calls_i_would_like_to_make_a_post_call
Rest service to my server.
Allows only POST.
When creating the service and using the Test button...
If i use INSERT INTO 'MyTable' SET 'one'='one1'
Server says bad request..
But when I run the Tiggzi app the service works fine..
Chrome shows request as INSERT INTO 'MyTable' SET 'one'='one1'
Identical as the test...
EDIT.
INSERT INTO 'MyTable'('item1') VALUES('ada') Works Testing and in app.
But NOT
INSERT INTO 'MyTable' SET 'one'='one1' Works in App but NOT Rest test.
If I use SELECT * FROM 'MyTable' WHERE 'one' LIKE 'one1'
It works fine both on Test and from tiggzi app