Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm currently working on a WebSphere 6.1 Web Project.

In my java code, how can i get the current running application port?

share|improve this question
What do you mean with application port? Do you mean http port, like in port 80, 8080, ... – Hans Doggen Nov 5 '08 at 10:48

1 Answer

up vote 3 down vote accepted

The servlet API gives you the local port in HttpServletRequest.

protected void doGet(HttpServletRequest request,
		HttpServletResponse response) throws ServletException, IOException {
	PrintWriter writer = response.getWriter();
	writer.write("" + request.getLocalPort());
	writer.close();
}

The ports are defined in the node's serverindex.xml (e.g. [WAS]/profiles/AppSrv01/config/cells/localhostNode01Cell/nodes/localhostNode01/serverindex.xml).

<specialEndpoints xmi:id="NamedEndPoint_1214751102556" endPointName="WC_defaulthost">
  <endPoint xmi:id="EndPoint_1214751102556" host="*" port="9080"/>

I'm not sure if the WAS JMX support exposes this information - you'd have to check the doc.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.