anonymous wrote : I'm testing our application with JBoss 4.2.0 GA
anonymous wrote : String urlPath = "http://127.0.0.1:"
| + pageContext.getRequest().getServerPort()
| + request.getContextPath() + "/myservlet";
Try with localhost:
| String urlPath = "http://localhost:"
| + pageContext.getRequest().getServerPort()
| + request.getContextPath() + "/myservlet";
Might be related to this
http://wiki.jboss.org/wiki/Wiki.jsp?page=JBoss42FAQ
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4082504#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...