cancel
Showing results for 
Search instead for 
Did you mean: 

Deactive the Webinterface

dnalos
Champ in-the-making
Champ in-the-making
Hello,

I have a question, maybe can somebody help me. I use alfresco web services via Java. And i wand deactive the webinterface, that mean, i want only access alfresco via Java not with http://localhost:8080/alfresco. Has anybody a idea, how can i config it? Thank you very much.
5 REPLIES 5

mrogers
Star Contributor
Star Contributor
Unfortunatly It's not as easy as it should be.

You would need to re-package the alfresco war file to remove the explorer web client.

dnalos
Champ in-the-making
Champ in-the-making
Hello, mrogers,

thank you for your answer. What do you mean remove the explorer web client?

Can i deaktive it during customising the login page like this:

<config>
   <client>
      <login-page>/jsp/extension/login.jsp</login-page>
   </client>
</config>

and make the content of login.jsp black.

Thank you!  Smiley Happy

sisao
Champ in-the-making
Champ in-the-making
that's a fast and dirty trick dnalos but it has the effect you need….disabling the web-client is something different btw.

vsuarez
Champ in-the-making
Champ in-the-making
You can write a Java Filter that returns a empty page or redirects the request to somewhere. I guess the <filter-mapping><url-pattern> must be the  "/faces/*" pattern.

dnalos
Champ in-the-making
Champ in-the-making
thank you, i have chosse returns a empty page Smiley Happy