2016-02-22 89 views
1

我的tomcat服務器在YYYY機器上運行,客戶端在XXXX上運行,並且每當請求到達YYYY時,它都會處理髮送請求到另一臺機器的請求。如何在Tomcat服務器端應用程序獲取客戶端信息

My server.http looks like--> 
<Service name="MyService"> 
    <Connector port="3096" 
     maxThreads="50" minSpareThreads="50" maxSpareThreads="50" 
     debug="0" acceptCount="100" connectionTimeout="60000" 
     enableLookups="true" address="YYYY"/> 
    <Engine name="standalone" defaultHost="localhost"> 

處理該請求具有getRemoteHost()爲 「YYYY」 該servlet。任何人都可以請任何光線我怎麼能得到客戶端信息(主機和端口)?

謝謝。

回答

0

我猜你在問這個問題。如果不讓我知道更多關於你想知道的事情。

request.getRemoteAddr(); //Where the client is commong from => ip address. 
request.getRemotePort(); //where the client is using port => port. 
相關問題