Salut,
Richard Corsale wrote:
> I'm re-factoring the service engine in the OortCloud trunk right now..
finally we will see that interesting project :-)
so I don't even have a running instance to reproduce the error. but I
haven't forgotten about the onInterupt issue (I don't think I can forget
:) it's central to the frame ).
Great. I will also ping you :-)
>
> Ok, what Im doing here is using one servlet as a proxy and storing other servlet adapters in a hashMap basically
>
> the servlet filter
>
> -----------------------------------------------------------------
> public class ProxyServlet extends HttpServlet {
>
> @Override
> protected void service(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
> OortDebug.out.print("Recived Request for context:"+req.getRequestURI()+ " serviceMap: "+ServletManager.instance.ContextMap, this);
> String Context = req.getRequestURI();
> if(ServletManager.instance.isValidContext(Context)){
> ServletManager.instance.invokeServlet(Context, req, resp);
> }else{
> if(ServletManager.instance.isValidContext("/OortCloud/Services")){
> OortDebug.out.print("Passing off to services servlet...",this);
> ServletManager.instance.invokeServlet("/OortCloud/Services", req, resp);
> }
> else{
>
> resp.getWriter().write("Unable to locate service "+Context);
>
> }
> }
> }
>
> }
> ---------------------------------------------
>
> the ServletManager
> ----------------------------------------------
> public enum ServletManager {
> instance;
> HashMap<String, ServletAdapter> ContextMap = new HashMap<String, ServletAdapter>();
>
> public void addContext(String context, ServletAdapter wsp){
> OortDebug.out.print("Adding context to map: "+context, this);
> this.ContextMap.put(context, wsp);
> }
>
> public ServletAdapter getContextServlet(String context){
> return this.ContextMap.get(context);
> }
>
>
> public boolean isValidContext(String context){
> return this.ContextMap.containsKey(context);
> }
>
> public void invokeServlet(String Context, HttpServletRequest request, HttpServletResponse response){
> if(isValidContext(Context))
> try{
> getContextServlet(Context).getServletInstance().service(request, response);
> }catch(Exception e){
> e.printStackTrace();
> }
> }
>
> }
> ---------------------------------------------
>
>
>
> As you can see in the ServletManager when I call ServletManager.instance.invokeServlet("/OortCloud/Services", req, resp);
> I end up bypassing the ServletAdapter and passing a standard HttpServletRequest/Response to the ServletAdapters servlet instance.
>
> I dont know what consequences this has, not only that but I dont know if commet will work properly.
yes comet should work without any problem.
A+
--Jeanfrancois
>
> --Richard
>
>
>
>
> ----- Original Message ----
> From: Jeanfrancois Arcand <Jeanfrancois.Arcand_at_Sun.COM>
> To: dev_at_grizzly.dev.java.net
> Sent: Tuesday, April 28, 2009 4:04:52 PM
> Subject: Re: bug with alias mapping
>
> Salut,
>
> Richard Corsale wrote:
>> Regarding this issue,
>>
>> What I'm doing right now is use a servletManager and a filter then pass the request off to the ServletAdapter's getServletInstance. if I want to maintain GWS compatibility though I have to pass it to the GrizzlyServlet.service and not the Servlet Instance's Service(req,res)?
>
> Can you show me some code as some object's name are from your framework,
> right?
>
>
>
>> what Im getting at is, if I pass (req, resp) to ServletAdapter.getServletInstance() I dont think comet will work properly?
>
> Comet should still works IMO>
>
> if not, I would like to request that we have a constructor for
> GrizzlyRequest(HttpServletRequest request) and the same for
> GrizzlyResponse(HttpServletResponse response)
>
> Show me some code so I can help :-)
>
> Thanks for the feedback! Still waiting for the onInterrupt issue filled
> :-) :-)
>
> -- Jeanfrancois
>
>
>> --Richard
>>
>>
>>
>>
>>
>> ----- Original Message ----
>> From: Jeanfrancois Arcand <Jeanfrancois.Arcand_at_Sun.COM>
>> To: dev_at_grizzly.dev.java.net
>> Sent: Tuesday, April 28, 2009 11:33:05 AM
>> Subject: Re: bug with alias mapping
>>
>>
>>
>> Survivant 00 wrote:
>>> it's bug 556.
>> OK thanks. BTW do not commit unit test that fail :-) It breaks the build :-)
>>
>> A+
>>
>> -- jeanfrancois
>>
>>> I'll add this sample to the issue.
>>>
>>> 2009/4/28 Jeanfrancois Arcand <Jeanfrancois.Arcand_at_sun.com <mailto:Jeanfrancois.Arcand_at_sun.com>>
>>>
>>> Salut,
>>>
>>> file an issue with the code below and I will look at it.
>>>
>>> Thanks!
>>>
>>> -- Jeanfrancois
>>>
>>> Survivant 00 wrote:
>>>
>>>
>>> I think it's not just with the "/" I try with this.. and it
>>> return 200 too and I see a nice "Hello World !" in the console :(
>>>
>>> try {
>>> startGrizzlyWebServer(PORT);
>>> String[] aliases = new String[] { "/test/a.hello" };
>>>
>>> String context = "/test";
>>> String servletPath = "/test2";
>>> String rootFolder = ".";
>>> ServletAdapter adapter =
>>> getServletAdapter("servlet.HelloServlet", context, servletPath,
>>> rootFolder);
>>>
>>> gws.addGrizzlyAdapter(adapter, aliases);
>>>
>>> gws.start();
>>> String url = context + servletPath +
>>> "/index.php";
>>> HttpURLConnection conn = getConnection(url);
>>> assertEquals(HttpServletResponse.SC_OK,
>>> getResponseCodeFromAlias(conn));
>>> System.out.println("");
>>> System.out.println(readResponse(conn));
>>>
>>>
>>>
>>>
>>>
>>> 2009/4/28 Survivant 00 <survivant00_at_gmail.com
>>> <mailto:survivant00_at_gmail.com> <mailto:survivant00_at_gmail.com
>>> <mailto:survivant00_at_gmail.com>>>
>>>
>>>
>>> ok.. I didn't see this one .It's bug 556.
>>>
>>> I think I lost lot of time because of this :(
>>>
>>> I'll continue to create unit test.. I hope to save time with
>>> that :)
>>>
>>>
>>>
>>> 2009/4/28 Richard Corsale <igf1_at_yahoo.com
>>> <mailto:igf1_at_yahoo.com> <mailto:igf1_at_yahoo.com
>>> <mailto:igf1_at_yahoo.com>>>
>>>
>>>
>>>
>>> I filed a bug for this the other day . It's when you load the
>>> servlet at context / it anwsers all requests for everything
>>>
>>> Sent from my iPhone
>>>
>>> On Apr 28, 2009, at 8:31 AM, Survivant 00
>>> <survivant00_at_gmail.com <mailto:survivant00_at_gmail.com>
>>> <mailto:survivant00_at_gmail.com
>>> <mailto:survivant00_at_gmail.com>>> wrote:
>>>
>>> Can someone confirm that this is a bug.
>>>
>>> I was trying to test the mapping for a helloworld
>>> servlet.. but
>>> even when I enter a invalid URL.. the HelloWorld was return.
>>>
>>> so I create another test.
>>>
>>> I took the com.sun.grizzly.http.MappingTest
>>>
>>> and add this test
>>>
>>> public void testWrongMapping2() throws IOException {
>>> System.out.println("testWrongMapping2");
>>> try {
>>> startGrizzlyWebServer(PORT);
>>> String alias = "/*.a";
>>> addAdapter(alias);
>>> HttpURLConnection conn =
>>> getConnection("/aaa.html");
>>> assertEquals(HttpServletResponse.SC_NOT_FOUND,
>>> getResponseCodeFromAlias(conn));
>>> } finally {
>>> stopGrizzlyWebServer();
>>> }
>>> }
>>>
>>> I receive a 200 code return instead of a 404.
>>>
>>> my helloworld test was something like this:
>>>
>>> public void testHelloWorld() throws Exception {
>>> System.out.println("testHelloWorld");
>>> try {
>>> startGrizzlyWebServer(PORT);
>>> String[] aliases = new String[] { "/*.hello" };
>>>
>>> String context = "/";
>>> String servletPath = "";
>>> String rootFolder = ".";
>>>
>>> ServletAdapter adapter =
>>> getServletAdapter("servlet.HelloServlet", context,
>>> servletPath,
>>> rootFolder);
>>>
>>> gws.addGrizzlyAdapter(adapter, aliases);
>>>
>>> gws.start();
>>>
>>> String url = context + servletPath +
>>> "/index.php"; // not suppose the return a 200.
>>> HttpURLConnection conn = getConnection(url);
>>> assertEquals(HttpServletResponse.SC_OK,
>>> getResponseCodeFromAlias(conn));
>>>
>>> System.out.println(readResponse(conn));
>>>
>>> //assertEquals(url, );
>>>
>>> } finally {
>>> stopGrizzlyWebServer();
>>> }
>>> }
>>>
>>> I receive a HelloWorld :(
>>>
>>>
>>>
>>>
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail:
>>> dev-unsubscribe_at_grizzly.dev.java.net
>>> <mailto:dev-unsubscribe_at_grizzly.dev.java.net>
>>> <mailto:dev-unsubscribe_at_grizzly.dev.java.net
>>> <mailto:dev-unsubscribe_at_grizzly.dev.java.net>>
>>>
>>> For additional commands, e-mail:
>>> dev-help_at_grizzly.dev.java.net <mailto:dev-help_at_grizzly.dev.java.net>
>>> <mailto:dev-help_at_grizzly.dev.java.net
>>> <mailto:dev-help_at_grizzly.dev.java.net>>
>>>
>>>
>>>
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: dev-unsubscribe_at_grizzly.dev.java.net
>>> <mailto:dev-unsubscribe_at_grizzly.dev.java.net>
>>> For additional commands, e-mail: dev-help_at_grizzly.dev.java.net
>>> <mailto:dev-help_at_grizzly.dev.java.net>
>>>
>>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: dev-unsubscribe_at_grizzly.dev.java.net
>> For additional commands, e-mail: dev-help_at_grizzly.dev.java.net
>>
>>
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: dev-unsubscribe_at_grizzly.dev.java.net
>> For additional commands, e-mail: dev-help_at_grizzly.dev.java.net
>>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe_at_grizzly.dev.java.net
> For additional commands, e-mail: dev-help_at_grizzly.dev.java.net
>
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe_at_grizzly.dev.java.net
> For additional commands, e-mail: dev-help_at_grizzly.dev.java.net
>