The progressbar (remoting) is broken in JBoss AS 4.2 CR1.
This is due to what I mentioned earlier.
| <h:form onsubmit="queryProgress();return true;">
|
| <h:commandButton style="width:80px" value="Go!" action="#{progressBarAction.doSomething}" class="button"/>
|
| </h:form>
|
With JSF 1.2 RI, the onsubmit method is called only if submission occurs through the click on a submit button
| <input type="submit" value="Go!" />
|
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4038119#4038119
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4038119
Help me, please.
I put this code in Servlet:
InitialContext jndiContext = new InitialContext();
| Object obj = jndiContext.lookup("java:PostgresDS");
| DataSource ds = (DataSource) PortableRemoteObject.narrow(obj, DataSource.class);
| ...
|
and its work correctly. But then I put this code in application, Eclipse write:
javax.naming.NameNotFoundException: (PostgresDS not bound ...
In what difference? Why it not work in application?
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4038116#4038116
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4038116
"thomas.heute(a)jboss.com" wrote : Let's focus on your build problem then.
|
| Other than the firewall problem, what doesn't work for you ?
|
| You should just go to the 'build' directory then type "sh build.sh deploy" it will fetch the libraries, build the sar and deploy if you set JBOSS_HOME to your JBoss AS directory
When I checkout the trunk and uses build.sh deploy
Yes it works !!!
But the build from the kit is exploded, and the build buils.sh makes seems not to be exploded ?
How do I manage explode / not explode.
/Anders
PS: seeing the first pom.xml in the trunk would be great
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4038109#4038109
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4038109