Take a look at the following code:
| <rich:dataTable id="cTable" value="#{customers.list}" var="record">
| <rich:column>
| <f:facet name="header"><h:outputText value="Surname" /></f:facet>
| <h:outputText value="#{record.surname}" />
| </rich:column>
| </rich:dataTable>
|
The row variable named "record" used by the h:outputText element can not be resolved. But if I replace rich:dataTable with h:dataTable the eclipse error "record cannot be resolved" disappers. The deployed project works as expected.
I use RichFaces Service Release 3.2.2.SR1, Mojarra Release 1.2_10, JBoss Tools 2.1.2.GA, Eclipse 3.4, ...
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4193695#4193695
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4193695
I had exactly the same problem :)
The problem is here:
Exception in thread "AWT-EventQueue-0" java.lang.NoSuchMethodError: org.jboss.ao
p.ClassAdvisor$1.(Lorg/jboss/aop/ClassAdvisor;Lorg/jboss/aop/AspectManager
You have the AspectManager class 2 times in your classpath.
The first one is in your jbossall-client.jar and the second one in your jboss-aop.jar
But the one in the jbossall-client.jar is wrong. It has not the needed methods. Change your classpath order so that the jboss-aop.jar is found before your jbossall-client.jar. Now the correct AspectManager class is used and your problem is gone.
Maybe there is a better way to fix it, but it works for now ;)
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4193690#4193690
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4193690
"bob.mcwhirter" wrote :
| So, it seems that since things initialized from deployers/ can affect VFS handling, deployDir.getChildren() should wait until deployers/ is fully deployed.
|
| Possible?
Possible yes, unfortunately not in the timeframe of GA.
But we could add your ".rails" extension by default to the deployers.xml
and once this is fixed we remove it again, if this would help you ?
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4193687#4193687
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4193687
Are you including the same jboss-app.xml in the META-INF of both the EARs? If yes, then you need to change it to make them unique. Here's an example:
For ear1:
| <?xml version="1.0"?>
| <jboss-app>
| <loader-repository>myapp.com:archive=MyAppOne</loader-repository>
| </jboss-app>
For ear2:
| <?xml version="1.0"?>
| <jboss-app>
| <loader-repository>myapp.com:archive=MyAppTwo</loader-repository>
| </jboss-app>
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4193682#4193682
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4193682