[JBoss Portal] - Re: Problem installing JBoss Portal
by PeterJ
It is not "hanging", that is simply the last message logged at the time. As you access various applications, there might or might not be further logging output (Seam and Hibernate generate lots of logging, so does JSF, but other things don't generate any logging output).
mfb's issue was that he closed the console, thus bringing down the app server, and the portal. I assume that you did not close the terminal you used to start the app server.
Right before the "Started in 99s" message, there should be another message that looks like this:
13:34:27,879 INFO [Http11Protocol] Starting Coyote HTTP/1.1 on http-127.0.0.1-8080
Post the "Starting Coyote HTTP" message that you have.
When you replied to my post, you used URL "http://:8080". Did you actual enter the exact text "http://localhost:8080" or did you enter something else?
Let's just continue the discussion here, that is better than breaking off into another thread at this point.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4109464#4109464
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4109464
18 years, 4 months
[JCA/JBoss] - Re: MSSQL XA datasource throws RollbackException on cluster
by ratrask
If I delete the table it will recreate it without an error, but the next time that it starts up it will throw the same exception again. The point of a persistant queue is tjhat the state is stored in it. :)
So I guess the question now is more a matter of what is the state of the system has it recovered from this error?
- nested throwable: (javax.transaction.RollbackException: [com.arjuna.ats.internal.jta.transaction.
| arjunacore.commitwhenaborted] [com.arjuna.ats.internal.jta.transaction.arjunacore.commitwhenaborted]
| Can't commit because the transaction is in aborted state)
When it talks about a transaction here, is it MSSQL transaction, or the XA monitor that JBoss is maintaining, or are they the same thing?
Rather than write a test.jsp I have some code that I can exercise the datasource with. Is there anything in particular that I should be testing?
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4109463#4109463
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4109463
18 years, 4 months
[JBoss Seam] - Custom Validator? How?
by dparanhos
I could not make my custom validator work. It has an attribute and the attribute is always being null when the validate method is being called. Am I missing something?
My faces-config.xml
| <validator>
| <validator-id>LevelValidator</validator-id>
| <validator-class>br.gov.exercito.silog.validator.LevelValidator</validator-class>
| <property>
| <property-name>minimum</property-name>
| <property-class>java.math.BigDecimal</property-class>
| </property>
| </validator>
My facelet-taglib is:
| <tag>
| <tag-name>levelValidator</tag-name>
| <validator>
| <validator-id>LevelValidator</validator-id>
| </validator>
| </tag>
My xhtml code is:
| <h:inputText id="nbMaxLevel"
| value="#{levelHome.instance.nbMaxLevel}"
| size="20" maxlength="13">
| <fpf:levelValidator limit="5"/>
| </h:inputText>
|
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4109454#4109454
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4109454
18 years, 4 months