[JBoss Seam] - Re: Seam and Portal Future
by perwik
I've followed the development of Seam for about a year now, but it's only recently that I've started to build something with it. I see a need for splitting my project into modules (call them portlets if you like).
The problem with these modules is that, as far as I understand, if I want to deploy a new version of a module to my site (let's say I've added some features to the forum part of the site) I'd have to redeploy the whole .ear and reload everything (this could be 10 different modules with any number of entities and SFSBs etc.) and by doing that the whole site would be down, if only for a minute or two. Is there something I've missed here? From what I've seen, this kind of dynamic loading is something you'd get with JBoss Portal.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3998742#3998742
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3998742
19 years, 3 months
[Installation, Configuration & Deployment] - Re: All services binding to 0.0.0.0:8080 or 0.0.0.0:xxx
by PeterJ
As you already found out, by default, when an application binds to a port, it binds to address 0.0.0.0, which means "accept input from all IP addresses handled by the NICs on this machine". Thus is you set up your NIC to handle multiple IP addresses, or you have multiple NICs, you (or JBoss in this case) can receive requests on any of the addresses.
You also found that you can ask JBoss to bind to a specific address. By the way, you could have also simply run it as follows:
./run.sh -b mail
This causes JBoss to bind to that particular address. Note that when you do this, you will not be able to access any JBoss application from a browser using http://localhost:nnnn, because you did not bind to localhost (127.0.0.1).
Finally, are you asking why some of the log output shows the host name (mail) and others show the IP address (192.161.xxx.xxx)? They are both the same, some code just chooses to display one and other code chooses to display the other.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3998737#3998737
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3998737
19 years, 3 months