cancel
Showing results for 
Search instead for 
Did you mean: 

Is there any configuration to make directory listing enabled in WAS?

Former Member
0 Kudos

You know in Tomcat after modify conf/web.xml

-


<servlet>

<servlet-name>default</servlet-name>

<servlet-class>org.apache.catalina.servlets.DefaultServlet</servlet-class>

<init-param>

<param-name>debug</param-name>

<param-value>0</param-value>

</init-param>

<init-param>

<param-name>listings</param-name>

<param-value>true</param-value>

</init-param>

<load-on-startup>1</load-on-startup>

</servlet>

-


put true to listings

Directory listings will be produced if there is no welcome file in this directory

Is it possible for Web AS?

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

For the j2ee engine you can enable directory browsing in the following way:

1. Logon to the engine via Visual Administrator

2. Go to server -> services -> Http provider

3. In the tunrime tab check the Directory List checkbox and save the changes.

Regards, Myriana

Former Member
0 Kudos

Thank you, it works, this is just the answer

Answers (1)

Answers (1)

former_member191062
Active Contributor
0 Kudos

Hello,

the WebAS is different, for the ABAP part there is no diretory listing possibble. /* For BSP / MIME files */

These are not files on the file system, so this feature is not adequate here.

Best regards,

Dezso Pap

Former Member
0 Kudos

I mean JAVA part, a J2EE application