The problem is finally resolved! 
As i mentioned before in the previous release it was working, but after 
upgrading the app to the new Android platform and foundations, it stopped 
working. I didn't mention it, but only one method works

@Put
public void store(SafeNote note);
Two other method are not working where i tried to send parameter.

So, the solution was in interface class to remove parameter 
@Get 
public NoteList retrieve(); // see the original code in question. 
@Delete
public void remove();  // see the original code in question. 


Second place to fix is this method implementation invocation: noteList = 
noteResource.retrieve(); // since i send parameter using URL template.(Same fix 
is for delete method).

P.S. Thank you Thierry for your attention

------------------------------------------------------
http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447&dsMessageId=3029139

Reply via email to