Hi, i am trying to create a new item on a ADO .NET DataService which has all
the writing permissions.
i can read all the information from the web service, but i can not insert an
item this is my code
NorthwindModelSession session=new NorthwindModelSession();
Category categoria=new Category();
categoria.setCategoryName("demojava");
categoria.setDescription("Descripcion");
session.addEntity(categoria);
and in the console i only see this:
Feb 4, 2010 9:46:00 AM org.restlet.engine.http.connector.HttpClientHelper start
INFO: Starting the default HTTP client
there is something else i am missing?
thanks a lot.
------------------------------------------------------
http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447&dsMessageId=2444878