users@grizzly.java.net

Re: suggestions for this http server usecase

From: Igor Minar <iiminar_at_gmail.com>
Date: Thu, 7 May 2009 19:18:21 -0700

how about a jersey app running on grizzly webserver?

sounds like an ideal combination to me + all the pieces already work
together, you just need to create some jax-rs resources.

/i


On May 7, 2009, at 5:31 PM, Survivant 00 wrote:

> I'm looking for advice from the community. Here my usecase
>
> I'll have a httpserver that listen for http requests : nothign
> special here
>
> but thr requests will be for controlling a device (media server).
>
> Should I create a grizzly application that instanciate a
> GrizzlyWebserver and when I add manually ServletAdapter I pass a
> reference for the main application and when I receive requests, I
> dispatch them to the application ?
>
> or should I use a Grizzlywebserver standalone and call a service
> from the GWS ?
>
> oh ya.. I planned to add a web page to control the device too. Just
> not sure what is the best case schenario.
>
> I think of using the first one, but just want your advices on that.
>
> thanks