Re: http://localhost:8080/console/ is showing directory listing instead of login page

2010-09-29 Thread David Jencks

On Sep 28, 2010, at 6:53 PM, Ivan wrote:

 
 
 2010/9/29 David Jencks david_jen...@yahoo.com
 
 On Sep 27, 2010, at 7:15 AM, Ivan wrote:
 
 Currently, the default servlet is merged in the deployment time, and I am 
 thinking that we might need  to have a better way for merging the default 
 web.xml file. It seems that we could not easily modify those parameters if 
 we want to enable/disable some functions in the default servlet and jasper 
 servlet after the application is deplooyed.
 
 I'm not quite sure what you mean, but I can see overriding the default 
 servlets could be a good idea, I'll think about how to do that.  We could 
 also do stuff like using config admin to change init params on servlets but 
 this might conflict with servlet lifecycle requirements.
 
Yes, that is what I mean. we do need a way to change the init parameters 
 for those servlets

I changed the merge code so if there is already a servlet of the same name as 
one in the default web app, the servlet won't be added from the default web 
app.  So if you want different default servlet behavior you can include the 
default servlet with whatever configuration you want in your web.xml.  There's 
something similar for filters.

 , also, I remember that some default mime-mapping in the default web.xml, it 
 should be added, too.

I fixed a bunch of problems with the merge code, now we have default 
mime-mappings.  We might want default locale info too.

Thanks.
  
 
 This particular problem is caused by the default welcome files being missing, 
 adding index.jsp explicitly to the portal driver web.xml fixes it.  Should be 
 an easy fix to make sure the default welcome files are getting added

Should be working now as of rev 1002525

thanks
david jencks


 
 thanks
 david jencks
 
 
 
 2010/9/27 Vamsavardhana Reddy c1vams...@gmail.com
 Hi,
 
 I built the server from latest trunk (Revision: 1001591. Wow! a million 
 commits to the subversion repo!!) and ran the server from 
 geronimo-tomcat7-javaee6-web-3.0-SNAPSHOT assembly.  When I access the URL 
 http://localhost:8080/console/ , I am getting a directory listing instead of 
 the login page!!  Anyone else seeing this?  Anybody knows what is broken?
 
 -- 
 Vamsi
 
 
 
 -- 
 Ivan
 
 
 
 
 -- 
 Ivan



Re: http://localhost:8080/console/ is showing directory listing instead of login page

2010-09-29 Thread Ivan
2010/9/29 David Jencks david_jen...@yahoo.com


 On Sep 28, 2010, at 6:53 PM, Ivan wrote:



 2010/9/29 David Jencks david_jen...@yahoo.com


 On Sep 27, 2010, at 7:15 AM, Ivan wrote:

 Currently, the default servlet is merged in the deployment time, and I am
 thinking that we might need  to have a better way for merging the default
 web.xml file. It seems that we could not easily modify those parameters if
 we want to enable/disable some functions in the default servlet and jasper
 servlet after the application is deplooyed.


 I'm not quite sure what you mean, but I can see overriding the default
 servlets could be a good idea, I'll think about how to do that.  We could
 also do stuff like using config admin to change init params on servlets but
 this might conflict with servlet lifecycle requirements.


Yes, that is what I mean. we do need a way to change the init parameters
 for those servlets


 I changed the merge code so if there is already a servlet of the same name
 as one in the default web app, the servlet won't be added from the default
 web app.  So if you want different default servlet behavior you can include
 the default servlet with whatever configuration you want in your web.xml.
  There's something similar for filters.


   Maybe the users might require more, for example, if they want to debug
jsp files (might be difficult in osgi environment) , I think that it is not
easy to ask them to change their own web.xml. And what they hope is to edit
a configure file somewhere and restart their application :-)



 , also, I remember that some default mime-mapping in the default web.xml,
 it should be added, too.


 I fixed a bunch of problems with the merge code, now we have default
 mime-mappings.  We might want default locale info too.

Thanks.



 This particular problem is caused by the default welcome files being
 missing, adding index.jsp explicitly to the portal driver web.xml fixes it.
  Should be an easy fix to make sure the default welcome files are getting
 added


 Should be working now as of rev 1002525

 thanks
 david jencks



 thanks
 david jencks



 2010/9/27 Vamsavardhana Reddy c1vams...@gmail.com

 Hi,

 I built the server from latest trunk (Revision: 1001591. Wow! a million
 commits to the subversion repo!!) and ran the server from
 geronimo-tomcat7-javaee6-web-3.0-SNAPSHOT assembly.  When I access the URL
 http://localhost:8080/console/ , I am getting a directory listing
 instead of the login page!!  Anyone else seeing this?  Anybody knows what is
 broken?

 --
 Vamsi




 --
 Ivan





 --
 Ivan





