A single change can do the trick
Try this please
go to
C:\jboss-6.0.0.20100429-M3\server\default\deploy\jbossweb.sar\server.xml
find the following lines
-- A HTTP/1.1 Connector on port 8080
Connector protocol="HTTP/1.1" port="${jboss.web.http.port}" address="${jboss.bind.address}"
connectionTimeout="20000" redirectPort="${jboss.web.https.port}"
change into
-- A HTTP/1.1 Connector on port 8080
Connector protocol="HTTP/1.1" port="portnumber" address="${jboss.bind.address}"
connectionTimeout="20000" redirectPort="${jboss.web.https.port}"
portnumber in the sense any value as your wish.For example 8081,8082,8083,,,,,, go on.
Hope this will help