hi!
im configuring jboss 3.2.7 in two machines with two network interfaces each. when i start jboss with first (default) network interface with --host=192.168.0.X all is ok, two nodes see each other.
but when i start jboss with the ip of second interface (10.10.10.x) i get an extrange behaviour, the second node starts to add itself as a new member every few seconds:
17:20:24,454 INFO [PartInstitut] All Members : 7 ([10.10.10.5:1099, 10.10.10.6:1099, 10.10.10.6:1099, 10.10.10.6:1099, 10.10.10.6:1099, 10.10.10.6:1099, 10.10.10.6:1099])
|
i must stop server.
anyone have experimented this problem?
thx in advance
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3958834#3958834
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3958834
The log4j exception is unrelated, but you should fix this anyhow.
The error message you mention is benign. Basically, when we have pointcuts for fields and constructors we need to change the code calling those fields/constructors so that the woven code executing the aspects is called. So when weaving a class we find all the classes it acceses, and try to load up each of those classes in the weaver to see if their fields/constructors match any pointcuts. So basically the messages mean that StandarServer and ServerContext reference NamingContextListener and NamingContextListener is not on the classpath. THis is not really a problem since the code calling NamingContextListener is not called (or when running tomcat you'd get ClassNotFoundExceptions)
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3958830#3958830
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3958830
"newbie007" wrote : Where is "context" defined? I hope it is not another JBPMContext type
| variable defined as null.
|
| String userName = req.getParameter("userName");
| JbpmContext jbpmContext = JbpmContext.getCurrentJbpmContext();
| jbpmContext.setActorId(userName);
| context.getRequestDispatcher("/mainPage.jsp").forward(req, resp);
|
|
Hello, thanks for the reply, first the "username" is not null, I have verified that.
About the context, I am not defining it, I thougt that it would get the context of the server. How can I define it?
thanks.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3958825#3958825
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3958825