Hi,
    Is it possible to do tunneling in application leveal ?. cause i'm having 
3 domain names but wanna do tunneling for one domain only.

i went through docs but its for global.



  <servlet>
   <servlet-name>tunnel</servlet-name>
   <servlet-class>com.evermind.server.http.TunnelServlet</servlet-class>
   <init-param>
    <param-name>targetRoot</param-name>
    <param-value>http://localhost:8080/</param-value>
   </init-param>
  </servlet>

(This is assuming that Orion is running on port 80 and Apache on 8080.)

Then you would add the mappings for the content you want the other web 
server to handle:

  <servlet-mapping>
   <servlet-name>tunnel</servlet-name>
   <url-pattern>/*.html</url-pattern>
  </servlet-mapping>

  <servlet-mapping>
   <servlet-name>tunnel</servlet-name>
   <url-pattern>/*.gif</url-pattern>
  </servlet-mapping>


Thanks for your help,
Sarathy



_________________________________________________________________
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp


Reply via email to