jaxb class(which is the same class) cast exception

2011-05-31 Thread Musa YUVACI
Regards Musa YUVACI -- View this message in context: http://restlet-discuss.1400322.n2.nabble.com/jaxb-class-which-is-the-same-class-cast-exception-tp6421599p6421599.html Sent from the Restlet Discuss mailing list archive at Nabble.com. -- http

Re: jaxb class(which is the same class) cast exception

2011-05-31 Thread Musa YUVACI
name. Best Regards Musa YUVACI -- View this message in context: http://restlet-discuss.1400322.n2.nabble.com/jaxb-class-which-is-the-same-class-cast-exception-tp6421599p6422400.html Sent from the Restlet Discuss mailing list archive at Nabble.com

Re: GWT Restlet Spring timeout problem

2011-04-27 Thread Musa YUVACI
and i send representation to server from client, OK there is no problem, i could get representation. But (Same code i just changed connector) when i used net or httpclient, representation had null value(it happens just get operation). (I don't know. Maybe it is a bug.) Best Regards Musa YUVACI

Re: GWT Restlet Spring timeout problem

2011-04-13 Thread Musa YUVACI
the problem was caused by the server. So that i seperated our client and server. Now Client and Server are running different server. And they works fine. But application speed is not so well when client and service run different server. Best Regards Musa YUVACI -- View this message in context: http

getRequestAttributes() always is empty.

2011-04-13 Thread Musa YUVACI
Hi, at the my application client side.I put param1 to request. request.getAttributes().put(param1, sample); But at the server side. When i get this attribute from the request, it returns null. getRequest().getAttributes().get(param1) How can i use the request attributes. -- View this

Re: Using @Get(or @Put,..) annotation for different methods at the same resource.

2011-04-07 Thread Musa YUVACI
First of all, sorry for the late response. Your right Reza, restlet doesnt have @path annotation.So that, i used if else pairs for calling operation from the business layer. And this url mapping is not my real mapping strategy. It is just a sample. Thanks for your help. -- View this message in

GWT Restlet Spring timeout problem

2011-04-07 Thread Musa YUVACI
(); } /* some business code */ return new JaxbRepresentation(MediaType.APPLICATION_XML, myObj); } Best Regards Musa YUVACI -- View this message in context: http://restlet-discuss.1400322.n2.nabble.com/GWT-Restlet-Spring-timeout-problem-tp6249038p6249038.html Sent from

Using @Get(or @Put,..) annotation for different methods at the same resource.

2011-03-11 Thread Musa YUVACI
Hi, I have been using restlet with spring. I have a resource (ContactResource). And I want to use @Get(or others, @Put,..) annotation for different methods at same resource. Now i am using this way, public class ContactResource() { @Get public Representation seperator() {