write your own IRequestTargetUrlCodingStrategy class.
That can decode a request to a IRequestTarget and encode one to a url (that
shouldn't be to hard)
Then also have you own kind of IRequestTarget that is the service.
johan
On 12/6/06, Paolo Di Tommaso <[EMAIL PROTECTED]> wrote:
Wicket is a wonderful framework for handle web pages request. But I'm
thinking that it would be nice too to publish general "web" service
without
any visual component associated.
In other word would be very useful to use Wicket to expose a server side
services in protocol agnostic way.
For example having something like that :
public void init() {
mount( "/trade", new TradeService() );
}
The protocol to be used could be SOAP, REST, JSON, XML-RPC, plain HTTP or
whatever else, but injected using a defined interface.
What do you think about that?
Any ideas/suggestions where to start from?
Paolo