When you start the app server, the last few lines look like this:
08:18:16,707 INFO [Http11AprProtocol] Starting Coyote HTTP/1.1 on http-127.0.0.1-8080
08:18:16,754 INFO [AjpAprProtocol] Starting Coyote AJP/1.3 on ajp-127.0.0.1-8009
08:18:16,786 INFO [Server] JBoss (MX MicroKernel) [4.2.1.GA (build: SVNTag=JBoss_4_2_1_GA date=200707131605)] Started in 31s:733ms
For the [Http11AprProtocol] line, what is the IP address and the port number?
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4082210#4082210
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4082210
The warning you are getting, is it on the client or on the server? I am assuming client (that is where I usually get this error). This means that either the client itself, or one of the libraries it is using, does logging, but not logging configuration (whether properties or xml) was found. You can either ignore the warning message (I usually do), or supply a simple log4j.properties file for the client's use.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4082203#4082203
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4082203
Hi,
I new to JBOSS rools so i've made a small application that checks the name of a person. When i use the rule below, everything works as it should.
rule "name routering"
| when
| $form : PersonForm (firstName=="test");
| then
| $form.setFirstName(PersonForm.SHORT_NAME);
| update($form);
| end
|
Only when i use this rule nothing seams to work. Can somebody tell me what's wrong? Isn't this the way to use regular expressions?
rule "name check"
| when
| $form : PersonForm(firstName matches "[a-z]*");
| then
| $form.setChecked(false);
| update($form);
| end
Thanks.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4082196#4082196
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4082196