Hi Alex,
Thanks you for your anwser.
I manage to "secure" a bit by using the reverse proxy configuration of apache.
So that, I can only allow some IP adress and also call all mypages on a stardart webport witout using mod_jk or ajp_proxy.
You need to restrict the ode and wds webservice.
This method can be spoof but I is a bit more secure than nothing ;)
Here is my apache configuration for anybody who wants try :
##########################################################
# INTALIO SECURE WEBSERVICES
##########################################################
LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_http_module modules/mod_proxy_http.so
<Proxy *>
Order Deny,Allow
Deny from all
</Proxy>
<Proxy
http://hostname:8080/console>Order Deny,Allow
Deny from all
Allow from 192.168.0
</Proxy>
<Proxy
http://hostname:8080/bpms-console>Order Deny,Allow
Deny from all
Allow from 192.168.0.194
</Proxy>
<Proxy
http://hostname:8080/ui-fw>Order Deny,Allow
Deny from all
Allow from 192.168.0
</Proxy>
<Proxy
http://hostname:8080/ode>Order Deny,Allow
Deny from all
Allow from 192.168.0.194
</Proxy>
<Proxy
http://hostname:8080/wds>Order Deny,Allow
Deny from all
Allow from 192.168.0.194
</Proxy>
<Proxy
http://hostname:8080/images>Order Allow,Deny
Allow from all
</Proxy>
<Proxy
http://hostname:8080/axis2>Order Allow,Deny
Allow from all
</Proxy>
<Proxy
http://hostname:8080/xFormsManager>Order Allow,Deny
Allow from all
</Proxy>
ProxyPass /console
http://hostname:8080/consoleProxyPass /images
http://hostname:8080/imagesProxyPass /ui-fw
http://hostname:8080/ui-fwProxyPass /axis2
http://hostname:8080/axis2ProxyPass /xFormsManager
http://hostname:8080/xFormsManagerProxyPass /bpms-console
http://hostname:8080/bpms-consoleProxyPass /ode
http://hostname:8080/odeProxyPass /wds
http://hostname:8080/wdsProxyPassreverse /
http://hostname:8080/##########################################################
Thanks
Brian