-- 
Ivan


Re: http://localhost:8080/console/ is showing directory listing instead of login page

2010-09-28 Thread David Jencks

On Sep 27, 2010, at 7:15 AM, Ivan wrote:

 Currently, the default servlet is merged in the deployment time, and I am 
 thinking that we might need  to have a better way for merging the default 
 web.xml file. It seems that we could not easily modify those parameters if we 
 want to enable/disable some functions in the default servlet and jasper 
 servlet after the application is deplooyed.

I'm not quite sure what you mean, but I can see overriding the default servlets 
could be a good idea, I'll think about how to do that.  We could also do stuff 
like using config admin to change init params on servlets but this might 
conflict with servlet lifecycle requirements.

This particular problem is caused by the default welcome files being missing, 
adding index.jsp explicitly to the portal driver web.xml fixes it.  Should be 
an easy fix to make sure the default welcome files are getting added

thanks
david jencks


 
 2010/9/27 Vamsavardhana Reddy c1vams...@gmail.com
 Hi,
 
 I built the server from latest trunk (Revision: 1001591. Wow! a million 
 commits to the subversion repo!!) and ran the server from 
 geronimo-tomcat7-javaee6-web-3.0-SNAPSHOT assembly.  When I access the URL 
 http://localhost:8080/console/ , I am getting a directory listing instead of 
 the login page!!  Anyone else seeing this?  Anybody knows what is broken?
 
 -- 
 Vamsi
 
 
 
 -- 
 Ivan



Re: http://localhost:8080/console/ is showing directory listing instead of login page

2010-09-28 Thread Ivan
2010/9/29 David Jencks david_jen...@yahoo.com


 On Sep 27, 2010, at 7:15 AM, Ivan wrote:

 Currently, the default servlet is merged in the deployment time, and I am
 thinking that we might need  to have a better way for merging the default
 web.xml file. It seems that we could not easily modify those parameters if
 we want to enable/disable some functions in the default servlet and jasper
 servlet after the application is deplooyed.


 I'm not quite sure what you mean, but I can see overriding the default
 servlets could be a good idea, I'll think about how to do that.  We could
 also do stuff like using config admin to change init params on servlets but
 this might conflict with servlet lifecycle requirements.


   Yes, that is what I mean. we do need a way to change the init parameters
for those servlets, also, I remember that some default mime-mapping in the
default web.xml, it should be added, too.
   Thanks.



 This particular problem is caused by the default welcome files being
 missing, adding index.jsp explicitly to the portal driver web.xml fixes it.
  Should be an easy fix to make sure the default welcome files are getting
 added

 thanks
 david jencks



 2010/9/27 Vamsavardhana Reddy c1vams...@gmail.com

 Hi,

 I built the server from latest trunk (Revision: 1001591. Wow! a million
 commits to the subversion repo!!) and ran the server from
 geronimo-tomcat7-javaee6-web-3.0-SNAPSHOT assembly.  When I access the URL
 http://localhost:8080/console/ , I am getting a directory listing instead
 of the login page!!  Anyone else seeing this?  Anybody knows what is broken?

 --
 Vamsi




 --
 Ivan





-- 
Ivan


http://localhost:8080/console/ is showing directory listing instead of login page

2010-09-27 Thread Vamsavardhana Reddy
Hi,

I built the server from latest trunk (Revision: 1001591. Wow! a million
commits to the subversion repo!!) and ran the server from
geronimo-tomcat7-javaee6-web-3.0-SNAPSHOT assembly.  When I access the URL
http://localhost:8080/console/ , I am getting a directory listing instead of
the login page!!  Anyone else seeing this?  Anybody knows what is broken?

-- 
Vamsi


Re: http://localhost:8080/console/ is showing directory listing instead of login page

2010-09-27 Thread Ivan
Currently, the default servlet is merged in the deployment time, and I am
thinking that we might need  to have a better way for merging the default
web.xml file. It seems that we could not easily modify those parameters if
we want to enable/disable some functions in the default servlet and jasper
servlet after the application is deplooyed.

2010/9/27 Vamsavardhana Reddy c1vams...@gmail.com

 Hi,

 I built the server from latest trunk (Revision: 1001591. Wow! a million
 commits to the subversion repo!!) and ran the server from
 geronimo-tomcat7-javaee6-web-3.0-SNAPSHOT assembly.  When I access the URL
 http://localhost:8080/console/ , I am getting a directory listing instead
 of the login page!!  Anyone else seeing this?  Anybody knows what is broken?

 --
 Vamsi




-- 
Ivan